summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2021-03-09Updated www/p5-HTML-Parser to 3.76wen1-1/+2
2021-03-09Update to 3.76wen2-7/+7
Upstream changes: 3.76 2021-03-04 * Add a fix for a stack confusion error on `eof`. (GH#21) (Matthew Horsfall and Chase Whitener)
2021-03-08doc: Updated meta-pkgs/bulk-medium to 20210309wiz1-1/+2
2021-03-08bulk-medium: switch from removed re-alpine to alpinewiz1-3/+3
bump version
2021-03-08Updated www/p5-HTTP-Cookies to 6.10wen1-1/+2
2021-03-08Update to 6.10wen2-8/+7
Upstream changes: 6.10 2021-01-04 22:03:43Z - Do not set discard if max-age is set (GH#61) (robnagler, simbabque) - Add tests for #61 - do not set discard if max-age is set (GH#65) (Julien Fiegehenn) 6.09 2020-11-19 22:20:47Z - Allow HttpOnly cookies to be loaded by HTTP::Cookies::Netscape (GH#63) (Charlie Hothersall-Thomas)
2021-03-08Updated www/p5-HTTP-Message to 6.29wen1-1/+2
2021-03-08Update to 6.29wen2-7/+7
Upstream changes: 6.29 2021-03-06 04:50:34Z - fix issue with HTTP::Request internal cache for canonical url when using URI::URL (GH#146) (andrew-grechkin) 6.28 2021-02-19 16:22:13Z - fix warnings during HTTP::Config->match #62 (GH#152) (Viťas Strádal) 6.27 2021-01-05 03:02:01Z - Clean up backcompat code (GH#148) (Dan Book) - Add "308 Permanent Redirect" to is_cacheable_by_default (GH#150) (simbabque)
2021-03-08doc: Updated net/rclone to 1.54.1leot1-1/+2
2021-03-08rclone: Update to 1.54.1leot3-8/+8
Changes: 1.54.1 ------ * Bug Fixes * accounting: Fix --bwlimit when up or down is off (Nick Craig-Wood) * docs * Fix nesting of brackets and backticks in ftp docs (edwardxml) * Fix broken link in sftp page (edwardxml) * Fix typo in crypt.md (Romeo Kienzler) * Changelog: Correct link to digitalis.io (Alex JOST) * Replace #file-caching with #vfs-file-caching (Miron Veryanskiy) * Convert bogus example link to code (edwardxml) * Remove dead link from rc.md (edwardxml) * rc: Sync,copy,move: document createEmptySrcDirs parameter (Nick Craig-Wood) * lsjson: Fix unterminated JSON in the presence of errors (Nick Craig-Wood) * Mount * Fix mount dropping on macOS by setting --daemon-timeout 10m (Nick Craig-Wood) * VFS * Document simultaneous usage with the same cache shouldn't be used (Nick Craig-Wood) * B2 * Automatically raise upload cutoff to avoid spurious error (Nick Craig-Wood) * Fix failed to create file system with application key limited to a prefix (Nick Craig-Wood) * Drive * Refer to Shared Drives instead of Team Drives (Nick Craig-Wood) * Dropbox * Add scopes to oauth request and optionally "members.read" (Nick Craig-Wood) * S3 * Fix failed to create file system with folder level permissions policy (Nick Craig-Wood) * Fix Wasabi HEAD requests returning stale data by using only 1 transport (Nick Craig-Wood) * Fix shared_credentials_file auth (Dmitry Chepurovskiy) * Add --s3-no-head to reducing costs docs (Nick Craig-Wood) * Union * Fix mkdir at root with remote:/ (Nick Craig-Wood) * Zoho * Fix custom client id's (buengese)
2021-03-08doc: Updated editors/featherpad to 0.18.0pin1-1/+2
2021-03-08editors/featherpad: update to 0.18.0pin3-8/+9
-Fixed an old but rare problem in highlighting of multiline comments. -Added Pascal syntax highlighting. -Added Java syntax highlighting. -Better highlighting of numeric literals in some programming languages. -Taken into account some general variables of Perl when highlighting its syntax. -Taken into account the possibility of using unpaired or different paired delimiters for the second part of Perl's replacement operators. -Fixes and improvements to Ruby syntax highlighting. -Prevent Qt from giving any non-plain text to the selection clipboard. -Made PageUp/PageDown select the first/last item of the search history when the search line-edit is focused. -Fixed the lack of Perl-style comments in PHP syntax highlighting. -If needed, save cursor positions when the app is terminated by SIGTERM. -Prevent the spell checker from changing an uneditable document. -Added an icon to the tabs/view-items of files that have targets but aren't symlinks (e.g., their parent directories are symlinks). Also, (1) when a final target exists, two items are added to the tab/view-item context menu for copying its path and opening it, and (2) if a file and some of its targets are opened, only the first one is editable by default. -Added JSON syntax highlighting. -Added "math" and "equation" to LaTex syntax highlighting.
2021-03-08doc: Updated chat/py-hangups to 0.4.13leot1-1/+2
2021-03-08py-hangups: Update to 0.4.13leot3-15/+15
Changes: 0.4.13 ------ - add --keep-emoticons - drop support for Python 3.5 - add support for Python 3.9 - show message when image is not found - return ConversationEvent from Conversation methods - add new Conversation methods - add group link sharing support to Conversation - add canonical_email to user.User
2021-03-08doc: Updated misc/ocaml-topkg to 1.0.3jaapb1-1/+2
2021-03-08Updated misc/ocaml-topkg to version 1.0.3.jaapb3-11/+9
This adds support for OCaml 4.12. Otherwise changes are minor.
2021-03-08doc: Updated devel/ocaml-extlib to 1.7.8jaapb1-1/+2
2021-03-08Updated devel/ocaml-extlib to version 1.7.8.jaapb4-12/+12
Changes include: * sync with OCaml 4.12 * breaking change: ExtList.find_map type updated to match stdlib (following deprecation in previous release) * breaking change: minimal (recommended) build of extlib now excludes Base64 module * String: fold_left and fold_right without allocations
2021-03-08Updated graphics/py-tifffile, www/py-flask-cachingadam1-1/+3
2021-03-08py-flask-caching: updated to 1.10.0adam3-8/+14
Version 1.10.0 -------------- - **Important**: The way caching backends are loaded have been refactored. Instead of passing the name of the initialization function one can now use the full path to the caching backend class. For example: ``CACHE_TYPE="flask_caching.backends.SimpleCache"``. In the next major release (2.0), this will be the only supported way. - UWSGICache is not officially supported anymore and moved to the user contributed backends. - Switch from Travis-CI to GitHub Actions - Fix add() in RedisCache without a timeout. - Fix error in how the FileSystemCache counts the number of files. - Type Annotations have been added. - Add some basic logging to SimpleCache and FileSystemCache for better observability. - Add option in memoize to ignore args - Stop marking wheels as Python 2 compatible. - Fix ``default_timeout`` not being properly passed to its super constructor. - Fix ``kwargs`` not being passed on in function ``_memoize_make_cache_key``. - Add a Redis Cluster Mode caching backend. - Do not let PIP install this package on unsupported Python Versions. - Fix uWSGI initialization by checking if uWSGI has the 'cache2' option enabled. - Documentation updates and fixes.
2021-03-08py-tifffile: updated to 2021.3.5adam2-8/+8
2021.3.5 Pass 4390 tests. Preliminary support for EER format. Do not warn about unknown compression
2021-03-08genreadme: Reorganize information for clarity.nia6-44/+71
Move the navigation to the top and reword it slightly. This makes it more immediately visible. I'm not sure if this justifies a "Skip to content" button yet. Give the binary package table headers.
2021-03-08doc: Updated pkgtools/pkg_install to 20210308nia1-1/+2
2021-03-08pkg_install-20210308nia3-20/+21
- update pkg_add's examples in its man page for 2021 compliance.
2021-03-08doc: Updated devel/xsd to 4.0.0nia2-3/+3
2021-03-08xsd: Update to 4.0.0. Builds again.nia34-901/+519
Borrowed patches from FreeBSD to rename the executable to avoid a conflict wiht lang/mono.
2021-03-08owncloudclient: Create directory for configuration filesnia1-1/+3
2021-03-08doc: Updated net/owncloudclient to 2.7.6.3261nia1-1/+2
2021-03-08owncloudclient: Update to 2.7.6.3261. Builds again.nia4-100/+50
2021-03-08Removed net/bittornado[-gui]adam1-1/+3
2021-03-08bittornado[-gui]: removedadam10-269/+1
2021-03-08doc: Updated security/gnu-pw-mgr to 2.7.4ryoon2-3/+3
2021-03-08gnu-pw-mgr: Update to 2.7.4ryoon2-8/+9
* Use pkgsrc libtool. * Use MASTER_SITE_GNU as MASTER_SITES. Changelog: New in 2.7.4 - September 2020 New in 2.4 - August, 2018 disable the --use-pbkdf2 option and implement --rehash as replacement * the default "rehash" count is printed with --status output * security question answers can now be stable across password changes. Two answers are now printed: the deprecated version that changes with the rehash count, and the new version that is stable. New in 2.2 - June, 2018 * Chase Bank has added the password restriction that no three characters may be in sequence. So look for that and fix it, if need be. * Let people know when they last modified a password. Mark the day when the pbkdf2 count is modified. * The confirmation value printed out is a hash based on the confirmation string and the current password. So, if the password changes, then so does the confirmation string. Not ideal. This change restricts the hashing source to just the password id and the confirmation string. * Users may now specify a config file other than the default. New in 2.0 - May, 2016 * A new option --shared to implement sharing passwords. This allows shared logins with secure passwords and still keeps all the other passwords very secret. See the docs for the rationale and usage.
2021-03-08security: remove guardtime, libguardtimenia1-3/+1
2021-03-08doc: removed guardtimenia1-1/+3
2021-03-08Remove guardtime, libguardtime.nia10-149/+0
Fails to build and the upstream service seems to have transformed into some "enterprise blockchain" thingy.
2021-03-08doc: Updated sysutils/macchina to 0.5.1pin1-1/+2
2021-03-08sysutils/macchina: update to 0.5.1pin2-7/+7
Tweaks and changes: -Small under the hood tweaks -Update documentation -Changes to default and alt theme -Capitalize first letter of shell (shorthand:ON)
2021-03-08doc: Removed re-alpinenia1-1/+2
2021-03-08re-alpine: remove, unlikely to support openssl 1.1 any time soonnia10-513/+1
upstream is pretty dead while development of mail/alpine continues.
2021-03-08doc: Updated lang/mono-basic to 4.7nia1-1/+2
2021-03-08mono-basic: Update to 4.7.nia2-9/+7
Builds again.
2021-03-08doc: Updated games/woof to 4.0.0micha1-1/+2
2021-03-08games/woof: Update to 4.0.0micha2-7/+7
Woof! 4.0.0 ----------- - The -fast and -respawn options are now properly reloaded from savegames. - PNG screenshots are now exact reproductions# of the actual game# screen. - Framebuffer overflows are now prevented in V_DrawPatchGeneral() and V_CopyRect(). - The bmp2c.c tool now builds with MSVC build (@rfomin). - A workaround for the SDL 2.0.14 Alt-Tab bug on Windows has been introduced (@rfomin). - A woof-midiproc.exe has been ported over from Crispy Doom, allowing to set SFX and music volume separately on Windows (@rfomin). - The SPECHITS overflow emulation has been ported over from Chocolate Doom / PrBoom+, allowing for some more obscure Vanilla demos to keep sync. - The "IDKFA" cheat string has been externalized, allowing it to be replaced by DEHACKED. - The widescreen rendering mode has been ported over from Crispy Doom with proper support for the widescreen assets found e.g. in the Unity version of Doom (@rfomin). - MIDI playback on big-endian systems has been fixed (@BeWorld2018). - The "HI_START"/"HI_END" namespace has been introduced to avoid conflicts with high-resolution textures (@rfomin). - The option to show the "A secret is revealed!" message has been added (@rfomin). - The window geometry and display index settings are now saved across restarts (@rfomin). - The -pistolstart command line option has been added (@rfomin). - Support for 16-bit WAV sound lumps has been added (@rfomin). - Support for the "MUSINFO" lump has been added (@rfomin). - Demo compatibility with Boom 2.02 has been vastly improved: - MBF codepointers are now disabled during Boom demo playback (@rfomin). - The P_FindShortestTextureAround() function has been fixed (@rfomin). - Boom's friction code has been restored (@rfomin). - Boom's BLOCKMAP generation code has been integrated (@rfomin). - Sprite lumps smaller than 8 bytes are now ignored (@rfomin). - Empty music lumps (i.e. with zero length) are now properly handled (@rfomin). - The weapon attack alignment implementation has been brought in line with Crispy Doom. - The "no fog on spawn west" Vanilla Doom bug is now properly emulated (@rfomin). - Switches definitions referencing unknown texture names are now ignored instead of exiting (@rfomin). - A crash has been fixed when reading out joystick button states. - Endianess issues with positioning the status bar patch, drawing the bunny scroll screen and fullscreen patches have been fixed. Unfortunately, some of these changes made it necessary to change the savegame format which is now incompatible to previous releases.
2021-03-08textproc/ripgrep: fix build failpin1-1/+5
2021-03-08doc: Updated devel/tig to 2.5.3fcambus1-1/+2
2021-03-08tig: update to 2.5.3.fcambus3-11/+11
tig-2.5.3 --------- Bug fixes: - Fix autoconf checking for readline. (#1072) - Fix segfault when saving a view with no column. - Reset view->parent when main view is promoted. - Fix segfault when pressing Enter in a child main view. - Restore lazy navigation. - Format time_t values portably and fix other values too. (#1084, #1085) - Fix loop when wrapping line with ISO-8859-1 character. (#1087, #1088)
2021-03-08re-assign maintnikita1-5/+17
2021-03-08Updated devel/p5-Test-Inline to 2.214wen1-1/+2
2021-03-08Recursive revbump associated with update of lang/ocamljaapb214-299/+428