summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2020-08-18Update to wagtail-2.10:joerg4-42/+394
* Added Django 3.1 support (Matt Westcott, Karl Hobley) * Removed support for Python 3.5 * Implemented configurable moderation workflow (Jacob Topp-Mugglestone, Karl Hobley, Matt Westcott, Dan Braghis) * Implemented phrase searching and structured search query expressions (Karl Hobley) * Add ability to import redirects from an uploaded file (CSV, TSV, XLS, and XLSX) (Martin Sandström) * Added `webpquality` and `format-webp-lossless` image filters and `WAGTAILIMAGES_WEBP_QUALITY` setting (Nikolay Lukyanov) * Reorganised Dockerfile in project template to follow best practices (Tomasz Knapik, Jannik Wempe) * Added filtering to locked pages report (Karl Hobley) * Adds ability to view a group's users via standalone admin URL and a link to this on the group edit view (Karran Besen) * Redirect to previous url when deleting/copying/unpublish a page and modify this url via the relevant hooks (Ascani Carlo) * Added `next_url` keyword argument on `register_page_listing_buttons` and `register_page_listing_more_buttons` hooks (Ascani Carlo, Matt Westcott, LB (Ben Johnston)) * `AbstractEmailForm` will use `SHORT_DATETIME_FORMAT` and `SHORT_DATE_FORMAT` Django settings to format date/time values in email (Haydn Greatnews) * `AbstractEmailForm` now has a separate method (`render_email`) to build up email content on submission emails (Haydn Greatnews) * Add `pre_page_move` and `post_page_move` signals (Andy Babic) * Add ability to sort search promotions on listing page (Chris Ranjana, LB (Ben Johnston)) * Upgrade internal JS tooling; Node v10, Gulp v4 & Jest v23 (Jim Jazwiecki, Kim LaRocca, Thibaud Colas) * Add `after_publish_page`, `before_publish_page`, `after_unpublish_page` & `before_unpublish_page` hooks (Jonatas Baldin, Coen van der Kamp) * Add convenience `page_url` shortcut to improve how page URLs can be accessed from site settings in Django templates (Andy Babic) * Show more granular error messages from Pillow when uploading images (Rick van Hattem) * Add ordering to `Site` object, so that index page and `Site` switcher will be sorted consistently (Coen van der Kamp, Tim Leguijt) * Add Reddit to oEmbed provider list (Luke Hardwick) * Add ability to replace the default Wagtail logo in the userbar, via `branding_logo` block (Meteor0id) * Remove sticky footer on small devices, so that content is not blocked and more easily editable (Saeed Tahmasebi) * Add `alt` property to `ImageRenditionField` api representation (Liam Mullens) * Add `purge_revisions` management command to purge old page revisions (Jacob Topp-Mugglestone, Tom Dyson) * Render the Wagtail User Bar on non `Page` views (Caitlin White, Coen van der Kamp) * Add ability to define `form_classname` on `ListBlock` & `StreamBlock` (LB (Ben Johnston)) * Add documentation about how to use `Rustface` for image feature detection (Neal Todd) * Improve performance of public/not_public queries in `PageQuerySet` (Timothy Bautista) * Add `add_redirect` static method to `Redirect` class for programmatic redirect creation (Brylie Christopher Oxley, Lacey Williams Henschel) * Add reference documentation for `wagtail.contrib.redirects` (LB (Ben Johnston)) * `bulk_delete` page permission is no longer required to move pages, even if those pages have children (Robert Rollins, LB (Ben Johnston)) * Add `after_edit_snippet`, `after_create_snippet` and `after_delete_snippet` hooks and documentation (Kalob Taulien) * Improve performance of empty search results by avoiding downloading the entire search index in these scenarios (Lars van de Kerkhof, Coen van der Kamp) * Replace `gulp-sass` with `gulp-dart-sass` to improve core development across different platforms (Thibaud Colas) * Add SVG icons to resolve accessibility and customisation issues and start using them in a subset of Wagtail's admin (Coen van der Kamp, Scott Cranfill, Thibaud Colas, Dan Braghis) * Switch userbar and header H1s to use SVG icons (Coen van der Kamp) * Remove markup around rich text rendering by default, provide a way to use old behaviour via `wagtail.contrib.legacy.richtext` (Coen van der Kamp, Dan Braghis) * Apply title length normalisation to improve ranking on PostgreSQL search (Karl Hobley) * Add `WAGTAIL_TIME_FORMAT` setting (Jacob Topp-Mugglestone) * Allow omitting the default editor from `WAGTAILADMIN_RICH_TEXT_EDITORS` (Gassan Gousseinov) * Disable password auto-completion on user creation form (Samir Shah) * Upgrade jQuery to version 3.5.1 to reduce penetration testing false positives (Matt Westcott) * Add ability to extend `EditHandler` without a children attribute (Seb Brown) * `Page.objects.specific` now gracefully handles pages with missing specific records (Andy Babic) * StreamField 'add' buttons are now disabled when maximum count is reached (Max Gabrielsson) * Use underscores for form builder field names to allow use as template variables (Ashia Zawaduk, LB (Ben Johnston)) * Deprecate use of unidecode within form builder field names (Michael van Tellingen, LB (Ben Johnston)) * Improve error feedback when editing a page with a missing model class (Andy Babic) * Change Wagtail tabs implementation to only allow slug-formatted tab identifiers, reducing false positives from security audits (Matt Westcott) * Add skip link for keyboard users to bypass Wagtail navigation in the admin (Martin Coote) * Ensure errors during Postgres search indexing are left uncaught to assist troubleshooting (Karl Hobley) * Add ability to edit images and embeds in rich text editor (Maylon Pedroso, Samuel Mendes, Gabriel Peracio) * Fix: Support IPv6 domain (Alex Gleason, Coen van der Kamp) * Fix: Ensure link to add a new user works when no users are visible in the users list (LB (Ben Johnston)) * Fix: `AbstractEmailForm` saved submission fields are now aligned with the email content fields, `form.cleaned_data` will be used instead of `form.fields` (Haydn Greatnews) * Fix: Removed ARIA `role="table"` from TableBlock output (Thibaud Colas) * Fix: Set Cache-Control header to prevent page preview responses from being cached (Tomas Walch) * Fix: Accept unicode characters in slugs on the "copy page" form (François Poulain) * Fix: Remove top padding when `FieldRowPanel` is used inside a `MultiFieldPanel` (Jérôme Lebleu) * Fix: Add Wagtail User Bar back to page previews and ensure moderation actions are available (Coen van der Kamp) * Fix: Resolve issue where queryset annotations were lost (e.g. `.annotate_score()`) when using specific models in page query (Dan Bentley) * Fix: Prevent date/time picker from losing an hour on losing focus when 12-hour times are in use (Jacob Topp-Mugglestone) * Fix: Strip out HTML tags from `RichTextField` & `RichTextBlock` search index content (Timothy Bautista) * Fix: Avoid using null on string `Site.site_name` blank values to avoid different values for no name (Coen van der Kamp) * Fix: Fix deprecation warnings on Elasticsearch 7 (Yngve Høiseth) * Fix: Remove use of Node.forEach for IE 11 compatibility in admin menu items (Thibaud Colas) * Fix: Fix incorrect method name in SiteMiddleware deprecation warning (LB (Ben Johnston)) * Fix: `wagtail.contrib.sitemaps` no longer depends on SiteMiddleware (Matt Westcott) * Fix: Purge image renditions cache when renditions are deleted (Pascal Widdershoven, Matt Westcott) * Fix: Image / document forms now display non-field errors such as `unique_together` constraints (Matt Westcott) * Fix: Make "Site" chooser in site settings translateable (Andreas Bernacca) * Fix: Add missing dropdown icons to image upload, document upload, and site settings screens (Andreas Bernacca) * Fix: Prevent snippets’ bulk delete button from being present for screen reader users when it’s absent for sighted users (LB (Ben Johnston)) * Fix: Fix group permission checkboxes not being clickable in IE11 (LB (Ben Johnston))
2020-08-18mjpegtools: add missing REPLACE_BASH. Bump.tnn1-1/+4
2020-08-18Always install man pages. Bump revision.joerg4-4/+41
2020-08-18tiff: explicitly pass --disable-webp. Bump rev.tnn1-1/+3
We don't want it to randomly pick up system libwebp on Linux. If there is a use case for webp compression here it should use the pkgsrc library. Reported-by: "Dr. Thomas Orgis" <thomas.orgis@uni-hamburg.de>
2020-08-18unicorn: skip portability check for install-cmocka-linux.shtnn1-1/+3
2020-08-18libgphoto2: shell portabilitytnn2-1/+24
2020-08-17doc: Updated net/stagit-gopher to 0.9.4leot1-1/+2
2020-08-17stagit-gopher: Update to 0.9.4leot2-8/+7
Changes: 0.9.4 ----- - Fix for showing the entry on the files page of submodules for bare repositories, thanks kst! - There is now a separate Atom feed for tags called "tags.xml". This should make it easier to track only software releases if using an RSS/Atom reader. - The ordering of tags are now by commit date (descending). So it will now sort by most recent first. The previous behaviour was to sort alphabetically by tag name, but many projects use numeric versions which don't sort in a useful/clear order. - For OpenBSD: remove unveil(2) for stagit-index, because unveil(2) has an argument limit. Now more than ~128 repositories for the index are supported. Per repository stagit will still use unveil(2).
2020-08-17doc: Updated www/stagit to 0.9.4fcambus1-1/+2
2020-08-17stagit: update to 0.9.4.fcambus2-8/+7
ChangeLog: - fix a small memleak in writeatom() - stagit-index: remove unveil support for argv - fix submodule lookup in bare repos - regression: do not show unset or empty tags - refactor get reference, add another feed for tags/releases - sort branches and tags by time (descending)
2020-08-17security/py-u2f: Mark test dependencies formally as such.riastradh1-5/+4
2020-08-17security/py-u2f: Add NetBSD support.riastradh5-3/+146
2020-08-17xentools411: fix build with SSPwiz1-1/+3
The stacksize limit causes a warning, which -Werror transforms to a build failure. Remove it. This package has more problems: During installation, I see: env: python: No such file or directory and it's not RELRO safe (LDFLAGS are ignored for lib/debug/usr/pkg/libexec/xen/boot/xen-shim-syms lib/libfsimage.so.1.0.0 libexec/xen/boot/xen-shim ).
2020-08-17*: revbump after fontconfig bl3 changes (libuuid removal)leot874-1565/+1748
2020-08-17libvirt: skip portability check on HTML filewiz1-1/+3
2020-08-17*: revbump after fontconfig bl3 changes (libuuid removal)leot1329-2350/+2658
2020-08-17tokyotyrant: fix unportable test(1) operator.wiz2-4/+24
2020-08-17doc: Updated textproc/split-thai to 0.4scole1-1/+2
2020-08-17Update to 0.4scole6-18/+78
- always use pkgsrc path for swath for st-swath script - make splitting of numbers a little more consistent for st-emacs & st-icu - add split-thai, split-thai-line, wrapper functions to emacs lisp code
2020-08-17fontconfig: remove libuuid bl3 inclusion in buildlink3.mkleot1-2/+1
libuuid is marked as a private dependency and it is an implementation detail. On some platforms (e.g. NetBSD) by including libuuid bl3 fonts/fontconfig was unconditionally installed due that. Problem originally analyzed by <wiz> in: <https://mail-index.NetBSD.org/tech-pkg/2019/06/19/msg021438.html> And change proposed on tech-pkg@: <https://mail-index.NetBSD.org/tech-pkg/2020/07/13/msg023550.html> Thanks to <wiz> also for reviews, suggestions and discussions!
2020-08-17TODO: remove link to outdated-perl-packages-listwiz1-2/+1
You can create such a list by installing pkgtools/pkg_p5up2date and running cd /usr/pkgsrc && pkg_p5up2date --cpan-home $HOME/.cpan --output-fmt \ html --no-scan-installed --update-cpan-index --output-file \ $HOME/perl.html and some post-processing (script available on request).
2020-08-17doc: Updated multimedia/hwdecode-demos to 0.9.6p1tnn1-1/+2
2020-08-17TODO: -autogentnn1-2/+1
2020-08-17hwdecode-demos: change HOMEPAGE & MASTER_SITE to author's githubtnn4-12/+33
Update to latest snapshot which is still 6 years old. Changes unknown.
2020-08-17xnibbles: Handle OSS_TYPE=none correctly.jperkin1-2/+2
2020-08-17xwave: Handle OSS_TYPE=none correctly.jperkin1-2/+2
2020-08-17doc: Updated devel/autogen to 5.18.16tnn1-1/+2
2020-08-17autogen: update to 5.18.16tnn8-28/+82
There's no entry in the NEWS file apart from mentioning that autotools have been refreshed and that it works with guile 2.2.x which is coincidentally the reason for updating this package. lang/guile20 just kept segfaulting during install for me.
2020-08-17guile22: fix rpath syntax issue in the pkg-config file. Bump.tnn4-3/+37
2020-08-17Import yubikey-manager-3.1.1 as security/py-yubikey-managerriastradh10-0/+238
Yubico's Python library and command-line tool for managing Yubikeys. Meta-package security/ykman gives a more obvious name, without any Python package prefixing, for the ykman command-line tool package.
2020-08-17Import Yubico python-fido2-0.8.1 as security/py-fido2riastradh7-1/+258
Python library for FIDO2 authenticator token access.
2020-08-17Import pyscard-1.9.9 as devel/py-scardriastradh5-1/+220
Python library for smartcard I/O.
2020-08-17devel/py-usb: Update to 1.0.2riastradh3-12/+13
Needed for something in the yubikey-manager stack but I forgot what already and I can't find any obvious release notes, sorry!
2020-08-17security/tor-browser: Add U2F support to NetBSD.riastradh8-1/+493
The webauthn API is disabled by default in the Tor Browser: https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/26614 In order to use it, risking the consequences since the Tor Project has not audited its anonymity properties, you have to explicitly enable security.webauthn.webauthn=true in about:config. So if you definitely want to log into a web site using U2F in spite of that, with location privacy but not anonymity, then these patches now enable it to work on NetBSD (with the caveat that enabling security.webauthn.webauthn=true applies also to any web site that tries to use the webauthn API, not just the ones you want to log into).
2020-08-17security/tor-browser: Make dbus an option.riastradh2-5/+11
2020-08-17doc/TODO: - apache 2.4.46, donewiz1-2/+1
2020-08-17doc/TODO: add somewiz1-2/+15
+ ImageMagick-7.0.10.27, hiredis-1.0.0, ilmbase-2.5.3, khal-0.10.2, khard-0.17.0, openexr-2.5.3, poppler-20.08.0, protobuf-3.13.0, py-google-api-core-1.22.1, py-parso-0.8.0, py-setuptools-49.6.0 [drops python-2.x support], py-test-cov-2.10.1, thunderbird-enigmail-2.1.7.1, tor-browser-https-everywhere-2020.8.13.
2020-08-17sorttnn1-2/+2
2020-08-17libsndfile: python as tool to appease configure ...tnn1-1/+3
2020-08-17libsndfile: needs to buildlink libopus due to visible in .pc filetnn1-1/+2
XXX recursive revbump should be performed once the dust settles
2020-08-17imlib2: fix big-endian buildsgutteridge2-1/+19
2020-08-17doc: Updated pkgtools/lintpkgsrc to 4.95tnn1-1/+2
2020-08-17lintpkgsrc: update to 4.95tnn2-8/+17
Use xargs when executing digest for -m. PR pkg/48335: error when using -m and too many files in DISTDIR
2020-08-16aqsis: BROKEN message should be in quotes to avoid linebreakstnn1-2/+2
2020-08-16go-genproto: BROKEN message should be in quotes to avoid linebreakstnn1-2/+2
2020-08-16tensa-lx106-elf-gcc: skip portability checks in contribtnn1-1/+3
2020-08-16revert previous because the master site produces mutable output fortnn2-8/+6
all pear packages
2020-08-16Fix package name.joerg2-7/+7
2020-08-16Fix package name to match directory.joerg2-7/+7
2020-08-16pear-Net_URL: regen distinfotnn2-6/+8
tgz changed on master site. No difference in extracted contents.