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 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-13 02:42:56 UTC Now

2024-04-24 08:10:04 UTC MAIN commitmail json YAML

Updated www/py-uwsgitop, textproc/py-ini2toml

(adam)

2024-04-24 08:09:43 UTC MAIN commitmail json YAML

py-ini2toml: updated to 0.14

Version 0.14

* Introduce ``LiteTranslator`` and ``FullTranslator`` as
  convenience classes for more deterministic behaviour, :pr:`95`.
* ``setuptools`` plugin:

  * Fix ``ValueError`` when ``setup.cfg`` contains ``[options.packages.find]``
    but also lists ``[options] packages = ...`` explicitly as a list of package
    names, :issue:`93`.

* ``pytest`` plugin:

  * Remove comments when converting ``addopts`` with multi-line values, :issue:`98`.

(adam)

2024-04-24 08:07:27 UTC MAIN commitmail json YAML

2024-04-24 07:24:35 UTC MAIN commitmail json YAML

Updated emulators/qemu, www/py-django-tastypie

(adam)

2024-04-24 07:24:19 UTC MAIN commitmail json YAML

py-django-tastypie: updated to 0.14.7

v0.14.7
Added support for Django 5.0; in particular fixes for the django project retiring django.utils.datetime_safe

(adam)

2024-04-24 07:20:59 UTC MAIN commitmail json YAML

2024-04-24 06:52:31 UTC MAIN commitmail json YAML

doc: Updated sysutils/yazi to 0.2.5

(pin)

2024-04-24 06:51:22 UTC MAIN commitmail json YAML

sysutils/yazi: update to 0.2.5

This version introduces a new DDS (Data Distribution Service) aimed at
facilitating communication and state synchronization between multiple Yazi
instances, as well as state persistence.

It's built on a client/server architecture (without the need for running
additional server processes), and deeply integrates with a Lua-based
publish-subscribe model.

It also provides a set of new command-line options for interaction,
such as ya pub, ya pub-static, yazi --local-events, yazi --remote-events,
and currently used for:
- Cross-process yank-paste
- Change Yazi's CWD to PWD on subshell exit
- Integration with the new yazi.nvim plugin: subscribing to file deletion,
  movement, and renaming events through yazi --local-events to keep Neovim's
  buffer/LSP in sync
- bookmarks.yazi plugin: Saving bookmarks added by the user through the
  persistence feature provided by DDS

Performance optimizations
- Reduced CPU overhead during icon matching: Icon matching accounted for 35.6%
  of CPU time during rendering, and by changing the matching algorithm, this
  proportion has been reduced by ~10%
- Caching of each matched icon to avoid repeated calculations: By caching
  icons, further reductions in CPU usage for matching are achieved, as only a
  few new files that appear when scrolling through panes need to be matched
- Re-implemented the file watcher in an async way: This is the only sync I/O
  operation besides configuration initialization at startup, which occurs
  during cd and scrolling through the file list. For certain slow external
  devices, Yazi would experience noticeable lagginess, which has now been
  addressed, see #877 for more details

Feature enhancements
- Re-implemented fzf and zoxide as plugins for better flexibility: fzf and
  zoxide have added more runtime error handling. zoxide now supports the new
  update_db feature, which automatically adds Yazi's CWD to zoxide when
  navigating. To enable it, add the following to your init.lua:

  require("zoxide"):setup {
      update_db = true,
  }

- Maintain the original modification time when copying files
- Support smart case for cd path completion
- Add placeholder messages when there are no files in the directory
- Preserve the order of file selection when performing open, shell, or bulk
  rename on multiple selected files
- Prevent copying a directory to itself

The plugin system has also seen some improvements:
- ya.dbg() and ya.err() now support printing any type of data
- New ps API as a carrier for DDS interaction
- ya.manager_emit() now supports passing Url type

What's Changed
- fix: use BTreeSet for selected files to maintain order by @sxyazi in #799
- refactor: wrap Opener with Cow to avoid unnecessary memory reallocations
  when opening files by @sxyazi in #805
- fix: respond to the SIGTERM signal even when Yazi is in the background and
  has passed control of the terminal to the spawned process by @sxyazi in #797
- refactor: switch to stderr by @sxyazi in #819
- feat: fix all dependencies to specific version numbers to allow non---locked
  builds by @sxyazi in #821
- fix: adjust calculation for number of lines in a notification message
  by @Rolv-Apneseth in #828
- fix: disable ANSI encoding for formatted events for the tracing_subscriber
  to clean up the logs by @Rolv-Apneseth in #832
- feat: enhance the ya.dbg() and ya.err() debugging functions
  by @sxyazi in #835
- perf: accelerate kitty graphics protocol encoding by avoiding string
  reallocation by @sxyazi in #837
- fix: mime-type for xz archives by @sxyazi in #841
- feat: time-based selection order preservation by @sxyazi in #843
- feat: add support for YAZI_FILE_ONE to the built-in file previewer
  by @sxyazi in #846
- fix: Windows cmd.exe not responding to correct CSI sequences due to ConPTY
  by @sxyazi in #845
- perf: add BufWriter to Stderr to avoid frequent system calls and increase
  rendering frame rate by @sxyazi in #849
- feat: DDS (Data Distribution Service) by @sxyazi in #826
- perf: port require() and ya.sync() to Rust to avoid plugin information
  initialization process by @sxyazi in #853
- feat: readable toml parsing error by @SoloJacobs in #854
- feat: add a new sender property to the DDS payload by @sxyazi in #855
- feat: the cd event in DDS will now also be triggered when the tab is first
  created by @sxyazi in #861
- feat: detect CSI u through Stderr to allow using Stdout as the carrier of DDS
  payload without an ANSI sequence response timeout by @sxyazi in #867
- fix: a race condition in DDS static messages sent as internal events
  by @sxyazi in #868
- feat: add is_exec and is_sticky to Cha bindings by @sxyazi in #875
- perf: re-implement file watcher in an async way by @sxyazi in #877
- fix: CJK text rendering issue where the input popup component overlaps with
  images by @sxyazi in #879
- feat: re-implement fzf as a built-in plugin by @sxyazi in #884
- feat: add new --orphan option to the shell command by @sxyazi in #887
- fix: file list expansion arguments ($@, $*) of shell command under opener
  rules are out of order by @sxyazi in #890
- feat: add new move, trash, and delete event kinds to DDS
  by @mikavilpas in #880
- feat: add YAZI_ID environment variable by @sxyazi in #895
- feat: when there are no files in the list, add a placeholder message
  by @sxyazi in #900
- feat: add loading state to directories by @sxyazi in #904
- feat: default "Reveal" opener for Linux by @sxyazi in #907
- perf: switch to globset to reduce CPU time spent on matching icons
  by @sxyazi in #908
- feat: trigger path completion with both / and \ on Windows
  by @ndtoan96 in #909
- feat: add a new ya send command to allow standalone client processes to
  communicate with DDS from the command line by @sxyazi in #913
- feat: allow creating a tab with the startup directory when the tab_create
  command is called without specifying a path parameter by @sxyazi in #917
- feat: generate autocomplete script for ya command by @sxyazi in #919
- feat: allow opening interactively with the --chosen-file flag
  by @mikavilpas in #920
- fix: rollback ratatui to v0.26.1 to avoid panicking by @sxyazi in #922
- feat: expand the types supported by the event system by @sxyazi in #923
- feat: change status bar percent at 100 to Bot by @AidanV in #930
- fix: prevent pasting a directory into itself by @Rolv-Apneseth in #925
- feat: preserve files' modified at timestamp while copying
  by @Rolv-Apneseth in #926
- perf: cache each file's icon to avoid redundant calculations at rendering
  by @sxyazi in #931
- feat: split ya send into ya pub and ya pub-static to make it more ergonomic
  by @sxyazi in #933
- feat: new builtin session.lua plugin by @sxyazi in #940

(pin)

2024-04-24 06:50:32 UTC MAIN commitmail json YAML

doc: Updated graphics/oxipng to 9.1.1

(pin)

2024-04-24 06:49:23 UTC MAIN commitmail json YAML

graphics/oxipng: update to 9.1.1

Version 9.1.1
    [Build] Change man page generation path to resolve issue with cargo publish.

(pin)

2024-04-24 06:47:56 UTC MAIN commitmail json YAML

guile30: compilation fix for previous

(posix.c:1573:7: error: label at end of compound statement)

(wiz)

2024-04-24 05:06:11 UTC MAIN commitmail json YAML

Updated misc/py-platformdirs, devel/py-freezegun

(adam)

2024-04-24 05:05:55 UTC MAIN commitmail json YAML

py-freezegun: updated to 1.5.0

1.5.0

* The default ignore list now contains the `queue`-package
* Added a missing `move_to`-function when calling `freeze_time(tick=True)`
* Fixes a rounding error in `time.time_ns()`
* Fixed a bug where the default ignore list could not be empty (`configure(default_ignore_list=[])`)
* All `tick()` methods now return the new datetime (instead of None)
* Type improvements

(adam)

2024-04-24 05:03:48 UTC MAIN commitmail json YAML

py-platformdirs: updated to 4.2.1

4.2.1

Switch to ruff for formatting and use codespell and docformatter
Use hatch over tox
chore: various minor fixes
chore: update dead Microsoft's known folders documentation link
Allow working without ctypes

(adam)

2024-04-23 22:12:05 UTC MAIN commitmail json YAML

2024-04-23 21:33:43 UTC MAIN commitmail json YAML

doc: Updated devel/macports-legacy-support to 1.2.3

(schmonz)

2024-04-23 21:33:38 UTC MAIN commitmail json YAML

macports-legacy-support: update to 1.2.3. Changes:

1.2.3:
- Add stpncpy() support, along with associated tests
- Allow reexport on newer systems
- test_dirfuncs_compat: fix warning

1.2.2:
- dirfuncs_compat: Add comment regarding retention
- sysconf(_SC_PHYS_PAGES): Always use wrapper on i386
- sys/socket.h: Fix CMSG_DATA definition in <10.6
- Add test for os/lock.h
- Add more library symbols for Rust support

1.2.1:
- Added compatibility entry points. No change to existing code.

1.2.0:
- fdopendir: fixes/improvements
- Build fixes for dirent.h, on 10.9 and 10.4

(schmonz)

2024-04-23 21:26:07 UTC MAIN commitmail json YAML

doc: Updated x11/rendercheck to 1.6

(wiz)

2024-04-23 21:25:58 UTC MAIN commitmail json YAML

rendercheck: update to 1.6.

Aaron Plattner (1):
      Skip shmblend if SHM pixmaps aren't supported

Adam Jackson (4):
      triangles: Fix tests for conjoint and disjoint ops
      Be valgrind-clean
      Don't fail to find the a8r8g8b8 format pointlessly
      Enable a few more formats

Alan Coopersmith (3):
      Update bug tracker URL in man page
      gitlab CI: add a basic build test
      t_repeat.c, t_triangles.c: convert from ISO-8859-1 to UTF-8

Emil Velikov (1):
      autogen.sh: use quoted string variables

Eric Anholt (10):
      Start using stdbool.h instead of Xlib or custom bools.
      Save the list of active formats in a global for use by tests.
      Use ELF sections to make test setup easier.
      shmblend: New test for XRenderComposite() from a pixmap in SHM.
      autogen: Set a default prefix for patches if unset.
      Fix a printf format warning.
      Add a meson build system.
      Remove the autotools build system.
      Simplify manpage variable substitution for Meson.
      Explain how to build using meson in the README.

Jeremy Huddleston Sequoia (4):
      darwin: Build fix
      Mark pointers to test structs as used to prevent dead symbol stripping
      Prevent ASan from placing guards around test structs as we expect them to be laid out sequentially
      Revert "Reduce the number of colors to speed up test execution."

Matt Turner (3):
      meson: Set project version
      meson: Set project license
      rendercheck 1.6

Peter Hutterer (3):
      autogen.sh: drop --enable-maintainer-mode
      autogen.sh: honor NOCONFIGURE=1
      Fix errx handling of va_list

(wiz)

2024-04-23 21:05:38 UTC MAIN commitmail json YAML

doc: Updated devel/mise to 2024.4.8

(schmonz)

2024-04-23 21:05:32 UTC MAIN commitmail json YAML

mise: update to 2024.4.8. Changes:

2024.4.8:

### Features

* add periphery
* add danger-js

### Bug Fixes

* (exec) default to @latest version
* rename bin -> ubi

### Documentation

* (changelog) reorder changelog topics
* fixed asdf-xcbeautify url

### Other Changes

* use https to get gpgkey
* Update xcbeautify
* Include e2e folder in shfmt editorconfig for 2 spaces indenting
* disable megalinter

2024.4.7:

### Bug Fixes

* (zig) make zig core plugin experimental

2024.4.6:

### Features

* Pipx Backend
* ubi backend

### Bug Fixes

* (gleam) use asdf-community fork

### Other Changes

* Add Zig language plugin

(schmonz)

2024-04-23 21:04:41 UTC MAIN commitmail json YAML

doc: Updated devel/swagger-codegen to 3.0.55

(schmonz)

2024-04-23 21:04:35 UTC MAIN commitmail json YAML

swagger-codegen: update to 3.0.55. Changes:

- Bump documented-stable 2.x version

(schmonz)

2024-04-23 19:32:53 UTC MAIN commitmail json YAML

libspf2: add -lresolv to fix Tiger build. No change on Sonoma.

(schmonz)

2024-04-23 16:55:57 UTC MAIN commitmail json YAML

Updated www/py-django-bootstrap5, textproc/py-relatorio

(adam)

2024-04-23 16:55:39 UTC MAIN commitmail json YAML

py-relatorio: updated to 0.10.2

0.10.2

* Defer files added to serializer before call
* Add support for Python 3.12

(adam)

2024-04-23 16:49:57 UTC MAIN commitmail json YAML

py-django-bootstrap5: updated to 24.2

24.2 (2024-04-23)

- Add .editorconfig
- Remove support for Django 4.1 (EOL)
- Add support for color mode
- Change bootstrap_setting from filter to tag
- Remove support for Python 3.7 (EOL)
- Remove support for Django 3.2 (EOL)
- Update Bootstrap to 5.3.3
- Fix Read the Docs

(adam)

2024-04-23 16:35:46 UTC MAIN commitmail json YAML

2024-04-23 16:34:09 UTC MAIN commitmail json YAML

2024-04-23 16:25:49 UTC MAIN commitmail json YAML

2024-04-23 16:19:22 UTC pkgsrc-2024Q1 commitmail json YAML

Mention pullup tickets #6851 and #6852

(bsiegert)

2024-04-23 16:18:54 UTC pkgsrc-2024Q1 commitmail json YAML

Pullup ticket #6852 - requested by taca
net/bind916: blocklist handling fix (PR bin/58170)

Revisions pulled up:
- net/bind916/Makefile                                          1.70-1.72
- net/bind916/distinfo                                          1.55-1.56
- net/bind916/patches/patch-lib_ns_query.c                      1.3

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Fri Apr  5 14:01:01 UTC 2024

  Modified Files:
  pkgsrc/audio/forked-daapd: Makefile
  pkgsrc/audio/mixxx: Makefile
  pkgsrc/audio/strawberry: Makefile
  pkgsrc/audio/termusic: Makefile
  pkgsrc/biology/plinkseq: Makefile
  pkgsrc/chat/ekg: Makefile
  pkgsrc/chat/libgadu: Makefile buildlink3.mk
  pkgsrc/chat/mumble: Makefile
  pkgsrc/databases/mysql80-server: Makefile
  pkgsrc/databases/postgresql-postgis2: Makefile
  pkgsrc/devel/compizconfig-backend-gconf: Makefile buildlink3.mk
  pkgsrc/devel/libcompizconfig: Makefile buildlink3.mk
  pkgsrc/devel/protobuf: buildlink3.mk
  pkgsrc/devel/protobuf-c: Makefile buildlink3.mk
  pkgsrc/devel/py-compizconfig: Makefile buildlink3.mk
  pkgsrc/finance/bitcoin: Makefile
  pkgsrc/geography/qgis: Makefile
  pkgsrc/graphics/digikam: Makefile
  pkgsrc/graphics/opencv: Makefile buildlink3.mk
  pkgsrc/graphics/opencv-contrib-face: Makefile buildlink3.mk
  pkgsrc/graphics/py-Willow: Makefile
  pkgsrc/misc/marble: Makefile
  pkgsrc/multimedia/vlc: Makefile
  pkgsrc/net/bind916: Makefile
  pkgsrc/net/bind918: Makefile
  pkgsrc/net/frr: Makefile
  pkgsrc/net/grpc: Makefile buildlink3.mk
  pkgsrc/net/kopete: Makefile
  pkgsrc/net/mosh: Makefile
  pkgsrc/net/py-grpcio: Makefile
  pkgsrc/net/py-grpcio-tools: Makefile
  pkgsrc/net/qt6-qtgrpc: Makefile buildlink3.mk
  pkgsrc/net/ratman: Makefile
  pkgsrc/net/unbound: Makefile
  pkgsrc/sysutils/collectd-grpc: Makefile
  pkgsrc/sysutils/collectd-pinba: Makefile
  pkgsrc/sysutils/collectd-riemann: Makefile
  pkgsrc/sysutils/collectd-write_prometheus: Makefile
  pkgsrc/sysutils/riemann-client: Makefile
  pkgsrc/wm/ccsm: Makefile

  Log Message:
  *: recursive bump for protobuf 26.1

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu Apr 18 13:39:53 UTC 2024

  Modified Files:
  pkgsrc/net/bind916: Makefile distinfo

  Log Message:
  net/bind916: update to 9.16.50

  9.16.50 (2024-04-17)

  This release marks the end of maintenance for the BIND 9.16 branch.

  6364. [protocol] Add RESOLVER.ARPA to the built in empty zones.
  [GL #4580]

  6338. [func] Optimize slabheader placement, so the infrastructure
  records are put in the beginning of the slabheader
  linked list. [GL !8675]

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sat Apr 20 14:01:08 UTC 2024

  Modified Files:
  pkgsrc/net/bind916: Makefile distinfo
  pkgsrc/net/bind916/patches: patch-lib_ns_query.c

  Log Message:
  net/bind916: fix blocklist handling

  Apply change of revision 1.21 in NetBSD base which fixed PR bin/58170.

  Bump PKGREVISION.

(bsiegert)

2024-04-23 16:18:48 UTC pkgsrc-2024Q1 commitmail json YAML

Pullup ticket #6851 - requested by taca
net/bind918: blocklist handling fix (PR bin/58170)

Revisions pulled up:
- net/bind918/Makefile                                          1.29-1.31
- net/bind918/distinfo                                          1.17-1.18
- net/bind918/patches/patch-lib_ns_query.c                      1.2

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Fri Apr  5 14:01:01 UTC 2024

  Modified Files:
  pkgsrc/audio/forked-daapd: Makefile
  pkgsrc/audio/mixxx: Makefile
  pkgsrc/audio/strawberry: Makefile
  pkgsrc/audio/termusic: Makefile
  pkgsrc/biology/plinkseq: Makefile
  pkgsrc/chat/ekg: Makefile
  pkgsrc/chat/libgadu: Makefile buildlink3.mk
  pkgsrc/chat/mumble: Makefile
  pkgsrc/databases/mysql80-server: Makefile
  pkgsrc/databases/postgresql-postgis2: Makefile
  pkgsrc/devel/compizconfig-backend-gconf: Makefile buildlink3.mk
  pkgsrc/devel/libcompizconfig: Makefile buildlink3.mk
  pkgsrc/devel/protobuf: buildlink3.mk
  pkgsrc/devel/protobuf-c: Makefile buildlink3.mk
  pkgsrc/devel/py-compizconfig: Makefile buildlink3.mk
  pkgsrc/finance/bitcoin: Makefile
  pkgsrc/geography/qgis: Makefile
  pkgsrc/graphics/digikam: Makefile
  pkgsrc/graphics/opencv: Makefile buildlink3.mk
  pkgsrc/graphics/opencv-contrib-face: Makefile buildlink3.mk
  pkgsrc/graphics/py-Willow: Makefile
  pkgsrc/misc/marble: Makefile
  pkgsrc/multimedia/vlc: Makefile
  pkgsrc/net/bind916: Makefile
  pkgsrc/net/bind918: Makefile
  pkgsrc/net/frr: Makefile
  pkgsrc/net/grpc: Makefile buildlink3.mk
  pkgsrc/net/kopete: Makefile
  pkgsrc/net/mosh: Makefile
  pkgsrc/net/py-grpcio: Makefile
  pkgsrc/net/py-grpcio-tools: Makefile
  pkgsrc/net/qt6-qtgrpc: Makefile buildlink3.mk
  pkgsrc/net/ratman: Makefile
  pkgsrc/net/unbound: Makefile
  pkgsrc/sysutils/collectd-grpc: Makefile
  pkgsrc/sysutils/collectd-pinba: Makefile
  pkgsrc/sysutils/collectd-riemann: Makefile
  pkgsrc/sysutils/collectd-write_prometheus: Makefile
  pkgsrc/sysutils/riemann-client: Makefile
  pkgsrc/wm/ccsm: Makefile

  Log Message:
  *: recursive bump for protobuf 26.1

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu Apr 18 13:37:53 UTC 2024

  Modified Files:
  pkgsrc/net/bind918: Makefile distinfo

  Log Message:
  net/bind918: update to 9.18.62

  9.18.26 (2024-04-17)

  6364. [protocol] Add RESOLVER.ARPA to the built in empty zones.
  [GL #4580]

  6363. [bug] dig/mdig +ednsflags=<non-zero-value> did not re-enable
  EDNS if it had been disabled. [GL #4641]

  6361. [bug] Some invalid ISO 8601 durations were accepted
  erroneously. [GL #4624]

  6360. [bug] Don't return static-stub synthesised NS RRset.
  [GL #4608]

  6359. [bug] Fix bug in Depends (keymgr_dep) function. [GL #4552]

  6351. [protocol] Support for the RESINFO record type has been added.
  [GL #4413]

  6346. [bug] Cleaned up several minor bugs in the RBTDB dbiterator
  implementation. [GL !8741]

  6345. [bug] Added missing dns_rdataset_disassociate calls in
  validator.c:findnsec3proofs. [GL #4571]

  6340. [test] Fix incorrectly reported errors when running tests
  with `make test` on platforms with older pytest.
  [GL #4560]

  6338. [func] Optimize slabheader placement, so the infrastructure
  records are put in the beginning of the slabheader
  linked list. [GL !8675]

  6334. [doc] Improve ARM parental-agents definition. [GL #4531]

  6333. [bug] Fix the DNS_GETDB_STALEFIRST flag, which was defined
  incorrectly in lib/ns/query.c. [GL !8683]

  6330. [doc] Update ZSK minimum lifetime documentation in ARM, also
  depends on signing delay. [GL #4510]

  6328. [func] Add workaround to enforce dynamic linker to pull
  jemalloc earlier than libc to ensure all memory
  allocations are done via jemalloc. [GL #4404]

  6326. [bug] Changes to "listen-on" statements were ignored on
  reconfiguration unless the port or interface address was
  changed, making it impossible to change a related
  listener transport type. Thanks to Thomas Amgarten.
  [GL #4518] [GL #4528]

  6325. [func] Expose the TCP client count in statistics channel.
  [GL #4425]

  6324. [bug] Fix a possible crash in 'dig +nssearch +nofail' and
  'host -C' commands when one of the name servers returns
  SERVFAIL. [GL #4508]

  6313. [bug] When dnssec-policy is in effect the DNSKEY's TTLs in
  the zone where not being updated to match the policy.
  This lead to failures when DNSKEYs where updated as the
  TTLs mismatched. [GL #4466]

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sat Apr 20 14:02:40 UTC 2024

  Modified Files:
  pkgsrc/net/bind918: Makefile distinfo
  pkgsrc/net/bind918/patches: patch-lib_ns_query.c

  Log Message:
  net/bind918: fix blocklist handling

  Apply change of revision 1.21 in NetBSD base which fixed PR bin/58170.

  Bump PKGREVISION.

(bsiegert)

2024-04-23 15:58:49 UTC MAIN commitmail json YAML

doc: Updated chat/matrix-synapse to 1.105.1

(gdt)

2024-04-23 15:58:42 UTC MAIN commitmail json YAML

chat/matrix-synapse: Update to 1.105.1

Synapse 1.105.1 (2024-04-23)
Security advisory

The following issues are fixed in 1.105.1.

    GHSA-3h7q-rfh9-xm4v / CVE-2024-31208 — High Severity

    Weakness in auth chain indexing allows DoS from remote room members through disk fill and high CPU usage.

(gdt)

2024-04-23 12:18:41 UTC MAIN commitmail json YAML

doc: TODO: remove ayatana-indicator, packaged in wip

(wiz)

2024-04-23 12:12:07 UTC MAIN commitmail json YAML

doc: remove CVE-2020-23171, it affects nim's zip bindings (separate, unpackaged)

(wiz)

2024-04-23 07:38:14 UTC MAIN commitmail json YAML

bootstrap: Support Linux setups without groups(1), whoami(1)

Allows initial support for OpenWRT.

from Saulius Krasuckas via tech-pkg.

(nia)

2024-04-23 07:16:08 UTC MAIN commitmail json YAML

doc: remove CVE-2021-41259, it has been rejected

(wiz)

2024-04-23 07:14:57 UTC MAIN commitmail json YAML

doc: Updated audio/fasttracker2 to 1.82

(fox)

2024-04-23 07:14:17 UTC MAIN commitmail json YAML

audio/fasttracker2: Update to 1.82

Changes since v1.79.2

v1.82 - 12.04.2024
- MIDI is enabled again for Windows XP (I came up with a solution)
- Fixed: MIDI was actually not working in v1.81 :(
- Fixed: Possible crash on startup or on exit (related to MIDI).
        COULD still happen on Mac, but I haven't experienced it yet!

v1.81 - 09.04.2024
- Windows: Error message boxes were rendered wrongly on Windows XP
- Windows: Disable MIDI support on Windows XP because it was buggy
  (would crash on exit on some systems/interfaces). If you really need to
  use MIDI with the FT2 clone, please consider using an OS that is not
  over 23 years old!
- MSVC: Use v141 platform toolset for 32-bit Windows build
- Rewrote some of the MIDI init/close code, as it looked like it could be
  buggy.

v1.80 - 09.04.2024
- Doing note transpose on the whole song wouldn't count overflowing notes
  properly (it would sometimes not show a warning message first).
- Windows/macOS: Updated SDL to v2.30.2

(fox)

2024-04-23 03:35:34 UTC MAIN commitmail json YAML

doc: Updated misc/rust-kanban to 0.9.5

(pin)

2024-04-23 03:35:15 UTC MAIN commitmail json YAML

misc/rust-kanban: update to 0.9.5

- added path autocomplete for changing the save directory
- bumped dependencies
- refactored some code for readability
- fixed card description not being saved when choosing to save changes from the "save changes to card" popup
- fixed card description cursor not moving in new card form

(pin)

2024-04-23 03:34:31 UTC MAIN commitmail json YAML

doc: Updated shells/oh-my-posh to 19.24.2

(pin)

2024-04-23 03:34:09 UTC MAIN commitmail json YAML

shells/oh-my-posh: update to 19.24.2

Bug Fixes
- path: construct currentpath correctly on Windows (92031bd), closes #4727

(pin)

2024-04-22 19:00:54 UTC MAIN commitmail json YAML

doc: Updated lang/rust to 1.76.0nb1

(pin)

2024-04-22 19:00:31 UTC MAIN commitmail json YAML

lang/rust: revision bump for llvm update

(pin)

2024-04-22 18:35:06 UTC MAIN commitmail json YAML

2024-04-22 18:29:25 UTC pkgsrc-2024Q1 commitmail json YAML

Mention pullup tickets #6846 and #6850

(bsiegert)

2024-04-22 18:29:02 UTC pkgsrc-2024Q1 commitmail json YAML

Pullup ticket #6850 - requested by gutteridge
www/firefox115: security fix
www/firefox115-l10n: dependent update

Revisions pulled up:
- www/firefox115-l10n/Makefile                                  1.7
- www/firefox115-l10n/distinfo                                  1.7
- www/firefox115/Makefile                                      1.20
- www/firefox115/distinfo                                      1.7

---
  Module Name:    pkgsrc
  Committed By:  gutteridge
  Date:          Wed Apr 17 13:42:45 UTC 2024

  Modified Files:
            pkgsrc/www/firefox115: Makefile distinfo

  Log Message:
  firefox115: update to 115.10.0

  * Fixes for mfsa2024-19, also known as:
        CVE-2024-3852, CVE-2024-3854, CVE-2024-3857, CVE-2024-2609,
        CVE-2024-3859, CVE-2024-3861, CVE-2024-3302, CVE-2024-3864.

---
  Module Name:    pkgsrc
  Committed By:  gutteridge
  Date:          Wed Apr 17 13:46:55 UTC 2024

  Modified Files:
            pkgsrc/www/firefox115-l10n: Makefile distinfo

  Log Message:
  firefox115-l10n: update to 115.10.0

(bsiegert)

2024-04-22 18:28:54 UTC pkgsrc-2024Q1 commitmail json YAML

Pullup ticket #6846 - requested by bouyer
net/mirror: build fix

Revisions pulled up:
- net/mirror/Makefile                                          1.47
- net/mirror/distinfo                                          1.10-1.11
- net/mirror/patches/patch-ac                                  1.6
- net/mirror/patches/patch-ad                                  1.6
- net/mirror/patches/patch-ae                                  1.8-1.9
- net/mirror/patches/patch-ag                                  1.3
- net/mirror/patches/patch-lsparse.pl                          1.1

---
  Module Name: pkgsrc
  Committed By: bouyer
  Date: Thu Apr 11 10:23:44 UTC 2024

  Modified Files:
  pkgsrc/net/mirror: Makefile distinfo
  pkgsrc/net/mirror/patches: patch-ac patch-ad patch-ae patch-ag
  Added Files:
  pkgsrc/net/mirror/patches: patch-lsparse.pl

  Log Message:
  Fix warning:
  Old package separator "'" deprecated at ...
  Bump PKGREVISION

---
  Module Name: pkgsrc
  Committed By: bouyer
  Date: Thu Apr 11 17:11:01 UTC 2024

  Modified Files:
  pkgsrc/net/mirror: distinfo
  pkgsrc/net/mirror/patches: patch-ae

  Log Message:
  Remove $Id: from patch-ae, so that CVS doesn't change it
  Regen distinfo

(bsiegert)

2024-04-22 16:26:11 UTC pkgsrc-2024Q1 commitmail json YAML

2024-04-22 14:47:12 UTC MAIN commitmail json YAML

Updated filesystems/cocofs to 1.0.1.

(thorpej)

2024-04-22 14:44:53 UTC MAIN commitmail json YAML

Update to cocofs-1.0.1.  Fixes a compilation issue on some 32-bit platforms
(-Werror=sign-compare).

(thorpej)

2024-04-22 13:44:48 UTC MAIN commitmail json YAML

Note update of biology/hmmer to 3.0nb1.

(he)

2024-04-22 13:44:10 UTC MAIN commitmail json YAML

biology/hmmer: fix build on NetBSD/powerpc.

When building with -maltivec (as we do here, when on NetBSD/powerpc),
__APPLE_ALTIVEC__ gets defined, but you still need to include
<altivec.h>, at least on NetBSD.

(he)

2024-04-22 13:26:36 UTC MAIN commitmail json YAML

doc: Updated lang/nim to 2.0.4

(nikita)

2024-04-22 13:23:55 UTC MAIN commitmail json YAML

nim: update to version 2.0.4

Changelog (from https://nim-lang.org/blog/2024/04/16/versions-1620-204-released.html)

Versions 2.0.4 and 1.6.20 released
16 April 2024 The Nim Team

The Nim team is happy to announce two releases:

    the latest Nim, version 2.0.4
    LTS release, version 1.6.20

For the majority of our users, v2.0.4 contains 23 commits and brings bugfixes and improvements to Nim 2.0.2, released four months ago.

For those users who haven���t switched to Nim v2.0 yet, we have released the ninth patch release for Nim 1.6.x. It is a small release with 13 commits.
Installing Nim 2.0.4
New users

Check out if the package manager of your OS already ships version 2.0.4 or install it as described here.
Existing users

If you have installed a previous version of Nim using choosenim, getting Nim 2.0.4 is as easy as:

$ choosenim 2.0.4

If you are on OSX ARM, choosenim will not work for you. Please choose an alternative method of installing or updating.

Alternatively, you can download Nim 2.0.4 from our nightlies builds.
Donating to Nim

We would like to encourage you to donate to Nim. The donated money will be used to further improve Nim by creating bounties for the most important bugfixes and features.

You can donate via:

    Open Collective
    Bitcoin: 1BXfuKM2uvoD6mbx4g5xM3eQhLzkCK77tJ

If you are a company, we also offer commercial support.
Bugfixes

These reported issues were fixed:

    Fixed ���import sth from mymodule is compiles and trying to see module sthfrommymodule��� (#23148)
    Fixed ���Operations on inline toOpenArray len return a wrong result��� (#23280)
    Fixed ���Nimsuggest segfault with invalid assignment to table��� (#22753)

The complete list of changes is available here.

Installing Nim 1.6.20
New users

If you are a new user, we highly recommend that you start with Nim 2.0.x ��� see the sections above on how to install it.
Existing users

If you have installed a previous version of Nim using choosenim, getting Nim 1.6.20 is as easy as:

$ choosenim 1.6.20

If you are on OSX ARM, choosenim will not work for you. Please choose an alternative method of installing or updating.

Alternatively, you can download Nim 1.6.20 from our nightlies builds.
Bugfixes

These reported issues were fixed:

    Fixed ���import sth from mymodule is compiles and trying to see module sthfrommymodule��� (#23148)
    Fixed ���Operations on inline toOpenArray len return a wrong result��� (#23280)
    Fixed ���[Backport 2.0] Itanium mangling scheme��� (#23301)
    Fixed ���Nimsuggest segfault with invalid assignment to table��� (#22753)

The complete list of changes is available here.

(nikita)

2024-04-22 12:56:31 UTC pkgsrc-2024Q1 commitmail json YAML

Pullup ticket #6849 - requested by taca
lang/php81: security fix

Revisions pulled up:
- lang/php/phpversion.mk                                        1.429
- lang/php81/distinfo                                          1.32

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sat Apr 13 02:53:35 UTC 2024

  Modified Files:
  pkgsrc/lang/php: phpversion.mk
  pkgsrc/lang/php81: distinfo

  Log Message:
  lang/php81: update to 8.1.27

  This release includes security fixes.

  11 Apr 2024, PHP 8.1.28

  - Standard:
    . Fixed bug GHSA-pc52-254m-w9w7 (Command injection via array-ish $command
      parameter of proc_open). (CVE-2024-1874) (Jakub Zelenka)
    . Fixed bug GHSA-wpj3-hf5j-x4v4 (__Host-/__Secure- cookie bypass due to
      partial CVE-2022-31629 fix). (CVE-2024-2756) (nielsdos)
    . Fixed bug GHSA-h746-cjrr-wfmr (password_verify can erroneously return true,
      opening ATO risk). (CVE-2024-3096) (Jakub Zelenka)

(bsiegert)

2024-04-22 12:49:08 UTC pkgsrc-2024Q1 commitmail json YAML

Pullup ticket #6848 - requested by taca
lang/php83: security fix

Revisions pulled up:
- lang/php/phpversion.mk                                        1.428
- lang/php83/distinfo                                          1.6
- lang/php83/patches/patch-configure                            1.4

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sat Apr 13 02:51:54 UTC 2024

  Modified Files:
  pkgsrc/lang/php: phpversion.mk
  pkgsrc/lang/php83: distinfo
  pkgsrc/lang/php83/patches: patch-configure

  Log Message:
  lang/php83: update to 8.3.5

  This release includes security fixes.

  11 Apr 2024, PHP 8.3.5

  - Core:
    . Fixed GH-13569 (GC buffer unnecessarily grows up to GC_MAX_BUF_SIZE when
      scanning WeakMaps). (Arnaud)
    . Fixed bug GH-13612 (Corrupted memory in destructor with weak references).
      (nielsdos)
    . Fixed bug GH-13446 (Restore exception handler after it finishes). (ilutov)
    . Fixed bug GH-13784 (AX_GCC_FUNC_ATTRIBUTE failure). (Remi)
    . Fixed bug GH-13670 (GC does not scale well with a lot of objects created in
      destructor). (Arnaud)

  - DOM:
    . Add some missing ZPP checks. (nielsdos)
    . Fix potential memory leak in XPath evaluation results. (nielsdos)

  - FPM:
    . Fixed GH-11086 (FPM: config test runs twice in daemonised mode).
      (Jakub Zelenka)
    . Fix incorrect check in fpm_shm_free(). (nielsdos)

  - GD:
    . Fixed bug GH-12019 (add GDLIB_CFLAGS in feature tests). (Michael Orlitzky)

  - Gettext:
    . Fixed sigabrt raised with dcgettext/dcngettext calls with gettext 0.22.5
      with category set to LC_ALL. (David Carlier)

  - MySQLnd:
    . Fix GH-13452 (Fixed handshake response [mysqlnd]). (Saki Takamachi)
    . Fix incorrect charset length in check_mb_eucjpms(). (nielsdos)

  - Opcache:
    . Fixed GH-13508 (JITed QM_ASSIGN may be optimized out when op1 is null).
      (Arnaud, Dmitry)
    . Fixed GH-13712 (Segmentation fault for enabled observers when calling trait
      method of internal trait when opcache is loaded). (Bob)

  - Random:
    . Fixed bug GH-13544 (Pre-PHP 8.2 compatibility for mt_srand with unknown
      modes). (timwolla)
    . Fixed bug GH-13690 (Global Mt19937 is not properly reset in-between
      requests when MT_RAND_PHP is used). (timwolla)

  - Session:
    . Fixed bug GH-13680 (Segfault with session_decode and compilation error).
      (nielsdos)

  - SPL:
    . Fixed bug GH-13685 (Unexpected null pointer in zend_string.h). (nielsdos)

  - Standard:
    . Fixed bug GH-11808 (Live filesystem modified by tests). (nielsdos)
    . Fixed GH-13402 (Added validation of `\n` in $additional_headers of mail()).
      (SakiTakamachi)
    . Fixed bug GH-13203 (file_put_contents fail on strings over 4GB on Windows).
      (divinity76)
    . Fixed bug GHSA-pc52-254m-w9w7 (Command injection via array-ish $command
      parameter of proc_open). (CVE-2024-1874) (Jakub Zelenka)
    . Fixed bug GHSA-wpj3-hf5j-x4v4 (__Host-/__Secure- cookie bypass due to
      partial CVE-2022-31629 fix). (CVE-2024-2756) (nielsdos)
    . Fixed bug GHSA-h746-cjrr-wfmr (password_verify can erroneously return true,
      opening ATO risk). (CVE-2024-3096) (Jakub Zelenka)
      Fixed bug GHSA-fjp9-9hwx-59fq (mb_encode_mimeheader runs endlessly for some
      inputs). (CVE-2024-2757) (Alex Dowad)

(bsiegert)

2024-04-22 12:36:40 UTC pkgsrc-2024Q1 commitmail json YAML

Pullup ticket #6847 - requested by taca
lang/php82: security fix

Revisions pulled up:
- lang/php/phpversion.mk                                        1.427
- lang/php82/distinfo                                          1.20
- lang/php82/patches/patch-configure                            1.18

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sat Apr 13 02:49:41 UTC 2024

  Modified Files:
  pkgsrc/lang/php: phpversion.mk
  pkgsrc/lang/php82: distinfo
  pkgsrc/lang/php82/patches: patch-configure

  Log Message:
  lang/php82: update to 8.2.18

  This release includes security fixes.

  11 Apr 2024, PHP 8.2.18

  - Core:
    . Fixed bug GH-13612 (Corrupted memory in destructor with weak references).
      (nielsdos)
    . Fixed bug GH-13784 (AX_GCC_FUNC_ATTRIBUTE failure). (Remi)
    . Fixed bug GH-13670 (GC does not scale well with a lot of objects created in
      destructor). (Arnaud)

  - DOM:
    . Add some missing ZPP checks. (nielsdos)
    . Fix potential memory leak in XPath evaluation results. (nielsdos)
    . Fix phpdoc for DOMDocument load methods. (VincentLanglet)

  - FPM
    . Fix incorrect check in fpm_shm_free(). (nielsdos)

  - GD:
    . Fixed bug GH-12019 (add GDLIB_CFLAGS in feature tests). (Michael Orlitzky)

  - Gettext:
    . Fixed sigabrt raised with dcgettext/dcngettext calls with gettext 0.22.5
      with category set to LC_ALL. (David Carlier)

  - MySQLnd:
    . Fix GH-13452 (Fixed handshake response [mysqlnd]). (Saki Takamachi)
    . Fix incorrect charset length in check_mb_eucjpms(). (nielsdos)

  - Opcache:
    . Fixed GH-13508 (JITed QM_ASSIGN may be optimized out when op1 is null).
      (Arnaud, Dmitry)
    . Fixed GH-13712 (Segmentation fault for enabled observers when calling trait
      method of internal trait when opcache is loaded). (Bob)

  - PDO:
    . Fix various PDORow bugs. (Girgias)

  - Random:
    . Fixed bug GH-13544 (Pre-PHP 8.2 compatibility for mt_srand with unknown
      modes). (timwolla)
    . Fixed bug GH-13690 (Global Mt19937 is not properly reset in-between
      requests when MT_RAND_PHP is used). (timwolla)

  - Session:
    . Fixed bug GH-13680 (Segfault with session_decode and compilation error).
      (nielsdos)

  - Sockets:
    . Fixed bug GH-13604 (socket_getsockname returns random characters in the end
      of the socket name). (David Carlier)

  - SPL:
    . Fixed bug GH-13531 (Unable to resize SplfixedArray after being unserialized
      in PHP 8.2.15). (nielsdos)
    . Fixed bug GH-13685 (Unexpected null pointer in zend_string.h). (nielsdos)

  - Standard:
    . Fixed bug GH-11808 (Live filesystem modified by tests). (nielsdos)
    . Fixed GH-13402 (Added validation of `\n` in $additional_headers of mail()).
      (SakiTakamachi)
    . Fixed bug GH-13203 (file_put_contents fail on strings over 4GB on Windows).
      (divinity76)
    . Fixed bug GHSA-pc52-254m-w9w7 (Command injection via array-ish $command
      parameter of proc_open). (CVE-2024-1874) (Jakub Zelenka)
    . Fixed bug GHSA-wpj3-hf5j-x4v4 (__Host-/__Secure- cookie bypass due to
      partial CVE-2022-31629 fix). (CVE-2024-2756) (nielsdos)
    . Fixed bug GHSA-h746-cjrr-wfmr (password_verify can erroneously return true,
      opening ATO risk). (CVE-2024-3096) (Jakub Zelenka)

  - XML:
    . Fixed bug GH-13517 (Multiple test failures when building with
      --with-expat). (nielsdos)

(bsiegert)

2024-04-22 12:06:41 UTC MAIN commitmail json YAML

tex-latex-bin-doc: don't install man pages installed by print/web2c

(markd)

2024-04-22 11:57:16 UTC MAIN commitmail json YAML

tex-pdftex-doc: don't install man page installed by print/web2c

(markd)

2024-04-22 10:58:03 UTC MAIN commitmail json YAML

Note update of security/beecrypt to 4.1.1nb2.

(he)

2024-04-22 10:57:25 UTC MAIN commitmail json YAML

2024-04-22 10:47:55 UTC MAIN commitmail json YAML

Updated parallel/opencl-headers, parallel/ocl-icd, parallel/pocl

(adam)

2024-04-22 10:44:56 UTC MAIN commitmail json YAML

2024-04-22 10:43:30 UTC MAIN commitmail json YAML

ocl-icd: updated to 2.3.2

v2.3.2

pkconfig support depends on OpenCL-Headers.pc being installed (since Khronos OpenCL Headers v2023.02.06)

(adam)

2024-04-22 10:43:00 UTC MAIN commitmail json YAML

opencl-headers: updated to 2023.12.14

v2023.12.14

Synchronize with OpenCL v3.0.15 specification release.

This release includes several changes that affect backward compatibility:

The CL_DEPTH enum is now properly considered an extension enum pre-OpenCL 2.0 and a core enum for OpenCL 2.0 and newer, so applications compiling for OpenCL 1.2 or earlier will need to include an extension header to access this functionality.
The CL_UNORM_INT24 and CL_DEPTH_STENCIL enums are now properly considered extension enums for all OpenCL versions, so applications will need to include an extension header to access this functionality.
The value for the CL_ME_SKIP_BLOCK_TYPE_8x8_INTEL enum was incorrect in the previous header release and has been corrected.
In addition, the following changes were made for provisional extensions that affect backward compatibility:

The CL_COMMAND_BUFFER_STATE_INVALID_KHR enum is removed, so any code checking for this state can be removed.
The CL_DEVICE_HANDLE_LIST_KHR enum has been split into external memory and semaphore specific CL_MEM_DEVICE_HANDLE_LIST_KHR and CL_SEMAPHORE_DEVICE_HANDLE_LIST_KHR enums, so code using the older enum should be updated to use the newer enums.

(adam)

2024-04-22 10:21:53 UTC MAIN commitmail json YAML

textproc/cityhash: Fix NetBSD implementation.

Don't probe for implementation-specific symbols, there's no need.

(he)

2024-04-22 10:00:00 UTC MAIN commitmail json YAML

Note update of devel/zzuf to 0.15nb1.

(he)

2024-04-22 09:59:21 UTC MAIN commitmail json YAML

2024-04-22 07:57:45 UTC MAIN commitmail json YAML

Updated devel/woboq_codebrowser, parallel/opencl-clang

(adam)

2024-04-22 07:55:27 UTC MAIN commitmail json YAML

2024-04-22 07:54:52 UTC MAIN commitmail json YAML

Updated devel/include-what-you-use, lang/zig, parallel/spirv-headers, parallel/spirv-llvm-translator

(adam)

2024-04-22 07:54:14 UTC MAIN commitmail json YAML

woboq_codebrowser: updated to 2.1.20231117

2.1.20231117
Build with LLVM 17

(adam)

2024-04-22 07:52:21 UTC MAIN commitmail json YAML

2024-04-22 07:50:55 UTC MAIN commitmail json YAML

spirv-headers: updated to 1.3.261.1

sdk-1.3.261.1

Merge pull request 367 from dneto0/coop-matrix-enums-deps
Cooperative matrix enums depend on the extension

(adam)

2024-04-22 07:49:53 UTC MAIN commitmail json YAML

2024-04-22 07:48:47 UTC MAIN commitmail json YAML

include-what-you-use: updated to 0.21

iwyu 0.21 compatible with llvm+clang 17 is released. Major changes:

[iwyu] Improve analysis of type aliases (typedef and using)
[iwyu] Improve analysis of namespace aliases (namespace xyz = foobar)
[iwyu] Improve support for elaborated forward declarations (typedef struct Foo Bar;)
[iwyu] Improve handling of "autocast" and function return types, particularly with complex template types.
[iwyu] Add new IWYU pragma: always_keep, which lets a header announce that it should always be kept wherever included
[iwyu] Automatically use builtin libc++ mappings if libc++ is the active standard library
[mappings] Improve mappings for libc++ and posix headers

(adam)

2024-04-22 07:33:13 UTC MAIN commitmail json YAML

doc: Updated pkgtools/bootstrap-mk-files to 20240422

(jperkin)

2024-04-22 07:33:05 UTC MAIN commitmail json YAML

2024-04-22 07:31:22 UTC MAIN commitmail json YAML

Updated lang/llvm, lang/clang, lang/clang-tools-extra, lang/libunwind, lang/compiler-rt, lang/libcxx, lang/libcxxabi, devel/lld, devel/lldb, devel/polly, parallel/openmp, lang/wasi-compiler-rt, lang/wasi-libcxx, lang/mlir, lang/flang

(adam)

2024-04-22 07:28:21 UTC MAIN commitmail json YAML

2024-04-22 07:26:42 UTC MAIN commitmail json YAML

2024-04-22 07:25:57 UTC MAIN commitmail json YAML

2024-04-22 07:06:39 UTC MAIN commitmail json YAML

2024-04-22 07:05:16 UTC MAIN commitmail json YAML

2024-04-22 07:04:01 UTC MAIN commitmail json YAML

2024-04-22 07:03:35 UTC MAIN commitmail json YAML

2024-04-22 06:55:17 UTC MAIN commitmail json YAML

doc: Updated textproc/hgrep to 0.3.7

(pin)

2024-04-22 06:54:07 UTC MAIN commitmail json YAML

textproc/hgrep: update to 0.3.7

v0.3.7 - 21 Apr 2024
- Support many text encodings. Previously only UTF-8 was supported. (#21)
  - Add --encoding (-E) command line option to specify file encoding of matched files. For example, the following command searches files encoded in Shift JIS.

      hgrep --encoding sjis pattern path/to/dir

  - Detect file encodings from BOM. hgrep can automatically detect UTF-16LE, UTF-16BE, and UTF-8 if BOM exists in the file.
- Fix some syntax detection fails when BOM is inserted at the head of file. (#20)
- Improve performance by removing redundant read system calls on detecting syntax.
- Improve error messages when failing to read files

(pin)

2024-04-22 06:52:52 UTC MAIN commitmail json YAML

doc: Updated audio/spotify-player to 0.18.0

(pin)

2024-04-22 06:52:42 UTC MAIN commitmail json YAML

2024-04-22 06:51:48 UTC MAIN commitmail json YAML

audio/spotify-player: update to 0.18.0

- Add fake track repeat mode in #410
- Make notification timeout configurable and allow whitespaces in playback_format in #417
- Refactor client request handling module in #418
- Refactor ui and event modules in #419
- Miscellaneous UI improvements in #420
    - support searching inside the command help page
    - renders playlist's description inside context page if exists (with new playlist_desc component style)
    - support all style modifiers in https://docs.rs/ratatui/latest/ratatui/style/struct.Modifier.html
- Determine clipboard provider automatically based on user's environment in #421
- Decouple configs from application's state in #422

Breaking changes
- OpenCommandHelp and Queue commands are updated to go to a new page instead of opening a popup
- remove copy_command config option (a copy command is now derived automatically)

(pin)

2024-04-22 05:09:13 UTC MAIN commitmail json YAML

Updated graphics/oxipng, devel/py-hatchling

(adam)

2024-04-22 05:08:57 UTC MAIN commitmail json YAML

py-hatchling: updated to 1.24.2

1.24.2

Fixed:

Add .venv to the list of directories that cannot be traversed
Output from the core Application utility now writes to stderr

(adam)

2024-04-22 05:07:36 UTC MAIN commitmail json YAML

oxipng: updated to 9.1.0

Version 9.1.0

- [Improvement] Add `--keep display` equivalent to `--strip safe`.
- [Improvement] Add modified zeng palette sorting method, improving optimization of indexed images.
- [Improvement] If only one filter is specified, guarantee to only use this one.
- [Improvement] Evaluate low-depth indexed even if low-depth grayscale was already achieved.
- [Bugfix] Fix battiato palette sorting method not being used if the input was not already indexed.
- [Bugfix] Fix rare crash caused by a truncated palette.
- [Build] Reduce size of binaries.
- [Build] Add man page generation.
- [Build] Publish deb archives for Linux.
- [Misc] Bump minimum Rust version to 1.74.0.

(adam)

2024-04-22 03:50:52 UTC MAIN commitmail json YAML

graphics/netpbm: Store distfiles in MASTER_SITE_LOCAL

(ryoon)

2024-04-22 03:23:03 UTC MAIN commitmail json YAML

doc: Updated pkgtools/pkgchkxx to 0.2

(pho)

2024-04-22 03:22:37 UTC MAIN commitmail json YAML

pkgtools/pkgchkxx: Update to 0.2

* Performance improvement: `pkgchkxx -s` no longer invokes `make update
  CLEANDEPENDS=yes` but now uses `make update
  DEPENDS_TARGET='package-install clean'`.
* Performance improvement: `pkgrrxx` by default now removes working
  directories directly instead of running `make clean`, which is slow. You
  can disable this optimization with a configure option
  `--disable-fast-clean`.
* Performance improvement: Tools now use `posix_spawn(3)` on platforms
  where it exists, and fall back to `fork` & `exec` where it doesn't.
* `pkgrrxx` now shows the number of entries in each non-empty TODO list, to
  give the user some clue about the time it's going to take.
* Fixed an issue where `RR> ` could be printed twice depending on how the
  C++ compiler optimized the code.

(pho)

2024-04-21 20:38:43 UTC MAIN commitmail json YAML

Updated sysutils/minipro to 0.7.

(thorpej)

2024-04-21 20:38:27 UTC MAIN commitmail json YAML

gtk-vnc: reflect the dependency on pulseaudio when enabled

This should help build packages depending on net/gtk-vnc, when it was
built with the "pulseaudio" option enabled.

<wiz> looks ok to me

Tested on NetBSD/amd64 with net/deforaos-vncviewer.

(khorben)

2024-04-21 20:37:52 UTC MAIN commitmail json YAML

2024-04-21 20:27:36 UTC MAIN commitmail json YAML

doc: Updated cad/klayout to 0.29.0

(mef)

2024-04-21 20:27:18 UTC MAIN commitmail json YAML

(cad/klayout) Updated 0.28.17 to 0.29.0

0.29.0          (2024-04-01):
* Enhancement: %GITHUB%/issues/1662 Strong default grids

* Enhancement: %GITHUB%/issues/1656 Display-->Goto Position dialog
  should accept + as well as - for number prefixes
* Bugfix: %GITHUB%/issues/1651 Errors when adding polygons with 4 points
* Bugfix: %GITHUB%/issues/1644 DRC: some issues with edge layers
* Bugfix: %GITHUB%/issues/1643 DRC: Feeding the same layer to
  two-layer operations in deep mode does not render the desired result
* Enhancement: %GITHUB%/issues/1638 let klayout marker browser read
  strmxor .. xor.gds.gz, xor.oas result files
* Enhancement: %GITHUB%/issues/1637 XOR optimization for prBoundary layer
* Bugfix: %GITHUB%/issues/1632 rdb python/ruby module: modifing items
  not possible as they are const
* Enhancement: %GITHUB%/issues/1598 LVS - Support for Soft Connections
* Bugfix: %GITHUB%/issues/1586 Refactoring transformation conversion
  functions for complex transformation
* Enhancement: %GITHUB%/issues/1583 Add possibility to customize main
  window title
* Enhancement: %GITHUB%/issues/1513 Update Qt version for Qt bindings
  to 5.12.12 and 6.2.1
* Bugfix: %GITHUB%/issues/1356 Instance Property form: Array Instance
  col/row would be more intuitive then the current row/col
* Enhancement: New ruler type "auto measure along edge"
* Enhancement: Trigger ruler measurement on mouse hovering transiently
* Enhancement: Min and max value bounds for PCell parameters in editor
  The condition is not strictly enforced - for example it is not checked when
  changing parameters programmatically. For that, use "coerce_parameters".
  Still, this feature is an editing aid.
* Bugfix: Pixel garbage in color selector button with "Auto" color selected
* Bugfix: DRC/LVS - connect_explicit did not accept an array of nets
  as single argument
* Bugfix: 'edge outside polygon' now consistently ignores the border
  of the polygon
* Bugfix: Warning level was ignored for some warnings in LEF/DEF reader
* Bugfix: Netlist reader: anonymous circuits are not checked for known parameters
* Enhancement: LVS - Supporting remote must-connect connections
  So far, must-connect connections had to be made one level up in the hierarchy
  or promoted further using labels and such. Now, must-connect connections
  can be made at any point up in the hierarchy.
* Bugfix: LVS - do not waste too much time analyzing failed matches
* Enhancement: LVS - LVS: Consider net names identical that differ
  in signal type suffix only - e.g. 'NET:I' is identical to 'NET'
* Enhancement: OASIS reader will produce layers that are listed in layer table
  but empty. Previously, empty layers were never created, even if listed in
  the layer table.
* Enhancement: Reading from HTTP streams and pipes now supports
  automatic .gz uncompression
* Enhancement: New DRC Features
  - "edges" method allows selecting convext/concave/step edges
  - Interaction count for edge/edge edge/polygon "interacting"
  - Improved handling of dots (degenerated edges) - these are now
    passed through the edge/edge and edge/polygon booleans and
    participate in "interact". This enables selecting corners and
    using them to select edges.
* Enhancement: New RBA/pya Features
  - Main window title: MainWindow#title (property)
  - LayoutView#is_dirty?
  - Triangulation: Region#delaunay
  - Quality rasterizer: Region#rasterize
  - Generic edge and polygon filters and operators support hierarchical processing
    with Python or Ruby callbacks: classes EdgePairFilter, EdgePairOperator,
    EdgePairToPolygonOperator, EdgePairToEdgeOperator, EdgeFilter, EdgeOperator,
    EdgeToPolygonOperator, EdgeToEdgePairOperator, PolygonFilter, PolygonOperator
    PolygonToEdgeOperator, PolygonToEdgePairOperator, TextFilter, TextOperator,
    TextToPolygonOperator
    Methods: EdgePairs#filter, EdgePairs#filtered, EdgePairs#process, EdgePairs#processed,
    same for Edges, Regions and Texts
  - Polygon#split, Polygon#break, same for DPolygon, SimplePolygon, DSimplePolygon
  - Keyword arguments for Python, Ruby and Expressions
  - You can now also use "klayout" package inside the application (same code
    for Python module and application) - i.e. "import klayout.db"
  - Synonyms: connect/disconnect for events for better compatibility with PyQt5

(mef)

2024-04-21 19:58:48 UTC MAIN commitmail json YAML

doc: Updated security/rbw to 1.10.0

(pin)

2024-04-21 19:58:28 UTC MAIN commitmail json YAML

security/rbw: update to 1.10.0

[1.10.0] - 2024-04-20
Added
- rbw get now supports searching by URL as well (proxict, #132)
- rbw code now supports --clipboard, and has an alias of rbw totp (#127)

Changed
- Set a user agent for all API calls, not just logging in (#165)

Fixed
- Also create runtime directories when running with --no-daemonize (Wim de With, #155)
- Fix builds on NetBSD (#105)
- Fix logging in when the configured email address differs in case from the email address used when registering (#158)
- Fix editing passwords inadvertently clearing custom field values (#142)

(pin)

2024-04-21 19:57:45 UTC MAIN commitmail json YAML

Updated emulators/x16-rom to 47.
Updated emulators/x16-emulator to 47.

(thorpej)

2024-04-21 19:56:10 UTC MAIN commitmail json YAML

Update the Commander X16 emulator and ROM to verison R47.  This is a major
release with several features and fixes, including 65C816 CPU support in
the emulator and KERNAL.  Due to a change in the ROM signature location
(to avoid conflict with the 65C816 vector table), both the emulator and
ROM must be updated together, even if you don't intend to use 65C816
support in the emulator.

(thorpej)

2024-04-21 19:32:28 UTC MAIN commitmail json YAML

doc: Updated net/gtk-vnc to 1.3.1nb1

(wiz)

2024-04-21 19:32:16 UTC MAIN commitmail json YAML

gtk-vnc: depend on vala, install more files

Bump PKGREVISION.

(wiz)

2024-04-21 19:09:21 UTC MAIN commitmail json YAML

MAKE_JOBS_SAFE=no.  Fixes a build problem reported to me by wiz@

(thorpej)

2024-04-21 18:17:48 UTC MAIN commitmail json YAML

Updated graphics/py-tifffile, devel/py-limits

(adam)

2024-04-21 18:17:28 UTC MAIN commitmail json YAML

py-limits: updated to 3.11.0

v3.11.0

* Compatibility
  * Add support for python 3.12

(adam)

2024-04-21 18:16:39 UTC MAIN commitmail json YAML

gtk-vnc: depend on zlib >= 1.2.11

(wiz)

2024-04-21 18:14:20 UTC MAIN commitmail json YAML

py-tifffile: updated to 2024.4.18

2024.4.18

- Pass 5077 tests.
- Fix write_fsspec when last row of tiles is missing in Philips slide.
- Add option not to quote file names in write_fsspec.
- Allow compress bilevel images with deflate, LZMA, and Zstd.

(adam)

2024-04-21 18:07:01 UTC MAIN commitmail json YAML

Updated math/py-asdf, net/py-aiodns

(adam)

2024-04-21 18:06:38 UTC MAIN commitmail json YAML

py-aiodns: updated to 3.2.0

3.2.0

Update test_query_ptr test to use address with PTR record
Added a missing py.typed file for wheel
Add Winloop as a valid EventLoop
Add support for getaddrinfo
Add support for getnameinfo

(adam)

2024-04-21 18:04:31 UTC MAIN commitmail json YAML

py-asdf: updated to 3.2.0

3.2.0 (2024-04-05)

- Deprecate ``AsdfFile.version_map``
- Fix ``numpy.ma.MaskedArray`` saving for numpy 2.x
- Add ``float16`` support
- Removed unused ``asdf-unit-schemas`` dependency

(adam)

2024-04-21 17:32:48 UTC MAIN commitmail json YAML

Updated textproc/lucene++, textproc/yq

(adam)

2024-04-21 17:30:48 UTC MAIN commitmail json YAML

doc: Updated chat/matrix-synapse to 1.105.0

(gdt)

2024-04-21 17:30:42 UTC MAIN commitmail json YAML

chat/matrix-synapse: Update to 1.105.0

Upstream NEWS summary:

# Features

  - Stabilize support for
    [MSC4010](https://github.com/matrix-org/matrix-spec-proposals/pull/4010)
    which clarifies the interaction of push rules and account
    data. Contributed by
    @clokep. ([\#17022](https://github.com/element-hq/synapse/issues/17022))

  - Stabilize support for
    [MSC3981](https://github.com/matrix-org/matrix-spec-proposals/pull/3981):
    `/relations` recursion. Contributed by
    @clokep. ([\#17023](https://github.com/element-hq/synapse/issues/17023))

  - Add support for moving `/pushrules` off of main
    process. ([\#17037](https://github.com/element-hq/synapse/issues/17037),
    [\#17038](https://github.com/element-hq/synapse/issues/17038))

(gdt)

2024-04-21 17:30:39 UTC MAIN commitmail json YAML

yq: updated to 3.4.1

Changes for v3.4.1 (2024-04-17)

- Add module entry points for xq and tomlq

Changes for v3.4.0 (2024-04-17)

- yq -y: Induce quoting of string scalars that start with 08 and 09

(adam)

2024-04-21 17:28:32 UTC MAIN commitmail json YAML

2024-04-21 17:08:02 UTC MAIN commitmail json YAML

Updated archivers/innoextract, devel/nextpnr-ice40, finance/ledger32, games/violetland

(adam)

2024-04-21 17:07:36 UTC MAIN commitmail json YAML

2024-04-21 16:59:09 UTC MAIN commitmail json YAML

2024-04-21 16:28:25 UTC MAIN commitmail json YAML

2024-04-21 16:08:30 UTC MAIN commitmail json YAML

2024-04-21 15:48:10 UTC MAIN commitmail json YAML

doc: Updated shells/zsh-syntax-highlighting to 0.8.0

(wiz)

2024-04-21 15:48:01 UTC MAIN commitmail json YAML

zsh-syntax-highlighting: update to 0.8.0.

# Changes in 0.8.0

This is a stable bugfix and feature release.  Major new features and changes include:

## Changes fixed as part of the switch to zle-line-pre-redraw

The changes in this section were fixed by switching to a `zle-line-pre-redraw`-based
implementation.

Note: The new implementation will only be used on future zsh releases,
numbered 5.8.1.1 and newer, due to interoperability issues with other plugins
(issues #418 and #579).  The underlying zsh feature has been available since
zsh 5.3.

Whilst under development, the new implementation was known as the
"feature/redrawhook" topic branch.

- Fixed: Highlighting not triggered after popping a buffer from the buffer stack
  (using the `push-line` widget, default binding: `M-q`)
  [#40]

- Fixed: Invoking completion when there were no matches removed highlighting
  [#90, #470]

- Fixed: Two successive deletes followed by a yank only yanked the latest
  delete, rather than both of them
  [#150, #151, #160; cf. #183]

- Presumed fixed: Completing `$(xsel)` results in an error message from `xsel`,
  with pre-2017 versions of `xsel`.  (For 2017 vintage and newer, see the issue
  for details.)
  [#154]

- Fixed: When the standard `bracketed-paste-magic` widget is in use, pastes were slow
  [#295]

- Fixed: No way to prevent a widget from being wrapped
  [#324]

- Fixed: No highlighting while cycling menu completion
  [#375]

- Fixed: Does not coexist with the `IGNORE_EOF` option
  [#377]

- Fixed: The `undefined-key` widget was wrapped
  [#421]

- Fixed: Does not coexist with the standard `surround` family of widgets
  [#520]

- Fixed: First completed filename doesn't get `path` highlighting
  [#632]

## Other changes

- Add issue #712 to the previous release's changelog (hereinafter).

- Fix highlighting when using an alias twice inside another alias
  [#769, #775]

- Remove lint warning for `env` followed by a pipe
  [#797]

- Recognize `proxychains` as a precommand
  [#814, #914]

- Honor shwordsplit when expanding parameters
  [#687, #818]

- Skip highlighting when keys are still pending in more cases
  [#835]

- Recognize `grc` as a precommand

- Recognize `torsocks` and `torift` as precommands
  [#898]

- Recognize `cpulimit` as a precommand
  [#897]

- Recognize `ktrace` as a precommand

# Changes in 0.8.0-alpha1-pre-redrawhook

## Notice about an improbable-but-not-impossible forward incompatibility

Everyone can probably skip this section.

The `master` branch of zsh-syntax-highlighting uses a zsh feature that has not
yet appeared in a zsh release: the `memo=` feature, added to zsh in commit
zsh-5.8-172-gdd6e702ee (after zsh 5.8, before zsh 5.9).  In the unlikely event
that this zsh feature should change in an incompatible way before the next
stable zsh release, set `zsh_highlight__memo_feature=0` in your .zshrc files to
disable use of the new feature.

z-sy-h dogfoods the new, unreleased zsh feature because that feature was
added to zsh at z-sy-h's initiative.  The new feature is used in the fix
to issue #418.

## Incompatible changes:

- An unsuccessful completion (a <kbd>⮀ Tab</kbd> press that doesn't change the
  command line) no longer causes highlighting to be lost.  Visual feedback can
  alternatively be achieved by setting the `format` zstyle under the `warnings`
  tag, for example,

        zstyle ':completion:*:warnings' format '%F{red}No matches%f'

    Refer to the [description of the `format` style in `zshcompsys(1)`]
    [zshcompsys-Standard-Styles-format].

    (#90, part of #245 (feature/redrawhook))

[zshcompsys-Standard-Styles]: https://zsh.sourceforge.io/Doc/Release/Completion-System.html#Standard-Styles
[zshcompsys-Standard-Styles-format]: https://zsh.sourceforge.io/Doc/Release/Completion-System.html#index-format_002c-completion-style

## Other changes:

- Document `$ZSH_HIGHLIGHT_MAXLENGTH`.
  [#698]

- Optimize highlighting unquoted words (words that are not in single quotes, double quotes, backticks, or dollar-single-quotes)
  [#730]

- Redirection operators (e.g., `<` and `>`) are now highlighted by default
  [#646]

- Propertly terminate `noglob` scope in try/always blocks
  [#577]

- Don't error out when `KSH_ARRAYS` is set in the calling scope
  [#622, #689]

- Literal semicolons in array assignments (`foo=( bar ; baz )`) are now
  highlighted as errors.
  [3ca93f864fb6]

- Command separators in array assignments (`foo=( bar | baz )`) are now
  highlighted as errors.
  [#651, 81267ca3130c]

- Support parameter elision in command position (e.g., `$foo ls` where `$foo` is unset or empty)
  [#667]

- Don't consider the filename in `sudo -e /path/to/file` to be a command position
  [#678]

- Don't look up absolute directory names in $cdpath
  [2cc2583f8f12, part of #669]

- Fix `exec 2>&1;` being highlighted as an error.
  [#676]

- Fix `: $(<*)` being highlighted as globbing.
  [#582]

- Fix `cat < *` being highlighting as globbing when the `MULTIOS` option is unset.
  [#583]

- Fix `echo >&2` highlighting the `2` as a filename if a file by that name happened to exist
  [#694, part of #645]

- Fix `echo >&-` highlighting the `-` as a filename if a file by that name happened to exist
  [part of #645]

- Fix `echo >&p` highlighting the `p` as a filename if a file by that name happened to exist
  [part of #645]

- Fix wrong highlighting of unquoted parameter expansions under zsh 5.2 and older
  [e165f18c758e]

- Highlight global aliases
  [#700]

- Highlight `: =nosuchcommand' as an error (when the `EQUALS` option hasn't been unset).
  [#430]

- Highlight reserved word after assignments as errors (e.g., `foo=bar (ls;)`)
  [#461]

- Correctly highlight `[[ foo && bar || baz ]]`.

- Highlight non-executable files in command position correctly (e.g., `% /etc/passwd`)
  [#202, #669]

- Highlight directories in command position correctly, including `AUTO_CD` support
  [#669]

- Recognize `env` as a precommand (e.g., `env FOO=bar ls`)

- Recognize `ionice` as a precommand

- Recognize `strace` as a precommand

- Fix an error message on stderr before every prompt when the `WARN_NESTED_VAR` zsh option is set:
  `_zsh_highlight_main__precmd_hook:1: array parameter _zsh_highlight_main__command_type_cache set in enclosing scope in function _zsh_highlight_main__precmd_hook`
  [#727, #731, #732, #733]

- Fix highlighting of alias whose definitions use a simple command terminator
  (such as `;`, `|`, `&&`) before a newline
  [#677; had regressed in 0.7.0]

- Highlight arithmetic expansions (e.g., `$(( 42 ))`)
  [#607 #649 #704]

- Highlight the parentheses of array assignments as reserved words (`foo=( bar )`).
  The `assign` style remains supported and has precedence.
  [#585]

- Fix interoperability issue with other plugins that use highlighting.  The fix
  requires zsh 5.8.0.3 or newer.  (zsh 5.8.0.2-dev from the `master` branch,
  revision zsh-5.8-172-gdd6e702ee or newer is also fine.)
  [#418, https://github.com/okapia/zsh-viexchange/issues/1]

- Improve performance of the `brackets` highlighter.

- Fix highlighting of pre-command redirections (e.g., the `$fn` in `<$fn cat`)
  [#712]

# Changes in version 0.7.1

- Remove out-of-date information from the 0.7.0 changelog.

# Changes in version 0.7.0

This is a stable bugfix and feature release.  Major new features and changes include:

- Add `ZSH_HIGHLIGHT_DIRS_BLACKLIST` to disable "path" and "path prefix"
  highlighting for specific directories
  [#379]

- Add the "regexp" highlighter, modelled after the pattern highlighter
  [4e6f60063f1c]

- When a word uses globbing, only the globbing metacharacters will be highlighted as globbing:
  in `: foo*bar`, only the `*` will be blue.
  [e48af357532c]

- Highlight pasted quotes (e.g., `: foo"bar"`)
  [dc1b2f6fa4bb]

- Highlight command substitutions (`` : `ls` ``, `: $(ls)`)
  [c0e64fe13178 and parents, e86f75a840e7, et al]

- Highlight process substitutions (`: >(nl)`, `: <(pwd)`, `: =(git diff)`)
  [c0e64fe13178 and parents, e86f75a840e7, et al]

- Highlight command substitutions inside double quotes (``: "`foo`"``)
  [f16e858f0c83]

- Highlight many precommands (e.g., `nice`, `stdbuf`, `eatmydata`;
  see `$precommand_options` in the source)

- Highlight numeric globs (e.g., `echo /lib<->`)

- Assorted improvements to aliases highlighting
  (e.g.,
  `alias sudo_u='sudo -u'; sudo_u jrandom ls`,
  `alias x=y y=z z=nosuchcommand; x`,
  `alias ls='ls -l'; \ls`)
  [f3410c5862fc, 57386f30aec8, #544, and many others]

- Highlight some more syntax errors
  [dea05e44e671, 298ef6a2fa30]

- New styles: named file descriptors, `RC_QUOTES`, and unclosed quotes (e.g., `echo "foo<CURSOR>`)
  [38c794a978cd, 25ae1c01216c, 967335dfc5fd]

- The 'brackets' highlighting no longer treats quotes specially.
  [ecdda36ef56f]

Selected bugfixes include:

- Highlight `sudo` correctly when it's not installed
  [26a82113b08b]

- Handle some non-default options being set in zshrc
  [b07ada1255b7, a2a899b41b8, 972ad197c13d, b3f66fc8748f]

- Fix off-by-one highlighting in vi "visual" mode (vicmd keymap)
  [be3882aeb054]

- The 'yank-pop' widget is not wrapped
  [#183]

Known issues include:

- A multiline alias that uses a simple command terminator (such as `;`, `|`, `&&`)
  before a newline will incorrectly be highlighted as an error.  See issue #677
  for examples and workarounds.
  [#677]
  [UPDATE: Fixed in 0.8.0]

(wiz)

2024-04-21 15:46:33 UTC MAIN commitmail json YAML

doc: Updated textproc/py-sphinx-autodoc-typehints to 2.1.0

(wiz)

2024-04-21 15:46:23 UTC MAIN commitmail json YAML

py-sphinx-autodoc-typehints: update to 2.1.0.

Support Sphinx 7.3 and drop 3.8 support by @gaborbernat in #448

(wiz)

2024-04-21 15:44:53 UTC MAIN commitmail json YAML

doc: Updated textproc/py-sphinx to 7.3.7

(wiz)

2024-04-21 15:44:44 UTC MAIN commitmail json YAML

py-sphinx: update to 7.3.7.

Release 7.3.7 (released Apr 19, 2024)
=====================================

Bugs fixed
----------

* #12299: Defer loading themes defined via entry points until
  their explicit use by the user or a child theme.
  Patch by Adam Turner.
* #12305: Return the default value for ``theme.get_config()`` with
  an unsupported theme configuration section.
  Patch by Adam Turner.

Release 7.3.6 (released Apr 17, 2024)
=====================================

Bugs fixed
----------

* #12295: Re-export all AST types in the C and C++ domains.
  Patch by Adam Turner.
* #12295: Re-export various objects from ``sphinx.domains.python._annotations``
  in ``sphinx.domains.python``.
  Patch by Jacob Chesslo and Adam Turner.

Release 7.3.5 (released Apr 17, 2024)
=====================================

Bugs fixed
----------

* #12295: Re-export various objects from ``sphinx.domains.python._object``
  in ``sphinx.domains.python``.
  Patch by Jacob Chesslo and Adam Turner.

Release 7.3.4 (released Apr 17, 2024)
=====================================

Bugs fixed
----------

* Handle cases when ``Any`` is not an instance of ``type``.
  Patch by Adam Turner.

Release 7.3.3 (released Apr 17, 2024)
=====================================

Bugs fixed
----------

* #12290: Fix a false-positive warning when setting a configuration value
  with ``Any`` as the valid type to a type other than the value's default.
  Patch by Adam Turner.

Release 7.3.2 (released Apr 17, 2024)
=====================================

Bugs fixed
----------

* Preload all themes defined via entry points.
  Patch by Adam Turner.
* Fix a bad interaction between the ``'Furo'`` theme and the new-style for
  configuration values.
  Patch by Adam Turner.

Release 7.3.1 (released Apr 17, 2024)
=====================================

Dependencies
------------

* Require ``tomli`` on Python 3.10 and earlier.
  Patch by Adam Turner.

Release 7.3.0 (released Apr 16, 2024)
=====================================

Dependencies
------------

* #11858: Increase the minimum supported version of Alabaster to 0.7.14.
  Patch by Adam Turner.
* #11411: Support `Docutils 0.21`_. Patch by Adam Turner.

  .. _Docutils 0.21: https://docutils.sourceforge.io/RELEASE-NOTES.html#release-0-21-2024-04-09
* #12012: Use ``types-docutils`` instead of ``docutils-stubs``.

Deprecated
----------

* #11693: Support for old-style :file:`Makefile` and :file:`make.bat` output
  in :program:`sphinx-quickstart`, and the associated options :option:`!-M`,
  :option:`!-m`, :option:`!--no-use-make-mode`, and :option:`!--use-make-mode`.
* #11285: Direct access to :attr:`!sphinx.testing.util.SphinxTestApp._status`
  or :attr:`!sphinx.testing.util.SphinxTestApp._warning` is deprecated. Use
  the public properties :attr:`!sphinx.testing.util.SphinxTestApp.status`
  and :attr:`!sphinx.testing.util.SphinxTestApp.warning` instead.
  Patch by B辿n辿dikt Tran.
* tests: :func:`!sphinx.testing.util.strip_escseq` is deprecated in favour of
  :func:`!sphinx.util.console.strip_colors`.
  Patch by B辿n辿dikt Tran.

Features added
--------------

* #12265: Support theme configuration via ``theme.toml``.
* #11701: HTML Search: Adopt the new `\<search\>`_ element.
  Patch by B辿n辿dikt Tran.

  .. _`\<search\>`: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/search
* #11776: Add long option names to ``sphinx-build``.
  Patch by Hugo van Kemenade, Adam Turner, B辿n辿dikt Tran, and Ezio Melotti.
* Organise the ``sphinx-build`` options into groups.
  Patch by Adam Turner.
* #11855: Defer computation of configuration values.
  Patch by Adam Turner.
* Add ``:no-search:`` as an alias of the ``:nosearch:`` metadata field.
  Patch by Adam Turner.
* #11803: autodoc: Use an overriden ``__repr__()`` function in an enum,
  if defined. Patch by Shengyu Zhang.
* #11825: Allow custom targets in the manpage role.
  Patch by Nicolas Peugnet.
* #11892: Improved performance when resolving cross references in the C++ domain.
  Patch by Rouslan Korneychuk.
* #11905: Add a :rst:dir:`versionremoved` directive.
  Patch by Hugo van Kemenade, Adam Turner, and C.A.M. Gerlach.
* #11981: Improve rendering of signatures using ``slice`` syntax,
  e.g., ``def foo(arg: np.float64[:,:]) -> None: ...``.
* The manpage builder now adds `OSC 8`_ anchors to hyperlinks, using
  the `groff`_ device control command.

  .. _OSC 8: https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda
  .. _groff: https://lists.gnu.org/archive/html/groff/2021-10/msg00000.html
* #11015: Change the text of the :rst:dir:`versionadded` directive from
  ``New in [...]`` to ``Added in [...]``.
  Patch by B辿n辿dikt Tran.
* #12131: Added :confval:`show_warning_types` configuration option.
  Patch by Chris Sewell.
* #12193: Improve ``external`` warnings for unknown roles.
  In particular, suggest related role names if an object type is mistakenly used.
  Patch by Chris Sewell.
* Add public type alias :class:`sphinx.util.typing.ExtensionMetadata`.
  This can be used by extension developers
  to annotate the return type of their ``setup`` function.
  Patch by Chris Sewell.

Bugs fixed
----------

* #11668: Raise a useful error when ``theme.conf`` is missing.
  Patch by Vinay Sajip.
* #11622: Ensure that the order of keys in ``searchindex.js`` is deterministic.
  Patch by Pietro Albini.
* #11617: ANSI control sequences are stripped from the output when writing to
  a warnings file with :option:`-w <sphinx-build -w>`.
  Patch by B辿n辿dikt Tran.
* #11666: Skip all hidden directories in ``CatalogRepository.pofiles``.
  Patch by Aryaz Eghbali.
* #9686: html builder: Fix MathJax lazy loading when equations appear in titles.
  Patch by B辿n辿dikt Tran.
* #11483: singlehtml builder: Fix MathJax lazy loading when the index does not
  contain any math equations.
  Patch by B辿n辿dikt Tran.
* #11697: HTML Search: add 'noindex' meta robots tag.
  Patch by James Addison.
* #11678: Fix a possible ``ZeroDivisionError`` in ``sphinx.ext.coverage``.
  Patch by Stephen Finucane.
* #11756: LaTeX: build error with recent TeXLive due to missing ``substitutefont``
  package (triggered if using ``fontenc`` with ``T2A`` option and document
  language is not a Cyrillic one).
  Patch by Jean-Fran巽ois B.
* #11675: Fix rendering of progression bars in environments that do not support
  ANSI control sequences.
  Patch by B辿n辿dikt Tran.
* #11861: Whitelist more types with an incorrect ``__module__`` attribute.
  Patch by Adam Turner.
* #11715: Apply ``tls_verify`` and ``tls_cacerts`` config to
  ``ImageDownloader``.
  Patch by Nick Touran.
* Allow hyphens in group names for :rst:dir:`productionlist` cross-references.
  Patch by Adam Turner.
* #11433: Added the :confval:`linkcheck_allow_unauthorized` configuration option.
  Set this option to ``False`` to report HTTP 401 (unauthorized) server
  responses as broken.
  Patch by James Addison.
* #11868: linkcheck: added a distinct ``timeout`` reporting status code.
  This can be enabled by setting :confval:`linkcheck_report_timeouts_as_broken`
  to ``False``.
  Patch by James Addison.
* #11869: Refresh the documentation for the ``linkcheck_timeout`` setting.
  Patch by James Addison.
* #11874: Configure a default 30-second value for ``linkcheck_timeout``.
  Patch by James Addison.
* #11886: Print the Jinja2 template path chain in ``TemplateNotFound`` exceptions.
  Patch by Colin Marquardt.
* #11598: Do not use query components in URLs for assets in EPUB rendering.
  Patch by David Runge.
* #11904: Support unary subtraction when parsing annotations.
  Patch by James Addison.
* #11925: Blacklist the ``sphinxprettysearchresults`` extension; the functionality
  it provides was merged into Sphinx v2.0.0.
  Patch by James Addison.
* #11917: Fix rendering of annotated inherited members for Python 3.9.
  Patch by Janet Carson.
* #11935: C Domain: Fix namespace-pop context.
  Patch by Frank Dana.
* #11923: Avoid zombie processes when parallel builds fail.
  Patch by Felix von Drigalski.
* #11353: Support enumeration classes inheriting from mixin or data types.
  Patch by B辿n辿dikt Tran.
* #11962: Fix target resolution when using ``:paramtype:`` fields.
  Patch by B辿n辿dikt Tran.
* #11944: Use anchor in search preview.
  Patch by Will Lachance.
* #12008: Fix case-sensitive lookup of ``std:label`` names in intersphinx inventory.
  Patch by Michael Goerz.
* #11958: HTML Search: Fix partial matches overwriting full matches.
  Patch by William Lachance.
* #11959: Fix multiple term matching when word appears in both title and document.
  Patch by Will Lachance.
* #11474: Fix doctrees caching causing files not be rebuilt in some cases,
  e.g., when :confval:`numfig` is ``True``.
  Patch by B辿n辿dikt Tran.
* #11278: autodoc: Fix rendering of :class:`functools.singledispatchmethod`
  combined with :func:`@classmethod <classmethod>`.
  Patch by B辿n辿dikt Tran.
* #11894: Do not add checksums to css files if building using the htmlhelp builder.
  Patch by reduerK akiM.
* #12052: Remove ``<script>`` and ``<style>`` tags from the content of search result
  summary snippets.
  Patch by James Addison.
* #11578: HTML Search: Order non-main index entries after other results.
  Patch by Brad King.
* #12147: autosummary: Fix a bug whereby the wrong file extension
  may be used,
  when multiple suffixes are specified in :confval:`source_suffix`.
  Patch by Sutou Kouhei.
* #10786: improve the error message when a file to be copied (e.g., an asset)
  is removed during Sphinx execution.
  Patch by B辿n辿dikt Tran.
* #12040: HTML Search: Ensure that document titles that are partially-matched by
  the user search query are included in search results.
  Patch by James Addison.
* #11970: singlehtml builder: make target URIs to be same-document references in
  the sense of :rfc:`RFC 3986, 則4.4 <3986#section-4.4>`, e.g., ``index.html#foo``
  becomes ``#foo``. Patch by Eric Norige.
* #12271: Partially revert Docutils' r9562__ to fix EPUB files.
  Patch by Adam Turner.

  __ https://sourceforge.net/p/docutils/code/9562/
* #12253: Escape reserved path characters in the remote images post-transform
  download cache.
  Patch by James Addison and Adam Turner.

Testing
-------

* Reorganise tests into directories.
  Patch by Adam Turner.
* Clean up global state in ``SphinxTestApp``.
  Patch by Adam Turner.
* #11285: :func:`!pytest.mark.sphinx` and :class:`!sphinx.testing.util.SphinxTestApp`
  accept *warningiserror*, *keep_going* and *verbosity* as keyword arguments.
  Patch by B辿n辿dikt Tran.
* #11285: :class:`!sphinx.testing.util.SphinxTestApp` *status* and *warning*
  arguments are checked to be :class:`io.StringIO` objects (the public API
  incorrectly assumed this without checking it).
  Patch by B辿n辿dikt Tran.
* Report the result of ``test_run_epubcheck`` as ``skipped`` instead of
  ``success`` when either Java or ``epubcheck`` are not available.
* Use dynamic allocation of unused port numbers for the test HTTP(S) servers.
  As a side-effect, this removes the need for test server lockfiles,
  meaning that any remaining ``tests/test-server.lock`` files can safely be
  deleted.

(wiz)

2024-04-21 15:40:01 UTC MAIN commitmail json YAML

doc: Updated devel/py-pdm_backend to 2.2.1

(wiz)

2024-04-21 15:39:52 UTC MAIN commitmail json YAML

py-pdm_backend: update to 2.2.1.

Add parameter --build-number to wheel builder  -  by @0xfabioo and Frost Ming in #229 (d7d15)
Bump pyproject-metadata to 0.8.0  -  by @frostming in #231 (5f538)

(wiz)

2024-04-21 15:37:43 UTC MAIN commitmail json YAML

doc: Updated www/py-google-api-python-client to 2.126.0

(wiz)

2024-04-21 15:37:27 UTC MAIN commitmail json YAML

2024-04-21 15:35:46 UTC MAIN commitmail json YAML

doc: Updated security/py-cyclonedx-python-lib to 7.3.0

(wiz)

2024-04-21 15:35:36 UTC MAIN commitmail json YAML

py-cyclonedx-python-lib: update to 7.3.0.

7.3.0

Feature

    feat: license factory set acknowledgement (#593)

add a parameter to LicenseFactory.make_*() methods, to set the LicenseAcknowledgement.

## v7.2.0 (2024-04-19)

### Feature

* feat: disjunctive license acknowledgement (#591)

---------

Signed-off-by: Jan Kowalleck &lt;jan.kowalleck@gmail.com&gt; ([`9bf1839`](https://github.com/CycloneDX/cyclonedx-python-lib/commit/9bf1839859a244e790e91c3e1edd82d333598d60))

### Unknown

* tests: add meaningful names to validation tests (#588)

When packaging cyclonedx-python-lib for a Linux distribution, it’s
pretty common that some JSON validation tests fail. [1]

Due to the large number of combinations and the fact that these tests
are consecutively numbered, it has been tedious to figure out which
tests are exactly failing and why. This in turn makes it difficult to
decide which tests to disable or report upstream.

Append meaningful names to validation tests so that instead of e.g.:

    […]::TestJsonValidator::test_validate_no_none_001
    […]::TestJsonValidator::test_validate_no_none_002
    […]::TestJsonValidator::test_validate_no_none_003
    […]::TestJsonValidator::test_validate_no_none_004
    […]::TestJsonValidator::test_validate_no_none_005
    […]::TestJsonValidator::test_validate_no_none_006
    […]::TestJsonValidator::test_validate_no_none_007
    […]::TestJsonValidator::test_validate_no_none_008

the tests are named:

    […]::TestJsonValidator::test_validate_no_none_001_valid_component_swid_1_6
    […]::TestJsonValidator::test_validate_no_none_002_valid_machine_learning_considerations_env_1_6
    […]::TestJsonValidator::test_validate_no_none_003_valid_metadata_tool_1_6
    […]::TestJsonValidator::test_validate_no_none_004_valid_patch_1_6
    […]::TestJsonValidator::test_validate_no_none_005_valid_empty_components_1_6
    […]::TestJsonValidator::test_validate_no_none_006_valid_properties_1_6
    […]::TestJsonValidator::test_validate_no_none_007_valid_service_1_6
    […]::TestJsonValidator::test_validate_no_none_008_valid_metadata_author_1_6

[1]: https://aur.archlinux.org/cgit/aur.git/diff/PKGBUILD?h=python-cyclonedx-lib&amp;id=9c6ae556874a633a521407a77a9a85bb31da2047

* doc: poor merge resolved

(wiz)

2024-04-21 15:33:56 UTC MAIN commitmail json YAML

doc: Updated lang/py-cmake-language-server to 0.1.10

(wiz)

2024-04-21 15:33:45 UTC MAIN commitmail json YAML

py-cmake-language-server: update to 0.1.10.

What's Changed

    feat: handle workspace config event by @heywhy in #91

New Contributors

    @heywhy made their first contribution in #91

(wiz)

2024-04-21 15:31:43 UTC MAIN commitmail json YAML

doc: Updated devel/gopls to 0.15.3

(wiz)

2024-04-21 15:31:33 UTC MAIN commitmail json YAML

gopls: update to 0.15.3.

This release fixes the following regressions in gopls@v0.15.0+:

    golang/go#66490: occasional crashes when the imports cache is refreshed.
    golang/go#66425: spurious import errors in multi-root workspaces that have go.work replace directives.
    golang/go#66636: a crash in analysis when the go.mod contains a patch version and gopls was built with Go 1.20 or earlier.
    golang/go#66677: silent breakage when the go.mod file contains Go 1.22.x, and gopls was built with Go 1.21.x.
    golang/go#66731: a rare crash when diagnostics are erroneously positioned outside the file due to malformed syntax.
    golang/go#66647: a performance regression due to unnecessary reloading following "workspace/didChangeConfiguration" notifications. Under some not-yet-understood conditions, an apparent VS Code bug causes didChangeConfiguration notifications on every keystroke. With the zero-config logic of gopls@v0.15.0+, any didChangeConfiguration notification causes gopls to re-evaluate (and reload) the set of builds it tracks. With the v0.15.3 release, gopls verifies that configuration actually changed. Special thanks to @gordallott for working with us to track down this bug.

(wiz)

2024-04-21 15:30:01 UTC MAIN commitmail json YAML

doc: Updated x11/dunst to 1.11.0

(wiz)

2024-04-21 15:29:52 UTC MAIN commitmail json YAML

dunst: update to 1.11.0.

===================================================================================
Release Notes For v1.11.0
===================================================================================

This release hopefully marks the start of a new period of active development and
contributions and a shift away from the previous lower maintenance mode.

For users:

This is the perfect time to engage with the project and other dunst users.
Some of the features and changes to include in the v2 release are starting to
be proposed or implemented. Everyone's opinion is important, so feel free
to participate in the issues proposing new features (or redesigns of the old ones).

This version mainly contains bug fixes and QoL improvements, and can be considered
a preparatory release for the various things that will come in the future
(overhaul of the rule syntax, multiple windows support, aesthetic and customization
options, refactor of the drawing system, etc).

For maintainers:

X11 support is now optional and can be disabled in build by setting the `X11` make
flag to 0. This means that you can offer Wayland-only builds.

Shell completions are now considered official and can be installed/uninstalled from
the Makefile. By default they are installed and can be disabled by setting the
`COMPLETIONS` flag to 0.

Take a look at the changelog for all the bug fixes and improvements.

(wiz)

2024-04-21 15:15:36 UTC MAIN commitmail json YAML

py-gidgethub: does not support Python 3.8 any longer (due to py-docutils)

(wiz)

2024-04-21 15:14:58 UTC MAIN commitmail json YAML

py-solo1: does not support Python 3.8 any longer (via py-docutils)

(wiz)

2024-04-21 15:11:13 UTC MAIN commitmail json YAML

deforaos-vncviewer: mark as BROKEN

(wiz)

2024-04-21 15:08:53 UTC MAIN commitmail json YAML

doc: Updated net/vinagre to 3.22.0

(wiz)

2024-04-21 15:08:43 UTC MAIN commitmail json YAML

vinagre: update to 3.22.0.

Vinagre 3.22.0
==============

David King (1):
      Update NEwS for 3.22.0 release

Vinagre 3.21.92
===============

Andika Triwidada (1):
      Updated Indonesian translation    (cherry picked from commit ae0530393bf0f39b3bdc37c48bb79a72727c5f7b)

Ask Hjorth Larsen (1):
      Updated Danish translation

Christian Kirbach (1):
      Update German screenshots

Daniel Mustieles (1):
      Updated Spanish translation

David King (1):
      Update British English translation

Michał Kępień (2):
      Improve FreeRDP authentication failure handling
      Correctly handle extended scancodes for RDP

Piotr Drąg (4):
      Updated Polish translation
      Add Language headers to po files
      Updated Polish translation
      Updated Polish translation

Yosef Or Boczko (1):
      Updated Hebrew translation

વિશાલ ભલાણી (1):
      Updated Gujarati translation

Vinagre 3.21.3
==============

Alexander Shopov (1):
      Added Bulgarian translation

Andika Triwidada (1):
      Updated Indonesian translation (cherry picked from commit a2beefb38823b922d1d2f6283b554888148902d9)

Arash Mousavi (1):
      Update Persian translations

Cédric Valmary (2):
      Updated Occitan translation
      Updated Occitan translation

Daniel Korostil (1):
      Updated Ukrainian translation

Fabio Tomat (7):
      Added Friulian translation
      Updated Friulian translation
      Updated Friulian translation
      Updated Friulian translation
      Updated Friulian translation
      Updated Friulian translation
      Updated Friulian translation (cherry picked from commit 58cc6d5d12ae2742bf9e48f84c76a1c896c8602e)

GNOME Translation Robot (1):
      Updated Portuguese translation

Inaki Larranaga Murgoitio (1):
      Updated Basque language

Jeff Bai (1):
      update zh_CN translation

Piotr Drąg (1):
      Updated Polish translation

Sebastian Rasmussen (1):
      Add Swedish help translation

Trần Ngọc Quân (1):
      Updated Vietnamese translation

Vinagre 3.20.0
==============

Alexandre Franke (1):
      Updated French translation

Ask Hjorth Larsen (1):
      Updated Danish translation

Aurimas Černius (2):
      Updated Lithuanian translation
      Updated Lithuanian translation

Balázs Meskó (1):
      Updated Hungarian translation

Baurzhan Muftakhidinov (1):
      Updated Kazakh translation

Changwoo Ryu (1):
      Updated Korean translation

Chao-Hsiung Liao (1):
      Updated Chinese (Taiwan) translation

Cédric Valmary (2):
      Updated Occitan translation
      Updated Occitan translation

Daniel Mustieles (1):
      Updated Spanish translation

David King (2):
      Fix a string format-nonliteral warning
      Fix the translation element in the AppData file

Dušan Kazik (1):
      Updated Slovak translation

Efstathios Iosifidis (1):
      Updated Greek translation

Enrico Nicoletto (1):
      Updated Brazilian Portuguese translation

Fran Dieguez (1):
      Updated Galician translations

Gianvito Cavasoli (1):
      Updated Italian translation

Jiri Grönroos (1):
      Updated Finnish translation

Jiro Matsuzawa (1):
      Updated Japanese translation

Kjartan Maraas (1):
      Updated Norwegian bokmål translation.

Marek Kasik (4):
      Don't capture key events of other tabs
      Give focus to new RDP tab
      Allow different logins to the same host
      Show correct tooltip for RDP tab

Marek Černocký (1):
      Updated Czech translation

Mario Blättermann (1):
      Updated German translation

Matej Urbančič (1):
      Updated Slovenian translation

Muhammet Kara (1):
      Updated Turkish translation

Nathan Follens (1):
      Updated Dutch translation Master 3.20

Pedro Albuquerque (1):
      Updated Portuguese translation

Piotr Drąg (2):
      Updated Polish translation
      Updated Polish translation

Richard Hughes (1):
      Update the AppData to spec version 0.7+

Rūdolfs Mazurs (2):
      Update Latvian translation
      Update Latvian translation

Sebastian Rasmussen (2):
      Updated Swedish translation
      Updated Swedish translation

Stas Solovey (1):
      Updated Russian translation

Sveinn í Felli (1):
      Updated Icelandic translation

Мирослав Николић (1):
      Updated Serbian translation

Vinagre 3.19.2
==============

David King (2):
      Revert "Accept IPv6 addresses"
      Fix build against recent versions of FreeRDP

Efstathios Iosifidis (1):
      Updated Greek translation

Emīls Piņķis (1):
      Enabled font smoothing by default in RDP plugin

Jiri Grönroos (1):
      Updated Finnish translation

Manuel Bachmann (1):
      Accept IPv6 addresses

Marek Kasik (3):
      Add minimize button to the fullscreen toolbar
      Handle domain when looking for credentials
      Store credentials for RDP

Sveinn í Felli (1):
      Added Icelandic translation

Trần Ngọc Quân (1):
      Updated Vietnamese translation

YunQiang Su (1):
      update zh_CN translation

Vinagre 3.18.0
==============

Arash Mousavi (1):
      Updated Persian translation

Marek Kasik (1):
      Allow scaling of RDP sessions

Vinagre 3.17.91
===============

Akom Chotiphantawanon (1):
      Updated Thai translation

Chao-Hsiung Liao (1):
      Updated Chinese (Taiwan) translation

Cédric Valmary (1):
      Updated Occitan translation

Marek Kasik (2):
      Use cached session size for RDP
      Fix selection rectangle when user leaves window

Pedro Albuquerque (1):
      Updated Portuguese translation

Piotr Drąg (1):
      Updated Polish translation

Vinagre 3.17.2
==============

Antoine Jacoutot (1):
      BSD: fix a couple of implicit declarations

David King (1):
      Trivial const-correctness fix

Hajime Taira (1):
      l10n: Update Japanese translation

Khaled Hosny (1):
      Update Arabic translation

Mike DePaulo (1):
      Change SPICE passwords limited to 60 characters

Nick Andrade (1):
      Fix building against newer FreeRDP versions

Vinagre 3.16.0
==============

Claudio Arseni (1):
      Updated Italian translation

Muhammet Kara (1):
      Updated Turkish translation

Vinagre 3.15.92
===============

Ask Hjorth Larsen (1):
      Updated Danish translation

Aurimas Černius (1):
      Updated Lithuanian translation

Balázs Úr (1):
      Updated Hungarian translation

Changwoo Ryu (1):
      Updated Korean translation

Daniel Mustieles (1):
      Updated Spanish translation

Jiri Grönroos (1):
      Finnish translation update

Josef Andersson (1):
      Updated Swedish translation

Piotr Drąg (1):
      Updated Polish translation

Rūdolfs Mazurs (1):
      Updated Latvian translation

Samir Ribic (1):
      Added Bosnian translation

Wolfgang Stöggl (1):
      Updated German translation

Γιάννης Κουτσούκος (1):
      Updated Greek translation

Мирослав Николић (1):
      Updated Serbian translation

Vinagre 3.15.91
===============

Alexandre Franke (2):
      Updated French translation
      Updated French translation

Anders Jonsson (2):
      Fix a typo
      Updated Swedish translation

Andika Triwidada (1):
      Updated Indonesian translation

Balázs Úr (2):
      Updated Hungarian translation
      Updated Hungarian translation

Baurzhan Muftakhidinov (1):
      Updated Kazakh translation

Chao-Hsiung Liao (1):
      Updated Chinese (Taiwan) translation

Daniel Korostil (1):
      Updated Ukrainian translation

Daniel Mustieles (2):
      Updated Spanish translation
      Updated Spanish translation

David King (2):
      Remove some translated figures
      Fix distcheck with Automake 1.15

Dušan Kazik (1):
      Updated Slovak translation

Efstathios Iosifidis (2):
      Updated Greek translation
      Updated Greek translation

Ekaterina Gerasimova (1):
      Update screenshot in help for 3.16

Fran Dieguez (1):
      Updated Galician translations

Inaki Larranaga Murgoitio (1):
      Updated Basque language

Kjartan Maraas (2):
      Updated Norwegian bokmål translation.
      Updated Norwegian bokmål translation from Åka Sikrom.

Marek Černocký (4):
      Fixed Czech translation
      Updated Czech translation
      Updated Czech translation
      Updated Czech translation

Matej Urbančič (2):
      Updated Slovenian translation
      Updated Slovenian translation

Petr Kovar (1):
      Fix #700353

Rafael Ferreira (1):
      Updated Brazilian Portuguese translation

Stas Solovey (1):
      Updated Russian translation

Vinagre 3.15.3
==============

Daniel Șerbănescu (1):
      Updated Romanian Translation

David King (1):
      Fix freeing of RDP events during dispose

Jean-Philippe Menil (1):
      Fix RDP initialization with recent FreeRDP

Muhammet Kara (1):
      Updated Turkish translation

Vinagre 3.15.2
==============

Alexander Tsoy (1):
      Remove bashism from configure.ac

David King (1):
      Add name and summary elements to AppData

Krishnababu Krothapalli (1):
      Updated Telugu translation

Marek Kasik (1):
      Detect RDP hosts via Avahi

Rajesh Ranjan (1):
      Updated Hindi translation

Rūdolfs Mazurs (1):
      Updated Latvian translation

Saibal Ray (1):
      Updated Bengali (India) translation

Timo Jyrinki (1):
      Change Finnish translation team web page to l10n.gnome.org

Tong Hui (1):
      update zh_CN translation

Vinagre 3.14.0
==============

Ask H. Larsen (1):
      Updated Danish translation

Christian Kirbach (1):
      Updated German translation

Daniel Korostil (1):
      Updated Ukrainian translation

Manoj Kumar Giri (1):
      Updated Oriya translation

Pawan Chitrakar (1):
      Added Nepali translation

Paweł Żołnowski (1):
      Updated Polish translation

Saibal Ray (1):
      Updated Bengali (India) translation

Shankar Prasad (1):
      Updated Kannada translation

Мирослав Николић (1):
      Updated Serbian translation

Vinagre 3.13.92
===============

A S Alam (1):
      update Punjabi Translation - back for 3.14

Andika Triwidada (1):
      Updated Indonesian translation

Aurimas Černius (1):
      Updated Lithuanian translation

Balázs Úr (1):
      Updated Hungarian translation

Carles Ferrando (1):
      [l10n] Updated Catalan (Valencian) translation

Changwoo Ryu (1):
      Updated Korean translation

Chao-Hsiung Liao (1):
      Updated Traditional Chinese translation(Hong Kong and Taiwan)

Claude Paroz (1):
      Updated French translation

Claudio Arseni (1):
      Updated Italian translation

Daniel Mustieles (1):
      Updated Spanish translation

David King (1):
      Use APPSTREAM_XML instead of APPDATA_XML

Dušan Kazik (1):
      Updated Slovak translation

Enrico Nicoletto (1):
      Updated Brazilian Portuguese translation

Fran Diéguez (1):
      Updated Galician translations

Gil Forcada (1):
      [l10n] Update Catalan translation

Kjartan Maraas (1):
      Updated Norwegian bokmål translation.

Marek Černocký (1):
      Updated Czech translation

Mattias Eriksson (1):
      Updated Swedish translation

Sandeep Sheshrao Shedmake (1):
      Updated Marathi Translations

Shantha kumar (1):
      Updated Tamil translation

Sweta Kothari (1):
      Updated gujarati translations

Tom Tryfonidis (1):
      Updated Greek translation

Ville-Pekka Vainio (1):
      Finnish translation update by Jiri Grönroos

Wolfgang Stöggl (1):
      Updated German translation

Yosef Or Boczko (1):
      Updated Hebrew translation

Yuri Myasoedov (1):
      Updated Russian translation

ngoswami (1):
      Updated Assamese translation

Vinagre 3.13.90
===============

Aurimas Černius (1):
      Updated Lithuanian translation

Daniel Mustieles (2):
      Updated Spanish translation
      Updated Spanish translation

David King (2):
      Avoid yes-no buttons in certificate dialogs
      Update metadata_license in AppData description

Inaki Larranaga Murgoitio (1):
      Updated Basque language

Kjartan Maraas (1):
      Updated Norwegian bokmål translation.

MarMav (1):
      Updated Greek translation

Marek Kasik (1):
      Request RDP certificate verification if needed

Olav Vitters (1):
      doap category apps

Piotr Drąg (1):
      doap: add <programming-language>

Rafael Ferreira (1):
      Updated Brazilian Portuguese translation

Vinagre 3.13.4
==============

Daniel Mustieles (1):
      Updated Spanish translation

David King (3):
      Update README
      Enable RDP support during distcheck
      Fix some language in tooltip strings

Enrico Nicoletto (1):
      Updated Brazilian Portuguese translation

Fran Diéguez (1):
      Updated Galician translations

Marek Kasik (1):
      Use FreeRDP API in RDP plugin

Muhammet Kara (1):
      Updated Turkish translation

Vinagre 3.13.2
==============

Anders Jonsson (1):
      Updated Swedish translation

Carles Ferrando (1):
      [l10n] Updated Catalan (Valencian) translation

Debarshi Ray (1):
      Port to vte-2.91 API

Ihar Hrachyshka (1):
      Updated Belarusian translation.

Matej Urbančič (1):
      Updated Slovenian translation

Matthias Clasen (1):
      Drop gnome-icon-theme dependency

marablack3 (2):
      Updated Greek translation
      Updated Greek translation

Vinagre 3.12.0
==============

A S Alam (1):
      update Punjabi Translation 19March2014: Alam

Andika Triwidada (1):
      Updated Indonesian translation

Ask H. Larsen (1):
      Updated Danish translation

Claudio Arseni (1):
      Updated Italian translation

Ekaterina Gerasimova (1):
      It helps to add the icon in help to the Makefile

Gábor Kelemen (1):
      Updated Hungarian translation

David King (1):
      Fix figure filename in help Makefile

Inaki Larranaga Murgoitio (1):
      Updated Basque language

Pau Iranzo (1):
      [l10n] Add Catalan translation

Piotr Drąg (1):
      Fix a tag in Brazilian Portuguese help translation

Rafael Ferreira (1):
      Updated Brazilian Portuguese Translation for help files

Rūdolfs Mazurs (1):
      Updated Latvian translation

Tiagosdot (1):
      Updated Portuguese translation

Мирослав Николић (1):
      Updated Serbian translation

Vinagre 3.11.92
===============

Andika Triwidada (1):
      Updated Indonesian translation

Aurimas Černius (1):
      Updated Lithuanian translation

Balázs Úr (1):
      Updated Hungarian translation

Changwoo Ryu (1):
      Updated Korean translation

Chao-Hsiung Liao (1):
      Updated Traditional Chinese translation(Hong Kong and Taiwan)

Claude Paroz (1):
      Updated French translation

Daniel Korostil (1):
      Updated Ukrainian translation

Daniel Mustieles (2):
      Updated Spanish translation
      Updated Spanish translation

David King (1):
      Add AppData XML, bug 722893

Ekaterina Gerasimova (2):
      Add icon to help and add license
      Update application name and tidy help pages

Fran Diéguez (2):
      Updated Galician translations
      Updated Galician translations

Marc-André Lureau (1):
      Updated French translation

Marek Kasik (1):
      Don't close connect dialog when showing help

Marek Černocký (2):
      Updated Czech translation
      Updated Czech translation

Paweł Żołnowski (1):
      Updated Polish translation

Rafael Ferreira (1):
      Updated Brazilian Portuguese translation

Rūdolfs Mazurs (1):
      Updated Latvian translation

Shankar Prasad (1):
      updated kn.po

Ville-Pekka Vainio (1):
      Finnish translation update by Jiri Grönroos

Wolfgang Stöggl (1):
      Updated German translation

Wylmer Wang (1):
      Updated Chinese (China) translation

Yaron Shahrabani (1):
      Updated Hebrew translation.

Yuri Myasoedov (1):
      Updated Russian translation

Vinagre 3.11.5
==============

Andika Triwidada (1):
      Added Indonesian translation of vinagre help

Arash Mousavi (1):
      L10N: Updated Persian translations

Carles Ferrando (1):
      [l10n] Updated Catalan (Valencian) translation

Chao-Hsiung Liao (1):
      Updated Traditional Chinese translation(Hong Kong and Taiwan)

Cole Robinson (1):
      Fix Spice plugin auto-clipboard property enum

David King (3):
      Post-release version bump to 3.11.1
      Update FSF postal address, bug 721561
      Fix Latvian help translation markup

Dimitris Spingos (1):
      Updated Greek translation

Muhammet Kara (2):
      [l10n]Updated Turkish translation
      [l10n]Updated Turkish translation

Rūdolfs Mazurs (1):
      Updated Latvian translation

Stas Solovey (1):
      Updated Russian translation

Tong Hui (1):
      Update Chinese simplified translation

William Jon McCann (1):
      Update project homepage url

Vinagre 3.10.0
==============

A S Alam (1):
      Punjabi Translation updated by Aman

Alexandre Franke (1):
      Update French translation

Andika Triwidada (1):
      Updated Indonesian translation

Ask H. Larsen (1):
      Updated Danish translation

Aurimas Černius (1):
      Updated Lithuanian translation

Changwoo Ryu (1):
      Updated Korean translation

Christian Kirbach (1):
      Updated German translation

Claudio Arseni (1):
      [l10n] Updated Italian translation.

Daniel Korostil (1):
      Updated Ukrainian

David King (1):
      Post-release version bump to 3.9.91

Dmitriy S. Seregin (1):
      Updated Russian translation

Enrico Nicoletto (2):
      Some fixes in Brazilian Portuguese translation
      Updated Brazilian Portuguese translation proofread by Antônio Fernandes C. Neto

Gabor Kelemen (1):
      Updated Hungarian translation

Ihar Hrachyshka (2):
      Updated Belarusian translation.
      Updated Belarusian translation.

Inaki Larranaga Murgoitio (1):
      Updated Basque language

Josep Sànchez (1):
      [l10n] Update Catalan translation

Khaled Hosny (1):
      Update Arabic translation

Mattias Põldaru (1):
      [l10n] Updated Estonian translation

Nilamdyuti Goswami (1):
      Assamese Translation Updated

Nishio Futoshi (1):
      l10n: Update Japanese translation

Pavol Klačanský (1):
      Updated slovak translation

Piotr Drąg (1):
      Updated Polish translation

Rūdolfs Mazurs (1):
      Updated Latvian translation

Timo Jyrinki (1):
      Finnish translation update

Мирослав Николић (1):
      Updated Serbian translation

Vinagre 3.9.90
==============

Chao-Hsiung Liao (1):
      Updated Traditional Chinese translation(Hong Kong and Taiwan)

David King (2):
      Post-release version bump to 3.9.90
      Update NEWS for 3.9.90 release

Fran Diéguez (1):
      Updated Galician translations

Jonh Wendell (2):
      Implement get_dimensions() virtual function for VNC
      Implement get_dimensions() virtual function for RDP

Kjartan Maraas (1):
      Updated Norwegian bokmål translation

Matej Urbančič (1):
      Updated Slovenian translation

Rafael Ferreira (1):
      Updated Brazilian Portuguese translation

Wylmer Wang (1):
      Added Chinese simplified translation for help

Yaron Shahrabani (1):
      Updated Hebrew translation.

Vinagre 3.9.5
=============

Daniel Mustieles (1):
      Updated Spanish translation

David King (4):
      Post-release version bump to 3.9.5
      Revert "Fixes the libsecret 'user' argument passing"
      Fix credential access with libsecret, bug 704744
      Improve credential description, bug 648008

Jonh Wendell (8):
      Fix a logic bug in utils.show_many_errors()
      Add recognize_file() API to VinagreProtocol interface
      Use the new API recognize_file() when parsing a file
      implement recognize_file() in VNC plugin
      implement recognize_file() in SPICE plugin
      Fill the right ipv6 notation when using avahi dialog
      Fixes the libsecret 'user' argument passing
      Make the BookmarksTree widget smaller

Marek Černocký (5):
      Updated Czech translation
      Added Czech language
      Czech translation
      Updated Czech translation
      Updated Czech translation

Vinagre 3.9.4
=============

David King (1):
      Post-release bump to 3.9.3
      Update NEWS for 3.9.4 release

Gabor Kelemen (1):
      Fix a few errors in the Hungarian translation

Jonh Wendell (2):
      Requires gtk+ 3.9.6
      VinagreTab: don't crash on screenshot

Marek Kasik (2):
      Use xfreerdp for RDP support
      Show correct title in error dialog

Marek Černocký (1):
      Updated Czech translation

Matej Urbančič (1):
      Updated Slovenian translation

Vinagre 3.9.2
=============

Daniel Mustieles (1):
      Updated Spanish translation

David King (2):
      Post-release version bump to 3.9.1
      Update NEWS for 3.9.2 release

Dimitris Spingos (1):
      Updated Greek translation

Ekaterina Gerasimova (1):
      Fix help link in reverse connections, bug 700014

Fran Diéguez (3):
      Updated Galician translations
      Updated Galician translations
      Updated Galician translations

Kjartan Maraas (1):
      Updated Norwegian bokmål translation

Marek Kasik (2):
      Update manual page
      Allow to customize desktop size for RDP protocol

Yaron Shahrabani (1):
      Updated Hebrew translation.

(wiz)

2024-04-21 15:00:14 UTC MAIN commitmail json YAML

doc: Updated net/vinagre to 3.8.3

(wiz)

2024-04-21 15:00:05 UTC MAIN commitmail json YAML

vinagre: update to 3.8.3.

(yes, newer versions exist)

Vinagre 3.8.3
=============

David King (8):
      Revert "Add recognize_file() API to VinagreProtocol interface"
      Revert "Use the new API recognize_file() when parsing a file"
      Revert "implement recognize_file() in VNC plugin"
      Revert "implement recognize_file() in SPICE plugin"
      Revert "Fixes the libsecret 'user' argument passing"
      Fix credential access with libsecret, bug 704744
      Revert the recognize_file() reverts
      Update NEWS for 3.8.3 release

Jonh Wendell (9):
      VinagreTab: don't crash on screenshot
      Fix a logic bug in utils.show_many_errors()
      Add recognize_file() API to VinagreProtocol interface
      Use the new API recognize_file() when parsing a file
      implement recognize_file() in VNC plugin
      implement recognize_file() in SPICE plugin
      Fill the right ipv6 notation when using avahi dialog
      Fixes the libsecret 'user' argument passing
      Make the BookmarksTree widget smaller

Marek Kasik (1):
      Show correct title in error dialog

Vinagre 3.8.2
=============

David King (2):
      Post-release version bump to 3.8.2
      Update NEWS for 3.8.2 release

Ekaterina Gerasimova (1):
      Fix help link in reverse connections, bug 700014

Kjartan Maraas (1):
      Updated Norwegian bokmål translation

Vinagre 3.8.1
=============

David King (2):
      Post-release version bump to 3.8.1
      Update NEWS for 3.8.1 release

Dimitris Spingos (1):
      Updated Greek translation

Gheyret Kenji (1):
      Updated Uyghur translation

Kjartan Maraas (1):
      Updated Norwegian bokmål translation

Marek Kasik (1):
      Update manual page

Vinagre 3.8.0
=============

Alexandre Franke (3):
      Update French translation
      Revert "Update French translation"
      Update French translation

Daniel Mustieles (1):
      Updated Spanish translation

David King (3):
      Post-release version bump to 3.8.0
      Fix fr help translation markup
      Update NEWS for 3.8.0 release

Ekaterina Gerasimova (2):
      Revert "help/C/introduction: fix how image renders in html."
      Review help for 3.8

Gabor Kelemen (2):
      Typofix: commected
      Updated Hungarian help translation

Khaled Hosny (1):
      Update Arabic translation

Mario Blättermann (1):
      [l10n] Updated German doc translation

Piotr Drąg (1):
      Fix translations of keywords in .desktop files

Victor Ibragimov (1):
      [l10n] Added Tadjik translation

Vinagre 3.7.92
==============

David King (2):
      Post-release version bump to 3.7.92
      Update NEWS for 3.7.92 release

Duarte Loreto (1):
      Converted Portuguese translation to New Spelling (Novo AO)

Vinagre 3.7.91
==============

David King (2):
      Post-release version bump to 3.7.91
      Update NEWS for 3.7.91 release

Inaki Larranaga Murgoitio (1):
      Updated Basque language

Vinagre 3.7.90
==============

David King (2):
      Post-release version bump to 3.7.5
      Update NEWS for 3.7.90 release

Evangelos Foutras (1):
      Fix value of save_in_keyring output parameter

Gheyret Kenji (1):
      Updated Uyghur translation

Piotr Drąg (1):
      Updated Polish translation

Vinagre 3.7.4
=============

David King (2):
      Post-release version bump to version 3.7.4
      Update NEWS for 3.7.4 release

Dimitris Spingos (1):
      Updated Greek translation

Shankar Prasad (1):
      Updated Kannada Translations

Sébastien Villemot (1):
      Use GPollableInputStream when checking SSH errors

Vinagre 3.7.3
=============

David King (5):
      Post-release version bump to 3.7.1
      Use https Bugzilla URL in DOAP file
      Do not use NULL attributes with libsecret
      Fix missing prototypes warnings
      Update NEWS for 3.7.3 release

ManojKumar Giri (1):
      Updated Odia Translation with FUEL implementation.

Roman Mátyus (1):
      Updated Slovak translation

Shankar Prasad (1):
      Updated Kannada Translations

(wiz)

2024-04-21 14:53:55 UTC MAIN commitmail json YAML

gtk-vnc: add dependency to bl3.mk

(wiz)

2024-04-21 14:48:29 UTC MAIN commitmail json YAML

2024-04-21 14:48:01 UTC MAIN commitmail json YAML

doc: Updated net/gtk-vnc to 1.3.1

(wiz)

2024-04-21 14:47:51 UTC MAIN commitmail json YAML

gtk-vnc: update to 1.3.1.

1.2.0 (latest "stable" version according to Gnome standards)
doesn't build, so use latest version.

Jul 14, 2022: Release 1.3.1
===========================

o Fix invalid use of subprojects with meson
o Support ZRLE encoding for zero size alpha cursors
o Add 'check' arg to meson run_command()

Nov 16, 2021: Release 1.3.0
===========================

o Add API to request screen rotation
o Automatically pick gthread coroutine if ucontext is not available
o Fix meson logic bug when disabling vala
o Honour choice of python when generating keymaps
o Fix error reporting and memory leaks encrypting auth data
o Fix missing includes for GDK quartz and broadway backends
o Switch to GNUTLS for VNC auth challenge to fix empty password handling
o Fix handling of auth subtypes in gvnccapture program

Apr 14, 2021: Release 1.2.0
===========================

o Add API to request fixed zoom level
o Add API to request fixed aspect ratio when scaling
o Add APIs for client initiated desktop resize
o Implement "Extended Desktop Resize" VNC extension
o Implement "Desktop Rename" VNC extension
o Implement "Last Rect" VNC extension
o Implement "XVP" (power control) VNC extension
o Implement VeNCrypt "plain" auth mode
o Implement alpha cursor VNC extension
o Use GTK preferred width/height helpers for resizing
o Fix misc docs/introspection annotation bugs
o Honour meson warninglevel setting for compiler flags
o Fix JPEG decoding in low colour depth modes
o Fix minor memory leaks
o Add header file macros for checking API version
o Change some meson options from "bool" to "feature"
o Validate GLib/GTK min/max symbol versions at build time
o Avoid recreating framebuffer if size/format is unchanged
o Emit resize signal after WMVi update
o Various fixes & enhancements to python demo program
o Ensure Gir files build against local libs
o Enable stack protector on more platforms
o Don't force disable introspection on windows
o Relax min x11 deps for older platforms
o Avoid mutex deadlock on FreeBSD in test suite
o Stop using deprecated GLib thread APIs
o Stop using deprecated GLib main loop APIs
o Stop using deprecated GObject class private data APIs
o Add fixes for building on macOS
o Fix deps for building example program
o Update translations

Aug 7, 2019: Release 1.0.0
==========================

o Autotools build system replaced with meson
o Support for GTK-2 is dropped. GTK-3 is mandatory
o Support for libview is dropped in example program
o Improvements to example demos
o Use MAP_ANON if MAP_ANONYMOUS doesn't exist to help
  certai macOS versions
o Fix crash when connection attempt fails early
o Initialize gcrypt early in auth process
o Emit vnc-auth-failure signal when SASL auth fals
o Emit vnc-error signal when authentication fails
o Fix double free when failing to read certificates
o Run unit tests in RPM build
o Modernize RPM spec
o Fix race condition in unit tests
o Fix install of missing header for cairo framebuffer
o Fix typo in gir package name
o Add missing VncPixelFormat file to git data

Aug 17, 2018: Release 0.9.0
===========================

Note that the next release (1.0.0) will drop support for GTK-2

o Requires gnutls >= 3.1.18
o Requires libgcrypt >= 1.5.0
o Requires glib2 >= 2.42.0
o Use libgcrypt for DES routines
o Add missing cipher close calls in ARD auth
o Check for errors after reading mslogon params
o Support newer UltraVNC mslogon auth type code
o Avoid divide by zero in mslogin auth from bogus params
o Re-allow python2 accidentally blocked when removing
  python binding

Aug  1, 2018: Release 0.8.0
===========================

o Deleted the python2 binding in favour of GObject introspection
o Pull in latest keycodemapdb content
o Disable/fix -Wcast-function-type warnings

Mar 23, 2018: Release 0.7.2
===========================

o Deprecated the manual python2 binding in favour of GObject
  introspection. It will be deleted in the next release.
o Emit led state notification on connect
o Fix incorrect copyright notices
o Simplify shifted-tab key handling
o Don't short circuit TLS credential request
o Improve check for keymap under XWayland
o Update doap description of project
o Modernize RPM specfile

May 19, 2017: Release 0.7.1
===========================

o Explicitly link to GIO instead of relying
  on implicit linkage
o Switch to use new keycodemap database module
o Fix size of reserved data in class struct
o Fix inverted framebuffer args in test case
o Avoid sign extension in integer arithmetic
o Avoid crash when opening a GSocketAddress
o Fix crash if server connection times out
o Fix incompatibility with libvncserver

Feb  9, 2017: Release 0.7.0
===========================

o CVE-2017-5884 - fix bounds checking for RRE, hextile and
  copyrect encodings
o CVE-2017-5885 - fix color map index bounds checking
o Add API to allow smooth scaling to be disabled
o Workaround to help SPICE servers quickly drop VNC clients
  which mistakenly connect, by sending "RFB " signature bytes
  early
o Don't accept color map entries for true-color pixel formats
o Add missing vala .deps files for gvnc & gvncpulse
o Avoid crash if host/port is NULL
o Add precondition checks to some public APIs
o Fix link to home page in README file
o Fix misc memory leaks
o Clamp cursor hot-pixel to within cursor region

Aug 18, 2016: Release 0.6.0
===========================

Important changes:

o Default to build with GTK-3, use --with-gtk=2.0 to override

New features:

o Add --with-tls-priority configure flag to set default TLS
  priority string
o Add a 'vnc-error' signal to report reason for disconnect
o Add support for fallback to GNUTLS system trust DB

Bug fixes:

o Fix crash on Windows with GTK3 checking realized state
o Fix XKB detection of keyboard mapping with Xwayland
o Switch back to XKB detection for Xwayland
o Remove duplicate cert expiry check
o Avoid misc compile warnings
o Add missing API docs + GObject introspection annotations
o Add missing GIO dep on gvnc library GObject introspection build
o Remove unused code
o Fix redraw on Win10
o Drop support for gnutls < 2.2.0
o Fix path to h2def script
o Update compiler warning detection to fix clang build
o Ignore cast align warnings to fix clang build
o Fix endianess inversion when setting pixel format

Feb 10, 2015: Release 0.5.4
===========================

Bug fixes:

o Fix auth when using PLAIN SASL method
o Fix introspection build support on FreeBSD
o Remove use of deprecated GTK_STOCK_* constants
o Fix parallel build for introspection files
o Add mising dep on Gtk introspection file
o Release held keys when getting grab notify
o Updated translations
o Don't call into GDK if no GdkWindow is realized
o Chain up parent realize_event vfunc
o Fix colourmap mode by always sending pixel format message
o Update GCC compiler warning flags used
o Enable double buffering on Gtk3 to fix child widget clipping
o Disable -Wbad-function-cast to avoid glib header warnings
o Don't set thread callbacks on gcrypt >= 1.6 or gnutls >= 2.12
o Do explicit check for gcrypt since gnutls might use nettle
o Add support for Wayland & Xwayland keymaps
o Add support for Gtk Broadway backend keymaps
o Fix AltGr handling on Windows displays
o Fix virtual keycode conversion on Win32
o Fix USB/HID scsancodes for volume keys

Sep 18, 2013: Release 0.5.3
===========================

New features:

o Support QEMU LED state extension

Bug fixes:

o Time out connection attempt after 10 seconds
o Abort if out of memory when mmap'ing coroutine stack
o Stop leaking coroutine stack memory
o Improve perfornmance of ZRLE encoding by avoiding memmove
o Only trigger keyboard grab sequence upon key release to
  allow modifiers to go to the remote server
o Avoid busy loop upon I/O error which follows blocking I/O,
  commonly seen when a server drops the connection
o Fix handling of --no-undefined flag
o Don't break implicit pointer grab from mouse clicks
o Don't drop mouse events that are out of bounds, clamp their
  coordinates instead
o Show how to block all accelerators in gvncviewer demo program

(wiz)

2024-04-21 14:30:56 UTC MAIN commitmail json YAML

doc: Added lang/goplus version 1.2.6

(nikita)

2024-04-21 14:30:33 UTC MAIN commitmail json YAML

lang/goplus: import goplus version 1.2.6

Go+ is a statically-typed language designed for data
science. It is fully compatible with the Go language, but
has a more script-like style, being more readable code
for data science than Go.

(nikita)

2024-04-21 14:04:42 UTC MAIN commitmail json YAML

QNX has at least one user (js@)

(nia)

2024-04-21 13:41:02 UTC MAIN commitmail json YAML

py-requests-mock: add missing tool dependency

(wiz)

2024-04-21 13:40:09 UTC MAIN commitmail json YAML

doc: Updated devel/py-gidgethub to 5.3.0

(wiz)

2024-04-21 13:40:01 UTC MAIN commitmail json YAML

py-gidgethub: update to 5.3.0.

5.3.0
-----

- Add support passing ``extra_headers`` when making requests
  (`PR #192 <https://github.com/brettcannon/gidgethub/pull/192>`_)

- Add a getstatus() method for APIs that do not return content.
  (`PR #194 <https://github.com/brettcannon/gidgethub/pull/194>`_)

5.2.1
-----

- Fix cgi and importlib_resources deprecations.
  (`PR #185 <https://github.com/brettcannon/gidgethub/pull/185>`_)

- Add support for Python 3.11 and drop EOL Python 3.6
  (`PR #184 <https://github.com/brettcannon/gidgethub/pull/184>`_)

5.2.0
-----

- Make the minimum version of PyJWT be v2.4.0.

(wiz)

2024-04-21 13:37:31 UTC MAIN commitmail json YAML

appstream: add missing tool dependency

(wiz)

2024-04-21 13:35:44 UTC MAIN commitmail json YAML

appstream: remove patch that was removed from distinfo on update

(wiz)

2024-04-21 13:32:59 UTC MAIN commitmail json YAML

2024-04-21 12:57:57 UTC MAIN commitmail json YAML

doc: Updated graphics/netpbm to 11.02.09

(ryoon)

2024-04-21 12:54:24 UTC MAIN commitmail json YAML

graphics/netpbm: Update to 11.02.09

Changelog:
24.04.11 BJH  Release 11.02.09

              libnetpbm: Fix double free crash when memory allocation via
              REALLOCARRAY fails.  Introduced in Netpbm 10.40 (September
              2007).

24.03.11 BJH  Release 11.02.08

              infotopam: fix incorrect output -- columns always in wrong
              place.  Always broken.  (infotopam was new in Netpbm 10.22 (May
              2004)).

23.12.26 BJH  Release 11.02.07

              pnmpad: fix behavior with -left, -right, and -width together or
              -top, -bottom, -height together: ignores -width where it should
              fail.  Broken in Netpbm 10.72 (September 2015).

23.12.05 BJH  Release 11.02.06

              pnmconvol: Restore ability of convolution matrix to be a
              pseudo-plain-PNM with samples that exceed the maxval.  Lost in
              10.30 (October 2005) because maxval-checking code was added to
              libnetpbm.  (Was fixed in 10.47.08 in November 2010, but only in
              the 10.47 series).

23.11.24 BJH  Release 11.02.05

              pnmpad: fix wrong results with old-style options (e.g. "-t50").

23.09.24 BJH  Release 11.02.04

              pamtosvg: fix hang.

              pbmtoxbm: Fix spurious output with really wide rows.

23.09.02 BJH  Release 11.02.03

              pamaddnoise: fix very incorrect noise added for all types.
              Introduced in Netpbm 10.94 (March 2021).

              pgmtexture: Fix buffer overflow with maxval > 255.  Always
              broken.  Maxvals > 255 were possible starting in Netpbm 9.0
              (April 2000).

              ppmrough: fix buffer overrun.  Always broken (Ppmrough was new
              in Netpbm 10.9 (September 2002).

              ppmrough: fix excessive roughness.  Introduced in Netpbm 10.94
              (March 2021).

23.08.18 BJH  Release 11.02.02

              ppmfade: fix "file not found" crash for most fade modes.
              Introduced in Netpbm 10.98 (March 2022).

              ppmfade: fix incorrect block mode fade.  Always broken
              (ppmfade was new in Netpbm 8.4 (April 2000)).

23.08.05 BJH  Release 11.02.01

              pamstack: Fail gracefully when total number of planes is too
              large for unsigned integer.  Always broken (Pamstack was new in
              Netpbm 10.0 (June 2002).

23.03.25 BJH  Release 11.02.00

              jpegtopnm: Add -traceexif

              pbmtextps: Add -asciihex, -ascii85.

              pcdovtoppm: remove dependency on obsolete 'tempfile' program.

              jpegtopnm: Many fixes to -dumpexif.  Always broken.
              (-dumpexif was new in Netpbm 9.18 (September 2001))

              pamtopng: fix -chroma option: always rejected.  Always broken.
              (pamtopng was new in Netpbm 10.70 (June 2015)).

              pnmtopng: fix -rgb option: always rejected.  Always broken
              (-rgb was new in Netpbm 10.30 (October 2005)).

              build: change the way you add the separately distributed
              'hpcdtoppm' code to the build.

22.12.31 BJH  Release 11.01.00

              pamcat: Add -listfile .

              pamtojpeg2k: add -size option.  Doesn't precisely work (and
              -compression has never worked precisely either); should be
              fixed some day.

              ppmtompeg: Fix crash with resize option because of invalid
              memory free.

              fitstopnm: fix invalid memory reference (nonterminated ASCIIZ
              string).

              packaging: Fix library minor number to 100 + Netpbm minor number
              so it is higher than previous ones in library major 100.
              I.e. libnetpbm.so.100.101 instead of libnetpbm.so.100.1.
              Introduced in Netpbm 11.00.00.

22.09.28 BJH  Release 11.00.00

              (No significance to new major number; just ran out of 2-digit
              minor numbers).

              Add pamcat.

              pamtable: add -tuple.

              pamtable: add -hex.

              pbmtextps: improve error messages.

              pnmtofits: fix arbitrary behavior when FITS input lacks
              required fields in header.  Always broken.  Pnmtofits'
              predecessor was in primordial Netpbm (1989).

              ppmtoicr: Fix bug: all options cause bogus command line parsing
              errors.  Always broken.  Ppmtoicr was new in 1991.

              ppmtoicr: Fix arithmetic overflows.

              ppmtoicr: make -rle option issue an error message saying it no
              longer exists (it did, sort of, before 2015).

              ppmforge: Fix arbitrary output with really large -power.

              pnmindex: fix shell injection vulnerabilities.  Broken since
              Netpbm 10.28 (June 2005).

              pnmmargin: fix shell injection vulnerability.  Always broken
              (Program was added in primordial Netpbm in 1990).

              build: Create backward compatibility symbolic link for
              pnminterp-gen, missing for over 20 years.

22.06.24 BJH  Release 10.99.00

              Add pamrestack.

              Add pamshuffle.

              Add pamtoqoi, qoitopam.

              palmtopnm: Fix failure with bogus claim of invalid input on
              architectures that do not use two's complement negative numbers.
              Always broken.  (Ability to convert PackBits input was new in
              Netpbm 10.27 (March 2005).

              pnmgamma -srgbtobt709, -bt709tosrgb: fix bug; incorrect output.
              Always broken (These options were new in Netpbm 10.32 (February
              2006)).  Thanks Alexander Shpilkin <ashpilkin@gmail.com>.

              pamdice: Fix incorrect output file name with PAM input.  Always
              broken (pamdice was new in Netpbm 9.25 (March 2002).

              libnetpbm: Stop bogus runtime error check failure in pmfileio.c
              shifts.

22.03.27 BJH  Release 10.98.00

              pamtopdbimg: Add -fixedtime.

              ppmfade: Use temporary files securely.

              pnmtosir: Set some possibly meaningless bits in output to zero
              so output is repeatable.

              pamx: Fix bug: top-justifies image in all cases where it should
              bottom-justify.  Always broken.  (pamx was new in Netpbm 10.34
              (June 2006).

              pnmtorle: Fix bug: -h works only on first image.

              pamsistoaglyph: Fix invalid memory reference and incorrect
              output on depth 1 input.  Always broken.  (pamsistoaglyph was
              new in Netpbm 10.47 (June 2009).  Thanks Scott Pakin.

              pambayer: Fix bogus colors at edges.  Always Broken (pambayer
              was new in Release 10.30 (October 2005)).

              libnetpbm, various programs: fix bug: bogus warning that a color
              specified on command line cannot be represented exactly with the
              maxval being used.  Introduced in Netpbm 10.83 (June 2018).

              pnmtopsnr: Fix typo in error message.  Always broken (pnmpsnr
              was new in Netpbm 9.6 (July 2000).

              ppmtoilbm: Remove -floyd (aka -fs) option, which hasn't worked
              in a long time if ever and is inappropriate function for this
              program.  And the broken code is inconsistent with new random
              number logic elsewhere in the package.

              ppmtoapplevol: Fix bug: reads from Standard Input even when you
              specify the input file argument.  Always broken.  (ppmtoapplevol
              was new in Netpbm 10.54 (March 2011).

              ppmtoapplevol: Fix bug: produces garbage with input image wider
              than 255.  Always broken.  (ppmtoapplevol was new in Netpbm
              10.54 (March 2011).

              pgmmedian: fix crash when median matrix is wider or higher than
              the input image.

              picttoppm: Fix incorrect output for 32 bit per pixel images
              that have only 3 planes.  Broken in Netpbm 10.34 (June 2006).

              pamendian: fix bogus "sample exceeds maxval" failure.
              Introduced in Netpbm 10.66 (March 2014).

              ppmtoilbm: Fix wild memory references and hangs with -map .
              Introduced in Netpbm 9.12 (March 2001).

              pgmtexture: Fix incorrect output.  Always broken.  (Program was
              added in primordial Netpbm in 1991).

              pgmabel: Fix incorrect output.  Always broken.  (Program was
              new in Netpbm 10.3 (July 2002).

              Remove Floyd-Steinberg dithering functions (ppm_fs_*) from
              libnetpbm (libppmfloyd).  No longer used.  Floyd-Steinberg
              dithering logic can be found in pnmremap.  libppmfloyd
              was previously used by ppmtoilbm.

21.12.27 BJH  Release 10.97.00

              Add pbmnoise.

              pnmpad: Use -halign with -mwidth and default to centering the
              image instead of left-justifying when no other padding is being
              added.  Same with -mheight, -valign, and top-justifying.

              xwdtopnm: Add ability to process bit depth 32.

              pgmtoppm: Add -black, -white.

              ppmpat: Add -mesh.

              pampaintspill: Add -near.  Thanks Scott Pakin.

              pamtogif: Fix bug: doesn't ignore the input alpha mask when user
              specified -transparent.  Broken in Netpbm 10.37 (December 2006).

              palmtopnm: Fix bug: fails with PackBits input on platform with
              default unsigned char, such as ppc64.  Always broken.  (Ability
              to convert PackBits input was new in Netpbm 10.27 (March 2005).

              pamrubber: Fix bug: random behavior with -quad when you specify
              both points for source or target and the second one is lower in
              the image than the first.  Always broken (Pamrubber was new in
              Netpbm 10.54 (March 2011)).

              sunicontopnm, escp2topbm, mgrtopbm, ybmtopbm, pamcut, pbmpscale,
              pnmcat, pnmpad: Fix arithmetic overrun with ridiculously large
              image.

              pbmclean: Fix overallocation of memory (waste).

              libnetbm: Add pnm_writepamrowpart, pnm_formatPamtuples.

              libnetpbm: When validating computable size of width and height,
              allow for adding up to 10 instead of 2, to account for rounding
              up to a multiple of 8 in processing bit maps.

              Build: Don't attempt to build 'pamexec' on systems without
              Unix process management.  Bug introduced in Netpbm 10.94
              (March 2021) and supposedly fixed in 10.95, but not really.

21.09.25 BJH  Release 10.96.00

              pgmtoppm: Eliminate dependency on color dictionary when user
              does not specify any colors by name.

              pamstereogram: Fix crash with -xbegin=0.  Thanks Scott Pakin.
              Introduced in Netpbm 10.94.

21.06.30 BJH  Release 10.95.00

              pamtopng: Fix rejection of all BLACKANDWHITE_ALPHA images with
              message about wrong depth.  Always broken (pamtopng was new in
              Netpbm 10.71 (June 2015)).  Thanks Karol Kosek
              <krkk@krkk.ct8.pl>.

              pamtopng: Fix failure with GRAYSCALE_ALPHA images with maxval
              less than 255.  Always broken (pamtopng was new in Netpbm 10.71
              (June 2015)).  Thanks Karol Kosek <krkk@krkk.ct8.pl>.

              pamtopng: Fix: treats all tuple types that start with BLA as
              BLACKANDWHITE.  Always broken (pamtopng was new in Netpbm 10.71
              (June 2015)).

              pamtopng: Fix -transparent option - program recognized
              -transparency instead.  Always broken (pamtopng was new in
              Netpbm 10.71 (June 2015)).

              pamtogif: Fix failure with bogus message about wrong depth with
              grayscale and black and white PAM images with transparency.
              Always broken (pamtogif was new in Netpbm 10.37 (December 2006)).
              Thanks Karol Kosek <krkk@krkk.ct8.pl>.

              ppmtogif: Same as 'pamtogif' fix above, but with -alpha option.

              Build: Fix build failure due to missing 'random' function on
              Mingw platform.  Bug introduced in Netpbm 10.94 (March 2021).

              Build: Don't attempt to build 'pamexec' on systems without
              Unix process management.  Bug introduced in Netpbm 10.94
              (March 2021).

              Build: Make it work on systems that don't have date +%s.  Broken
              in Netpbm 10.78 (March 2017).  Thanks Claes N辰st辿n
              (pekdon@gmail.com).

              Build: Fix for MacOS build failures with missing sprintf and
              vasprintf in broken build environment.

              Mkdeb: fix failure with message about unrecognized format of
              VERSION file.  Introduced in Netpbm 10.90 (March 2020).

21.03.27 BJH  Release 10.94.00

              Add pamhomography:  Thanks Scott Pakin.

              pamstereogram: Add -yfillshift .

              pamtowinicon: Add BMP/PNG encoding to verbose output.

              Use internal random number generator everywhere random numbers
              are used except ppmtoilbm, so seeded results are the same on
              all platforms.

              pamexec: Issue message instead of being killed by a signal when
              the exec'ed program does not read the whole image"

              ppmforge: Fail if -dimension is greater than 5, which is
              useless.

              pamscale: Fix bogus "bad magic number" or similar failure most
              of the time with -nomix.  Broken since Netpbm 10.49 (December
              2009).

              pnmtopng: Fix incorrect transparency in output when requesting
              transparency.  Introduced after Netpbm 10.35 (August 2006) but
              not after Netpbm 10.47 (June 2009).

              pnmtopng: Fix buffer overrun or bogus "too many color/
              transparency pairs" failure when requesting transparency.
              Introduced after Netpbm 10.26 (January 2005) but not after
              Netpbm 10.35 (August 2006).

              pamtojpeg2k: Fix constant failure with message about file
              close failing.

              libnetpbm: pm_system: Fix bug: standard input feeder process
              repositions unrelated files.  Always broken (pm_system was new
              in Netpbm 10.13 (September 2003).

              Pamtowinicon: Fix crash or incorrect output with PNG encoding
              (result of pm_system bug above).  Always broken (Pamtowinicon
              was new in Netpbm 10.63 (June 2013).

              pnmtopng: Fix trivial memory leaks.

              pnmtops: Fix incorrect output (arithmetic overflow) when
              bounding box is exactly INT_MAX high or wide.  Always broken.
              Pnmtops was in primordial Netpbm.

              make package: fix no such file pcdovtoppm.exe failure on
              Windows.

20.12.28 BJH  Release 10.93.00

              pamarith: Add -equal.

              pamarith: Allow more than two operands for functions for which
              it makes sense (all but -subtract, -difference, -compare,
              -divide, -shiftleft, and -shiftright).

              pamarith: fail if operand images have different depth and not
              depth 1.

              ppmshift: Add -seed .

              pamaddnoise: Fix incorrect output for -type poisson.  Always
              broken.  (pamaddnoise's precursor pnmaddnoies was new to Netpbm
              in Netpbm 10.29 (August 2005)).

              pamaddnoise: fix bug: garbage output with -type impulse.  Always
              broken (pamaddnoise's precursor pnmaddnoise was new to Netpbm
              in Netpbm 10.29 (August 2005)).

20.09.26 BJH  Release 10.92.00

              pnmcrop: Make -margin effective with -blank-image=minimize.

              pnmnorm: With bounds specified as -bpercent or -bsingle and
              -wpercent or -wsingle, and the image has only one brightness,
              don't attempt any normalization - leave image as is.  (Previous
              version produces all black with -keephues).

              pgmtopbm: Add -randomseed.

              pamfunc: Fix always wrong output with -not.  Always broken.
              (-not was new in Netpbm 10.40 (September 2007)).

              pamdepth: fix bug: doesn't work on PAM with black and white
              tuple type.

              pnmnorm: Fix bug: output too dark when -bpercent and -wpercent
              indicate overlapping values.  Broken since Netpbm 10.43 (June
              2008).

              pbmtext: Fix double-free crash with -font .  Introduced in
              Netpbm 10.91 (June 2020).

              jpeg2ktopam: Fix crash whenever the program fails.  Broken in
              Netpbm 10.42 (March 2008).

              pamtojpeg2k: Fix failure with most -progression values.  Always
              broken (pamtojpeg2k was new in Netpbm 10.12 (November 2002)).

              pamtojpeg2k: Fix wrong result with -tilegrdtly.  Always
              broken (pamtojpeg2k was new in Netpbm 10.12 (November 2002)).

              pamarith: Fix crash with -compare where inputs are PBM or
              BLACKANDWHITE PAM.  Broken in Netpbm 10.14 (February 2003).

              pamfunc: Fix crash with -changemaxval and PBM or BLACKANDWHITE
              PAM input.  Always broken.  -changemaxval was new in Netpbm
              10.65 (December 2013).

              pammixmulti: Fix bug: -randomseed ignored on some systems.
              Always broken.  (pammixmulti was new in Netpbm 10.85 (December
              2018).

              pcdovtoppm: Fix some garbage from the conversion from csh to sh
              in Netpbm 9.12 (March 2001) in conversion from csh arrays that
              should have stopped it from working at all, despite reports from
              users that they were using it.

              ximtoppm: Fix bug: invalid memory references with pathological
              image input.  Broken in Netpbm 10.91 (June 2020).

              Configure: remove obsolete question about URL to put in pointer
              man pages of yesteryear.

              Build: fix bug: PKG_CONFIG make variable not used for merge
              build.  Always broken (PKG_CONFIG was new in Netpbm 10.76
              (September 2016).

20.06.28 BJH  Release 10.91.00

              pamstretch-gen: Add -quiet (supposedly added in 10.86, but never
              worked).

              pamstereogram: Add -tileable.  Thanks Scott Pakin.

              pcdovtoppm: Implement -version, -plain, and -quiet.

              pcdovtoppm: more secure temporary file handling.

              pcdovtoppm: Improve the way it fails when 'hpcdtoppm' fails.

              anytopnm, pnmmargin: Fail properly when unable to create
              temporary file.  Broken in Netpbm 10.75 (June 2016).

              winicontoppm: Fix undefined behavior for various invalid input.
              Always broken.  Winicontoppm was new in Netpbm 9.3 (June 2000).

              winicontoppm: Fix incorrect output with 256 pixel wide or high
              image.  Always broken.  Winicontoppm was new in Netpbm 9.3 (June
              2000).

              pjtoppm: Handle input stream with no transmission mode command.
              Always broken.  Pjtoppm was in primordial Netpbm (1991).

              cameratopam: Handle I/O error on input file.  Always broken.
              Cameratopam was new to Netpbm in Netpbm 10.25 (June 2005).

              xbmtopbm: Recognize "unsigned short" as an extension of
              XBM X10 format.

              pjtoppm: Fix handling of input with width unspecified or not
              positive.  Always broken.  (Pjtoppm was in primordial Netpbm, ca
              1991).

              winicontopam: Fix crash with PNG icon.  Always broken.
              Winicontopam was new in Netpbm 10.63 (June 2013).

              picttoppm: Fix bug with an input file that specifies a clip
              region (ClipRgn opcode) that is not contained within the
              picture frame.  Result is invalid memory access.  Broken
              some time 1994-2002.

              picttoppm: Fix incorrect output (sheared) when a blit must be
              scaled.  Broken in Netpbm 10.34 (June 2006) or 10.35 (August
              2006).

              pbmtonokia: Fix incorrect output with -txt option.

              pbmtonokia: Fix incorrect output with newer compiler.

              pnmtorle: Fix incorrect command and filename in header.
              Broken in Netpbm 10.88 (September 2019).

              cameratopam: Fix buffer overrun.  Always present. (cameratopam
              was new in Netpbm 10.28 (June 2005)).

              cameratopam: Fix undefined behavior using 'swab' to swap bytes
              in place.  Always present. (cameratopam was new in Netpbm 10.28
              (June 2005)).

              ppmtompeg: Fix buffer overruns with very long names in input
              parameter files.  Always broken.  Ppmtompeg was new in
              Netpbm 8.4 (April 2000).

              ximtoppm: Fix possible program crash due to invalid memory
              reference.  Always broken.  ximtoppm was in primordial Netpbm,
              ca 1989.

              pcdovtoppm: Fix bug: accepts anything starting with -s
              as equivalent to -s.

              pcdovtoppm: properly selects Bash as interpreter.  Broken
              in Netpbm 9.12 (March 2001) (when it was called pcdindex).

20.03.26 BJH  Release 10.90.00

              pamundice: Add -listfile.

              pamditherbw: Remove restriction to 2^18 pixels width and height
              for -hilbert .

              pamundice: Add error and warning messages for insane file name
              pattern.

              pamcut: Improve error messages for legacy command line
              arguments.

              pbmtopgm: Fix incorrect output when convolution area is not
              square.  Always broken.  pbmtopgm was in primordial Netpbm,
              ca 1991.

              pbmtopgm: Fix crash when convolution matrix too large for word
              size.  Always broken.  pbmtopgm was in primordial Netpbm, ca
              1991.

              pnmshear: Fix arithmetic overflow with shear angle near +/- 90
              degrees.  Always broken; pnmshear was in primordial Netpbm,
              ca. 1989.

              pnmshear: Fix shearing direction for angles larger than 90
              degrees.  Always broken; pnmshear was in primordial Netpbm,
              ca. 1989.

              pamditherbw: Fix bug: issue error message instead of just
              ignoring one of the options when you specify -hilbert and
              another halftone option.

              pamdice: Fix junk output when -width or -height not specified.

              pamdice: Fix crash when -width or -height is zero.

              pamdice: Fix incorrect file names when -outstem contains "%s",
              etc.

              pgmnoise: Correct error messages for invalid height, width
              arguments.

              pnmquantall: remove accidentally published debugging trace.

              libnetpbm: pm_getline, xvminitoppm, pamtris : Fix bug: crash
              when reading empty line.

              libnetpbm: pm_read_unknown_size, rawtopgm, zeisstopnm: crash
              when out of memory

              Build: make deb: don't include empty Recommends; newer dpkg-deb
              won't accept it.

              Install: Use e.g. "10.90.00" for version in pkg-config and
              config file, instead of e.g. "Netpbm 10.90.00".

19.12.29 BJH  Release 10.89.00

              pnmpad: Add -reportonly.

              anytopnm: Fix unpredictable behavior when file name contains
              spaces.

              pamfind: Fix typo in message.

              pnmquant: Fail if user specifies both -spreadbrightness and
              -spreadluminosity or both -randomseed and -norandom, rather
              than just pick one.

              pamrubber: Fix bug: -frame doesn't work.  Always broken.
              (Pamrubber was new in Netpbm 10.54 (March 2011)).

19.09.28 BJH  Release 10.88.00

              pnmquant: Fail if user specifies more than one of -meanpixel,
              -meancolor, and -center, rather than just pick one.

              pnmremap: Don't output any part of the image if program fails
              because the maxval of input and map file do not match, in a
              case where matching maxval is required, i.e. the user specified
              -firstisdefault or -missingcolor.

              ppmhist: sort secondarily by RGB with -sort=frequency, so
              output is repeatable.

              pnmcolormap: Add -splitpix, -splitcol, -splitdim.
              Thanks Vladislav Zavjalov.

              pbmtext: fix erroneous failure message with long input text.

              jpeg2ktopam, pamtojpeg2k: fix negative array index.  Always
              broken (pamtojpeg2k was new in Netpbm 10.12 (November 2002)).

              jpeg2ktopam, pamtojpeg2k: fix assertion failure.  Always
              broken (pamtojpeg2k was new in Netpbm 10.12 (November 2002)).

              jpeg2ktopam: Fix memory leak after decoder failure.  Always
              broken (pamtojpeg2k was new in Netpbm 10.12 (November 2002)).

              jpeg2ktopam: fix null pointer dereference.  Always broken
              (pamtojpeg2k was new in Netpbm 10.12 (November 2002)).

              pnmtorle, rletopnm: fix wild pointer dereference when memory
              allocation fails.  Always broken (programs were added to
              Netpbm in Release 9.0 (April 2000).

              pamsumm: Fix bug: with -mean and a conflicting option such as
              -sum, the program ignores one of the options.  It should fail.
              Always broken (pamsumm was new in Netpbm 10.21 (March 2004).

              Build: fix for Cygwin, "no rule to make pm_config.h".

19.06.28 BJH  Release 10.87.00

              pamfind: Add -machine .

              Multiple: fix bug: when you specify the same option twice, you
              can get a syntax error, with the message telling you you
              specified some other option that conflicts with it.  Should just
              take the last setting.

              pnmtopng: Fix bug: Defaults to no filters.  Should be all
              filters.  Effect is larger PNG output.  Broken after Netpbm
              10.26 (January 2005) but no later than Netpbm 10.35 (August
              2006).

              pnmtopng: Fix bug: Doesn't allow multiple filter options.
              Broken after Netpbm 10.26 (January 2005) but no later than
              Netpbm 10.35 (August 2006).

              pnmcrop: Don't allow -borderfile with -reportXXX.  It doesn't
              work.

              pnmcrop: fix bug: -bgcolor doesn't work.  Always present
              (-bgcolor was introduced in Netpbm 10.86 (March 2019)).

              pbmtext: fix bug: don't ignore -builtin when specified with
              -font.  Fail with syntax error instead.

              pbmtozinc: fix wrong output on big-endian machines.  Broken in
              Netpbm 10.71 (June 2015).

              pbmpage: Fix error message for invalid syntax.

              pamtris: Fix bug: debug trace left in

(ryoon)

2024-04-21 12:41:27 UTC MAIN commitmail json YAML

doc/TODO: add some

+ dunst-1.11.0, gitea-1.21.11, icu-75.1, zsh-syntax-highlighting-0.8.0.

(wiz)

2024-04-21 11:36:51 UTC MAIN commitmail json YAML

2024-04-21 11:36:38 UTC MAIN commitmail json YAML

socat: Requires strndup

(nia)

2024-04-21 11:22:05 UTC MAIN commitmail json YAML

2024-04-21 10:15:32 UTC MAIN commitmail json YAML

Amend dates, part two

(adam)

2024-04-21 08:55:18 UTC MAIN commitmail json YAML

doc: Updated sysutils/fzf to 0.50.0

(iquiw)

2024-04-21 08:54:36 UTC MAIN commitmail json YAML

fzf: update to 0.50.0

0.50.0

* Search performance optimization. You can observe 50%+ improvement in some
  scenarios.

    $ rg --line-number --no-heading --smart-case . > $DATA

    $ wc < $DATA
    5520118 26862362 897487793

    $ hyperfine -w 1 -L bin fzf-0.49.0,fzf-7ce6452,fzf-a5447b8,fzf '{bin} --filter "///" < $DATA | head -30'
    Summary
      fzf --filter "///" < $DATA | head -30 ran
        1.16 ± 0.03 times faster than fzf-a5447b8 --filter "///" < $DATA | head -30
        1.23 ± 0.03 times faster than fzf-7ce6452 --filter "///" < $DATA | head -30
        1.52 ± 0.03 times faster than fzf-0.49.0 --filter "///" < $DATA | head -30

* Added: jump and jump-cancel events that are triggered when leaving jump
  mode

    # Default behavior
    fzf --bind space:jump

    # Same as jump-accept action
    fzf --bind space:jump,jump:accept

    # Accept on jump, abort on cancel
    fzf --bind space:jump,jump:accept,jump-cancel:abort

    # Change header on jump-cancel
    fzf --bind 'space:change-header(Type jump label)+jump,jump-cancel:change-header:Jump cancelled'

* Added: a new environment variable $FZF_KEY exported to the child
  processes. It's the name of the last key pressed.

  fzf: --bind 'space:jump,jump:accept,jump-cancel:transform:[[ $FZF_KEY =~ ctrl-c ]] && echo abort'

* fzf can be built with profiling options. See BUILD.md for more information.

* Bug fixes

0.49.0

* Ingestion: performance improved by around 40% (more or less depending on
  options)

    $ time wc data
    5513620 37997130 547840920 data

    real    0m0.822s
    user    0m0.764s
    sys    0m0.052s

    $ hyperfine -L bin fzf-0.48.1,fzf '{bin} --sync --bind load:accept < data'
    Benchmark 1: fzf-0.48.1 --sync --bind load:accept < data
      Time (mean ± σ):    440.3 ms ±  4.9 ms    [User: 501.8 ms, System: 117.0 ms]
      Range (min … max):  432.8 ms … 446.1 ms    10 runs

    Benchmark 2: fzf --sync --bind load:accept < data
      Time (mean ± σ):    303.3 ms ±  4.5 ms    [User: 320.1 ms, System: 108.6 ms]
      Range (min … max):  296.6 ms … 311.4 ms    10 runs

    Summary
      fzf --sync --bind load:accept < data ran
        1.45 ± 0.03 times faster than fzf-0.48.1 --sync --bind load:accept < data

* --info=hidden: and --info=inline-right will no longer hide the horizontal
  separator by default. This gives you more flexibility in customizing the
  layout.

    fzf --border --info=inline-right
    fzf --border --info=inline-right --separator ═
    fzf --border --info=inline-right --no-separator
    fzf --border --info=hidden
    fzf --border --info=hidden --separator ━
    fzf --border --info=hidden --no-separator

* Added two environment variables exported to the child processes

  * FZF_PREVIEW_LABEL
  * FZF_BORDER_LABEL

    # Use the current value of $FZF_PREVIEW_LABEL to determine which actions to perform
    git ls-files |
      fzf --header 'Press CTRL-P to change preview mode' \
          --bind='ctrl-p:transform:[[ $FZF_PREVIEW_LABEL =~ cat ]] \
          && echo "change-preview(git log --color=always \{})+change-preview-label([[ log ]])" \
          || echo "change-preview(bat --color=always \{})+change-preview-label([[ cat ]])"'

* Renamed: track action to track-current to highlight the difference
  between the global tracking state set by --track and a one-off tracking
  action
  * track is still available as an alias

* Added untrack-current and toggle-track-current actions
  * *-current actions are no-op when the global tracking state is set

* Bug fixes and minor improvements

(iquiw)

2024-04-21 07:31:33 UTC MAIN commitmail json YAML

Updated devel/py-scikit-build-core, devel/py-pluggy

(adam)

2024-04-21 07:31:15 UTC MAIN commitmail json YAML

py-pluggy: updated to 1.5.0

pluggy 1.5.0 (2024-04-19)

Features
- Add support for deprecating specific hook parameters, or more generally, for issuing a warning whenever a hook implementation requests certain parameters.
  See :ref:`warn_on_impl` for details.

Bug Fixes
- ``PluginManager.get_plugins()`` no longer returns ``None`` for blocked plugins.

(adam)

2024-04-21 07:29:19 UTC MAIN commitmail json YAML

py-scikit-build-core: updated to 0.9.2

Version 0.9.2

Quick fix for quick fix in 0.9.1; if `cmake` is a broken script (which can
happen if you pip install outside an environment then enter an environment,
there was an unbound local error instead of ignoring the broken cmake script.

Fixes:

- Unbound local error

Version 0.9.1

Quick fix for Pyodide (WebAssembly) builds.

Fixes:

- Try `--version` if `-E capabilities` fails

(adam)

2024-04-21 07:26:57 UTC MAIN commitmail json YAML

2024-04-21 07:00:40 UTC MAIN commitmail json YAML

doc/TODO: add some

+ py-cmake-language-server-0.1.10, py-cyclonedx-python-lib-7.3.0,
  py-google-api-python-client-2.126.0, py-pdm_backend-2.2.1,
  py-pluggy-1.5.0, py-qt-builder-1.16.1, py-sphinx-7.3.7,
  py-sphinx-autodoc-typehints-2.1.0.

(wiz)

2024-04-21 06:54:04 UTC MAIN commitmail json YAML

doc: fix PKGNAME in pattern

(wiz)

2024-04-21 06:53:01 UTC MAIN commitmail json YAML

doc: Updated textproc/p5-Text-CSV_XS to 1.54

(wiz)

2024-04-21 06:52:52 UTC MAIN commitmail json YAML

p5-Text-CSV_XS: update to 1.54.

1.54 - 2024-04-18, H.Merijn Brand
    * Fix doc (Jean Forget, RT#150757)
    * It's 2024
    * Fix comment_str with strict
    * Doc fixup (RT#151546)

(wiz)

2024-04-21 06:52:18 UTC MAIN commitmail json YAML

doc: Updated time/p5-DateTime-Locale to 1.42

(wiz)

2024-04-21 06:52:09 UTC MAIN commitmail json YAML

p5-DateTime-Locale: update to 1.42.

1.42    2024-04-18

- Rebuilt all locale data with the data from CLDR 45.0.0

(wiz)

2024-04-21 06:38:33 UTC MAIN commitmail json YAML

fonts: Enable biz-ud-mincho-ttf

(ryoon)

2024-04-21 06:37:52 UTC MAIN commitmail json YAML

doc: Added fonts/biz-ud-mincho-ttf version 1.06

(ryoon)

2024-04-21 06:37:30 UTC MAIN commitmail json YAML

fonts/biz-ud-mincho-ttf: import biz-ud-mincho-ttf-1.06

BIZ UD Mincho is a universal design typeface designed to be easy to
read and ideal for education and business documentation. It combines
high quality in readability and legibility while carrying on the
stately Japanese Mincho type tradition. BIZ UD Mincho bases its design
on one of the typefaces from the Morisawa font library, which has
thicker horizontal lines than the traditional Mincho type
style. Because most Mincho types have thin horizontal strokes, the
style can be difficult to read on some displays or signs and for
people with low vision. For the universal design version, dakuten and
handakuten voicing marks are designed to be more legible, and the
letterforms are adjusted to maintain their balance while having a
larger face and wider counters.

Packaged by Atsushi Toyokura as wip/biz-ud-mincho-ttf.

(ryoon)

2024-04-21 06:36:09 UTC MAIN commitmail json YAML

fonts: Enable biz-ud-gothic-ttf

(ryoon)

2024-04-21 06:35:16 UTC MAIN commitmail json YAML

doc: Added fonts/biz-ud-gothic-ttf version 1.051

(ryoon)

2024-04-21 06:35:01 UTC MAIN commitmail json YAML

fonts/biz-ud-gothic-ttf: import biz-ud-gothic-ttf-1.051

BIZ UD Gothic is a universal design typeface designed to be easy to
read and ideal for education and business documentation. It is a
highly legible and well-balanced design sans serif. In order to make
the kanji more clear and identifiable, the letterforms are simplified
by omitting hane (hook) and geta (the vertical lines extending beyond
horizontal strokes at the bottom of kanji). Counters and other spaces
are finely adjusted so that the overall balance of the type is not
impaired even with the use in relatively large size. The kana are made
slightly smaller than the kanji to give a good rhythm and flow when
setting long texts in the lighter weights.

Packaged by Atsushi Toyokura as wip/biz-ud-gothic-ttf.

(ryoon)

2024-04-20 20:42:52 UTC MAIN commitmail json YAML

doc: Updated shells/oh-my-posh to 19.24.1

(pin)

2024-04-20 20:42:33 UTC MAIN commitmail json YAML

shells/oh-my-posh: update to 19.24.1

Bug Fixes
- fonts: use new rasterizer, all icons work (64eeb40)

(pin)

2024-04-20 20:34:31 UTC MAIN commitmail json YAML

doc: Updated textproc/prose to 0.4.7

(pin)

2024-04-20 20:34:01 UTC MAIN commitmail json YAML

textproc/prose: update to 0.4.7

Note: Builds v0.4.3 - v0.4.6 were broken and have been revoked.

(pin)

2024-04-20 20:33:06 UTC MAIN commitmail json YAML

doc: Updated net/piratebay to 0.1.9

(pin)

2024-04-20 20:32:46 UTC MAIN commitmail json YAML

net/piratebay: update to 0.1.9

What's Changed
- fixed magnet url formatting by @schell in #11

(pin)

2024-04-20 18:12:46 UTC MAIN commitmail json YAML

doc: Updated devel/objfw to 1.1.2

(js)