| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Switch from GitHub to PyPI as upstream now offers Python sdists
* Python 3 is now supported so remove the version contraints
* Use pytest for running the tests as it's already required as a dependency
to process them thus make real use of that tool
* Pet portlint (whitespace issue in pkg-descr)
Changelog:
https://github.com/nexB/pymaven/compare/3caf65f...4e065e4
|
| |
| |
| |
| | |
Submitted by: jkim
|
| |
| |
| |
| |
| |
| | |
This is required for powerpc64 support.
PR: 237370
|
| |
| |
| |
| | |
PR: 237208
|
| |
| |
| |
| | |
PR: 237208
|
| |
| |
| |
| |
| |
| |
| | |
configuration from FreeBSD /usr/local/etc/asound.conf should be used.
PR: 240043
Reported by: Hannes Hauswedell <h2+fbsdports@fsfe.org>
|
| |
| |
| |
| | |
but it doesn't work on FreeBSD.
|
| |
| |
| |
| | |
Reported by: portscout
|
| |
| |
| |
| | |
Reported by: portscout
|
| |
| |
| |
| | |
Reported by: portscout
|
| |
| |
| |
| | |
Reported by: portscout
|
| |
| |
| |
| | |
When restarted PostgreSQL, do a reload instead.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Radically simplified static file serving for Python web apps
With a couple of lines of config WhiteNoise allows your web app to serve its own
static files, making it a self-contained unit that can be deployed anywhere
without relying on nginx, Amazon S3 or any other external service. (Especially
useful on Heroku, OpenShift and other PaaS providers.)
It's designed to work nicely with a CDN for high-traffic sites so you don't have
to sacrifice performance to benefit from simplicity.
WhiteNoise works with any WSGI-compatible app but has some special auto-
configuration features for Django.
- While I'm here, add NO_ARCH
WWW: http://whitenoise.evans.io/
PR: 239107
Submitted by: Alexander Sieg <alex@xanderio.de>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Replaces things like get_absolute_url with a .urls attribute that can reference
other URLs and build sensible trees of things, and can then be accessed using
instance.urls.name.
WWW: https://github.com/andrewgodwin/urlman
PR: 239103
Submitted by: Alexander Sieg <alex@xanderio.de>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
rules is a tiny but powerful app providing object-level permissions to Django,
without requiring a database. At its core, it is a generic framework for
building rule-based systems, similar to decision trees. It can also be used as a
standalone library in other contexts and frameworks.
WWW: https://github.com/dfunckt/django-rules
PR: 239102
Submitted by: Alexander Sieg <alex@xanderio.de>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
inlinestyler is an easy way to locally inline CSS into an HTML email message.
Styling HTML email is a black art. CSS works, but only when it's been placed
inline on the individual elements (and event then, not always) - which makes
development frustrating, and iteration slow.
The general solution is to use an inlining service, which takes a message with
the CSS placed externally, and rewrites it so that all CSS is applied to the
individual elements. The most widely used of these services - and as far as I
can tell, the one that powers CampaignMonitor - is Premailer. It's a great
service, and the guys behind it put a lot of work into keeping it up to date
with the most recent discoveries in what works and what doesn't.
inlinestyler takes (most) of the functionality of Premailer, and makes it
available locally, accessible without having call a remote service.
WWW: https://github.com/dlanger/inlinestyler
- While I'm here:
- Add LICENSE_FILE
- Add NO_ARCH
PR: 239063
Submitted by: Alexander Sieg <alex@xanderio.de>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
django-libsass builds on libsass-python to make @import paths aware of Django's
staticfiles mechanism, and provides a filter module for django-compressor which
uses the libsass-python API directly, avoiding the overheads of calling an
external executable to do the compilation.
WWW: https://github.com/torchbox/django-libsass
- While I'm here, add NO_ARCH
PR: 239061
Submitted by: Alexander Sieg <alex@xanderio.de>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This is yet another way to store multi-lingual content in Django. In contrast to
other options like django-hvad, django-modeltranslation or django-parler it does
not require additonal database tables and you can reconfigure the available
languages without any changes to the database schema. In constrast to nece, it
is not specific to PostgreSQL.
WWW: https://github.com/raphaelm/django-i18nfield
- While I'm here, add NO_ARCH
PR: 239060
Submitted by: Alexander Sieg <alex@xanderio.de>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
django-hierarkey -- Hierarchical key-value store
This package allows you to attach a key-value store to a model, e.g. to store
preferences of an user or a customer. The package supports arbitrary datatypes,
defaults and model hierarchies, i.e. you can define a different model instance
as your instance's parent and the values of the parent instance will be used as
default values for the child instances.
This approach has been in use in pretix for quite a while, so it has been tested
in production.
This project is maintained by Raphael Michel <mail@raphaelmichel.de>. See the
AUTHORS file for a list of all the awesome folks who contributed to this
project.
WWW: https://github.com/raphaelm/django-hierarkey
- While I'm here, add NO_ARCH
PR: 239059
Submitted by: Alexander Sieg <alex@xanderio.de>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This is a fork of django-formset-js that adds support for reordering and nested
formsets.
A wrapper for a JavaScript formset helper.
WWW: https://github.com/pretix/django-formset-js
- While I'm here:
- Add LICENSE_FILE
- Fix USES=python
PR: 239050
Submitted by: Alexander Sieg <alex@xanderio.de>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
jQuery, bundled up so apps can depend upon it
WWW: https://pypi.org/project/django-jquery-js/
- While I'm here:
- Fix LICENSE
- Add LICENSE_FILE
PR: 239049
Submitted by: Alexander Sieg <alex@xanderio.de>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Python package for Django removing the need to call
super().get_context_data(**kwargs) in nearly every Django view.
WWW: https://github.com/rixx/django-context-decorator
- While I'm here:
- Fix USES=python
- Update WWW
PR: 239048
Submitted by: Alexander Sieg <alex@xanderio.de>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Django-CSP adds Content-Security-Policy headers to Django.
WWW: https://github.com/mozilla/django-csp
- While I'm here, fix USES=python
PR: 239043
Submitted by: Alexander Sieg <alex@xanderio.de>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
resolves:
- CVE-2019-9512 (Ping Flood)
- CVE-2019-9514 (Reset Flood)
- CVE-2019-9515 (Settings Flood)
PR: 239843
Submitted by: Max Kostikov <max@kostikov.co>
Reported by: Max Kostikov <max@kostikov.co>
Reviewed by: adamw
Approved by: jrm (mentor, implicit)
MFH: 2019Q3
Security: CVE-2019-9512
Security: CVE-2019-9514
Security: CVE-2019-9515
Sponsored by: SkunkWerks, GmbH
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
http://blog.kazuhooku.com/2019/08/h2o-version-226-230-beta2-released.html
PR: 239843
Reported by: Kazuho Oku
Approved by: jrm (mentor, implicit)
Security: CVE-2019-9512
Security: CVE-2019-9514
Security: CVE-2019-9515
Sponsored by: SkunkWerks, GmbH
|
| | |
|
| |
| |
| |
| | |
rubygem-devise-two-factor30-rails5)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
resolves:
- CVE-2019-9512 (Ping Flood)
- CVE-2019-9514 (Reset Flood)
- CVE-2019-9515 (Settings Flood)
PR: 239843
Submitted by: Max Kostikov <max@kostikov.co>
Reported by: Max Kostikov <max@kostikov.co>
Reviewed by: adamw
Approved by: jrm (mentor, implicit)
MFH: 2019Q3
Security: CVE-2019-9512
Security: CVE-2019-9514
Security: CVE-2019-9515
Sponsored by: SkunkWerks, GmbH
|
| |
| |
| |
| | |
rubygem-gettext_i18n_rails_js-rails5)
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
Add USE_PYTHON=concurrent
PR: 240103
Submitted by: Adam Jimerson <vendion@gmail.com>
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Active Storage makes it simple to upload and reference files in cloud services
like Amazon S3, Google Cloud Storage, or Microsoft Azure Storage, and attach
those files to Active Records. Supports having one main service and mirrors in
other services for redundancy. It also provides a disk service for testing or
local deployments, but the focus is on cloud storage.
Files can be uploaded from the server to the cloud or directly from the client
to the cloud.
Image files can furthermore be transformed using on-demand variants for quality,
aspect ratio, size, or any other MiniMagick supported transformation.
WWW: https://rubyonrails.org/
|
| | |
|
| |
| |
| |
| | |
rubygem-sprockets-rails-rails5)
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
* Change the suggested backup target list to only have /usr/home,
not /usr/home + /home.
* Add DOCS option
* Change LICENSE to more specific UNLICENSE
|
| |
| |
| |
| | |
rubygem-rails-dom-testing-rails5)
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
on non-Intel architectures
Reported by: fallout
|
| |
| |
| |
| | |
PR: 240043
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- when hardware accelartion is not available users can experience switched colors
- to work around the issue it is possible to pass --disable-gpu to the command line
PR: 240095
PR: 237277
Submitted by: Lorenzo Salvadore
Reported by: Nuno Teixeira
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- when hardware accelartion is not available users can experience switched colors
- to work around the issue it is possible to pass --disable-gpu to the command line
PR: 240097
PR: 237277
Submitted by: Lorenzo Salvadore
Reported by: Nuno Teixeira
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- when hardware accelartion is not available users can experience switched colors
- to work around the issue it is possible to pass --disable-gpu to the command line
PR: 240098
PR: 237277
Submitted by: Lorenzo Salvadore
Reported by: Nuno Teixeira
|
| |
| |
| |
| |
| |
| | |
r509800 (merge linux-c7-openssl into linux_base-c7).
Reported by: Walter Schwarzenfeld <w.schwarzenfeld@utanet.at>
|
| |
| |
| |
| | |
by sha*sum from the coreutils package.
|
| |
| |
| |
| | |
Reported by: FreshPorts sanity daemon
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
PR: 240080
Submitted by: Dmitry Wagin <dmitry.wagin@ya.ru>
. update to 2019.2.1
. drop dependency on intellij-pt4j port -- the FreeBSD native library is already included in the upstream pty4j jar
. install FreeBSD native library for jansi
. fix the "Typeahead timeout is exceeded" error
. small cleanup
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
CMake Error in src/CMakeLists.txt:
Target "hpcttrigger" requires the language dialect "CXX14" , but CMake does
not know the compile flags to use to enable it.
Approved by: portmgr (tier-2 blanket)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
so they don't work, but I suspect we don't need them:
usr/bin/chfn
usr/bin/chsh
usr/bin/findmnt
usr/bin/login
usr/bin/lsblk
usr/bin/lscpu
usr/bin/lsipc
usr/bin/lslogins
usr/bin/lsmem
usr/bin/lsns
usr/bin/script
usr/bin/setpriv
usr/sbin/clock
usr/sbin/debugfs
usr/sbin/hwclock
usr/sbin/runuser
usr/sbin/zramctl
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Make the source tarball fetchable again since the 7.1 release has left its
pre-release status (hence the removal of the -WIP suffix).
* Pet portlint by making the USES block separate while I'm here.
Changelog:
https://github.com/cgsecurity/testdisk/blob/3bb714e6/NEWS
PR: 240066
Submitted by: cyberleo@cyberleo.net
MFH: 2019Q3
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
On older hardwares or systems where hardware acceleration has not been
configured correctly the browser shows videos with wrong colors.
Add a pkg-message notice on how to disable hardware acceleration
as a workaround for this issue.
PR: 240096
Submitted by: Lorenzo Salvadore
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
PR: 240043
Reported by: Tatsuki Makino <tatsuki_makino@hotmail.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The '-v' flag was intentionally left out to reduce the cluttering of the
screen as some tests have rather long names. But after a second look it
makes more sense to enable the verbosity of the tests because they'll be
more meaningful in case of errors.
Reported by: koobs
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Changelog:
* The V2 scheduler now fully randomizes review cards due on a given day.
* Fix flag changes in Browse screen not syncing.
* Cleanup recording wav file when recording canceled.
* Fix the window icon on Wayland.
* Add a progress bar to media deletion.
* Other minor changes.
https://apps.ankiweb.net/docs/changes.html#changes-in-2.1.15
MFH: 2019Q3
|
| | |
|
| |
| |
| |
| | |
linux-c7-systemd-libs.
|
| |
| |
| |
| |
| | |
package name and to be similar to upcoming ports for other elfutils
libraries.
|
| |
| |
| |
| | |
don't work and nobody has ever complained about that.
|
| |
| |
| |
| |
| |
| |
| | |
* Point to the new home as the previous site has ceased to exist. This
should have been added with r508451.
Reported by: Repology
|
| |
| |
| |
| |
| |
| | |
6.4.0, ...
and one patch (2 GibiB mailbox size reporting) that won't make 6.4.
|
| |
| |
| |
| |
| |
| |
| | |
- Switch to options helpers
- Update WWW
Approved by: portmgr blanket
|
| |
| |
| |
| |
| | |
Approved by: jrm (mentor, implicit)
Sponsored by: SkunkWerks, GmbH
|
| |
| |
| |
| |
| |
| |
| |
| | |
This patch is also requested upstream:
https://github.com/knxd/knxd/pull/407
PR: 239469
Submitted by: pkubaj
|
| |
| |
| |
| | |
- supports the current KDE Applications' PIM versions
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
linear programs
|
| | |
|
| | |
|
| |
| |
| |
| | |
Changes: https://github.com/rust-lang/rust/compare/29a54035c77c...eeba189cfb2c
|
| |
| |
| |
| |
| | |
Changes: https://git.sr.ht/%7Esircmpwn/scdoc/refs/1.9.7
Reported by: Repology
|
| |
| |
| |
| | |
Changes: https://aomedia.googlesource.com/aom/+log/fb4c1a793..e5b1d0973
|
| |
| |
| |
| | |
Changes: https://github.com/xiph/rav1e/compare/2b20894d...dc34123f
|
| |
| |
| |
| | |
Changes: https://github.com/OpenVisualCloud/SVT-AV1/compare/6012f53c...bb6f8f3f
|
| |
| |
| |
| | |
Changes: https://github.com/RPCS3/rpcs3/compare/b0d0f51d8...b70908c8f
|
| | |
|
| |
| |
| |
| | |
Optimization
|
| |
| |
| |
| |
| |
| | |
* Fix include file path
* Fix the mode for jspawnhelper so it is executable
* Sort the packing list
|
| |
| |
| |
| | |
Asked the upstream to separate the Java binding from the C++ library.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Add "do-test" target to make future QA easier
Changelog since 1.3.43:
* Add parser for various NXOS features
* Fix issue with "ip_helper_adddresses" function that wasn't able to handle
'global' helpers
* Implement "re_search_children()" directly on the "CiscoConfParse()" object
* Fix NXOS HRSP issue with "has_ip_hsrp" function
|
| |
| |
| |
| |
| | |
PR: 239886
Submitted by: Artyom Davidov <ard_1@mail.ru>
|
| |
| |
| |
| |
| | |
PR: 240071 [1]
Reported by: jbeich@, Dries Michiels <driesm.michiels@gmail.com> [1]
|
| |
| |
| |
| |
| |
| | |
Changes: https://github.com/rubygems/rubygems/blob/master/History.txt
PR: 240024
Exp-run by: antoine
|
| | |
|
| |
| |
| |
| | |
Changes: https://github.com/sinatra/sinatra/blob/master/CHANGELOG.md
|
| |
| |
| |
| | |
Changes: https://github.com/sinatra/sinatra/blob/master/CHANGELOG.md
|
| |
| |
| |
| | |
Changes: https://github.com/sinatra/sinatra/blob/master/CHANGELOG.md
|
| |
| |
| |
| |
| | |
Changes: https://github.com/googleapis/google-cloud-ruby/releases
https://github.com/googleapis/google-cloud-ruby/blob/master/stackdriver-core/CHANGELOG.md
|
| |
| |
| |
| |
| | |
Changes: https://github.com/googleapis/google-cloud-ruby/releases
https://github.com/googleapis/google-cloud-ruby/blob/master/google-cloud-logging/CHANGELOG.md
|
| |
| |
| |
| |
| |
| |
| | |
- Update version requirement of RUN_DEPENDS
Changes: https://github.com/googleapis/google-cloud-ruby/releases
https://github.com/googleapis/google-cloud-ruby/blob/master/google-cloud-env/CHANGELOG.md
|
| |
| |
| |
| |
| |
| |
| | |
- Update version requirement of RUN_DEPENDS
Changes: https://github.com/googleapis/google-cloud-ruby/releases
https://github.com/googleapis/google-cloud-ruby/blob/master/google-cloud-core/CHANGELOG.md
|
| |
| |
| |
| | |
Changes: https://github.com/aws/aws-sdk-ruby/releases
|
| |
| |
| |
| | |
Changes: https://github.com/aws/aws-sdk-ruby/releases
|
| |
| |
| |
| | |
Changes: https://github.com/aws/aws-sdk-ruby/releases
|
| |
| |
| |
| | |
Changes: https://github.com/jupyterlab/jupyterlab/commits/master
|
| |
| |
| |
| | |
Changes: https://github.com/HypothesisWorks/hypothesis/blob/master/hypothesis-python/docs/changes.rst
|
| |
| |
| |
| | |
Changes: https://metacpan.org/changes/distribution/YAML-LibYAML
|
| |
| |
| |
| | |
Changes: https://metacpan.org/changes/distribution/Perl-PrereqScanner-NotQuiteLite
|
| |
| |
| |
| | |
Changes: https://metacpan.org/changes/distribution/Color-RGB-Util
|
| | |
|
| |
| |
| |
| | |
Changes: https://github.com/keybase/client/releases
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
Use newer GCC than what base offers:
/wrkdirs/usr/ports/devel/pthreadpool/work/pthreadpool-6673a4c/src/threadpool-pthreads.c:59:4: error: #error "Unsupported platform"
Approved by: mentors (implicit approval)
|
| |
| |
| |
| |
| |
| |
| | |
C11 compiler is necessary:
parse.c:1889: error: expected '=', ',', ';', 'asm' or '__attribute__' before ':' token
Approved by: mentors (implicit approval)
|
| |
| |
| |
| |
| | |
Add the PYTHON option that enables the pythin binding.
Asked the upstream to make the python binding build separately.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Details:
- Bugfix release, see
https://raw.githubusercontent.com/MusicPlayerDaemon/MPD/v0.21.14/NEWS
- Includes a fix for rare crash after song change
MFH: 2019Q3 (hat: ports-secteam)
|
| |
| |
| |
| |
| | |
PR: 240074
Reported by: Dmitri Goutnik <dg@syrec.org>
|
| | |
|
| |
| |
| |
| | |
- Add missing TEST_DEPENDS
|
| |
| |
| |
| | |
Reported by: jbeich
|
| |
| |
| |
| |
| |
| | |
Changelog:
- Added new validators ``ipv4_cidr``, ``ipv6_cidr``
(#117, pull request courtesy woodruffw)
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Add "do-test" target to easen future QA
* Pet portlint (whitespace issues in pkg-descr)
Changelog:
https://github.com/package-url/packageurl-python/compare/v0.8.5...v0.8.7
|
| |
| |
| |
| |
| |
| |
| | |
The big-endian ifdef misses ||.
PR: 239298
Approved by: cs@innolan.net (maintainer timeout), linimon (mentor)
|
| |
| |
| |
| |
| |
| |
| | |
Patch this port similarly to other mysql/mariadb/percona ports - make GCC a valid compiler.
PR: 239310
Approved by: aleks@twindb.com (maintainer timeout), linimon (mentor)
|
| |
| |
| |
| |
| |
| |
| | |
Angelscript works on powerpc, but its naming convention is only 32-bit. Define AS_MAX_PORTABILITY when building on powerpc64 to fix build.
PR: 239496
Approved by: ndowens@yahoo.com (maintainer timeout), linimon (mentor)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Changelog:
* New RPC "generatetoaddress(self, numblocks, addr)"
* Fixed Python 2.7 incompatibility
* Various OpenSSL fixes, including a memory leak
Note:
This will be the last release of finance/python-bitcoinlib with Python 2.7
compatibility.
MFH: 2019Q3
|
| |
| |
| |
| | |
subdirectory.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
(without any special options or include files being required).
Until that changes (or GCC changes) we need to avoid using vec_step as a
variable name.
PR: 239266
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
own port. The hb-view utility is the only part of harfbuzz that requires
cairo. So now harfbuzz doesn't pull in x11 libraries or mesa via cairo,this
is usefull for ports that want to use harfbuzz but don't use or want x11.
Add license
Exp-run by: antoine@
PR: 239662
|