Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (1h)  pkgsrc-2024Q1 (15d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (75d)  pkgsrc-2023Q3 (154d) 

2024-05-13 13:19:59 UTC Now

2021-04-19 17:08:47 UTC MAIN commitmail json YAML

Note update of lang/rust to 1.50.0.

(he)

2021-04-19 17:08:09 UTC MAIN commitmail json YAML

Update lang/rust to version 1.50.0.

Pkgsrc changes:
* Adjust patches, re-compute line offsets, fix capitalization.
* Remove i686/FreeBSD support, no longer provided upstream.
* Bump bootstraps to 1.49.0.
* Change USE_TOOLS from bsdtar to gtar.
* Reduce diffs to pkgsrc-wip package patches.
* Allow rust.BUILD_TARGET to override automatic choice of target.
* Add an i586/NetBSD (pentium) bootstrap variant (needs testing),
  not yet added as bootstrap since 1.49 doesn't have that variant.

Upstream changes:

Version 1.50.0 (2021-02-11)
============================

Language
-----------------------
- [You can now use `const` values for `x` in `[x; N]` array
  expressions.][79270] This has been technically possible since
  1.38.0, as it was unintentionally stabilized.
- [Assignments to `ManuallyDrop<T>` union fields are now considered
  safe.][78068]

Compiler
-----------------------
- [Added tier 3\* support for the `armv5te-unknown-linux-uclibceabi`
  target.][78142]
- [Added tier 3 support for the `aarch64-apple-ios-macabi` target.][77484]
- [The `x86_64-unknown-freebsd` is now built with the full toolset.][79484]

\* Refer to Rust's [platform support page][forge-platform-support] for more
information on Rust's tiered platform support.

Libraries
-----------------------

- [`proc_macro::Punct` now implements `PartialEq<char>`.][78636]
- [`ops::{Index, IndexMut}` are now implemented for fixed sized
  arrays of any length.][74989]
- [On Unix platforms, the `std::fs::File` type now has a "niche"
  of `-1`.][74699] This value cannot be a valid file descriptor,
  and now means `Option<File>` takes up the same amount of space
  as `File`.

Stabilized APIs
---------------

- [`bool::then`]
- [`btree_map::Entry::or_insert_with_key`]
- [`f32::clamp`]
- [`f64::clamp`]
- [`hash_map::Entry::or_insert_with_key`]
- [`Ord::clamp`]
- [`RefCell::take`]
- [`slice::fill`]
- [`UnsafeCell::get_mut`]

The following previously stable methods are now `const`.

- [`IpAddr::is_ipv4`]
- [`IpAddr::is_ipv6`]
- [`Layout::size`]
- [`Layout::align`]
- [`Layout::from_size_align`]
- `pow` for all integer types.
- `checked_pow` for all integer types.
- `saturating_pow` for all integer types.
- `wrapping_pow` for all integer types.
- `next_power_of_two` for all unsigned integer types.
- `checked_power_of_two` for all unsigned integer types.

Cargo
-----------------------

- [Added the `[build.rustc-workspace-wrapper]` option.][cargo/8976]
  This option sets a wrapper to execute instead of `rustc`, for
  workspace members only.
- [`cargo:rerun-if-changed` will now, if provided a directory, scan the entire
  contents of that directory for changes.][cargo/8973]
- [Added the `--workspace` flag to the `cargo update` command.][cargo/8725]

Misc
----

- [The search results tab and the help button are focusable with
  keyboard in rustdoc.][79896]
- [Running tests will now print the total time taken to execute.][75752]

Compatibility Notes
-------------------

- [The `compare_and_swap` method on atomics has been deprecated.][79261]
  It's recommended to use the `compare_exchange` and
  `compare_exchange_weak` methods instead.
- [Changes in how `TokenStream`s are checked have fixed some cases
  where you could write unhygenic `macro_rules!` macros.][79472]
- [`#![test]` as an inner attribute is now considered unstable like
  other inner macro attributes, and reports an error by default
  through the `soft_unstable` lint.][79003]
- [Overriding a `forbid` lint at the same level that it was set is
  now a hard error.][78864]
- [Dropped support for all cloudabi targets.][78439]
- [You can no longer intercept `panic!` calls by supplying your
  own macro.][78343] It's recommended to use the `#[panic_handler]`
  attribute to provide your own implementation.
- [Semi-colons after item statements (e.g. `struct Foo {};`) now
  produce a warning.][78296]

[74989]: https://github.com/rust-lang/rust/pull/74989
[79261]: https://github.com/rust-lang/rust/pull/79261
[79896]: https://github.com/rust-lang/rust/pull/79896
[79484]: https://github.com/rust-lang/rust/pull/79484
[79472]: https://github.com/rust-lang/rust/pull/79472
[79270]: https://github.com/rust-lang/rust/pull/79270
[79003]: https://github.com/rust-lang/rust/pull/79003
[78864]: https://github.com/rust-lang/rust/pull/78864
[78636]: https://github.com/rust-lang/rust/pull/78636
[78439]: https://github.com/rust-lang/rust/pull/78439
[78343]: https://github.com/rust-lang/rust/pull/78343
[78296]: https://github.com/rust-lang/rust/pull/78296
[78068]: https://github.com/rust-lang/rust/pull/78068
[75752]: https://github.com/rust-lang/rust/pull/75752
[74699]: https://github.com/rust-lang/rust/pull/74699
[78142]: https://github.com/rust-lang/rust/pull/78142
[77484]: https://github.com/rust-lang/rust/pull/77484
[cargo/8976]: https://github.com/rust-lang/cargo/pull/8976
[cargo/8973]: https://github.com/rust-lang/cargo/pull/8973
[cargo/8725]: https://github.com/rust-lang/cargo/pull/8725
[`IpAddr::is_ipv4`]: https://doc.rust-lang.org/stable/std/net/enum.IpAddr.html#method.is_ipv4
[`IpAddr::is_ipv6`]: https://doc.rust-lang.org/stable/std/net/enum.IpAddr.html#method.is_ipv6
[`Layout::align`]: https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.align
[`Layout::from_size_align`]: https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.from_size_align
[`Layout::size`]: https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.size
[`Ord::clamp`]: https://doc.rust-lang.org/stable/std/cmp/trait.Ord.html#method.clamp
[`RefCell::take`]: https://doc.rust-lang.org/stable/std/cell/struct.RefCell.html#method.take
[`UnsafeCell::get_mut`]: https://doc.rust-lang.org/stable/std/cell/struct.UnsafeCell.html#method.get_mut
[`bool::then`]: https://doc.rust-lang.org/stable/std/primitive.bool.html#method.then
[`btree_map::Entry::or_insert_with_key`]: https://doc.rust-lang.org/stable/std/collections/btree_map/enum.Entry.html#method.or_insert_with_key
[`f32::clamp`]: https://doc.rust-lang.org/stable/std/primitive.f32.html#method.clamp
[`f64::clamp`]: https://doc.rust-lang.org/stable/std/primitive.f64.html#method.clamp
[`hash_map::Entry::or_insert_with_key`]: https://doc.rust-lang.org/stable/std/collections/hash_map/enum.Entry.html#method.or_insert_with_key
[`slice::fill`]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.fill

(he)

2021-04-19 16:52:39 UTC MAIN commitmail json YAML

cursed_font: fix font dirs

(nia)

2021-04-19 16:18:58 UTC MAIN commitmail json YAML

doc: Updated sysutils/navi to 2.16.0

(pin)

2021-04-19 16:18:39 UTC MAIN commitmail json YAML

sysutils/navi: update to 2.16.0

Breaking changes:
-Change default widths (#506)
-Remove support for Alfred (#509)
-Remove support for --save (#510)
-Remove support for --no-preview (#515)
-Remove support for navi query and navi best (#516)
-Fail on bad colors (#519)
-Rename osx target to apple-darwin (#526)

New features:
-Add navi fn map::expand
-Allow tag filtering (#508)
-Allow configuration of shell used for shell out (#511)
-Add support for config files (#518)

Fixes:
-Use \ for paths in Windows (#499)
-Fix navi fn url::open (#503)
-Fix Windows builds (#522)

Code quality:
-Remove unnecessary uses of vector of files (#507)
-Use anyhow::Result
-Document all environment variables (#512)
-Refactor writer packages (#517)
-Simplify regex dependency (#525)
-Refactor scripts (#527)
-Improve documentation (#529)

Please check navi --help and /docs for more instructions in case you use the
features removed in this release.

(pin)

2021-04-19 16:18:08 UTC MAIN commitmail json YAML

doc: Updated sysutils/xplr to 0.5.0

(pin)

2021-04-19 16:17:46 UTC MAIN commitmail json YAML

sysutils/xplr: update to 0.5.0

New:
-Added support for sorting and filtering files using s and f key.
-Added read only mode. (general.read_only)
-Use ctrl-r to refresh UI when messed up.
-Follow symlink files to their parent directory using l or enter.
-Display file size.
-Added new UI variables canonical.*, symlink.*. (see this])

Changes:
-Improved filter messages. (see this)
-Improved input handling
-Added messages RemoveInputBufferLastCharacter, RemoveInputBufferLastWord.
-Use backspace to delete the last character, ctrl-w to delete the last word,
ctrl-u to delete the line.
-Improved selection
-Use ctrl-a to toggle select all, ctrl-u to unselect all.
-Improved UI.

Fixes:
-Handle empty icon.
-Fixed selection duplicates.

(pin)

2021-04-19 16:15:36 UTC MAIN commitmail json YAML

2021-04-19 16:03:22 UTC MAIN commitmail json YAML

doc: Added fonts/cursed_font version 0.1.0

(nia)

2021-04-19 16:03:10 UTC MAIN commitmail json YAML

add fonts/cursed_font

cursed_font is a 9x18 bitmapped font designed for low-DPI screens. It was
originally an embiggened and monospace-ified version of Apple's Chicago font
from System 6, but it also takes inspiration from many other fonts such as
bizcat, ttyp0, tamzen, scientifica.

(nia)

2021-04-19 16:00:42 UTC MAIN commitmail json YAML

libmemphis02: bump PKGREVISION for new default-on introspection option

(wiz)

2021-04-19 16:00:40 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-asciidoctor to 2.0.14

(fcambus)

2021-04-19 16:00:29 UTC MAIN commitmail json YAML

ruby-asciidoctor: update to 2.0.14.

2.0.14 (2021-04-19)

Bug Fixes:

- Don't allow AsciiDoc table cell to set document attribute that was unset
  from the API (exceptions include: compat-mode, toc, showtitle, and notitle)
  (#4017)
- Ensure default document attributes unset in parent document remain unset
  in AsciiDoc table cell (#2586)
- Allow the showtitle / notitle attribute to be toggled in an AsciiDoc table
  cell if set or unset in parent document (#4018)
- Ensure mtime of input file honors TZ environment variable on JRuby for
  Windows (affects value of docdatetime attribute) (#3550)
- Honor caption attribute on blocks that support captioned title even if
  corresponding *-caption document attribute (e.g., example-caption) is
  not set (#4023)
- Suppress missing attribute warning when applying substitutions to implicit
  document title for assignment to intrinsic doctitle attribute (#4024)
- Increment counter (but not the corresponding attribute) if attribute is
  locked (#4013)

Improvements:

- Use attribute, if set, as seed value for counter even if not already
  registered as a counter (#4014)
- Allow subs attribute value on Inline node returned by process method
  for custom inline macro to be a String (#3938)
- Allow value of user-home attribute to be overridden by API or CLI (#3732)

Build / Infrastructure:

- Run tests on JRuby for Windows (#3550)

2.0.13 (2021-04-10)

Bug Fixes:

- Rollback change for #3470, which added logic to remove leading and
  trailing empty lines in an AsciiDoc include file; instead skip empty
  lines before processing document header (#3997)
- Don't escape hyphen in manname in man page output
- Remove extra .sp line before content of verse block in man page output
- Fix layout of footnotes in man page output (#3989)
- Fix formatting of footnote text with URL in man page output (#3988)
- Remove redundant trailing space on URL followed by non-adjacent text
  in man page output (#4004)
- Use .bp macro at location of page break in man page output (#3992)

Improvements:

- Extract method to create lexer and formatter in Rouge adapter (#3953)
  (@Oblomov)
- Add support for pygments.rb 2.x (#3969) (@slonopotamus)
- Allow NullLogger to be enabled by setting the :logger option to a falsy
  value (#3982)
- Substitute attributes in manpurpose part of NAME section in manpage
  doctype (#4000)
- Output all mannames in name section of HTML output for manpage doctype
  (#3757)

Build / Infrastructure:

- Enable running tests as root (PR #3874) (@mikemckiernan)
- Run tests against both pygments.rb 1.x and 2.x (#3969) (@slonopotamus)
- Speed up CI by using Bundler cache (PR #3901) (@slonopotamus)

Documentation:

- Import documentation for processor into this repository (#3861)
  (@graphitefriction)
- Add Belarusian translation of built-in attributes (PR #3928) (@morganov)

(fcambus)

2021-04-19 15:56:31 UTC MAIN commitmail json YAML

2021-04-19 15:55:45 UTC MAIN commitmail json YAML

libretro-ppsspp: Switch back to ffmpeg3 until I can fix this properly

(nia)

2021-04-19 15:55:29 UTC MAIN commitmail json YAML

2021-04-19 15:36:07 UTC MAIN commitmail json YAML

darktable: needs librsvg

(nia)

2021-04-19 15:31:53 UTC MAIN commitmail json YAML

libgdm: Needs gdbus-codegen

(nia)

2021-04-19 15:29:59 UTC MAIN commitmail json YAML

valyriatear: Add missing WRKSRC

(nia)

2021-04-19 14:41:21 UTC MAIN commitmail json YAML

doc: Updated editors/cesium to 0.2.1

(pin)

2021-04-19 14:41:02 UTC MAIN commitmail json YAML

editors/cesium: update to 0.2.1

-Fixed bug where the program would overwrite a user's custom theme with the
default on launch.

(pin)

2021-04-19 14:07:59 UTC MAIN commitmail json YAML

doc: Updated devel/libatomic to 10.3.0

(wiz)

2021-04-19 14:07:49 UTC MAIN commitmail json YAML

libatomic: update to 10.3.0.

Match gcc10 package version.

(wiz)

2021-04-19 13:51:34 UTC MAIN commitmail json YAML

doc: Updated www/firefox-l10n to 88.0

(ryoon)

2021-04-19 13:51:17 UTC MAIN commitmail json YAML

devel/meson no longer includes lang/python/tool.mk so we need to
do it ourselves.

From wiz@

Looking good, please commit these.

(pgoyette)

2021-04-19 13:51:11 UTC MAIN commitmail json YAML

firefox-l10n: Update to 88.0

* Sync with www/firefox-88.0.

(ryoon)

2021-04-19 13:50:43 UTC MAIN commitmail json YAML

doc: Updated www/firefox to 88.0

(ryoon)

2021-04-19 13:50:07 UTC MAIN commitmail json YAML

firefox: Update to 88.0

Changelog:
New

  * PDF forms now support JavaScript embedded in PDF files. Some PDF forms use
    JavaScript for validation and other interactive features.

  * Print updates: Margin units are now localized.

  * Smooth pinch-zooming using a touchpad is now supported on Linux

  * To protect against cross-site privacy leaks, Firefox now isolates
    window.name data to the website that created it. Learn more

Fixed

  * Screen readers no longer incorrectly read content that websites have
    visually hidden, as in the case of articles in the Google Help panel.

  * Various security fixes.

Changed

  * Firefox will not prompt for access to your microphone or camera if you've
    already granted access to the same device on the same site in the same tab
    within the past 50 seconds. This new grace period reduces the number of
    times you're prompted to grant device access.

  * The "Take a Screenshot" feature was removed from the Page Actions menu in
    the url bar. To take a screenshot, right-click to open the context menu.
    You can also add a screenshots shortcut directly to your toolbar via the
    Customize menu. Open the Firefox menu and select Customize...

  * FTP support has been disabled, and its full removal is planned for an
    upcoming release. Addressing this security risk reduces the likelihood of
    an attack while also removing support for a non-encrypted protocol.

Security fixes:
#CVE-2021-23994: Out of bound write due to lazy initialization
#CVE-2021-23995: Use-after-free in Responsive Design Mode
#CVE-2021-23996: Content rendered outside of webpage viewport
#CVE-2021-23997: Use-after-free when freeing fonts from cache
#CVE-2021-23998: Secure Lock icon could have been spoofed
#CVE-2021-23999: Blob URLs may have been granted additional privileges
#CVE-2021-24000: requestPointerLock() could be applied to a tab different from
the visible tab
#CVE-2021-24001: Testing code could have enabled session history manipulations
by a compromised content process
#CVE-2021-24002: Arbitrary FTP command execution on FTP servers using an
encoded URL
#CVE-2021-29945: Incorrect size computation in WebAssembly JIT could lead to
null-reads
#CVE-2021-29944: HTML injection vulnerability in Firefox for Android's Reader
View
#CVE-2021-29946: Port blocking could be bypassed
#CVE-2021-29947: Memory safety bugs fixed in Firefox 88

(ryoon)

2021-04-19 11:05:02 UTC MAIN commitmail json YAML

doc: Updated time/libical to 3.0.10

(nia)

2021-04-19 11:04:52 UTC MAIN commitmail json YAML

libical: update to 3.0.10

Version 3.0.10 is a patch release.
This release is binary and source compatible with version 3.0.0.
Note that the libical-glib library is considered unstable; therefore not binary compatible with previous releases

ReleaseNotes:

    Fix building -DSTATIC_ONLY=True with Ninja
    Fix generating wrong recurrence rules (#478)
    Fix a bug computing transitions in tzfiles
    Fix reading TZif files to use TZ string in the footer as the last (non-terminating) transitions
    Fix reading TZif files to use more RRULEs and/or RDATEs whevever possible
    Built-in timezones updated to tzdata2021a

(nia)

2021-04-19 10:59:33 UTC MAIN commitmail json YAML

doc: Updated graphics/jasper to 2.0.32

(nia)

2021-04-19 10:59:23 UTC MAIN commitmail json YAML

jasper: update to 2.0.32

2.0.32 (2021-04-18)
===================

* Test release performed with GitHub Actions.

2.0.29 (2021-04-16)
===================

* Loosen some overly tight restrictions on JP2 codestreams, which caused
  some valid codestreams to be rejected. (#289)

(nia)

2021-04-19 10:59:01 UTC MAIN commitmail json YAML

gnome: Fix typo in SUPERSEDES and correct PREV_PKGPATH

(cirnatdan)

2021-04-19 10:55:10 UTC MAIN commitmail json YAML

gnome3: really remove

(wiz)

2021-04-19 10:54:06 UTC MAIN commitmail json YAML

gnome: Remove mistakenly leftover files from meta-pkgs/gnome3

(cirnatdan)

2021-04-19 10:52:02 UTC MAIN commitmail json YAML

doc: Updated graphics/glfw to 3.3.4

(nia)

2021-04-19 10:51:51 UTC MAIN commitmail json YAML

glfw: update to 3.3.4

This is a bug fix release. It adds one bug fix for X11 and the MinGW-w64 binaries that were missing from 3.3.3.

(nia)

2021-04-19 10:51:37 UTC MAIN commitmail json YAML

doc: Fix gnome package rename message

(cirnatdan)

2021-04-19 10:49:41 UTC MAIN commitmail json YAML

2021-04-19 10:48:08 UTC MAIN commitmail json YAML

doc: Updated games/exult to 1.6

(nia)

2021-04-19 10:47:57 UTC MAIN commitmail json YAML

exult: update to 1.6

04/17/20 v1.6

- A Shortcut bar with important shortcuts right on top of the screen (thanks Litchie)
- Switch to SDL2 - important for up to date OS
- NxBR and HQ3x/HQ4x scalers
- Option to drop stacks of items without confirmation
- Some more combat options to make charmed combat more difficult.
- Schedules got a workover and are more closer to the original but not yet perfect
- NPCs using beds are sleeping better now
- Papederdoll support of wearing diapers
- Portable option for Windows
- Seperate settings for fullscreen and windowed mode possible
- HighDPI mode available on macOS
- Better pathfinding when the party boards a barge
- Fixed most inexplicable crashes
- Serpent Isle Beta version works
- fixed tons of bugs
- Cleaned up the code in many places and fixed many compiler warnings

Known issues:

- Some crashes due to some cached out objects, we are working on this in another branch which will be the main snapshot after this release
- Antimagic rain caused by the cube generator is not dissipating as fast as it should
- Exult does not show the "you have beaten Ultima VII in n days" message
- Exult does not return to the game menu after beating the game (instead it quits)
- The BG intro does not have the proper sound effects
- Fire Elemenatals cannot walk across lava
- Some schedules need more detailed love
- Several bugs that need more in depth looking at but no plot stopping bugs
- When you disable "Gumps pause game", certain events might only happen after you close all gumps

(nia)

2021-04-19 10:46:08 UTC MAIN commitmail json YAML

gnome: commit missed files: DESCR MESSAGE

(cirnatdan)

2021-04-19 10:40:36 UTC MAIN commitmail json YAML

doc: Moved meta-pkgs/gnome to meta-pkgs/gnome

(cirnatdan)

2021-04-19 10:37:54 UTC MAIN commitmail json YAML

gnome: Rename meta-pkgs/gnome3 to meta-pkgs/gnome

In the wake of the new GNOME versioning scheme (starting with ver. 40)
it no longer makes sense to use the major version prefix in GNOME packages
* https://mail-index.netbsd.org/tech-pkg/2021/03/30/msg024714.html

(cirnatdan)

2021-04-19 10:15:07 UTC MAIN commitmail json YAML

doc: Updated devel/allegro5 to 5.2.7.0

(nia)

2021-04-19 10:14:56 UTC MAIN commitmail json YAML

allegro5: update to 5.2.7

Changes from 5.2.6 to 5.2.7 (March 2021)
****************************************

The main developers this time were: SiegeLord, Peter Hull, Elias
Pschernig, Aldrik Ramaekers, Andreas Rönnquist.

Build system:

  • Allow generating projects with a suffix (lorry-lee).

  • Fix build under Clang-CL in Visual Studio.

Core:

  • Avoid some undefined behavior errors.

  • Return key modifiers in ‘ALLEGRO_EVENT_KEY_UP’ and
    ‘ALLEGRO_EVENT_KEY_DOWN’.

  • Allow calling ‘al_map_*’ color functions before Allegro is
    initialized.

  • Allow minimum bitmap size to be something other than 16 on
    non-Android platforms (controlled via ‘allegro5.cfg’).

  • Add ‘al_get_monitor_refresh_rate’ (only implemented on Windows for
    now).

Graphics:

  • Fix ‘ALLEGRO_KEEP_INDEX’ flag for bitmaps.

  • Add ‘ALLEGRO_OPENGL_CORE_PROFILE’ display flag.

Emscripten:

  • The experimental Emscripten support (via the SDL backend) is now
    documented in ‘README_sdl.txt’.

OSX:

  • Move more Cocoa operations to the main thread.

  • Explicitly link CoreVideo to fix the static build.

Windows:

  • Issue #1125: Speed up OpenGL extension detection (Tobias Scheuer).

  • Use Unicode APIs when enumerating joysticks.

  • Use ‘WM_DEVICECHANGE’ rather than polling to detect joystick
    hotlugging, reducing input drops and lags (Todd Cope).

  • Fix joystick polling period.

  • Restore WinXP compatibility by using slightly older API when
    loading shared libraries (Julian Smythe).

  • Fix build with HLSL disabled (Julian Smythe).

  • Raise DirectInput ‘MAX_JOYSTICKS’ to 32 and ‘DEVICE_BUFFER_SIZE’ to
    128.

SDL:

  • Issue #1224: Fix bug in SDL voice driver.

Audio addon:

  • Allows playing sounds in reverse by specifying a negative speed.

Acodec addon:

  • Fix edge-case looping in Ogg Vorbis stream (Cody Licorish)

Audio addon:

  • Use more sensible values for PulseAudio’s playback buffer,
    potentially resolving some crashes and high CPU usage.

Native Dialog Addon:

  • Migrate from GTK2 to GTK3.  Sadly, we lose menu icons as GTK3
    dropped support for them.

TTF addon:

  • Allow initializing TTF addon before the Font addon.

  • Shut-down the TTF addon automatically in ‘al_uninstall_system’.

PhysFS addon:

  • Fix handling of native path separators.

  • Stop using deprecated PhysFS API.

Primitives addon:

  • Fix segfault in ‘al_draw_ribbon’ when ‘num_segments > 128’ (Rodolfo
    Borges).

  • Issue 1215: Correctly handle small scales when determining
    subdivision level for high level primitives (Robin Heydon).

Documentation:

  • Fix LaTeX errors in the generation of the reference manual PDF.

  • Add links to examples into the reference manual.

  • Allow pressing ‘S’ to focus the search bar in the docs.

  • Assorted documentation improvements.

Misc:

  • Add a security policy and an associated private security mailing
    list - allegro-security@lists.liballeg.org.

  • Add Emscripten-powered examples to
    https://liballeg.org/examples_demos.html.

Examples:

  • ‘ex_audio_simple’ now displays instructions and supports
    bidirectional looping.

  • Add default files to some audio examples.

(nia)

2021-04-19 10:14:26 UTC MAIN commitmail json YAML

doc: Added audio/minimp3 version 20200120

(nia)

2021-04-19 10:14:11 UTC MAIN commitmail json YAML

add audio/minimp3

Minimalistic, single-header library for decoding MP3. minimp3 is designed
to be small, fast (with SSE and NEON support), and accurate (ISO conformant).

(nia)

2021-04-19 07:22:47 UTC MAIN commitmail json YAML

doc: Updated net/GeoIP to 1.6.12nb1

(maya)

2021-04-19 07:22:30 UTC MAIN commitmail json YAML

GeoIP: force-fail gethostbyname_r configure check.

NetBSD has this not-like-linux libc symbol and tries to hide it, but not
well enough that autoconf fails to find it.

Bump PKGREVISION for binary change.

From Stefan Schaeckeler in PR pkg/56116

(maya)

2021-04-19 02:14:44 UTC MAIN commitmail json YAML

Updated www/p5-Dancer2 to 0.301002

(wen)

2021-04-19 02:13:28 UTC MAIN commitmail json YAML

Update to 0.301002
Update DEPENDS

Upstream changes:
0.301002  2021-04-18 15:29:32-04:00 America/New_York

    [ BUG FIXES ]
    * None

    [ ENHANCEMENTS ]
    * GH #1593: Log files used to build config (Nick Tonkin)
    * PR #1608: Migrate CLI to CLI::Osprey (Jason A. Crome)
    # PR #1610: Replace File::Find with Path::Tiny in CLI (Jason A. Crome)

    [ DOCUMENTATION ]
    * PR #1597: Update Core/Hook.pm Pod (Paul Clements)

0.301001  2021-03-17 08:52:34-04:00 America/New_York

    [ BUG FIXES ]
    * PR #1607: Fix broken tests following App::Cmd removal (Jason Crome)

    [ ENHANCEMENTS ]
    * PR #1606: Clean up various build prereqs (Graham Knop)

    [ DOCUMENTATION ]
    * None

0.301000  2021-03-15 18:58:17-04:00 America/New_York

    [ BUG FIXES ]
    * PR #1586: Run version checks against MetaCPAN (Jason A. Crome)
    * PR #1604: Remove App::Cmd dependency; have script/dancer2 bail if
      it's not installed (David Precious)

    [ ENHANCEMENTS ]
    * GH #1064: Add DSL keyword request_data (Mickey Nasriachi)
    * PR #1581: Disable scheduled GitHub action on Forks (Gabor Szabo)
    * PR #1590: Improve install/documentation of XS modules (Jason A. Crome)
    * PR #1591: Add more plugins to GitHub Actions CI (Gabor Szabo)

    [ DOCUMENTATION ]
    * GH #1582: Small fixes in Migration POD (Sergiy Borodych)
    * PR #1595: Add cookbook recipe for enabling/disabling routes at
      runtime (Nick Tonkin)
    * PR #1599: Punctuation correction in docs (Nick Tonkin)

(wen)

2021-04-19 01:56:44 UTC MAIN commitmail json YAML

Added devel/p5-CLI-Osprey version 0.08

(wen)

2021-04-19 01:55:49 UTC MAIN commitmail json YAML

Add p5-CLI-Osprey

(wen)

2021-04-19 01:53:38 UTC MAIN commitmail json YAML

Import CLI-Osprey-0.08 as devel/p5-CLI-Osprey.

CLI::Osprey is a module to assist in writing commandline applications
with M* OO modules (Moose, Moo, Mo). With it, you structure your app
as one or more modules, which get instantiated with the commandline
arguments as attributes. Arguments are parsed using Getopt::Long::Descriptive,
and both long and short help messages as well as complete manual pages
are automatically generated. An app can be a single command with options,
or have sub-commands (like git). Sub-commands can be defined as modules
(with options of their own) or as simple coderefs.

(wen)

2021-04-19 01:45:54 UTC MAIN commitmail json YAML

Added devel/p5-Test-Lib version 0.002

(wen)

2021-04-19 01:43:49 UTC MAIN commitmail json YAML

Import Test-Lib-0.002 as devel/p5-Test-Lib.

Searches upward from the calling module for a directory t with
a lib directory inside it, and adds it to the module search path.
Looks upward up to 5 directories. This is intended to be used in
test modules either directly in t or in a subdirectory to
find their included testing libraries located in t/lib.

(wen)

2021-04-19 00:03:38 UTC MAIN commitmail json YAML

Updated devel/p5-Graph to 0.9721

(wen)

2021-04-19 00:02:47 UTC MAIN commitmail json YAML

Update to 0.9721
Add missing DEPENDS

Upstream changes:
0.9721 2021-04-18
- fix BitMatrix and AdjacencyMatrix problems - thanks @dod38fr for report

0.9720 2021-03-25
- better fix - no mutate inputs

0.9719 2021-03-25
- fix all_paths infinite loop on cycle - thanks @tobez for report

0.9718 2021-03-13
- remove doc of deleted average_degree method - thanks @lindleyw for report

0.9717 2021-01-27
- bulk APIs for UnionFind
- add unionfind config option for util/grand.pl (benchmark-ish script)
- GRAPH_ALLOW_RECURSION env var to turn off recursion protection
- "Light" edge-map now uses bit-vectors -> smaller storage
- directed hypergraphs
- fix same_biconnected_components logic when given >2 vertices

0.9716 2021-01-01
- use Set::Object
- {neighbours,successors,predecessors,reachable}_by_radius

0.9715 2020-12-31
- fix AdjacencyMap::Light attributes so delete when path deleted
- fix as_hashes undirected edges: now both directions
- subgraph_by_radius take multiple vertices

0.9714 2020-12-25
- remove "omni*" - hypergraphs are simply directed or undirected
- as_hashes works with undirected hypergraphs
- add_edge with != 2 vertices only for undirected hypergraph
- any_edge
- delete_*_attributes_by_id (and deleting last attribute) now don't destroy that entity
- AdjacencyMap::Light can have attributes, so no slowdown if use (eg APSP)

0.9713 2020-12-19
- fix edges_at on self-edges in scalar context
- fix refvertexed_stringified predicate
- remove "hypervertices": a collection of n vertices is a hyperedge
- AdjacencyMap.get_paths_by_ids
- transitive_closure et al no longer re-bless objects to Graph
- AdjacencyMap.get_ids_by_paths
- no more uniqedged configurability
- BitMatrix transpose option
- Transitive closure records path successor, not predecessor. Method name and docs updated.

0.9712 2020-12-05
- bug-fix: set_edge_attribute_by_id add_edge_by_id if not exist
- connected_component_by_index behaves same with/without unionfind
- AdjacencyMatrix handle multiedged
- reduce redundant sorting for _UNORD, fix AdjacencyMap::Vertex with ID 0
- AdjacencyMap.stringify
- allow constructor args to override "prototype" object
- fix docs for TransitiveClosure to correctly say path_vertices default true
- AdjacencyMatrix now always creates adjacency matrix (clue in name)
- remove compat02 features
- drop untested scalar-context Traversal.postorder mutation behaviour
- much more lazy-loading of modules
- set_vertex_attribute_by_id now works on hypervertexed
- internal AdjacencyMap uses array not hash for mapping index to path
- successors/predecessors/rename_path work right with multivertex
- AdjacencyMap array -> stable vertices ordering, TCM performance benefit
- TransitiveClosure etc handle multiedged
- all_paths ignore self-loops

0.9711 2020-11-27
- ingest handle multivertexed, multiedged right

0.9710 2020-11-27
- all_paths method
- as_hashes handle multivertexed, multiedged right

0.9709 2020-11-22
- add path_count option to TransitiveClosure
- get_{edge,vertex}_attributes undef if no such entity, in list context
- as_hashes method
- ingest method

0.9708 2020-11-06
- update metadata for Test::More version dep
- stringify hypervertices right
- add rename_vertex, rename_vertices

0.9707 2020-10-31
- can't use Safe, ergo Storable, on 5.8

0.9706 2020-10-20
- metadata list test-deps as not runtime

0.9705 2020-10-20
- document clustering_coefficient return empty list on no vertices - RT#114094
- apply lazy-load patch from Stephen Loyd - RT#123236
- depend on Heap 0.80 instead of local fork. Heap::Elem is really an interface not superclass.
- fix uninitialised value warning in SP_Dijkstra - RT#118539
- fix complement losing vertices on unconnected graphs - RT#115366
- fix average_path_length when two vertices given - RT#120611
- switch to GitHub issues rather than RT
- fix all_successors with non-truthy names - fix #5
- add Graph::Matrix->stringify to help debug
- fix APSP_Floyd_Warshall logic error when subpaths totalled 0 - fix #3
- typo fix - thanks @jkeenan (#6)
- Added "use strict; use warnings;", etc - thanks @manwar (closes #2)

(wen)

2021-04-18 20:38:37 UTC MAIN commitmail json YAML

ocp: completely remove gcc version check

This broke again with gcc 10.
Trust pkgsrc to provide a working compiler.

(wiz)

2021-04-18 20:34:04 UTC MAIN commitmail json YAML

2021-04-18 20:16:23 UTC MAIN commitmail json YAML

2021-04-18 19:47:08 UTC MAIN commitmail json YAML

doc: Updated www/links-gui to 2.22

(fcambus)

2021-04-18 19:46:47 UTC MAIN commitmail json YAML

doc: Updated www/links to 2.22

(fcambus)

2021-04-18 19:46:36 UTC MAIN commitmail json YAML

links: update to 2.22.

=== RELEASE 2.22 ===

Sat Jan 23 18:11:41 CET 2021 mikulas:

Save and restore the terminal using xterm escape codes

Sat Nov 28 19:27:47 CET 2020 mikulas:

Save and restore the console using "cons.saver" from
Midnight Commander

Sat Nov 28 11:05:42 CET 2020 mikulas:

Support UTF-8 frames

Sun Nov 22 17:20:29 CET 2020 Emir Yasin SARI <bitigchi@me.com>:

Updated the Turkish translation

Sat Aug 22 10:05:27 CEST 2020 Ing. Daniel G. Gionco <dggionco@hotmail.com>:

Updated the Spanish translation

Wed Aug 12 20:04:38 CEST 2020 mikulas:

Fixed a bug in displaying non-printable characters
(reported by Jean-Philippe MENGUAL <jpmengual@debian.org>)

(fcambus)

2021-04-18 19:42:19 UTC MAIN commitmail json YAML

The original file includes a $NetBSD: $ CVS id, which also shows up in the
patch, gets expanded and breaks the build.
Manually adjust the patch file to avoid this line.

(bouyer)

2021-04-18 15:25:45 UTC MAIN commitmail json YAML

doc: Updated editors/cesium to 0.2.0

(pin)

2021-04-18 15:25:24 UTC MAIN commitmail json YAML

editors/cesium: update to 0.2.0

-Added a help window
-fixed a file selector bug
-added a configurable theme file

(pin)

2021-04-18 12:33:05 UTC MAIN commitmail json YAML

Added sysutils/xenkernel415 version 4.15.0
Added sysutils/xentools415 version 4.15.0

(bouyer)

2021-04-18 12:31:55 UTC MAIN commitmail json YAML

Add xenkernel415 and xentools415

(bouyer)

2021-04-18 12:31:27 UTC MAIN commitmail json YAML

Add xenkernel415 and xentools415 version 4.15.0

Xen is a hypervisor which supports running multiple guest operating
systems on a single machine. Guest OSes (also called "domains")
can be either paravirtualised (i.e. make hypercalls in order to
access hardware), run in HVM (Hardware Virtualisation Mode) where
they will be presented with virtual devices, or a combination where
they use hypercalls to access hardware but manage memory themselves.
At boot, the xen kernel is loaded along with the guest kernel for
the first domain (called domain0). domain0 has privileges to access
the physical hardware (PCI and ISA devices), administrate other
domains and provide virtual devices (disks and network) to other
domains.

(bouyer)

2021-04-18 12:10:16 UTC MAIN commitmail json YAML

libgdm: set GITHUB_PROJECT to fix fetch state

Simplify PKGNAME while here.

(wiz)

2021-04-18 11:52:16 UTC MAIN commitmail json YAML

2021-04-18 11:26:34 UTC MAIN commitmail json YAML

doc: Updated audio/din to 50.2

(fox)

2021-04-18 11:26:01 UTC MAIN commitmail json YAML

audio/din: Updates to 50.2

Changes since 50.1:

DIN Is Noise 50.2 :
  :( fixed bug in drone modulation editor introduced in DIN 50 :)

(fox)

2021-04-18 10:54:43 UTC MAIN commitmail json YAML

doc: Updated net/gh to 1.9.1

(bsiegert)

2021-04-18 10:54:08 UTC MAIN commitmail json YAML

Update Github CLI to 1.9.1.

GitHub CLI 1.9.1
----------------

  * Fix cold cache problem in run view --log and run view --log-failed

GitHub CLI 1.9.0
----------------

New Features

GitHub Actions in the CLI

Three new top-level commands have been added to gh:

  * gh run lists, views, and interacts with workflow runs
  * gh workflow lists, views, runs, and toggles workflow files
  * gh actions prints information about the integration between gh and GitHub
    Actions

You can now get insight into what GitHub Actions is running across your
repository with

$ gh run list

and dig into specifics with

$ gh run view
$ gh run view --log
$ gh run view --log-failed

Run gh actions to learn more and get started. There is also a video demo
covering a bunch of the new commands.

This was a huge effort that brought in the entire CLI team as well as a lot of
community input and feedback. We're excited for you to try it out!

Please let us know what you get up to with this new integration or if you have
suggestions for our next iteration of support in our discussions thread.

Issue and pull request commands now support JSON export

Issue and pull request list, view, and status commands now support the --json
option which enables the JSON output format suitable for scripts.

The --json flag accepts a comma-separated list of data fields to request from
the GitHub server. Field names must always be specified to use this feature. To
see the list of available fields, use the --json flag without a value.

Additionally, any command that accepts --json also supports the --jq and
--template options that were previously available only in the gh api command.
These options allow filtering down or transforming the resulting JSON into
something more immediately usable by shell scripts. Refer to gh help formatting
for more information.

Development and Documentation Updates

  * Add tests for manual pages generation
  * Tweak build scripts to enable cross-compiling
  * Add note about current branch detection

GitHub CLI 1.8.1
----------------

Fixes

  * Fix pr status/checks crash with unrecognized statuses from the server
  * Fix repo fork --clone not cloning an existing fork locally when running
    non-interactively
  * Fix commands not respecting default hostname from GH_HOST

GitHub CLI 1.8.0
----------------

New features

Search functionality for issues and pull requests

The new issue/pr list --search flag enables searching issues and pull requests
using keywords.

In addition to searching by words that may appear in the contents of issues or
pull requests, you can use any GitHub search syntax for more specific matching
and to change the order of the results. For example:

  * gh issue list --state closed --search "crash in:title" - closed issues that
    contain "crash" in their title
  * gh issue list --search "no:assignee" - open issues without an assignee
  * gh issue list -l "bug" --search "sort:interactions-desc" - bug threads that
    have the most interactions
  * gh pr list --search "review-requested:@me" - pull requests where your
    review was requested
  * gh pr list --state merged --search "merged:>=2021-03-30" - pull requests
    merged after a certain date

Breaking: multiple labels are now combined using "AND" instead of "OR"

When supplying multiple label names to issue/pr list, the results will now only
include results that have all of the listed labels.

This is a backwards-incompatible change, but it aligns the behavior with that
which is experienced in the GitHub web interface and with what we believe
should be the correct behavior.

Other enhancements

  * Add issue transfer command
  * Add pr list --author filter option
  * Show the diffstat in pr view
  * Accept --body-file flag wherever --body is supported

Fixes

  * issue/pr create: disable "Continue in browser" option if that would
    generate a URL that is too long
  * issue/pr list --label: match label names case-insensitively
  * pr checks: avoid ever truncating the URL column
  * Ensure that table output expands to fill available terminal width
  * release create/upload: allow retrying HTTP/2 asset uploads
  * gist: remove functionality to add, view, or edit binary files
  * Fix typos in documentation

(bsiegert)

2021-04-18 09:44:18 UTC MAIN commitmail json YAML

capitalize X Window System

(nia)

2021-04-18 08:54:56 UTC MAIN commitmail json YAML

pkgsrc/sysutils/u-boot-bananapi-r2/patches/patch-include_configs_mt7623.h deleted
pkgsrc/sysutils/u-boot-bananapi-r2/patches/patch-include_image.h deleted
pkgsrc/sysutils/u-boot-pinebook-pro/Makefile@1.10 / diff
pkgsrc/sysutils/u-boot-pinebook-pro/patches/patch-arch_arm_dts_Makefile deleted
pkgsrc/sysutils/u-boot-pinebook-pro/patches/patch-arch_arm_dts_rk3399-pinebook-pro-u-boot.dtsi deleted
pkgsrc/sysutils/u-boot-pinebook-pro/patches/patch-arch_arm_dts_rk3399-pinebook-pro.dts deleted
pkgsrc/sysutils/u-boot-pinebook-pro/patches/patch-arch_arm_mach-rockchip_rk3399_Kconfig deleted
pkgsrc/sysutils/u-boot-pinebook-pro/patches/patch-arch_arm_mach-rockchip_rk3399_rk3399.c deleted
pkgsrc/sysutils/u-boot-pinebook-pro/patches/patch-board_pine64_pinebook_pro_rk3399_Kconfig deleted
pkgsrc/sysutils/u-boot-pinebook-pro/patches/patch-board_pine64_pinebook_pro_rk3399_MAINTAINERS deleted
pkgsrc/sysutils/u-boot-pinebook-pro/patches/patch-board_pine64_pinebook_pro_rk3399_Makefile deleted
pkgsrc/sysutils/u-boot-pinebook-pro/patches/patch-board_pine64_pinebook_pro_rk3399_pinebook-pro-rk3399.c deleted
pkgsrc/sysutils/u-boot-pinebook-pro/patches/patch-configs-pinebook_pro-rk3399_defconfig deleted
pkgsrc/sysutils/u-boot-pinebook-pro/patches/patch-configs_rock64-rk3328_defconfig deleted
pkgsrc/sysutils/u-boot-pinebook-pro/patches/patch-configs_rockpro64-rk3399_defconfig deleted
pkgsrc/sysutils/u-boot-pinebook-pro/patches/patch-include-configs-pinebook_pro_rk3399.h deleted
pkgsrc/sysutils/u-boot-pinebook-pro/patches/patch-include_configs_rockchip-common.h deleted
pkgsrc/sysutils/u-boot-pinebook/patches/patch-arch_arm_cpu_armv8_Kconfig deleted
pkgsrc/sysutils/u-boot-pinebook/patches/patch-lib_bch.c deleted
pkgsrc/sysutils/u-boot-rock64/patches/patch-arch_arm_cpu_armv8_Kconfig deleted
      :
(more 24 files)
various updates for the new pkgsrc u-boot world order.

the whole u-boot package builds with the patches and distinfos
moved into the new places.

(mrg)

2021-04-18 08:05:54 UTC MAIN commitmail json YAML

doc/TODO: add some

+ ImageMagick-7.0.11.8, apache-ant-1.10.10, calibre-5.16,
  py-hypothesis-6.10.0, tor-browser-https-everywhere-2021.4.15,
  vala-0.52.2.

(wiz)

2021-04-18 07:30:28 UTC MAIN commitmail json YAML

2021-04-17 20:04:38 UTC MAIN commitmail json YAML

doc: Updated devel/binaryen to 101

(fcambus)

2021-04-17 20:04:24 UTC MAIN commitmail json YAML

binaryen: update to 101.

v101
----

- `BinaryenSetFunctionTable` and `module.setFunctionTable` have been removed
  in favor of `BinaryenAddTable` and `module.addTable` respectively.
- `BinaryenIsFunctionTableImported` is removed.
- A new type `BinaryenElementSegmentRef` has been added to the C API with
  new apis in both C & JS:
  - `BinaryenAddActiveElementSegment`
  - `BinaryenAddPassiveElementSegment`
  - `BinaryenRemoveElementSegment`
  - `BinaryenGetElementSegment`
  - `BinaryenGetElementSegmentByIndex`
  - `BinaryenElementSegmentGetName`
  - `BinaryenElementSegmentSetName`
  - `BinaryenElementSegmentGetTable`
  - `BinaryenElementSegmentSetTable`
  - `BinayenElementSegmentIsPassive`
  - `module.addActiveElementSegment`
  - `module.addPassiveElementSegment`
  - `module.removeElementSegment`
  - `module.getElementSegment`
  - `module.getElementSegmentByIndex`
  - `module.getTableSegments`
  - `module.getNumElementSegments`
  - `binaryen.getElementSegmentInfo`
- `BinaryenAddTable` and `module.addTable` no longer take offset and function
    names.
- `BinaryenGetNumFunctionTableSegments` is replaced with
  `BinaryenGetNumElementSegments`.
- `BinaryenGetFunctionTableSegmentOffset` is replaced with
  `BinaryenElementSegmentGetOffset`.
- `BinaryenGetFunctionTableSegmentLength` is replaced with
  `BinaryenElementSegmentGetLength`.
- `BinaryenGetFunctionTableSegmentData` is replaced with
  `BinaryenElementSegmentGetData`.
- Boolean values in the C API now should use `bool` instead of `int`.
- Experimental SIMD instructions have been removed and the names and opcodes of
  the standard instructions have been updated to match the final spec.

(fcambus)

2021-04-17 18:42:08 UTC MAIN commitmail json YAML

harbuzz and harfbuzz-icu use python3 when building

(nros)

2021-04-17 18:10:29 UTC MAIN commitmail json YAML

doc: Updated pkgtools/pkglint to 21.1.1

(rillig)

2021-04-17 18:10:14 UTC MAIN commitmail json YAML

pkgtools/pkglint: update to 21.1.1

Changes since 21.1.0:

Added check for packages that have been migrated to Meson but still
refer to their previous build system, most often involving GNU make and
GNU autotools.  Suggested by nia.

(rillig)

2021-04-17 17:48:10 UTC MAIN commitmail json YAML

doc: Updated x11/rterm to 0.0.3

(pin)

2021-04-17 17:47:48 UTC MAIN commitmail json YAML

x11/rterm: update to 0.0.3

-copy graph0 charset chars from st
-added some command options
-redraw on expose change
-support bold and italic fonts
-support X geometry <widt>x<hheight>+<xoff>+<yoff>
-bugfix: sel_text may be none
-bump up version to 0.0.3

(pin)

2021-04-17 11:14:25 UTC MAIN commitmail json YAML

doc: Updated news/sfeed_curses to 0.9.10

(leot)

2021-04-17 11:14:04 UTC MAIN commitmail json YAML

sfeed_curses: Update to 0.9.10

Changes:
0.9.10
------
* Fix a possible memory leak when used with ncurses and when resizing the
  window. The terminal was reinitalized using setupterm() which would leak memory
  and it is also very inefficient to do so, because it rereads the terminfo
  entries.
* Fix a possible memory leak when used with ncurses and when exiting from an
  interactive program and restoring the terminal for sfeed_curses.
* Fix an issue when the sidebar would be > 256 columns long the text on the row
  would not be displayed. Especially noticable in the monocle and horizontal
  layout in fullscreen on bigger screens.
* Fix a silent truncation which would make searching on titles with > 1024
  bytes not work on these truncated bytes.
* Fix right-click plumb not respecting the environment variable
  $SFEED_PLUMB_INTERACTIVE flag (but the keybinds did).
* Fix drawing/updating of the initial items scrollbar when switching to the
  monocle layout.
* Fix to restore the terminal state more gracefully when it could not be
  correctly initialized (for example with an invalid $TERM set).
* Fix for correctly decoding mouse buttons 6 and 7 (tilt scroll) using xterm
  X10 decoding. These buttons were not used, but still :)
* Fix: when the pane items or scrollbar are outside the window to not draw them.
* Do not clearscreen() when the window is dirty.
  This makes sure there is less flickering in xterm and urxvt, like on a window
  resize or when adjusting the sidebar.
* Add the keybinds J (shift-j) and K (shift-k) to go one item up or down and
  also open it for faster navigating and checking new items.
  Feedback idea from Hadrien Lacour, thanks!
* Also allow scrolling when the position is exactly on the pane its scrollbar
  and fix mouse button actions that don't depend on a position in a pane.
* Implement extended SGR mouse-decoding and also improve X10 mouse decoding:
    * When the terminal emulator supports SGR mouse-encoding then it can
      encode x, y values beyond 224 columns and rows. This is useful for big screens.
    * Map the side-buttons (back, forward) to switch panes. Useful in the monocle
      layout.
    * Implement keymasks (shift, meta/alt, ctrl) and pass them to the function
      mousereport().
* Improve resizing the sidebar:
  * Avoid unnecessary redraws in some (rare) cases.
  * Clamp the minimal and maximum value when adjusting the sidebar size
    depending on the layout.  This also fixes an issue in horizontal layout mode
    when the sidebar is 1 column high. It would require 2 keypresses (instead of 1)
    to increase the sidebar. This was an injustice to the fingers.
* After toggling showing new feeds or when reloading feeds try to select the
  same feed again.
* Code-style improvements, typofixes and minor documentation improvements.

(leot)

2021-04-17 11:07:14 UTC MAIN commitmail json YAML

doc: Updated security/amass to 3.11.13

(leot)

2021-04-17 11:07:03 UTC MAIN commitmail json YAML

amass: Update to 3.11.13

Changes:
3.11.13
-------
- Update user_guide.md
- Removed the previous CI/CD configuration

3.11.12
-------
- format: write characterization tests for parse.go
- Moved the DNS resolvers package to another repository
- Increased speed of the Google certificate transparency data source
- Addressing crash during cleanup issue #599
- Added the Security Weekly interview information

3.11.11
-------
- Improved data source service performance
- Addressing #519 by noticing expired contexts quickly

3.11.10
-------
- Support for the AMASS_CONFIG environment variable

(leot)

2021-04-17 10:33:32 UTC MAIN commitmail json YAML

doc: Updated security/sqlmap to 1.5.4

(leot)

2021-04-17 10:33:20 UTC MAIN commitmail json YAML

sqlmap: Update to 1.5.4

Changes:
1.5.4
-----
No changelog shared by upstream but according commit messages mostly bug fixes.

(leot)

2021-04-17 10:28:23 UTC MAIN commitmail json YAML

2021-04-17 10:19:00 UTC MAIN commitmail json YAML

doc: Updated audio/libgpod to 0.8.3

(nia)

2021-04-17 10:18:49 UTC MAIN commitmail json YAML

libgpod: update to 0.8.3

Overview of changes in libgpod 0.8.3
====================================

* Add support for libimobiledevice 1.1.5 (there was an API/ABI break)
* Remove use of some deprecated glib functions
* Fix various issues found using clang/cppcheck
* Improve robustness of the iphone callout

(nia)

2021-04-17 10:11:14 UTC MAIN commitmail json YAML

doc: Updated misc/tmux to 3.2

(leot)

2021-04-17 10:11:04 UTC MAIN commitmail json YAML

tmux: Update to 3.2

Changes:
3.2
---
* Add a flag to disable keys to close a message.
* Permit shortcut keys in buffer, client, tree modes to be configured with a
  format (-K flag to choose-buffer, choose-client, choose-tree).
* Add a current_file format for the config file being parsed.
* When display-message used in config file, show the message after the config
  file finishes.
* Add client-detached notification in control mode.
* Improve performance of format evaluation.
* Make jump command support UTF-8 in copy mode.
* Support X11 colour names and other colour formats for OSC 10 and 11.
* Add "pipe" variants of "copy-pipe" commands which do not copy.
* Include "focused" in client flags.
* Send Unicode directional isolate characters around horizontal pane borders if
  the terminal supports UTF-8 and an extension terminfo(5) capability "Bidi" is
  present.
* Add a -S flag to new-window to make it select the existing window if one
  with the given name already exists rather than failing with an error.
* Addd a format modifier to check if a window or session name exists (N/w or
  N/s).
* Add compat clock_gettime for older macOS.
* Add a no-detached choice to detach-on-destroy which detaches only if there
  are no other detached sessions to switch to.
* Add rectangle-on and rectangle-off copy mode commands.
* Change so that window_flags escapes # automatically. A new format
  window_raw_flags contains the old unescaped version.
* Add -N flag to never start server even if command would normally do so.
* With incremental search, start empty and only repeat the previous search if
  the user tries to search again with an empty prompt.
* Add a value for remain-on-exit that only keeps the pane if the program
  failed.
* Add a -C flag to run-shell to use a tmux command rather than a shell command.
* Do not list user options with show-hooks.
* Remove current match indicator in copy mode which can't work anymore since we
  only search the visible region.
* Make synchronize-panes a pane option and add -U flag to set-option to unset
  an option on all panes.
* Make replacement of ##s consistent when drawing formats, whether followed by
  [ or not. Add a flag (e) to the q: format modifier to double up #s
* Add -N flag to display-panes to ignore keys.
* Change how escaping is processed for formats so that ## and # can be used in
  styles.
* Add a 'w' format modifier for string width.
* Add support for Haiku.
* Expand menu and popup -x and -y as formats.
* Add numeric comparisons for formats.
* Fire focus events even when the pane is in a mode.
* Add -O flag to display-menu to not automatically close when all mouse buttons
  are released.
* Allow fnmatch(3) wildcards in update-environment.
* Disable nested job expansion so that the result of #() is not expanded again.
* Use the setal capability as well as (tmux's) Setulc.
* Add -q flag to unbind-key to hide errors.
* Allow -N without a command to change or add a note to an existing key.
* Add a -w flag to set- and load-buffer to send to clipboard using OSC 52.
* Add -F to set-environment and source-file.
* Allow colour to be spelt as color in various places.
* Add n: modifier to get length of a format.
* Respond to OSC colour requests if a colour is available.
* Add a -d option to display-message to set delay.
* Add a way for control mode clients to subscribe to a format and be notified
  of changes rather than having to poll.
* Add some formats for search in copy mode (search_present, search_match).
* Do not wait on shutdown for commands started with run -b.
* Add -b flags to insert a window before (like the existing -a for after) to
  break-pane, move-window, new-window.
* Make paste -p the default for ].
* Add support for pausing a pane when the output buffered for a control mode
  client gets too far behind. The pause-after flag with a time is set on the
  pane with refresh-client -f and a paused pane may be resumed with
  refresh-client -A.
* Allow strings in configuration files to span multiple lines - newlines and
  any leading whitespace are removed, as well as any following comments that
  couldn't be part of a format. This allows long formats or other strings to be
  annotated and indented.
* Instead of using a custom parse function to process {} in configuration
  files, treat as a set of statements the same as outside {} and convert back
  to a string as the last step. This means the rules are consistent inside and
  outside {}, %if and friends work at the right time, and the final result
  isn't littered with unnecessary newlines.
* Add support for extended keys - both xterm(1)'s CSI 27 ~ sequence and the
  libtickit CSI u sequence are accepted; only the latter is output. tmux will
  only attempt to use these if the extended-keys option is on and it can detect
  that the terminal outside supports them (or is told it does with the
  "extkeys" terminal feature).
* Add an option to set the pane border lines style from a choice of single
  lines (ACS or UTF-8), double or heavy (UTF-8), simple (plain ASCII) or number
  (the pane numbers). Lines that won't work on a non-UTF-8 terminal are
  translated back into ACS when they are output.
* Make focus events update the latest client (like a key press).
* Store UTF-8 characters differently to reduce memory use.
* Fix break-pane -n when only one pane in the window.
* Instead of sending all data to control mode clients as fast as possible, add
  a limit of how much data will be sent to the client and try to use it for
  panes with some degree of fairness.
* Add an active-pane client flag (set with attach-session -f, new-session -f
  or refresh-client -f). This allows a client to have an independent active
  pane for interactive use (the window client pane is still used for many
  things however).
* Add a mark to copy mode, this is set with the set-mark command (bound to X)
  and appears with the entire line shown using copy-mode-mark-style and the
  marked character in reverse. The jump-to-mark command (bound to M-x) swaps
  the mark and the cursor positions.
* Add a -D flag to make the tmux server run in the foreground and not as a
  daemon.
* Do not loop forever in copy mode when search finds an empty match.
* Fix the next-matching-bracket logic when using vi(1) keys.
* Add a customize mode where options may be browsed and changed, includes
  adding a brief description of each option. Bound to C-b C by default.
* Change message log (C-b ~) so there is one for the server rather than one per
  client and it remains after detach, and make it useful by logging every
  command.
* Add M-+ and M-- to tree mode to expand and collapse all.
* Change the existing client flags for control mode to apply for any client,
  use the same mechanism for the read-only flag and add an ignore-size flag.
  refresh-client -F has become -f (-F stays for backwards compatibility) and
  attach-session and switch-client now have -f flags also. A new format
  client_flags lists the flags and is shown by list-clients by default.
  This separates the read-only flag from "ignore size" behaviour (new
  ignore-size) flag - both behaviours are useful in different circumstances.
  attach -r and switchc -r remain and set or toggle both flags together.
* Store and restore cursor position when copy mode is resized.
* Export TERM_PROGRAM and TERM_PROGRAM_VERSION like various other terminals.
* Add formats for after hook command arguments: hook_arguments with all the
  arguments together; hook_argument_0, hook_argument_1 and so on with
  individual arguments; hook_flag_X if flag -X is present; hook_flag_X_0,
  hook_flag_X_1 and so on if -X appears multiple times.
* Try to search the entire history first for up to 200 ms so a search count can
  be shown. If it takes too long, search the visible text only.
* Use VIS_CSTYLE for paste buffers also (show \012 as \n).
* Change default formats for tree mode, client mode and buffer mode to be more
  compact and remove some clutter.
* Add a key (e) in buffer mode to open the buffer in an editor. The buffer
  contents is updated when the editor exits.
* Add -e flag for new-session to set environment variables, like the same flag
  for new-window.
* Improve search match marking in copy mode. Two new options
  copy-mode-match-style and copy-mode-current-match-style to set the style for
  matches and for the current match respectively. Also a change so that if a
  copy key is pressed with no selection, the current match (if any) is copied.
* Sanitize session names like window names instead of forbidding invalid ones.
* Check if the clear terminfo(5) capability starts with CSI and if so then
  assume the terminal is VT100-like, rather than relying on the XT capability.
* Improve command prompt tab completion and add menus both for strings and -t
  and -s (when used without a trailing space). command-prompt has additional
  flags for only completing a window (-W) and a target (-T), allowing C-b ' to
  only show windows and C-b . only targets.
* Change all the style options to string options so they can support formats.
  Change pane-border-active-style to use this to change the border colour when
  in a mode or with synchronize-panes on. This also implies a few minor changes
  to existing behaviour:
  - set-option -a with a style option automatically inserts a comma between the
    old value and appended text.
  - OSC 10 and 11 no longer set the window-style option, instead they store the
    colour internally in the pane data and it is used as the default when the
    option is evaluated.
  - status-fg and -bg now override status-style instead of the option values
    being changed.
* Add extension terminfo(5) capabilities for margins and focus reporting.
* Try $XDG_CONFIG_HOME/tmux/tmux.conf as well as ~/.config/tmux/tmux.conf for
  configuration file (the search paths are in TMUX_CONF in Makefile.am).
* Remove the DSR 1337 iTerm2 extension and replace by the extended device
  attributes sequence (CSI > q) supported by more terminals.
* Add a -s flag to copy-mode to specify a different pane for the source
  content. This means it is possible to view two places in a pane's history at
  the same time in different panes, or view the history while still using the
  pane. Pressing r refreshes the content from the source pane.
* Add an argument to list-commands to show only a single command.
* Change copy mode to make copy of the pane history so it does not need to
  freeze the pane.
* Restore pane_current_path format from portable tmux on OpenBSD.
* Wait until the initial command sequence is done before sending a device
  attributes request and other bits that prompt a reply from the terminal. This
  means that stray relies are not left on the terminal if the command has
  attached and then immediately detached and tmux will not be around to receive
  them.
* Add a -f filter argument to the list commands like choose-tree.
* Move specific hooks for panes to pane options and windows for window options
  rather than all hooks being session options. These hooks are now window options:
  window-layout-changed
  window-linked
  window-pane-changed
  window-renamed
  window-unlinked
  And these now pane options:
  pane-died
  pane-exited
  pane-focus-in
  pane-focus-out
  pane-mode-changed
  pane-set-clipboard
  Any existing configurations using these hooks on a session rather than
  globally (that is, set-hook or set-option without -g) may need to be changed.
* Show signal names when a process exits with remain-on-exit on platforms which
  have a way to get them.
* Start menu with top item selected if no mouse and use mode-style for the
  selected item.
* Add a copy-command option and change copy-pipe and friends to pipe to it if
  used without arguments, allows all the default copy key bindings to be
  changed to pipe with one option rather than needing to change each key
  binding individually.
* Tidy up the terminal detection and feature code and add named sets of
  terminal features, each of which are defined in one place and map to a
  builtin set of terminfo(5) capabilities. Features can be specified based on
  TERM with a new terminal-features option or with the -T flag when running
  tmux. tmux will also detect a few common terminals from the DA and DSR
  responses.
  This is intended to make it easier to configure tmux's use of terminfo(5)
  even in the presence of outdated ncurses(3) or terminfo(5) databases or for
  features which do not yet have a terminfo(5) entry. Instead of having to grok
  terminfo(5) capability names and what they should be set to in the
  terminal-overrides option, the user can hopefully just give tmux a feature
  name and let it do the right thing.
  The terminal-overrides option remains both for backwards compatibility and to
  allow tweaks of individual capabilities.
* Support mintty's application escape sequence (means tmux doesn't have to
  delay to wait for Escape, so no need to reduce escape-time when using
  mintty).
* Change so main-pane-width and height can be given as a percentage.
* Support for the iTerm2 synchronized updates feature (allows the terminal to
  avoid unnecessary drawing while output is still in progress).
* Make the mouse_word and mouse_line formats work in copy mode and enable the
  default pane menu in copy mode.
* Add a -T flag to resize-pane to trim lines below the cursor, moving lines out
  of the history.
* Add a way to mark environment variables as "hidden" so they can be used by
  tmux (for example in formats) but are not set in the environment for new
  panes. set-environment and show-environment have a new -h flag and there is a
  new %hidden statement for the configuration file.
* Change default position for display-menu -x and -y to centre rather than top
  left.
* Add support for per-client transient popups, similar to menus but which are
  connected to an external command (like a pane). These are created with new
  command display-popup.
* Change double and triple click bindings so that only one is fired (previously
  double click was fired on the way to triple click). Also add default double
  and triple click bindings to copy the word or line under the cursor and
  change the existing bindings in copy mode to do the same.
* Add a default binding for button 2 to paste.
* Add -d flag to run-shell to delay before running the command and allow it to
  run without a command so it just delays.
* Add C-g to cancel command prompt with vi keys as well as emacs, and q in
  command mode.
* When the server socket is given with -S, create it with umask 177 instead of
  117 (because it may not be in a safe directory like the default directory in
  /tmp).
* Add a copy-mode -H flag to hide the position marker in the top right.
* Add number operators for formats (+, -, *, / and m),

(leot)

2021-04-17 10:09:58 UTC MAIN commitmail json YAML

doc: Updated audio/hydrogen to 1.0.2

(nia)

2021-04-17 10:09:45 UTC MAIN commitmail json YAML

hydrogen: Update to 1.0.2

2021-04-11 the hydrogen team <hydrogen-devel@lists.sourceforge.net>
* Release 1.0.2
* User-selectable translation language
* Bug fixes including critical startup bug on macOS Big Sur

(nia)

2021-04-17 09:55:46 UTC MAIN commitmail json YAML

doc: Updated net/rclone to 1.55.0

(leot)

2021-04-17 09:55:35 UTC MAIN commitmail json YAML

rclone: Update to 1.55.0

Changes:
1.55.0
------
* New commands
    * `selfupdate` (Ivan Andreev)
        * Allows rclone to update itself in-place or via a package (using `--package` flag)
        * Reads cryptographically signed signatures for non beta releases
        * Works on all OSes.
    * `test` - these are test commands - use with care!
        * `histogram` - Makes a histogram of file name characters.
        * `info` - Discovers file name or other limitations for paths.
        * `makefiles` - Make a random file hierarchy for testing.
        * `memory` - Load all the objects at remote:path into memory and report memory stats.
* New Features
    * Connection strings
        * Config parameters can now be passed as part of the remote name as a connection string.
        * For example to do the equivalent of `--drive-shared-with-me` use `drive,shared_with_me:`
        * Make sure we don't save on the fly remote config to the config file (Nick Craig-Wood)
        * Make sure backends with additional config have a different name for caching (Nick Craig-Wood)
        * This work was sponsored by CERN, through the [CS3MESH4EOSC Project](https://cs3mesh4eosc.eu/).
            * CS3MESH4EOSC has received funding from the European Union窶冱 Horizon 2020
            * research and innovation programme under Grant Agreement no. 863353.
    * build
        * Update go build version to go1.16 and raise minimum go version to go1.13 (Nick Craig-Wood)
        * Make a macOS ARM64 build to support Apple Silicon (Nick Craig-Wood)
        * Install macfuse 4.x instead of osxfuse 3.x (Nick Craig-Wood)
        * Use `GO386=softfloat` instead of deprecated `GO386=387` for 386 builds (Nick Craig-Wood)
        * Disable IOS builds for the time being (Nick Craig-Wood)
        * Androids builds made with up to date NDK (x0b)
        * Add an rclone user to the Docker image but don't use it by default (cynthia kwok)
    * dedupe: Make largest directory primary to minimize data moved (Saksham Khanna)
    * config
        * Wrap config library in an interface (Fionera)
        * Make config file system pluggable (Nick Craig-Wood)
        * `--config ""` or `"/notfound"` for in memory config only (Nick Craig-Wood)
        * Clear fs cache of stale entries when altering config (Nick Craig-Wood)
    * copyurl: Add option to print resulting auto-filename (albertony)
    * delete: Make `--rmdirs` obey the filters (Nick Craig-Wood)
    * docs - many fixes and reworks from edwardxml, albertony, pvalls, Ivan Andreev, Evan Harris, buengese, Alexey Tabakman
    * encoder/filename - add SCSU as tables (Klaus Post)
    * Add multiple paths support to `--compare-dest` and `--copy-dest` flag (K265)
    * filter: Make `--exclude "dir/"` equivalent to `--exclude "dir/**"` (Nick Craig-Wood)
    * fshttp: Add DSCP support with `--dscp` for QoS with differentiated services (Max Sum)
    * lib/cache: Add Delete and DeletePrefix methods (Nick Craig-Wood)
    * lib/file
        * Make pre-allocate detect disk full errors and return them (Nick Craig-Wood)
        * Don't run preallocate concurrently (Nick Craig-Wood)
        * Retry preallocate on EINTR (Nick Craig-Wood)
    * operations: Made copy and sync operations obey a RetryAfterError (Ankur Gupta)
    * rc
        * Add string alternatives for setting options over the rc (Nick Craig-Wood)
        * Add `options/local` to see the options configured in the context (Nick Craig-Wood)
        * Add `_config` parameter to set global config for just this rc call (Nick Craig-Wood)
        * Implement passing filter config with `_filter` parameter (Nick Craig-Wood)
        * Add `fscache/clear` and `fscache/entries` to control the fs cache (Nick Craig-Wood)
        * Avoid +Inf value for speed in `core/stats` (albertony)
        * Add a full set of stats to `core/stats` (Nick Craig-Wood)
        * Allow `fs=` params to be a JSON blob (Nick Craig-Wood)
    * rcd: Added systemd notification during the `rclone rcd` command. (Naveen Honest Raj)
    * rmdirs: Make `--rmdirs` obey the filters (Nick Craig-Wood)
    * version: Show build tags and type of executable (Ivan Andreev)
* Bug Fixes
    * install.sh: make it fail on download errors (Ivan Andreev)
    * Fix excessive retries missing `--max-duration` timeout (Nick Craig-Wood)
    * Fix crash when `--low-level-retries=0` (Nick Craig-Wood)
    * Fix failed token refresh on mounts created via the rc (Nick Craig-Wood)
    * fshttp: Fix bandwidth limiting after bad merge (Nick Craig-Wood)
    * lib/atexit
        * Unregister interrupt handler once it has fired so users can interrupt again (Nick Craig-Wood)
        * Fix occasional failure to unmount with CTRL-C (Nick Craig-Wood)
        * Fix deadlock calling Finalise while Run is running (Nick Craig-Wood)
    * lib/rest: Fix multipart uploads not stopping on context cancel (Nick Craig-Wood)
* Mount
    * Allow mounting to root directory on windows (albertony)
    * Improved handling of relative paths on windows (albertony)
    * Fix unicode issues with accented characters on macOS (Nick Craig-Wood)
    * Docs: document the new FileSecurity option in WinFsp 2021 (albertony)
    * Docs: add note about volume path syntax on windows (albertony)
    * Fix caching of old directories after renaming them (Nick Craig-Wood)
    * Update cgofuse to the latest version to bring in macfuse 4 fix (Nick Craig-Wood)
* VFS
    * `--vfs-used-is-size` to report used space using recursive scan (tYYGH)
    * Don't set modification time if it was already correct (Nick Craig-Wood)
    * Fix Create causing windows explorer to truncate files on CTRL-C CTRL-V (Nick Craig-Wood)
    * Fix modtimes not updating when writing via cache (Nick Craig-Wood)
    * Fix modtimes changing by fractional seconds after upload (Nick Craig-Wood)
    * Fix modtime set if `--vfs-cache-mode writes`/`full` and no write (Nick Craig-Wood)
    * Rename files in cache and cancel uploads on directory rename (Nick Craig-Wood)
    * Fix directory renaming by renaming dirs cached in memory (Nick Craig-Wood)
* Local
    * Add flag `--local-no-preallocate` (David Sze)
    * Make `nounc` an advanced option except on Windows (albertony)
    * Don't ignore preallocate disk full errors (Nick Craig-Wood)
* Cache
    * Add `--fs-cache-expire-duration` to control the fs cache (Nick Craig-Wood)
* Crypt
    * Add option to not encrypt data (Vesnyx)
    * Log hash ok on upload (albertony)
* Azure Blob
    * Add container public access level support. (Manish Kumar)
* B2
    * Fix HTML files downloaded via cloudflare (Nick Craig-Wood)
* Box
    * Fix transfers getting stuck on token expiry after API change (Nick Craig-Wood)
* Chunker
    * Partially implement no-rename transactions (Maxwell Calman)
* Drive
    * Don't stop server side copy if couldn't read description (Nick Craig-Wood)
    * Pass context on to drive SDK - to help with cancellation (Nick Craig-Wood)
* Dropbox
    * Add polling for changes support (Robert Thomas)
    * Make `--timeout 0` work properly (Nick Craig-Wood)
    * Raise priority of rate limited message to INFO to make it more noticeable (Nick Craig-Wood)
* Fichier
    * Implement copy & move (buengese)
    * Implement public link (buengese)
* FTP
    * Implement Shutdown method (Nick Craig-Wood)
    * Close idle connections after `--ftp-idle-timeout` (1m by default) (Nick Craig-Wood)
    * Make `--timeout 0` work properly (Nick Craig-Wood)
    * Add `--ftp-close-timeout` flag for use with awkward ftp servers (Nick Craig-Wood)
    * Retry connections and logins on 421 errors (Nick Craig-Wood)
* Hdfs
    * Fix permissions for when directory is created (Lucas Messenger)
* Onedrive
    * Make `--timeout 0` work properly (Nick Craig-Wood)
* S3
    * Fix `--s3-profile` which wasn't working (Nick Craig-Wood)
* SFTP
    * Close idle connections after `--sftp-idle-timeout` (1m by default) (Nick Craig-Wood)
    * Fix "file not found" errors for read once servers (Nick Craig-Wood)
    * Fix SetModTime stat failed: object not found with `--sftp-set-modtime=false` (Nick Craig-Wood)
* Swift
    * Update github.com/ncw/swift to v2.0.0 (Nick Craig-Wood)
    * Implement copying large objects (nguyenhuuluan434)
* Union
    * Fix crash when using epff policy (Nick Craig-Wood)
    * Fix union attempting to update files on a read only file system (Nick Craig-Wood)
    * Refactor to use fspath.SplitFs instead of fs.ParseRemote (Nick Craig-Wood)
    * Fix initialisation broken in refactor (Nick Craig-Wood)
* WebDAV
    * Add support for sharepoint with NTLM authentication (Rauno Ots)
    * Make sharepoint-ntlm docs more consistent (Alex Chen)
    * Improve terminology in sharepoint-ntlm docs (Ivan Andreev)
    * Disable HTTP/2 for NTLM authentication (georne)
    * Fix sharepoint-ntlm error 401 for parallel actions (Ivan Andreev)
    * Check that purged directory really exists (Ivan Andreev)
* Yandex
    * Make `--timeout 0` work properly (Nick Craig-Wood)
* Zoho
    * Replace client id - you will need to `rclone config reconnect` after this (buengese)
    * Add forgotten setupRegion() to NewFs - this finally fixes regions other than EU (buengese)

(leot)

2021-04-17 09:53:13 UTC MAIN commitmail json YAML

doc: Updated audio/gtick to 0.5.5

(nia)

2021-04-17 09:53:03 UTC MAIN commitmail json YAML

gtick: Update to 0.5.5

2020-05-17: gtick-0.5.5 release: Fixed build on GCC 10, Updated Translations

(nia)

2021-04-17 09:44:04 UTC MAIN commitmail json YAML

doc: Updated net/py-rt to 2.1.1

(leot)

2021-04-17 09:43:54 UTC MAIN commitmail json YAML

py-rt: Update to 2.1.1

Changes:
2.1.1
-----
- Fix support for custom field values containing newlines in API responses (#10, #11)
  (the previous change in v1.0.11 fixed API requests) (#64)

(leot)

2021-04-17 09:42:03 UTC MAIN commitmail json YAML

doc: Updated net/youtube-dl to 20210417

(leot)

2021-04-17 09:41:52 UTC MAIN commitmail json YAML

youtube-dl: Update to 20210417

Changes:
20210417
--------
Core
+ [utils] Add support for experimental HTTP response status code
  308 Permanent Redirect (#27877, #28768)

Extractors
+ [lbry] Add support for HLS videos (#27877, #28768)
* [youtube] Fix stretched ratio calculation
* [youtube] Improve stretch extraction (#28769)
* [youtube:tab] Improve grid extraction (#28725)
+ [youtube:tab] Detect series playlist on playlists page (#28723)
+ [youtube] Add more invidious instances (#28706)
* [pluralsight] Extend anti-throttling timeout (#28712)
* [youtube] Improve URL to extractor routing (#27572, #28335, #28742)
+ [maoritv] Add support for maoritelevision.com (#24552)
+ [youtube:tab] Pass innertube context and x-goog-visitor-id header along with
  continuation requests (#28702)
* [mtv] Fix Viacom A/B Testing Video Player extraction (#28703)
+ [pornhub] Extract DASH and HLS formats from get_media end point (#28698)
* [cbssports] Fix extraction (#28682)
* [jamendo] Fix track extraction (#28686)
* [curiositystream] Fix format extraction (#26845, #28668)

(leot)

2021-04-17 09:25:02 UTC MAIN commitmail json YAML

doc: Updated audio/flite to 2.2

(nia)

2021-04-17 09:24:50 UTC MAIN commitmail json YAML

flite: update to 2.2

Changes:

Better grapheme support for hundreds of new languages as part of Wilderness project (http://www.festvox.org/cmu_wilderness/)

Also includes updated G2P rules for indic

(nia)

2021-04-17 09:20:47 UTC MAIN commitmail json YAML

2021-04-17 09:17:58 UTC MAIN commitmail json YAML

doc: Added audio/mpg123-jack version 1.26.5

(nia)

2021-04-17 09:17:45 UTC MAIN commitmail json YAML

add audio/mpg123-jack (properly, this time)

JACK output module for the mpg123 audio player.

(nia)

2021-04-17 09:15:05 UTC MAIN commitmail json YAML

add audio/mpg123-jack

JACK output module for the mpg123 audio player.

(nia)

2021-04-17 09:10:38 UTC MAIN commitmail json YAML

darkice: add options.mk, for previous

(nia)

2021-04-17 09:07:56 UTC MAIN commitmail json YAML

doc: Updated audio/darkice to 1.4

(nia)

2021-04-17 09:07:46 UTC MAIN commitmail json YAML

darkice: Update to 1.4

pkgsrc changes:

- add many more package options.
- adjust the man page for device names on NetBSD.

01-03-2020 Darkice 1.4 released
    o Shoutcast and Icecast 2 connection issues fixed.

04-08-2016 Darkice 1.3 released
    o Small bugs fixed by Nicolas Boulenguez <nicolas@debian.org>.
    o Bugs related to streaming to remote servers fixed. Patch by Kalle Kulonen
<kulonenk@gmail.com> and Mark Turner <jmarkturner@gmail.com>.

(nia)

2021-04-17 08:31:24 UTC MAIN commitmail json YAML

doc: Updated audio/ezstream to 1.0.2

(nia)

2021-04-17 08:31:13 UTC MAIN commitmail json YAML

ezstream: Update to 1.0.2

This changes the configuration file format. Use ezstream-cfgmigrate to
migrate.

Changes in 1.0.2, released on 2021-02-12:

* Fix a crash, if metadata placeholders are configured for input files
  that do not contain the respective values. From gui-lux on Github (#16).
* Fix a crash in one instance of querying the metadata program. From taku0220
  on Github (#23).
* Fix a crash when referencing an unconfigured intake in a stream. From
  Optiqus on Github (#28).
* Documentation and example improvements

Changes in 1.0.1, released on 2020-02-22:

* Fix a crash, if there is a typo in the <encoder /> setting
* Fix regression setting the stream name. From zygmund2000 on Github.
* Minor example and documentation tweaks

Changes in 1.0.0, released on 2020-01-29:

* Major feature release with a new configuration file structure
* New configuration migration tool to help with the upgrade
  (ezstream-cfgmigrate)
* Added support for modern libshout functionality:
  - WebM and Matroska media formats
  - ICY and RoarAudio streaming protocols
  - TLS encryption
* Several bug fixes and an extensive unit test suite
* Support the new '@b@' placeholder for separate album metadata
* The command line option -p has been added, causing ezstream to write a
  locked PID file to a given location
* The command line options -m and -n have been removed, and new configuration
  file settings have been added accordingly
* The real-time status information is now enabled explicitly with the new
  command line option -r
* The behaviour of the -s command line argument was changed:
  To shuffle lines from standard input, the special file name "-" needs
  to be provided.
* TagLib (its C wrapper library) is now a mandatory dependency
* Native support for MS Windows and certain legacy UNIX systems has been
  removed

Changes in 0.6.1, released on 2020-01-29:

* src/util.c
  - [FIX]  Fix crash on missing <format/> element. From Petr Pisar.
            (Ticket #2208)

(nia)

2021-04-17 08:25:15 UTC MAIN commitmail json YAML

meson: do not include python application.mk

(nia)

2021-04-17 07:47:04 UTC MAIN commitmail json YAML

doc: Updated audio/abcmidi to 20210221

(nia)

2021-04-17 07:46:52 UTC MAIN commitmail json YAML

2021-04-17 07:37:24 UTC MAIN commitmail json YAML

doc: Updated emulators/gxemul to 0.6.3.1

(ryoon)

2021-04-17 07:36:53 UTC MAIN commitmail json YAML

gxemul: Update to 0.6.3.1

Changelog:
20210215        Implementing the fadd.dss 88K instruction, and working a bit
                more on the exception cases in the xmem instruction.
20210220        Implementing mouse emulation support for the LUNA88K machine.
                Updating OpenBSD/sgi install instructions (6.5 -> 6.8),
                and including a screenshot of X11 running.
20210221        Handle return values from interrupted select() when checking
                for available console input. (Found when using CTRL-C on Linux
                to enter the debugger command line, and noticed that it was
                spuriously broken.)
20210222        Basic multiprocessor bootup of OpenBSD/luna88k now works, but
                it is slightly unstable.

(ryoon)

2021-04-16 17:19:23 UTC MAIN commitmail json YAML

doc: Updated print/qpdf to 10.3.1

(ryoon)

2021-04-16 17:18:57 UTC MAIN commitmail json YAML

qpdf: Update to 10.3.1

Changelog:

10.3.1
This is qpdf version 10.3.1. It contains just one bug fix from
10.3.0 which could cause perfectly valid files to fail to go through
page splitting if their document-level form dictionary had a
particular characteristic. There is also code to better handle
future such problems if any are still lurking.

10.3.0
This is qpdf version 10.3.0. This release includes a few minor
fixes and some rework of the form field handling code from 10.2.0.
It turns out the code in 10.2.0 was not complete and didn't handle
several import cases including resolving conflicts when merging
the same fields more than once or fields with conflicting names
and defaults from multiple files.

10.2.0
This is qpdf version 10.2.0. This release includes several enhancements
to the API and CLI including better handling of form fields with
page splitting and merging, support for file attachments, an added
way to read a password from stdin, several enhancements to form
field and annotation helpers, and rewritten support for name and
number trees. This release also requires a C++-14 compiler. I have
no plans to require anything newer than C++-14 in the foreseeable
future. There are also a few bug fixes.

(ryoon)

2021-04-16 16:20:47 UTC MAIN commitmail json YAML

archivers: Enable pxz

(ryoon)

2021-04-16 16:16:54 UTC MAIN commitmail json YAML

doc: Added archivers/pxz version 4.999.9beta

(ryoon)

2021-04-16 16:16:05 UTC MAIN commitmail json YAML

archivers/pxz: import pxz-4.999.9beta

Parallel XZ is a compression utility that takes advantage of running LZMA
compression of different parts of an input file on multiple cores and
processors simultaneously.
Its primary goal is to utilize all resources to speed up compression time
with minimal possible influence on compression ratio.

Packaged by ISIHARA Takanori and me in pkgsrc-wip/pxz.

(ryoon)

2021-04-16 15:04:25 UTC MAIN commitmail json YAML

doc: Update gcc10 packages to 10.3.0

(ryoon)

2021-04-16 15:03:43 UTC MAIN commitmail json YAML

gcc10, gcc10-libs: Update to 10.3.0

Changelog:
* Bugfixes.

Target Specific Changes
AArch64

    A bug with the Random Number intrinsics in the arm_acle.h header
    that resulted in an incorrect status result being returned has
    been fixed.

    GCC now supports the Fujitsu A64FX. The associated -mcpu and
    -mtune options are -mcpu=a64fx and -mtune=a64fx respectively.
    In particular, -mcpu=a64fx generates code for Armv8.2-A with
    SVE and tunes the code for the A64FX. This includes tuning the
    SVE code, although by default the code is still length-agnostic
    and so works for all SVE implementations. Adding -msve-vector-bits=512
    makes the code specific to 512-bit SVE.

(ryoon)

2021-04-16 14:55:42 UTC MAIN commitmail json YAML

libclucene: Fix build with GCC 10

* Match all GCC versions, ignore GCC 2 or earlier cases.
  Fix build with GCC 10 or later.

(ryoon)

2021-04-16 14:29:43 UTC MAIN commitmail json YAML

doc: Updated devel/nss to 3.64

(ryoon)

2021-04-16 14:29:22 UTC MAIN commitmail json YAML

nss: Update to 3.64

Changelog:
Bugs fixed in NSS 3.64:
* Bug 1705286 - Properly detect mips64.
* Bug 1687164 - Introduce NSS_DISABLE_CRYPTO_VSX and disable_crypto_vsx.
* Bug 1698320 - replace __builtin_cpu_supports("vsx") with
ppc_crypto_support() for clang.
* Bug 1613235 - Add POWER ChaCha20 stream cipher vector acceleration.

(ryoon)

2021-04-16 14:13:10 UTC MAIN commitmail json YAML

gnome-shell: Explicit run-time dependency on x11/libgdm

(cirnatdan)

2021-04-16 13:59:36 UTC MAIN commitmail json YAML

doc: Added x11/libgdm version 40.0

(cirnatdan)

2021-04-16 13:59:10 UTC MAIN commitmail json YAML

x11: Add libgdm

(cirnatdan)

2021-04-16 13:57:52 UTC MAIN commitmail json YAML

x11/libgdm: import libgdm-40.0

The GNOME Display Manager is a system service that is responsible for
providing graphical log-ins and managing local and remote displays.
This package installs libgdm, which is the client part of GDM.

(cirnatdan)

2021-04-16 13:49:04 UTC MAIN commitmail json YAML

Add urw-fonts as dependency; without these fonts all roman and cyrilic
documents show up empty for it can't find the fonts.

Minor version bumb; urw-fonts chosen since xpdf3 also depends on it.

(reinoud)

2021-04-16 13:19:06 UTC MAIN commitmail json YAML

Updated filesystems/py-fs, devel/py-dulwich

(adam)

2021-04-16 13:18:27 UTC MAIN commitmail json YAML

py-dulwich: updated to 0.20.21

0.20.21:
* Add basic support for a GcsObjectStore that stores
  pack files in gcs.
* In porcelain.push, default to local active branch.
* Support fetching symrefs.
* Add aarch64 wheel building.

(adam)

2021-04-16 13:17:39 UTC MAIN commitmail json YAML

py-fs: updated to 2.4.13

2.4.13

Added

- Added FTP over TLS (FTPS) support to FTPFS.
- `PathError` now supports wrapping an exception using the `exc` argument.
- Better documentation of the `writable` parameter of `fs.open_fs`, and
  hint about using `fs.wrap.read_only` when a read-only filesystem is
  required.

Changed

- Make `FS.upload` explicit about the expected error when the parent directory of the destination does not exist.
- Migrate continuous integration from Travis-CI to GitHub Actions and introduce several linters
  again in the build steps.
- Stop requiring `pytest` to run tests, allowing any test runner supporting `unittest`-style
  test suites.
- `FSTestCases` now builds the large data required for `upload` and `download` tests only
  once in order to reduce the total testing time.
- `MemoryFS.move` and `MemoryFS.movedir` will now avoid copying data.
- `FS.removetree("/")` behaviour has been standardized in all filesystems, and
  is expected to clear the contents of the root folder without deleting it.
- `FS.getbasic` is now deprecated, as it is redundant with `FS.getinfo`,
  and `FS.getinfo` is now explicitly expected to return the *basic* info
  namespace unconditionally.

Fixed

- Make `FTPFile`, `MemoryFile` and `RawWrapper` accept [`array.array`](https://docs.python.org/3/library/array.html)
  arguments for the `write` and `writelines` methods, as expected by their base class [`io.RawIOBase`]
- Various documentation issues, including `MemoryFS` docstring not rendering properly.
- Avoid creating a new connection on every call of `FTPFS.upload`.
- `WrapReadOnly.removetree` not raising a `ResourceReadOnly` when called.
- `WrapCachedDir.isdir` and `WrapCachedDir.isfile` raising a `ResourceNotFound` error on non-existing path.
- `FTPFS` not listing certain entries with sticky/SUID/SGID permissions set by Linux server.
- `scandir` iterator not being closed explicitly in `OSFS.scandir`, occasionally causing a `ResourceWarning`
  to be thrown.
- Incomplete type annotations for the `temp_fs` parameter of `WriteTarFS` and `WriteZipFS`.

(adam)

2021-04-16 13:06:21 UTC MAIN commitmail json YAML

doc: Updated ham/chirp to 20210416

(gdt)

2021-04-16 13:06:13 UTC MAIN commitmail json YAML

ham/chirp: Update to 20210416

upstream changes are minor

(gdt)

2021-04-16 12:19:02 UTC MAIN commitmail json YAML

Updated textproc/py-rdflib, www/py-sparqlwrapper

(adam)

2021-04-16 12:18:42 UTC MAIN commitmail json YAML

py-sparqlwrapper: updated to 1.8.5

2019-12-22  1.8.5
-----------------
- Improve/tests for development
- Changed. Be more strict on Accept Turtle header
- Migrated documentation from epydoc to sphinx and readthedocs

2019-04-18  1.8.4
-----------------
- Added example
- hotfix: Added custom_fixers folder in MANIFEST, in order to be used in python3

2019-04-17  1.8.3
-----------------
- Include ChangeLog.txt in the distribution
- Removed import of SPARQLWrapper in setup.py
- Added support for querying RDF/XML in a CONSTRUCT query type
- Updated the procedure for determining the query type
- Do not send format parameter for the results ([format, output, results]) when the query is a SPARQL Update query
- Added test for new agrovoc SPARQL endpoint (using Fuseki2)
- Added test for 4store SPARQL endpoint (used by agroportal)
- Added/Updated tests
- Added examples
- Updated doc
- Fixed code generated for python3 using 2to3, adding a custom fixer

2018-05-26  1.8.2
-----------------
- Fixed bug
- Updated doc
- Added Unauthorized exception in SPARQLWrapperExceptions
- Added support for custom HTTP headers
- Changed timeout setting

2018-02-25  1.8.1
-----------------
- Update classifiers (Python 3.6)
- Added some documentation about the parameter to indicate the output format
- Fixed typo in width calculation
- Added support for CSV, TSV
- Added support for Only HTTP Content Negotiation

(adam)

2021-04-16 12:17:43 UTC MAIN commitmail json YAML

py-rdflib: updated to 5.0.0

RELEASE 5.0.0

5.0.0 is a major stable release and is the last release to support Python 2 & 3.4. 5.0.0 is mostly backwards-
compatible with 4.2.2 and is intended for long-term, bug fix only support.

General Bugs Fixed:
  * Fix n3 parser exponent syntax of floats with leading dot.
  * FIX: Change is comparison to == for tuple
  * fix: Added _parseBoolean function to enforce correct Lexical-to-value mapping

Enhanced Features:
  * Issue 1003

SPARQL Fixes:
  * CONSTRUCT resolve with initBindings

Documentation Fixes:
  * DOC: Use sphinxcontrib-apidoc and various cleanups
  * Update copyright year in docs conf.py
  * slightly improved styling, small index text changes

(adam)

2021-04-16 11:39:43 UTC MAIN commitmail json YAML

doc: Updated net/syncthing-gtk to 0.9.4.4

(triaxx)

2021-04-16 11:39:24 UTC MAIN commitmail json YAML

syncthing-gtk: Update to 0.9.4.4

pkgsrc changes:
---------------
  * Change the GitHub master site.
  * Temporarily add a patch to fix typos since the pull requests have not
    been yet merged and the development seems to be paused. The patch
    can be deleted if a new version is released upstream.
  * Add dependency to net/glib-networking to enable HTTPS communication
    with the daemon (GIO GnuTLS support).
upstream changes:
-----------------
No changelog is provided. The list of commits is at:
https://github.com/kozec/syncthing-gtk/commits/v0.9.4.4

(triaxx)

2021-04-16 09:21:12 UTC MAIN commitmail json YAML

Updated net/grpc, net/py-grpcio, net/py-grpcio-testing, net/py-grpcio-tools

(adam)

2021-04-16 09:20:01 UTC MAIN commitmail json YAML

grpc py-grpcio py-grpcio-testing py-grpcio-tools: updated to 1.37.0

Release v1.37.0
This release contains refinements, improvements, and bug fixes, with highlights listed below.

Core

Bump up minimum supported clang to 4.0.
Use URI form of address for channelz listen node.
Implementation CSDS (xDS Config Dump).
Don't assume that c-ares won't retry failed writes in grpc_core::GrpcPolledFdWindows::SendVUDP.
Fix an infinite read loop with SRV record resolution on windows.
xDS status notifier.
Remove CAS loops in global subchannel pool and simplify subchannel refcounting.
Add missing security field to channelz Socket.
Disable check_call_host when server_verification_option is not GRPC_TLS_SERVER_VERIFICATION.

C++

Remove fault injection environmental variable guard.
Implement C++ Admin Interface API.
cmake: Reflect minor version change in SONAME for C++ and C#.
xDS Client-Side Fault Injection.

Python

use boringssl asm optimizations in aarch64 wheel source build.
Clarify Guarantees about grpc.Future Interface.
Use crosscompilation to build python armv7 wheels.
[Aio] Add time_remaining method to ServicerContext.
Standardize all environment variable boolean configuration in python's setup.py.
Crosscompile python aarch64 wheels with dockcross.
Fix Signal Safety Issue.

(adam)

2021-04-16 08:53:17 UTC MAIN commitmail json YAML

Updated textproc/py-humanize, devel/py-flake8

(adam)

2021-04-16 08:52:35 UTC MAIN commitmail json YAML

py-flake8: updated to 3.9.1

3.9.1:

Bugs Fixed
- Fix codes being ignored by plugins utilizing ``extend_default_ignore``

(adam)

2021-04-16 08:47:52 UTC MAIN commitmail json YAML

py-humanize: updated to 3.4.1

3.4.1:
Fixed
Add Catalan binary translation

3.4.0:
Added
Add Catalan translation

Changed
Add documentation and release notes to project_urls

Fixed
Fix tests for Python 3.10

(adam)

2021-04-16 07:53:09 UTC MAIN commitmail json YAML

doc: Updated print/cups-filters to 1.28.8

(prlw1)

2021-04-16 07:52:38 UTC MAIN commitmail json YAML

Update cups-filters to 1.28.8

NEWS - OpenPrinting CUPS Filters v1.28.8 - 2021-03-25
-----------------------------------------------------

CHANGES IN V1.28.8

- libcupsfilters: Made check whether the driverless PPD to
  generate should be a fax out PPD more reliable (Issue #343).
- foomatic-rip: Options in the 5th command line argument of
  the CUPS filter command line are separated only by white
  space and not by comma, also make sure that an option "none"
  is not considered a custom page size (Issue #348).
- implicitclass: Raise timeout for cups-browsed's answer from
  20s to 60s (Pull request #346).
- libcupsfilters: In the PPD generator really give priority to
  Apple Raster against PDF (Issue #331).

(prlw1)

2021-04-16 07:35:28 UTC MAIN commitmail json YAML

gdk-pixbuf2-xlib: correct previous, thx wiz

(nia)

2021-04-16 07:12:02 UTC MAIN commitmail json YAML

Updated www/nginx-devel, archivers/unrar

(adam)

2021-04-16 07:11:41 UTC MAIN commitmail json YAML

2021-04-16 07:10:21 UTC MAIN commitmail json YAML

nginx-devel: updated to 1.19.10

Changes with nginx 1.19.10

*) Change: the default value of the "keepalive_requests" directive was
  changed to 1000.

*) Feature: the "keepalive_time" directive.

*) Feature: the $connection_time variable.

*) Workaround: "gzip filter failed to use preallocated memory" alerts
  appeared in logs when using zlib-ng.

(adam)

2021-04-16 07:09:35 UTC MAIN commitmail json YAML

nginx: updated nginx_http_push_module to 1.2.8

1.2.8 (Apr. 12 2021)
feature: nchan_subscriber_info locations for receiving customizable info from
      subscribers of a given channel.
fix: incorrect lgging of disconnected subscribers with 400 error instead of 499
      (bug introduced in v1.2.7)
feature: add $nchan_channel_subscriber_last_seen, $nchan_channel_subscriber_count
      and $nchan_channel_message_count variables
fix: GCC 10 compatibility

(adam)

2021-04-16 06:56:06 UTC MAIN commitmail json YAML

Updated math/liblinear, net/nmap, net/ndiff, net/zenmap

(adam)

2021-04-16 06:55:33 UTC MAIN commitmail json YAML

nmap ndiff zenmap: updated to 7.91

Nmap 7.91 [2020-10-09]

o [Zenmap] Fix a crash in the profile editor due to a missing import.

o [Nsock][Windows] Demote the IOCP Nsock engine because of some known
  issues that will take longer to resolve. The previous default "poll" engine
  will be used instead.

o [Nsock][Windows] Fix a crash in service scan due to a previously-unknown
  error being returned from the IOCP Nsock engine. [Daniel Miller]

o [NSE] Fix several places where Lua's os.time was being used
  to represent dates prior to January 1, 1970, which fails on Windows. Notably,
  NSE refused to run in UTC+X timezones with the error "time result cannot be
  represented in this installation" [Cl辿ment Notin, nnposter, Daniel Miller]

o [NSE] MySQL library was not properly parsing server responses,
  resulting in script crashes. [nnposter]

o Silence the irrelevant warning, "Your ports include 'T:' but you
  haven't specified any TCP scan type" when running nmap -sUV

Nmap 7.90 [2020-10-02]

o [Windows] Upgraded Npcap, our Windows packet capturing (and sending)
  library to the milestone 1.00 release! It's the culmination of 7 years of
  development with 170 public pre-releases. This includes dozens of
  performance improvements, bug fixes, and feature enhancements described
  at https://npcap.org/changelog.

o Integrated over 800 service/version detection fingerprints submitted since
  August 2017. The signature count went up 1.8% to 11,878, including 17 new
  softmatches.  We now detect 1237 protocols from airmedia-audio, banner-ivu,
  and control-m to insteon-plm, pi-hole-stats, and ums-webviewer.  A
  significant number of submissions remain to be integrated in the next
  release.

o Integrated over 330 of the most-frequently-submitted IPv4 OS fingerprints
  since August 2017. Added 26 fingerprints, bringing the new total to 5,678.
  Additions include iOS 12 & 13, macOS Catalina & Mojave, Linux 5.4, FreeBSD
  13, and more.

o Integrated all 67 of your IPv6 OS fingerprint submissions from August 2017 to
  September 2020. Added new groups for FreeBSD 12, Linux 5.4, and Windows 10,
  and consolidated several weak groups to improve classification accuracy.

o [NSE] Added 3 NSE scripts, from 2 authors, bringing the total up to 601!
  They are all listed at https://nmap.org/nsedoc/, and the summaries are
  below:

  + dicom-brute attempts to brute force the called Application Entity Title
    of DICOM servers. [Paulino Calderon]

  + dicom-ping discovers DICOM servers and determines if any Application
    Entity Title is allowed to connect. [Paulino Calderon]

  + uptime-agent-info collects system information from an Idera Uptime
    Infrastructure Monitor agent. [Daniel Miller]

o Addressed over 250 code quality issues identified by LGTM.com,
  improving our code quality score from "C" to "A+"

o Released Npcap OEM Edition. For more than 20 years, the Nmap Project has
  been funded by selling licenses for companies to distribute Nmap with
  their products, along with commercial support. Hundreds of commercial
  products now use Nmap for network discovery tasks like port scanning,
  host discovery, OS detection, service/version detection, and of course
  the Nmap Scripting Engine (NSE). Until now they have just used standard
  Nmap, but this new OEM Edition is customized for use within other Windows
  software. Nmap OEM contains the OEM version of our Npcap driver, which
  allows for silent installation. It also removes the Zenmap GUI, which
  cuts the installer size by more than half. And it reports itself as Nmap
  OEM so customers know it's a properly licensed Nmap. See
  https://nmap.org/oem for more details. We will be reaching out to all
  existing licensees with Nmap OEM access credentials, but any licensees
  who wants it quicker should see https://nmap.org/oem.

o Upgraded the Nmap license form a sort of hacked-up version of GPLv2 to a
  cleaner and better organized version (still based on GPLv2) now called the
  Nmap Public Source License to avoid confusion. See https://nmap.org/npsl/
  for more details and annotated license text. This NPSL project was started
  in 2006 (community discussion here:
  https://seclists.org/nmap-dev/2006/q4/126) and then it lost momentum for 7
  years until it was restarted in 2013
  (https://seclists.org/nmap-dev/2013/q1/399) and then we got distracted by
  development again. We still have some ideas for improving the NPSL, but
  it's already much better than the current license, so we're applying NPSL
  Version 0.92 to the code now and can make improvements later if
  needed. This does not change the license of previous Nmap releases.

o Removed nmap-update. This program was intended to provide a way to update
  data files and NSE scripts, but the infrastructure was never fielded. It
  depended on Subversion version control and would have required maintaining
  separate versions of NSE scripts for compatibility.

o Removed the silent-install command-line option (/S) from the Windows
  installer. It causes several problems and there were no objections when we
  proposed removing it in 2016 (https://seclists.org/nmap-dev/2016/q4/168).
  It will remain in Nmap OEM since its main use was for customers who
  redistribute Nmap with other software. If anyone else has a strong need
  for an Nmap silent installer, please contact sales@nmap.com and we'll see
  what we can do.

o 23 new UDP payloads and dozens more default ports for existing
  payloads developed for Rapid7's InsightVM scan engine. These speed up and
  ensure detection of open UDP services. [Paul Miseiko, Rapid7]

o Added a UDP payload for STUN (Session Traversal Utilities for NAT).
  [David Fifield]

o [NSE] Fixed an off-by-one bug in the stun.lua library that prevented
  parsing a server response. [David Fifield]

o Restrict Nmap's search path for scripts and data files.
  NMAPDATADIR, defined on Unix and Linux as ${prefix}/share/nmap, will not be
  searched on Windows, where it was previously defined as C:\Nmap .
  Additionally, the --script option will not interpret names as directory names
  unless they are followed by a '/'. [Daniel Miller]

o Fix an assertion failure when unsolicited ARP response is received:
    nmap: Target.cc:503: void Target::stopTimeOutClock(const timeval*): Assertion `htn.toclock_running == true' failed.

o [NSE] New outlib library consolidates functions related to NSE output,
  both string formatting conventions and structured output. [Daniel Miller]

o [NSE] New dicom library implements the DICOM protocol used for
  storing and transfering medical images. [Paulino Calderon]

o Fix a regression in ARP host discovery left over from the move from
  massping to ultra_scan in Nmap 4.22SOC8 (2007) that sometimes resulted in
  missing ARP responses from targets near the end of a scan. Accuracy and speed
  are both improved. [Daniel Miller]

o Restrict Nmap's search path for scripts and data files.
  NMAPDATADIR, defined on Unix and Linux as ${prefix}/share/nmap, will not be
  searched on Windows, where it was previously defined as C:\Nmap .
  Additionally, the --script option will not interpret names as directory names
  unless they are followed by a '/'. [Daniel Miller]

o Fix the "iocp" Nsock engine for Windows to be able to correctly
  handle PCAP read events. This engine is now the default for Windows, which
  should greatly improve performance over the previous default, the "poll"
  engine. [Daniel Miller]

o Reduced CPU usage of OS scan by 50% by avoiding string copy
  operations and removing undocumented fingerprint syntax unused in nmap-os-db
  ('&' and '+' in expressions). [Daniel Miller]

o Allow multiple UDP payloads to be specified for a port in
  nmap-payloads. If the first payload does not get a response, the remaining
  payloads are tried round-robin. [Paul Miseiko, Rapid7]

o New option --discovery-ignore-rst tells Nmap to ignore TCP RST
  responses when determining if a target is up. Useful when firewalls are
  spoofing RST packets. [Tom Sellers, Rapid7]

o [Ncat] It is now possible to override
  the value of TLS SNI via --ssl-servername [Hank Leininger, nnposter]

o Fixed parsing of TCP options which would hang (infinite loop) if an
  option had an explicit length of 0. Affects Nmap 7.80 only.
  [Daniel Miller, Imed Mnif]

o [NSE] Script ssh2-enum-algos would fail if the server initiated
  the key exchange before completing the protocol version exchange
  [Scott Ellis, nnposter]

o [NSE] Fetching of SSH2 keys might fail because of key exchange
  confusion [nnposter]

o [NSE] Performance of script afp-ls has been dramatically improved
  [nnposter]

o [NSE] Parsing of AFP FPGetFileDirParms and
  FPEnumerateExt2FPEnumerateExt2 responses was not working correctly [nnposter]

o [NSE] Eliminated false positives in script http-shellshock caused by
  simple reflection of HTTP request data [Anders Kaseorg]

o [NSE] SNMP scripts are now enabled on non-standard ports where SNMP
  has been detected [usd-markus, nnposter]

o [NSE] MQTT library was using incorrect position when parsing
  received responses [tatulea]

o [NSE] IPMI library was using incorrect position when parsing
  received responses [Star Salzman]

o [NSE] Scripts ipmi-brute and deluge-rpc-brute were not capturing
  successfully brute-forced credentials [Star Salzman]

o Allow resuming IPv6 scans with --resume. The address parsing was assuming IPv4
  addresses, leading to "Unable to parse ip" error. In a related fix, MAC addresses
  will not be parsed as IP addresses when resuming from XML. [Daniel Miller]

o Fix reverse-DNS handling of PTR records that are not lowercase.
  Nmap was failing to identify reverse-DNS names when the DNS server delivered
  them like ".IN-ADDR.ARPA". [Lucas Nussbaum, Richard Sch端tz, Daniel Miller]

o [NSE] IKE library was not properly populating the protocol
  number in aggressive mode requests. [luc-x41]

o Added service fingerprinting for MySQL 8.x, Microsoft SQL
  Server 2019, MariaDB, and Crate.io CrateDB. Updated PostreSQL coverage and
  added specific detection of recent versions running in Docker. [Tom Sellers]

o New XML output "hosthint" tag emitted during host discovery when a target is
  found to be up. This gives earlier notification than waiting for the
  hostgroup to finish all scan phases. [Paul Miseiko]

o New UDP payloads for GPRS Tunneling Protocol (GTP) on ports 2123,
  2152, and 3386. [Guillaume Teissier]

o [NSE] SSH scripts now run on several ports likely to be SSH based on
  empirical data from Shodan.io, as well as the netconf-ssh service.
  [Lim Shi Min Jonathan, Daniel Miller]

o [Zenmap] Stop creating a debugging output file 'tmp.txt' on the
  desktop in macOS. [Roland Linder]

o [Nping] Address build failure under libc++ due to "using namespace std;" in
  several headers, resulting in conflicting definitions of bind(). Reported by
  StormBytePP and Rosen Penev. [Daniel Miller]

o [Ncat] Fix a fatal error when connecting to a Linux VM socket with
  verbose output enabled. [Stefano Garzarella]

o [Ncat] Proxy credentials can be alternatively passed onto Ncat by
  setting environment variable NCAT_PROXY_AUTH, which reduces the risk of the
  credentials getting captured in process logs. [nnposter]

o [NSE] Fixed a crash on Windows when processing a GZIP-encoded HTTP
  body. [Daniel Miller]

o Upgrade libpcap to 1.9.1, which addresses several CVE vulnerabilities.

o Upgrade libssh2 to 1.9.0, fixing compilation with OpenSSL 1.1.0 API.

o Processing of IP address CIDR blocks was not working
  correctly on ppc64, ppc64le, and s390x architectures. [rfrohl, nnposter]

o [Windows] Add support for the new loopback behavior in Npcap 0.9983 and
  later. This enables Nmap to scan localhost on Windows without needing the
  Npcap Loopback Adapter to be installed, which was a source of problems for
  some users.  [Daniel Miller]

o [NSE] MS SQL library has improved version resolution, from service pack level
  to individual cumulative updates [nnposter]

o [NSE] With increased verbosity, script http-default-accounts now
  reports matched target fingerprints even if no default credentials were found
  [nnposter]

o [NSE] IPP request object conversion to string was not working
  correctly [nnposter]

o [NSE] IPP response parser was not correctly processing
  end-of-attributes-tag [nnposter]

o [NSE] Script cups-info was failing due to erroneous double-decoding
  of the IPP printer status [nnposter]

o [NSE] Oracle TNS parser was incorrectly unmarshalling DALC byte
  arrays [nnposter]

o [NSE] The password hashing function for Oracle 10g was not working correctly
  for non-alphanumeric characters [nnposter]

o [NSE] Virtual host probing list, vhosts-full.lst, was missing numerous
  entries present in vhosts-default.lst [nnposter]

o [NSE] Script http-grep was not correctly calculating Luhn
  checksum [Colleen Li, nnposter]

o [NSE] Scripts dhcp-discover and broadcast-dhcp-discover now support
  new argument "mac" to force a specific client MAC address [nnposter]

o [NSE] Code improvements in RPC Dump, benefitting NFS-related scripts
  [nnposter]

o [NSE] RPC code was using incorrect port range, which was causing some calls,
  such as NFS mountd, to fail intermittently [nnposter]

o [NSE] XML output from script ssl-cert now includes RSA key modulus
  and exponent [nnposter]

o [NSE] Nmap no longer crashes when SMB scripts, such as smb-ls, call
  smb.find_files [nnposter]

o [NSE] The MongoDB library was causing errors when assembling protocol
  payloads. [nnposter]

o [NSE] The RTSP library was not correctly generating request
  strings. [nnposter]

o [NSE] VNC handshakes were failing with insert position out of bounds
  error. [nnposter]

o [NSE] Function marshall_dom_sid2 in library msrpctypes was not
  correctly populating ID Authority. [nnposter]

o [NSE] Unmarshalling functions in library msrpctypes were attempting
  arithmetic on a nil argument. [Ivan Ivanov, nnposter]

o [NSE] Functions lsa_lookupnames2 and lsa_lookupsids2 in library
  msrpc were incorrectly referencing function strjoin when called with debug
  level 2 or higher. [Ivan Ivanov]

o [NSE] Added HTTP default account fingerprints for Tomcat
  Host Manager and Dell iDRAC9. [Cl辿ment Notin]

o [NSE] A MS-SMB spec non-compliance in Samba was causing
  protocol negotiation to fail with data string too short error.
  [Cl辿ment Notin, nnposter]

o [NSE] A bug in SMB library was causing scripts to
  fail with bad format argument error. [Ivan Ivanov]

o [NSE] The HTTP library no longer crashes when code requests digest
  authentication but the server does not provide the necessary authentication
  header. [nnposter]

o [NSE] Fixed a bug in http-wordpress-users.nse that could cause
  extraneous output to be captured as part of a username. [Duarte Silva]

(adam)

2021-04-16 06:49:33 UTC MAIN commitmail json YAML

cogl: strip werror

(nia)

2021-04-16 06:49:24 UTC MAIN commitmail json YAML

2021-04-16 06:48:04 UTC MAIN commitmail json YAML

liblinear: updated to 2.43

Version 2.43
Installing the Python interface through PyPI is supported.

Version 2.42
For dual CD solvers (logistic/l2 losses but not l1 loss), if a maximal number of iterations is reached, LIBLINEAR directly switches to run a primal Newton solver.

(adam)

2021-04-16 06:47:23 UTC MAIN commitmail json YAML

gdk-pixbuf2-xlib: disable building of man pages explicitly

this causes packaging problems if xsltproc is found on the host system.

man pages are not useful for this package (they do not include library
docs in man format) but rather gdk2-pixbuf.

(nia)

2021-04-16 06:45:50 UTC MAIN commitmail json YAML

ruby26-base: assumes compiler defaults to c99 mode

(nia)

2021-04-16 06:43:48 UTC MAIN commitmail json YAML

2021-04-16 06:38:21 UTC MAIN commitmail json YAML

2021-04-16 06:06:06 UTC MAIN commitmail json YAML

Updated devel/py-backports.functools_lru_cache, textproc/py-sphinx, textproc/py-sphinx-autoapi, textproc/py-sphinx-autodoc-typehints

(adam)

2021-04-16 06:05:43 UTC MAIN commitmail json YAML

py-sphinx-autodoc-typehints: updated to 1.12.0

1.12.0
- Dropped Python 3.5 support
- Added the simplify_optional_unions config option
- Fixed indentation of multiline strings

(adam)

2021-04-16 06:02:44 UTC MAIN commitmail json YAML

py-sphinx-autoapi: updated to 1.8.0

v1.8.0 (2021-04-12)
-------------------

Features
* Expandable value for multi-line string attributes.
* Can resolve the qualified paths of parameters to generics.
* Warnings have been categorised and can be suppressed through ``suppress_warnings``.
* Data attributes are documentated in module summaries.

Bug Fixes
* Fixed setting ``autodoc_typehints`` to ``none`` or ``description``
  not turning off signature type hints.
  ``autodoc_typehints`` integration is consisidered experimental until
  the extension properly supports overload functions.
* Fixed data annotations causing pickle or deepcopy errors.
* Documentation can be generated when multiple source directories
  share a single ``conf.py`` file.

Trivial/Internal Changes
* Fixed ``DeprecationWarning`` for invalid escape sequence ``\s`` in tests.
* Fixed ``FutureWarning`` for ``Node.traverse()`` becoming an iterator instead of list.
* New example implementation of ``autoapi-skip-member`` Sphinx event.
* Can run tests with tox 4.
* Updated packaging to use PEP-517.
* All unittest style tests have been converted to pytest style tests.
* An exception raised by docfx is raised directly instead of wrapping it.
* Started using Github Actions for continuous integration.

(adam)

2021-04-16 05:56:27 UTC MAIN commitmail json YAML

py-sphinx: updated to 3.5.4

Release 3.5.4 (released Apr 11, 2021)
=====================================

Dependencies
------------
* Restrict docutils to 0.16

Bugs fixed
----------
* autodoc: Async staticmethods and classmethods are considered as non
  async coroutine-functions with Python3.10
* html theme: The style are not applied with docutils-0.17
  - toctree captions
  - The content of ``sidebar`` directive
  - figures

(adam)

2021-04-16 05:53:37 UTC MAIN commitmail json YAML

py-backports.functools_lru_cache: updated to 1.6.4

v1.6.4
For test dependencies, when indicating Python 3, use ``>=3``
instead of ``>3`` to satisfy
`python-poetry/poetry#3862 <https://github.com/python-poetry/poetry/issues/3862>`_.

v1.6.3
Restore universal wheel.

v1.6.2
Packaging refresh.

(adam)

2021-04-16 05:46:17 UTC MAIN commitmail json YAML

Updated devel/py-atpublic, databases/py-apsw, devel/py-astroid, finance/py-braintree

(adam)

2021-04-16 05:45:54 UTC MAIN commitmail json YAML

py-braintree: updated to 4.8.0

4.8.0
Add LocalPaymentReversed webhook
Add store_id and store_ids to Transaction.search

(adam)

2021-04-16 05:44:05 UTC MAIN commitmail json YAML

py-astroid: updated to 2.5.3

What's New in astroid 2.5.3?
============================
* Takes into account the fact that subscript inferring for a ClassDef may involve __class_getitem__ method
* Reworks the `collections` and `typing` brain so that `pylint`s acceptance tests are fine.
* Use ``inference_tip`` for ``typing.TypedDict`` brain.
* Fix mro for classes that inherit from typing.Generic
* Add inference tip for typing.Generic and typing.Annotated with ``__class_getitem__``

(adam)

2021-04-16 05:42:29 UTC MAIN commitmail json YAML

py-apsw: updated to 3.35.4

3.35.4-r1
Updates for SQLite download url (the year is part of the urls).
Added enable flag for built-in SQL math functions, and enable it by default with 窶兎nable-all-extensions.
Use the newer buffer API for Python 3 (old API removed in Python 3.10).

(adam)

2021-04-16 05:40:25 UTC MAIN commitmail json YAML

py-atpublic: updated to 2.3

2.3 (2021-04-13)
================
* Do type hinting the right way.

2.2 (2021-04-13)
================
* ``public()`` and ``private()`` can't be correctly type annotated, so the
  type hints on these two functions have been removed.  The ``ModuleAware``
  was also removed.
* Added a ``py.typed`` file to satisfy type checkers.
* Fixed a documentation cross-reference bug.

(adam)

2021-04-16 01:14:37 UTC MAIN commitmail json YAML

rust: the i386 bootstrap workaround is really a BUILD_DEPENDS

(gutteridge)

2021-04-15 20:45:15 UTC MAIN commitmail json YAML

doc: Updated sysutils/xplr to 0.4.4

(pin)

2021-04-15 20:44:51 UTC MAIN commitmail json YAML

sysutils/xplr: update to 0.4.4

Changes & fixes:
-Added support for NO_COLOR env var to disable colors (more-info).
-Added history pipe file exposed as $XPLR_PIPE_HISTORY_OUT.
-Added new selection commands.
-SelectAll
-SelectPath
-UnSelectAll
-UnSelectPath
-ToggleSelectAll
-ToggleSelectionByPath
-Fixed UI style priority: default_ui -> node_type -> selection_ui -> focus_ui
-Added key binding ctrl-a or V to toggle select all.

Misc:
-Visit our new collection of hacks and themes.

(pin)

2021-04-15 19:55:26 UTC MAIN commitmail json YAML

doc: Updated devel/dconf-editor to 3.38.3

(prlw1)

2021-04-15 19:55:06 UTC MAIN commitmail json YAML

Update dconf-editor to 3.38.3

dconf-editor 3.38.3
===================

Fix build with newer vala

Translations updated:
  Norwegian Bokmè™±: Kjartan Maraas

(prlw1)

2021-04-15 18:45:34 UTC MAIN commitmail json YAML

Updated textproc/oniguruma, devel/py-ZopeInterface

(adam)

2021-04-15 18:45:13 UTC MAIN commitmail json YAML

py-ZopeInterface: updated to 5.4.0

5.4.0 (2021-04-15)
==================

- Make the C implementation of the ``__providedBy__`` descriptor stop
  ignoring all errors raised when accessing the instance's
  ``__provides__``. Now it behaves like the Python version and only
  catches ``AttributeError``. The previous behaviour could lead to
  crashing the interpreter in cases of recursion and errors.

- Update the ``repr()`` and ``str()`` of various objects to be shorter
  and more informative. In many cases, the ``repr()`` is now something
  that can be evaluated to produce an equal object. For example, what
  was previously printed as ``<implementedBy builtins.list>`` is now
  shown as ``classImplements(list, IMutableSequence, IIterable)``.

- Make ``Declaration.__add__`` (as in ``implementedBy(Cls) +
  ISomething``) try harder to preserve a consistent resolution order
  when the two arguments share overlapping pieces of the interface
  inheritance hierarchy. Previously, the right hand side was always
  put at the end of the resolution order, which could easily produce
  invalid orders.

(adam)

2021-04-15 18:44:31 UTC MAIN commitmail json YAML

oniguruma: updated to 6.9.7.1

Release 6.9.7 revised 1

fix: replace UChar to OnigUChar in oniguruma.h

(adam)

2021-04-15 15:54:00 UTC MAIN commitmail json YAML

2021-04-15 15:29:03 UTC MAIN commitmail json YAML

doc: Updated textproc/split-thai to 2.2

(scole)

2021-04-15 15:26:30 UTC MAIN commitmail json YAML

Update to 2.2
- depend on sox instead mpg123
- in pthai.el, use sox as sole audio player. this simplifies things a bit
  and allows silences to be stripped from audio files while playing.
  remove pthai-mp3-* custom variables
- minor pthai.el clean ups
- remove seq-contain-p from pthai.el, which appears deprecated
  in later emacs versions
- in pthai.el, work around apparent emacs bug when unsplitting
  and buffer name contains combining characters

(scole)

2021-04-15 14:56:35 UTC MAIN commitmail json YAML

libmspub: Fix build with GCC 10 in NetBSD base

Fix errors like uint32_t not found.

(ryoon)

2021-04-15 12:49:55 UTC MAIN commitmail json YAML

doc: Added editors/cesium version 0.1.2

(pin)

2021-04-15 12:49:08 UTC MAIN commitmail json YAML

2021-04-15 12:48:10 UTC MAIN commitmail json YAML

2021-04-15 11:23:14 UTC MAIN commitmail json YAML

2021-04-15 10:45:34 UTC MAIN commitmail json YAML

2021-04-15 10:43:01 UTC MAIN commitmail json YAML

2021-04-15 10:30:42 UTC MAIN commitmail json YAML

gnome-session: Remove unused policykit and policykit-gnome dependencies

policykit-gnome hasn't been a dependency of gnome session for a while,
being replaced by a built-in PolicyKit agent[0] and polkit

[0] https://packages.debian.org/stretch/policykit-1-gnome

(cirnatdan)