summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2021-08-30libgcrypt: update to 1.9.4.wiz3-34/+7
Noteworthy changes in version 1.9.4 (2021-08-22) [C23/A3/R4] ------------------------------------------------ * Bug fixes: - Fix Elgamal encryption for other implementations. [#5328,CVE-2021-33560] - Fix alignment problem on macOS. [#5440] - Check the input length of the point in ECDH. [#5423] - Fix an abort in gcry_pk_get_param for "Curve25519". [#5490] * Other features: - Add GCM and CCM to OID mapping table for AES. [a83fb13a3b]
2021-08-30doc: Updated net/filezilla to 3.55.1wiz2-3/+3
2021-08-30doc: Updated textproc/ruby-haml to 5.2.2taca1-1/+2
2021-08-30filezilla: update to 3.55.1.wiz3-41/+8
3.55.1 (2012-08-09) - Fixed a crash if a tree view items are deleted at the same time as something is being dragged over the tree view - Updated to libfilezilla 0.31.1 to fix an issue with SIGPIPE on *nix
2021-08-30textproc/ruby-haml: update to 5.2.2taca3-9/+9
5.2.2 (2021-07-27) Look Under Your Seats, It's an All Expense Paid Annotation! Howdy Haml-faml, The 5.x.x line of Haml keeps chugging along, and we will likely keep this codebase going for those who want this full-fat version of Haml and addressing little issues here and there. In this version, the wonderful @jdelStrother brought in a new feature for adding annotations to your output during development showing which template the html came from. <div class='navbar-light navbar-collapse collapse wi-100 d-md-none' id='navbar-collapse'> <div class='navbar-nav phm mbm' role='menu'> <!-- BEGIN app/views/page_header/_user_profile_links.html.haml --> <a class="nav-link" href="/profile">Profile</a> <a class="nav-link" href="/account/edit">Settings</a> <div class='dropdown-divider'></div> <a class="nav-link" href="/logout">Log out</a> <!-- END app/views/page_header/_user_profile_links.html.haml --> </div> </div> This was added in Rails 6.1 for ERB files, and now all you wonderful Haml-ers out there get the same useful feature. As for the future of Haml, we are likely going to be moving over the main branch and 6.x.x development to be based off of @k0kubun's awesome Hamlit implementation. It does lack some of the features that 5.x has, but it comes with almost 2x speed improvement and honestly, even the way I (Hampton) use Haml – is well covered by Hamlit. You really have to be doing some weird stuff for it to be an issue. So, we'll likely be releasing an alpha of that 6.x-based-on-Hamlit code soon.
2021-08-30doc: Updated audio/musicpd to 0.22.11wiz2-3/+3
2021-08-30musicpd: update to 0.22.11.wiz2-7/+7
ver 0.22.11 (2021/08/24) * protocol - fix "albumart" crash * filter - ffmpeg: pass "channel_layout" instead of "channels" to buffersrc - ffmpeg: fix "av_buffersink_get_frame() failed: Resource temporarily unavailable" - ffmpeg: support double-precision samples (by converting to single precision) * Android - build with NDK r23 - playlist_directory defaults to "/sdcard/Android/data/org.musicpd/files/playlists"
2021-08-30doc: Updated net/libfilezilla to 0.31.1wiz2-3/+3
2021-08-30libfilezilla: update to 0.31.1.wiz2-7/+7
0.31.1 (2021-08-09) + Added iterator for JSON arrays - *nix: SIGPIPE is now set to SIG_IGN the first time a pipe or socket gets created - Handle empty search string in replace_subscripts
2021-08-30doc: Updated textproc/ruby-will-paginate to 3.3.1taca1-1/+2
2021-08-30textproc/ruby-will-paginate: update to 3.3.1taca3-14/+8
3.3.1 (2021-08-12) * Accessibility fix: add the aria-disabled attribute to the pagination element marked with CSS classname "disabled".
2021-08-30doc: Updated www/ruby-css-parser to 1.10.0taca1-1/+2
2021-08-30www/ruby-css-parser: update to 1.10.0taca2-7/+7
1.10.0 (2021-07-27) * Allow CSS functions to be used in CssParser::RuleSet#expand_dimensions_shorthand! #126
2021-08-30Updated multimedia/mkvtoolnix, devel/py-macholibadam1-1/+3
2021-08-30doc: Updated graphics/p5-PerlMagick to 7.1.0.5wiz1-1/+2
2021-08-30p5-PerlMagick: update to 7.1.0.5.wiz1-2/+1
Match ImageMagick update.
2021-08-30doc: Updated graphics/ImageMagick to 7.1.0.5wiz2-3/+3
2021-08-30doc: Updated www/ruby-rails-html-sanitizer to 1.4.2taca1-1/+2
2021-08-30ImageMagick: update to 7.1.0.5.wiz3-9/+8
2021-08-21 7.1.0-5 <quetzlzacatenango@image...> * Release ImageMagick version 7.1.0-5 GIT revision 18995:8f77c3c9c:20210821 2021-08-12 7.1.0-5 Dirk Lemstra <dirk@lem.....org> * Added option (-dng:read-thumbnail=true) to read the thumbnail of a raw image and store it as a profile called dng:thumbnail. 2021-07-26 7.1.0-5 <quetzlzacatenango@image...> * heap-based buffer overflow in TIFF coder (alert from Hunter Mitchell). * grayscale image write optimization.
2021-08-30py-macholib: updated to 1.15.1adam2-7/+7
macholib 1.15.1 * Remove a debug print introduced in the previous release.
2021-08-30www/ruby-rails-html-sanitizer: udpate to 1.4.2taca2-8/+10
1.4.0 (2021-08-18) * Processing Instructions are no longer allowed by Rails::Html::PermitScrubber Previously, a PI with a name (or "target") matching an allowed tag name was not scrubbed. There are no known security issues associated with these PIs, but similar to comments it's preferred to omit these nodes when possible from sanitized output. Fixes #115. Mike Dalessio 1.4.1 (2021-08-18) * Fix regression in v1.4.0 that did not pass comment nodes to the scrubber. Some scrubbers will want to override the default behavior and allow comments, but v1.4.0 only passed through elements to the scrubber's keep_node? method. This change once again allows the scrubber to make the decision on comment nodes, but still skips other non-elements like processing instructions (see #115). Mike Dalessio 1.4.2 (2021-08-23) * Slightly improve performance. Assuming elements are more common than comments, make one less method call per node.
2021-08-30mkvtoolnix: updated to 61.0.0adam2-7/+7
Version 61.0.0 "So" 2021-08-30 New features and enhancements * all: IETF BCP 47/RFC 5646 language tags: implemented support for officially registered IANA language tag extensions. * mkvmerge: track selection: when using language tags for selecting which tracks to keep, mkvmerge will now use component-based language tag matching instead of comparing them verbatim. This means that only those components (language, region etc.) the user specified will be required to exist and be equal. For example, if a file contains three subtitle tracks with languages `es` (generic Spanish), `es-MX` (Spanish as spoken in Mexico) and `es-ES` (Spanish as spoken in Spain), the user can use `--stracks es` to match all three tracks or be more specific with e.g. `--stracks es-MX` which would only match one track. Similarly inverting the selection with e.g. `--stracks !es` would get rid of all three tracks, not just the one for the generic Spanish. * MKVToolNix GUI: multiplexer: deriving track languages from file names: the GUI can now detect full BCP 47/RFC 5646 language tags in file names. * MKVToolNix GUI: multiplexer: deriving track languages from file names: the default list of boundary characters now includes `-`. * MKVToolNix GUI: multiplexer: the GUI now defaults to the "lower" process priority setting for new installations in order to leave more room for other applications, especially interactive ones. Up to and including v59 the default was the "normal" process priority. v60 changed that to "lowest", which turned out to be much slower on Windows for no real gain over "lower". The setting will be auto-corrected by the GUI if the settings file were saved last with a version between v60.0.0.0 & v60.0.0.17 & "lowest" & it is still set to "lowest". * HEVC dumper development tool: the tool has been renamed to `xvc_dump` and extended to be able to dump AVC/H.264 bitstreams, too. It now also detects the type of bitstream framing (ISO 14496-15 vs. ITU-T H.264/H.265 Annex B). Bug fixes * all: IETF BCP 47/RFC 5646 language tags: fixed a corner case of wrongfully allowing scripts/variants not listed in any of the entries in the prefix list when the prefix list contains prefixes restricting scripts/variants and a prefix solely with the language at the same time (example: the variant `ekavsk` with its prefixes `sr`, `sr-Cyrl` and `sr-Latn` where e.g. `sr-ekavsk` and `sr-Cyrl-ekavsk` should be allowed but not `sr-Bali-ekavsk`). * mkvmerge: HEVC/H.265: the frame type of B frames was often wrongfully signalled as P frames instead, both with `BlockGroup` (missing second references) and `SimpleBlock` ("discardable" flag not set) elements. * mkvmerge: SSA/ASS packetizer: the frame numbers will now be re-calculated when appending SSA/ASS tracks so that frame numbers of appended tracks are always strictly higher than frame numbers of the track they're appended to. * mkvmerge, MKVToolNix GUI's chapter editor: BCP 47/RFC 5646 language tags: when BCP 47 language tags are used with a language code that isn't part of ISO 639-2, the programs will now write a legacy language element set to `und` ("undetermined") instead of not writing such an element at all or writing one with an invalid code. * mkvmerge, MKVToolNix GUI's chapter editor: BCP 47/RFC 5646 language tags: the programs will ensure that the legacy and IETF language elements written will be unique within the scope of the same "chapter display" element. * mkvinfo, MKVToolNix GUI's info tool: in summary mode the frame type was reported wrong for `BlockGroup` elements in which the `ReferenceBlock` elements were located behind the `Block` element. Build system changes * all: `std::codecvt_utf8` is now used instead of Boost's `utf8_codecvt_facet`. The bundled copy the latter in `lib/boost` has therefore been removed.
2021-08-30doc: Updated www/ruby-faraday to 1.7.1taca1-1/+2
2021-08-30www/ruby-faraday: update to 1.7.1taca3-12/+13
1.4.3 (2021-06-24) Fixes * Silence warning (#1286, @gurgeous) * Always dup url_prefix in Connection#build_exclusive_url (#1288, @alexeyds) 1.5.0 (2021-07-04) Misc * Use external httpclient adapter (#1289, @iMacTia) * Use external patron adapter (#1290, @iMacTia) 1.5.1 (2021-07-11) Fixes * Fix JRuby incompatibility after moving out EM adapters (#1294, @ahorek) Documentation * Update YARD to follow RackBuilder (#1292, @kachick) 1.6.0 (2021-08-01) Misc * Use external Rack adapter (#1296, @iMacTia) 1.7.0 (2021-08-09) Features * Add strict_mode to Test::Stubs (#1298, @yykamei) 1.7.1 (2021-08-30) Fixes * Respect the params_encoder in Faraday::Adapter::Test (#1316, @yykamei) Deprecations * Deprecate Authorization helpers in Faraday::Connection (#1306, @iMacTia)
2021-08-30doc: Updated www/ruby-faraday-net_http_persistent to 1.2.0taca1-1/+2
2021-08-30www/ruby-faraday-net_http_persistent: update to 1.2.0taca2-7/+7
1.2.0 (2021-07-12) Features * Adding support for streamed responses (#6, @MikeRogers0) Documentation * README: Fix a broken link (#4, @olleolleolle) * README: Fix a Markdown link (f7408a8, @olleolleolle)
2021-08-30doc: Added www/ruby-faraday-rack version 1.0.0taca1-1/+2
2021-08-30www/Makefile: add and enable ruby-faraday-racktaca1-1/+2
2021-08-30www/ruby-faraday-rack: add package version 1.0.0taca4-0/+35
Faraday Rack adapter This gem is a Faraday adapter for a Rack app. Faraday is an HTTP client library that provides a common interface over many adapters. Every adapter is defined into its own gem. This gem defines the adapter for a Rack app.
2021-08-30doc: Added www/ruby-faraday-patron version 1.0.0taca1-1/+3
2021-08-30www/Makefile: add and enable ruby-faraday-patrontaca1-1/+2
2021-08-30ruby-faraday-patron: add package version 1.0.0taca4-0/+35
Faraday Patron adapter This gem is a Faraday adapter for the Patron library. Faraday is an HTTP client library that provides a common interface over many adapters. Every adapter is defined into its own gem. This gem defines the adapter for Patron.
2021-08-30www/Makefile: add and enable ruby-faraday-httpclienttaca1-1/+2
2021-08-30www/ruby-faraday-httpclient: add package version 1.0.1taca4-0/+35
Faraday HTTPClient adapter This gem is a Faraday adapter for the HTTPClient library. Faraday is an HTTP client library that provides a common interface over many adapters. Every adapter is defined into its own gem. This gem defines the adapter for HTTPClient.
2021-08-30doc: Added www/ruby-faraday-em_synchrony version 1.0.0taca1-1/+2
2021-08-30www/Makefile: add and enable ruby-faraday-em_synchronytaca1-1/+2
2021-08-30www/ruby-faraday-em_synchrony: add package version 1.0.0taca4-0/+36
Faraday Em::Synchrony adapter This gem is a Faraday adapter for the Em::Synchrony library. Faraday is an HTTP client library that provides a common interface over many adapters. Every adapter is defined into its own gem. This gem defines the adapter for Em::Synchrony.
2021-08-30doc: Added www/ruby-faraday-em_http version 1.0.0taca1-1/+2
2021-08-30www/Makefile: add and enable ruby-faraday-em_httptaca1-1/+2
2021-08-30www/ruby-faraday-em_http: add package version 1.0.0taca4-0/+36
Faraday Em::Http adapter This gem is a Faraday adapter for the Em::Http::Request library. Faraday is an HTTP client library that provides a common interface over many adapters. Every adapter is defined into its own gem. This gem defines the adapter for Em::Http::Request.
2021-08-30doc: Added www/ruby-aws-sdk-secretsmanager version 1.48.0taca1-1/+2
2021-08-30www/Makefile: add and enable ruby-aws-sdk-secretsmanagertaca1-1/+2
2021-08-30www/ruby-aws-sdk-secretsmanager: add package version 1.48.0taca4-0/+38
Official AWS Ruby gem for AWS Secrets Manager. This gem is part of the AWS SDK for Ruby.
2021-08-30doc: Added www/ruby-aws-sdk-core version 3.119.1taca1-1/+2
2021-08-30www/Makefile: add and enable ruby-aws-sdk-coretaca1-1/+2
2021-08-30www/ruby-aws-sdk-core: add package version 3.119.1taca4-0/+231
Provides API clients for AWS. This gem is part of the official AWS SDK for Ruby.
2021-08-30doc: Added www/ruby-aws-sigv4 version 1.2.4taca1-1/+2
2021-08-30www/Makefile: add and enable ruby-aws-sigv4taca1-1/+2
2021-08-30www/ruby-aws-sigv4: add package version 1.2.4taca4-0/+36
Amazon Web Services Signature Version 4 signing library. Generates sigv4 signature for HTTP requests.
2021-08-30doc: Added www/ruby-aws-partitions version 1.492.0taca1-1/+2