Commit graph

365505 commits

Author SHA1 Message Date
triaxx
7a93802de2 erlang-p1_mysql: Update to 1.0.20
upstream changes:
-----------------
Version 1.0.20
  o Faster and more robust detection of reconnect/failed connections
Version 1.0.19
  o Switch from using Travis to Github Actions as CI
2022-10-14 19:18:11 +00:00
triaxx
b89cd73853 doc: Updated devel/erlang-cache_tab to 1.0.30 2022-10-14 19:11:20 +00:00
triaxx
cffb6fa52b erlang-cache_tab: Update to 1.0.30
upstream changes:
-----------------
Version 1.0.30
  o Updating p1_utils to version 1.0.25.
Version 1.0.29
  o Updating p1_utils to version 1.0.23.
  o Switch from using Travis to Github Actions as CI
Version 1.0.28
  o Updating p1_utils to version 1.0.22.
  o Instruct Dialyzer to discard some warnings
  o Fix a pair of type specifications detected by Dialyzer
Version 1.0.27
  o Allow to specify custom timeouts in lookup callbacks
2022-10-14 19:11:07 +00:00
triaxx
a2fa5fb173 doc: Updated devel/erlang-ezlib to 1.0.12 2022-10-14 19:06:14 +00:00
triaxx
1ac3b2683f erlang-ezlib: Update to 1.0.12
upstream changes:
-----------------
Version 1.0.12
  o Include new .c file in hex package
Version 1.0.11
  o Updating p1_utils to version 1.0.25.
  o Convert from driver to nif architecture
  o Add ability to configure compression setting
  o Tune default compression setting to use less memory
Version 1.0.10
  o Switch from using Travis to Github Actions as CI
  o Update .gitignore
2022-10-14 19:06:00 +00:00
triaxx
8cb1a4cffe doc: Updated devel/erlang-mqtree to 1.0.15 2022-10-14 16:54:05 +00:00
triaxx
52057f17b5 commit.msg 2022-10-14 16:50:37 +00:00
triaxx
fb30b83739 doc: Updated graphics/erlang-eimp to 1.0.22 2022-10-14 16:46:45 +00:00
triaxx
53c44a7f90 commit.msg 2022-10-14 16:46:21 +00:00
triaxx
0e2011effd doc: Updated misc/erlang-p1_utils to 1.0.25 2022-10-14 16:44:11 +00:00
triaxx
70a1f2204e commit.msg 2022-10-14 16:43:48 +00:00
tnn
b409398f3b alacritty: use wildcard for x11-dl crate's version in SUBST_FILES
This way less likely to break on updates.
Untested but probably still needed on netbsd-9.
2022-10-14 14:23:40 +00:00
wiz
363bb53d14 doc: Updated devel/py-setuptools_scm to 7.0.5nb1 2022-10-14 14:03:10 +00:00
wiz
879160123d py-setuptools_scm: add missing dependencies
Add test status in comment.

Bump PKGREVISION.
2022-10-14 14:03:01 +00:00
adam
1f25135d3b Removed textproc/py-elementtree; Updated www/py-bottle 2022-10-14 12:35:09 +00:00
adam
b4e5077c05 py-bottle: updated to 0.12.23
0.12.23
Bug fixes
2022-10-14 12:34:50 +00:00
adam
d8b98ff8d4 py-elementtree: remove; obsolete, last change 2005-03-16 2022-10-14 12:32:09 +00:00
sborrill
52e86340e5 Updated mail/gyb to 1.71 2022-10-14 12:27:30 +00:00
sborrill
1fd4566e3a gyb: update to 1.71
Disable automatic update check

Changes:
- improved build process should reduce false positive AV detection of GYB
- fix --action restore-group and .eml files as a type of mbox.
2022-10-14 12:26:56 +00:00
sborrill
4d52a0ee11 Updated sysutils/gam to 6.25 2022-10-14 12:02:28 +00:00
sborrill
bcb0aab0bc gam: update to 6.25
Disable automatic update check

Changes:

GAM now uses a list of certificate authorities provided by Google rather
than the old list provided by the httplib2 library. The file roots.pem
is distributed with GAM binaries as a separate file.

The usual fixes and upgrades.
2022-10-14 12:01:17 +00:00
adam
8be63b31f9 Updated archivers/py-rarfile, time/py-goocalendar 2022-10-14 11:56:33 +00:00
adam
9444db5c1b py-goocalendar: updated to 0.7.2
Version 0.7.2 - 2021-03-28
* Add support GooCanvas 3.0
* Add selected text color property
* Remove lighter background on event
2022-10-14 11:56:16 +00:00
adam
22040b0f0b py-rarfile: updated to 4.0
rarfile v4.0

Main goals are:

Increased zipfile-compatibility, thus also achieving smaller difference between RAR3 and RAR5 archives.
Implement RarFile.extract on top of RarFile.open instead using unrar x directly, thus making maintenance of alternative backends more manageable. Negative aspect of that is that there are features that internal extract code does not support - hard links, NTFS streams and junctions.

Breaking changes:

Directory names will have "/" appended.
RarFile.extract operates only on single entry, so when used on directory it will create directory but not extract files under it.
RarFile.extract/RarFile.extractall/RarFile.testrar will not launch special unrar command line, instead they are implemented on top of RarFile.open.
Keyword args in top-level APIs were renamed to match zipfile:
RarFile(rarfile) -> RarFile(file)
RarFile.setpassword(password) -> .setpassword(pwd)
RarFile.getinfo(fname) -> .getinfo(name)
RarFile.open(fname, mode, psw) -> .open(name, mode, pwd)
RarFile.read(fname, psw) -> .read(name, pwd)
PATH_SEP cannot be changed from "/".

New features:

RarFile.extract will return final sanitized filename for target file.
RarInfo.is_dir is now preferred spelling of isdir(). Old method kept as alias.
New RarInfo.is_file and RarInfo.is_symlink methods. Only one of ~RarInfo.is_file, ~RarInfo.is_dir or ~RarInfo.is_symlink can be True.
RarFile.printdir has file argument for output.
RarFile.__iter__ loops over RarInfo entries.
RAR3: throw NeedFirstVolume exception with current volume number, like RAR5 does.
Nanosecond timestamp support. Visible as nsdatetime instance.
Minimal CLI when run as script: python3 -m rarfile
Skip old file versions in versioned archive.

Cleanups:

Use PBKDF2 implementation from hashlib.
Improve test coverage.
2022-10-14 11:48:48 +00:00
micha
d6a19face6 news/canlock-hp: Update homepage
canlock-hp was merged into libcanlock.
2022-10-14 11:39:56 +00:00
micha
436c968b6b news/libcanlock: Switch homepage to https protocol 2022-10-14 11:36:21 +00:00
adam
8b2da781fe Updated sysutils/ansible-core, sysutils/ansible, sysutils/ansible-lint 2022-10-14 11:30:11 +00:00
adam
e2931b5f6e ansible-lint: updated to 6.8.2
v6.8.2

Bugfixes

Fix strict mode
Fix config file outside project_dir bug
Add win_command/win_shell to no-free-form modules
Docs: Add MD for var-naming
Fix role-name correct code example
2022-10-14 11:29:51 +00:00
adam
744b39fe7f ansible: updated to 6.5.0
6.5.0

Major Changes
-------------

infoblox.nios_modules

- Feature for extra layer security , with `cert` and `key` parameters in playbooks for authenticating using certificate and key *.pem file absolute path
- Fix to remove issue causing due to template attr in deleting network using Ansible module nios network
2022-10-14 11:27:41 +00:00
adam
edb7347dd1 ansible-core: updated to 2.13.5
v2.13.5
=======

Bugfixes
--------
- ``ansible-galaxy`` - remove extra server api call during dependency resolution for requirements and dependencies that are already satisfied (https://github.com/ansible/ansible/issues/77443).
- ansible-test - Allow disabled, unsupported, unstable and destructive integration test targets to be selected using their respective prefixes.
- ansible-test - Allow unstable tests to run when targeted changes are made and the ``--allow-unstable-changed`` option is specified (resolves https://github.com/ansible/ansible/issues/74213).
- apt - Fix module failure when a package is not installed and only_upgrade=True. Skip that package and check the remaining requested packages for upgrades. (https://github.com/ansible/ansible/issues/78762)
- apt module should not traceback on invalid type given as package. issue 78663.
- known_hosts - do not return changed status when a non-existing key is removed (https://github.com/ansible/ansible/issues/78598)
- paramiko - Add back support for ``ssh_args``, ``ssh_common_args``, and ``ssh_extra_args`` for parsing the ``ProxyCommand`` (https://github.com/ansible/ansible/issues/78750)
- plugin loader, fix detection for existing configuration before initializing for a plugin
2022-10-14 11:08:50 +00:00
adam
feffa4388a Updated audio/fluidsynth, net/iperf3 2022-10-14 11:00:33 +00:00
adam
86efd03faa iperf3: updated to 3.12
iperf-3.12 2022-09-30
---------------------

* Notable user-visible changes

  * cJSON has been updated to version 1.7.15
  * The --bind <host>%<dev> option syntax now works properly
  * A server-side file descriptor leak with the --logfile option has
    been fixed
  * A bug that caused some large values from TCP_INFO to be misprinted
    as negative numbers has been fixed
  * Using the -k or -n flags with --reverse no longer leak into future
    tests
  * There are now various debug level options available with the
    --debug option. These can be used to adjust the amount of
    debugging output
  * A new --snd-timeout option has been added to set a termination
    timeout for idle TCP connections
  * iperf3 is slightly more robust to out-of-order packets during UDP
    connection setup in --reverse mode
  * iperf3 will now use different ports for each direction when the
    --cport and --bdir options are set
  * The iperf3 server will now exit if it can't open its log file
  * Various help message and output fixes have been made
  * Various compiler warnings have been fixed

* Developer-visible changes

  * Operation of bootstrap.sh has been fixed and simplified
  * Flow label support / compatibility under Linux has been improved
  * Various minor memory leaks have been fixed
  * A getter/setter has been added for the bind_port parameter
    (--cport option).
  * Various internal documentation improvements
2022-10-14 11:00:14 +00:00
adam
edae438585 fluidsynth: updated to 2.3.0
fluidsynth 2.3.0

New Features

Add Pipewire audio driver
Major modernization of the CMake build system, CMake >= 3.13 will now be required
Add multi-channel output for the CoreAudio driver
LADSPA effects are mixed before processing internal effects
MIDI auto-connect functionality has been extended
Add linear interpolation to convex and concave transfer functions
Mixing of effects has been parallelized

Bug Fixes

Issue 1073 has been resolved, which may change the sound articulation a bit
Systemd Hardening has been partly reverted
audio.jack.autoconnect erroneously connectd to MIDI ports
Fix build when compiling against OSS 4.0 API
2022-10-14 10:59:10 +00:00
adam
78da0c66c6 Updated net/py-pyftpdlib, lang/py-pygls 2022-10-14 09:56:11 +00:00
adam
3e6bdf83c9 py-pygls: updated to 0.12.2
0.12.2
- Relaxed the Python version upper bound to `<4`
2022-10-14 09:55:51 +00:00
adam
8287229f27 py-pyftpdlib: updated to 1.5.7
Version: 1.5.7 - 2022-10-04
===========================

**Enhancements**

- replace Travis with Github Actions for CI testing.

**Bug fixes**

- fix [WinError 10038] an operation was attempted on something that is
  not a socket.  (patch by Tailing Yuan)
- [critical]: FTPS broke with PyOpenSSL version 22.1.0.
2022-10-14 09:54:20 +00:00
adam
1483159837 Updated devel/py-nest-asyncio, devel/py-ipykernel 2022-10-14 09:44:49 +00:00
adam
f8914ebffd py-ipykernel: updated to 6.16.0
6.16.0

Maintenance and upkeep improvements

- Use hatch for version
- Add client 8 support
- Remove unused manifest file
2022-10-14 09:44:23 +00:00
adam
94dff86463 py-nest-asyncio: updated to 1.5.6
v1.5.6
Remove old travis file
2022-10-14 09:43:43 +00:00
adam
d3bffab6a5 Updated devel/py-gitpython, security/py-authlib 2022-10-14 09:06:52 +00:00
adam
d348646bf0 py-authlib: updated to 1.1.0
Version 1.1.0

This release contains breaking changes and security fixes.

Allow to pass claims_options to Framework OpenID Connect clients.
Fix .stream with context for HTTPX OAuth clients.
Fix Starlette OAuth client for cache store.

Breaking changes:

Raise InvalidGrantError for invalid code, redirect_uri and no user errors in OAuth 2.0 server.

The default authlib.jose.jwt would only work with JSON Web Signature algorithms, if you would like to use JWT with JWE algorithms, please pass the algorithms parameter:

jwt = JsonWebToken(['A128KW', 'A128GCM', 'DEF'])
Security fixes: CVE-2022-39175 and CVE-2022-39174, both related to JOSE.


Version 1.0.1

Fix authenticate_none method.
Allow to pass in alternative signing algorithm to RFC7523 authentication methods.
Fix missing_token for Flask OAuth client.
Allow openid in any place of the scope.
Security fix for validating essential value on blank value in JWT.


Version 1.0.0

We have dropped support for Python 2 in this release. We have removed built-in SQLAlchemy integration.

OAuth Client Changes:

The whole framework client integrations have been restructured, if you are using the client properly, e.g. oauth.register(...), it would work as before.

OAuth Provider Changes:

In Flask OAuth 2.0 provider, we have removed the deprecated OAUTH2_JWT_XXX configuration, instead, developers should define .get_jwt_config on OpenID extensions and grant types.

SQLAlchemy integrations has been removed from Authlib. Developers should define the database by themselves.

JOSE Changes

JWS has been renamed to JsonWebSignature
JWE has been renamed to JsonWebEncryption
JWK has been renamed to JsonWebKey
JWT has been renamed to JsonWebToken
The "Key" model has been re-designed, checkout the :ref:`jwk_guide` for updates.

Added ES256K algorithm for JWS and JWT.
2022-10-14 09:06:36 +00:00
adam
e7cdf6af5c py-gitpython: updated to 3.1.29
3.1.29
- Make the git.__version__ re-appear.

See the following for all changes.
https://github.com/gitpython-developers/gitpython/milestone/59?closed=1

3.1.28
See the following for all changes.
https://github.com/gitpython-developers/gitpython/milestone/58?closed=1
2022-10-14 09:01:12 +00:00
adam
499def23c0 Updated www/py-sanic-routing, www/py-sanic 2022-10-14 08:40:08 +00:00
adam
d0cb6fc652 py-sanic: updated to 22.9.0
Version 22.9.0

Features

* Add custom loads function
* Make WebsocketImplProtocol async iterable
* Sanic Server WorkerManager refactor
* Use pathlib for path resolution (for static file serving)
* Use path.parts instead of match (for static file serving)
* Better request cancel handling
* Add request properties for HTTP method info:
request.is_safe
request.is_idempotent
request.is_cacheable
See MDN docs for more information about when these apply
* Always show server location in ASGI
* Cache control support for static files for returning 304 when appropriate
* Refactor _static_request_handler
* Add signals before and after handler execution
http.handler.before
http.handler.after
* Add [redacted] to CLI :)
* Add deprecation warning filter
* Middleware priority and performance enhancements

Bugfixes

* Prevent directory traversion with static files
* Do not apply double slash to paths in certain static dirs in Blueprints

Deprecations and Removals

* Warn on duplicate route names, will be prevented outright in v23.3
* Raise warning and deprecation notice on duplicate exceptions, will be prevented outright in v23.3

Developer infrastructure

* Cleanup test suite
* Replace Unsupported Python Version Number from the Contributing Doc
* Do not include tests folder in installed package resolver

Improved Documentation

* Fix a few typos
* Add some type hints
2022-10-14 08:39:48 +00:00
adam
09b0e0a2a5 py-sanic-routing: updated to 22.8.0
Version 22.8.0

Add extra namespace
2022-10-14 08:29:37 +00:00
pin
ff8fbadb38 doc: Updated x11/alacritty to 0.11.0 2022-10-14 07:52:19 +00:00
pin
8830c1afcc x11/alacritty: update to 0.11.0
Alacritty Version 0.11.0
Packaging
 - Minimum Rust version has been bumped to 1.57.0
 - Renamed io.alacritty.Alacritty.appdata.xml to
   org.alacritty.Alacritty.appdata.xml
 - Renamed io.alacritty to org.alacritty for Alacritty.app

Added
 - Track and report surface damage information to Wayland compositors
 - Escape sequence for undercurl, dotted and dashed underlines
   (CSI 4 : [3-5] m)
 - ToggleMaximized key binding action to (un-)maximize the active window,
   not bound by default
 - Support for OpenGL ES 2.0
 - Escape sequence to set underline color
   (CSI 58 : 2 : Ps : Ps : Ps m/CSI 58 : 5 : Ps m)
 - Escape sequence to reset underline color (CSI 59 m)
 - Vi mode keybinding (z) to center view around vi mode cursor
 - Accept hexadecimal values starting with 0x for --embed
 - Config option cursor.blink_timeout to timeout cursor blinking after
   inactivity
 - Escape sequence to set hyperlinks (OSC 8 ; params ; URI ST)
 - Config hints.enabled.hyperlinks for hyperlink escape sequence hint highlight
 - window.decorations_theme_variant to control both Wayland CSD and GTK theme
   variant on X11
 - Support for inline input method

Changed
 - No longer renders to macos and x11 windows that are fully occluded / not
   directly visible
 - The --help output was reworked with a new colorful syntax
 - OSC 52 is now disabled on unfocused windows
 - SpawnNewInstance no longer inherits initial --command
 - Blinking cursor will timeout after 5 seconds by default
 - Deprecated colors.search.bar, use colors.footer_bar instead
 - On macOS, Alacritty now reads AppleFontSmoothing from user defaults to
   control font smoothing
 - Warn when either columns or lines is non-zero, but not both
 - Client side decorations should have proper text rendering now on Wayland
 - Config option window.gtk_theme_variant, you should use
   window.decorations_theme_variant instead
 - --class now sets both class part of WM_CLASS property and instance
 - --class's general and instance options were swapped
 - Search bar is now respecting cursor thickness
 - On X11 the IME popup window is stuck at the bottom of the window due to Xlib
   limitations
 - IME no longer works in Vi mode when moving around

Fixed
 - Creating the IPC socket failing if WAYLAND_DISPLAY contains an absolute path
 - Crash when resetting the terminal while in vi mode
 - font.glyph_offset not live reloading
 - Failure when running on 10-bit color system
 - The colors being slightly different when using srgb displays on macOS
 - Vi cursor blinking not reset when navigating in search
 - Scrolling and middle-clicking modifying the primary selection
 - Bottom gap for certain builtin box drawing characters
 - Incorrect built-in glyphs for U+2567 and U+2568
 - Character mappings in the DEC special graphics character set (line drawing)
 - Window flickering on resize on Wayland
 - Unnecessary config reload when using /dev/null as a config file
 - Windows Open Alacritty Here on root of drive displaying error
 - On macOS, font.use_thin_strokes did not work since Big Sur
 - On macOS, trying to load a disabled font would crash
 - On macOS, Alacritty sessions did not appear in the list of tty sessions
   for w and who
 - Cursor not hiding on GNOME Wayland
 - Font having different scale factor after monitor powering off/on on X11
 - Viewport not updating after opening a new tabbed window on macOS
 - Terminal not exiting sometimes after closing all windows on macOS
 - CPU usage spikes due to mouse movements for unfocused windows on X11/Windows
 - First window on macOS not tabbed with system prefer tabs setting
 - Window being treaten as focused by default on Wayland

Removed
 - font.use_thin_strokes config field; to use thin strokes on macOS, set
 - AppleFontSmoothing to 0 with $ defaults write -g AppleFontSmoothing -int 0
2022-10-14 07:51:59 +00:00
pin
fa16e73fdf doc: Updated sysutils/broot to 1.16.1 2022-10-14 07:51:16 +00:00
pin
d8e2629bfc sysutils/broot: update to 1.16.1
v1.16.1 - 2022-10-13

 - fix ctrl-left not usable anymore in filtered preview to remove filtering
2022-10-14 07:50:50 +00:00
wiz
3193d8c0bb doc: Updated devel/zlib to 1.2.13 2022-10-14 07:44:14 +00:00