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 (20m)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (41d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (153d) 

2024-05-12 13:02:55 UTC Now

2022-10-11 20:47:37 UTC MAIN commitmail json YAML

wm/shod: update to 2.5.0

  Added dockapp states.
  Added rio-like hiding.
  Added alttab feature.
  Added -d and -t options.
  Several bugfixes.

(pin)

2022-10-11 16:35:49 UTC MAIN commitmail json YAML

openfst: fix build by setting GCC_REQD to 8 since it needs <charconv>

(nros)

2022-10-11 15:23:28 UTC MAIN commitmail json YAML

doc/TODO: openssl

+ openssl-1.1.1r, openssl-3.0.6.

(taca)

2022-10-11 14:38:48 UTC MAIN commitmail json YAML

2022-10-11 14:38:10 UTC MAIN commitmail json YAML

sysutils/p5-Unburden-Home-Dir: use RUBY_SUFFIX

* Use RUBY_SUFFIX instead of RUBY_VER.
* Bump revision by default Ruby's version change.

(taca)

2022-10-11 14:36:06 UTC MAIN commitmail json YAML

lang/ruby: switch default release to 3.1

Now, Ruby's default release is 3.1.

(taca)

2022-10-11 13:44:35 UTC MAIN commitmail json YAML

doc: Added mail/p5-Email-Outlook-Message version 0.921

(wiz)

2022-10-11 13:44:25 UTC MAIN commitmail json YAML

mail/Makefile: + 1

(wiz)

2022-10-11 13:43:53 UTC MAIN commitmail json YAML

mail/p5-Email-Outlook-Message: import p5-Email-Outlook-Message-0.921

Packaged for wip by Mike M. Volokhov and myself.

Email::Outlook::Message parses .msg message files as produced
by Microsoft Outlook.

(wiz)

2022-10-11 13:36:10 UTC MAIN commitmail json YAML

py-python-language-server: stop using versioned_dependencies.mk

(package is python 3.x only)

(wiz)

2022-10-11 13:24:27 UTC MAIN commitmail json YAML

Updated sysutils/py-stack-data, net/py-lexicon

(adam)

2022-10-11 13:24:10 UTC MAIN commitmail json YAML

py-lexicon: updated to 3.11.5

Lexicon v3.11.5
Fix upsertRecordSet in yandex provider

(adam)

2022-10-11 13:21:43 UTC MAIN commitmail json YAML

2022-10-11 13:15:50 UTC MAIN commitmail json YAML

Updated devel/py-pluggy, textproc/py-black

(adam)

2022-10-11 13:15:30 UTC MAIN commitmail json YAML

py-black: updated to 22.10.0

22.10.0

Highlights

- Runtime support for Python 3.6 has been removed. Formatting 3.6 code will still be
  supported until further notice.

Stable style

- Fix a crash when `# fmt: on` is used on a different block level than `# fmt: off`

Preview style

- Fix a crash when formatting some dicts with parenthesis-wrapped long string keys

Configuration

- `.ipynb_checkpoints` directories are now excluded by default
- Add `--skip-source-first-line` / `-x` option to ignore the first line of source code
  while formatting

Packaging

- Executables made with PyInstaller will no longer crash when formatting several files
  at once on macOS. Native x86-64 executables for macOS are available once again.
- Hatchling is now used as the build backend. This will not have any effect for users
  who install Black with its wheels from PyPI.
- Faster compiled wheels are now available for CPython 3.11

_Blackd_

- Windows style (CRLF) newlines will be preserved

Integrations

- Vim plugin: add flag (`g:black_preview`) to enable/disable the preview style
- Update GitHub Action to support formatting of Jupyter Notebook files via a `jupyter`
  option
- Update GitHub Action to support use of version specifiers (e.g. `<23`) for Black
  version

(adam)

2022-10-11 13:14:15 UTC MAIN commitmail json YAML

py-pluggy: updated to 1.0.0

pluggy 1.0.0 (2021-08-25)
=========================

Deprecations and Removals
-------------------------

- Remove deprecated ``implprefix`` support.
  Decorate hook implementations using an instance of HookimplMarker instead.
  The deprecation was announced in release ``0.7.0``.

- Remove the deprecated ``proc`` argument to ``call_historic``.
  Use ``result_callback`` instead, which has the same behavior.
  The deprecation was announced in release ``0.7.0``.

- Remove the ``_Result.result`` property. Use ``_Result.get_result()`` instead.
  Note that unlike ``result``, ``get_result()`` raises the exception if the hook raised.
  The deprecation was announced in release ``0.6.0``.

- Remove official support for Python 3.4.

- Dropped support for Python 2.
  Continue to use pluggy 0.13.x for Python 2 support.

- Remove official support for Python 3.5.

- The internal ``pluggy.callers``, ``pluggy.manager`` and ``pluggy.hooks`` are now explicitly marked private by a ``_`` prefix (e.g. ``pluggy._callers``).
  Only API exported by the top-level ``pluggy`` module is considered public.

- Remove legacy ``__multicall__`` recursive hook calling system.
  The deprecation was announced in release ``0.5.0``.

Features
--------

- When registering a hookimpl which is declared as ``hookwrapper=True`` but whose
  function is not a generator function, a ``PluggyValidationError`` exception is
  now raised.

  Previously this problem would cause an error only later, when calling the hook.

  In the unlikely case that you have a hookwrapper that *returns* a generator
  instead of yielding directly, for example:

  .. code-block:: python

      def my_hook_real_implementation(arg):
          print("before")
          yield
          print("after")

      @hookimpl(hookwrapper=True)
      def my_hook(arg):
          return my_hook_implementation(arg)

  change it to use ``yield from`` instead:

  .. code-block:: python

      @hookimpl(hookwrapper=True)
      def my_hook(arg):
          yield from my_hook_implementation(arg)

- Add official support for Python 3.9.

(adam)

2022-10-11 11:53:04 UTC MAIN commitmail json YAML

Added devel/py27-pluggy; Updated devel/py-test4

(adam)

2022-10-11 11:52:44 UTC MAIN commitmail json YAML

py-test4: updated to 4.6.11

pytest 4.6.11 (2020-06-04)
==========================

Bug Fixes
---------

- Fix summary entries appearing twice when ``f/F`` and ``s/S`` report chars were used at the same time in the ``-r`` command-line option (for example ``-rFf``).

  The upper case variants were never documented and the preferred form should be the lower case.

- Fix ``UnboundLocalError: local variable 'letter' referenced before
  assignment`` in ``_pytest.terminal.pytest_report_teststatus()``
  when plugins return report objects in an unconventional state.

  This was making ``pytest_report_teststatus()`` skip
  entering if-block branches that declare the ``letter`` variable.

  The fix was to set the initial value of the ``letter`` before
  the if-block cascade so that it always has a value.

(adam)

2022-10-11 11:51:54 UTC MAIN commitmail json YAML

2022-10-11 10:55:34 UTC MAIN commitmail json YAML

multimedia/t-rec: Add missing include

(pin)

2022-10-11 10:54:25 UTC MAIN commitmail json YAML

doc: Updated graphics/oculante to 0.6.13

(pin)

2022-10-11 10:54:04 UTC MAIN commitmail json YAML

graphics/oculante: update to 0.6.13

0.6.13 (2022-10-10)
- Chore: update arboard and notan (4cb66206)

(pin)

2022-10-11 09:13:54 UTC MAIN commitmail json YAML

doc: Updated sysutils/dmidecode to 3.4.

(msaitoh)

2022-10-11 09:12:18 UTC MAIN commitmail json YAML

Update dmidecode to 3.4.

CHANGES from 3.3:

Version 3.4 (Mon Jun 27 2022)
  - Support for SMBIOS 3.4.0. This includes new memory device types, new
    processor upgrades, new slot types and characteristics, decoding of memory
    module extended speed, new system slot types, new processor characteristics
    and new format of Processor ID.
  - Support for SMBIOS 3.5.0. This includes new processor upgrades, BIOS
    characteristics, new slot characteristics, new on-board device types, new
    pointing device interface types, and a new record type (type 45 -
    Firmware Inventory Information).
  - Decode HPE OEM records 194, 199, 203, 236, 237, 238 ans 240.
  - Bug fixes:
    Fix OEM vendor name matching
    Fix ASCII filtering of strings
    Fix crash with option -u
  - Minor improvements:
    Skip details of uninstalled memory modules
    Don't display the raw CPU ID in quiet mode
    Improve the formatting of the manual pages

(msaitoh)

2022-10-10 21:14:31 UTC MAIN commitmail json YAML

Note update of lang/rust-bin to 1.63.0.

(he)

2022-10-10 21:13:54 UTC MAIN commitmail json YAML

lang/rust-bin: Sync to main rust version, upgrade rust-bin to 1.63.0.

(he)

2022-10-10 20:36:24 UTC MAIN commitmail json YAML

Note update of lang/rust to 1.63.0.

(he)

2022-10-10 20:34:15 UTC MAIN commitmail json YAML

Update rust to version 1.63.0.

Pkgsrc changes:
* Adjust patches as needed & checksum updates.

Upstream changes:

Version 1.63.0 (2022-08-11)
==========================

Language
--------
- [Remove migrate borrowck mode for pre-NLL errors.][95565]
- [Modify MIR building to drop repeat expressions with length zero.][95953]
- [Remove label/lifetime shadowing warnings.][96296]
- [Allow explicit generic arguments in the presence of `impl Trait` args.]
  [96868]
- [Make `cenum_impl_drop_cast` warnings deny-by-default.][97652]
- [Prevent unwinding when `-C panic=abort` is used regardless of
  declared ABI.][96959]
- [lub: don't bail out due to empty binders.][97867]

Compiler
--------
- [Stabilize the `bundle` native library modifier,][95818] also removing the
  deprecated `static-nobundle` linking kind.
- [Add Apple WatchOS compile targets\*.][95243]
- [Add a Windows application manifest to rustc-main.][96737]

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

Libraries
---------
- [Implement `Copy`, `Clone`, `PartialEq` and `Eq` for
  `core::fmt::Alignment`.][94530]
- [Extend `ptr::null` and `null_mut` to all thin (including extern)
  types.][94954]
- [`impl Read and Write for VecDeque<u8>`.][95632]
- [STD support for the Nintendo 3DS.][95897]
- [Make write/print macros eagerly drop temporaries.][96455]
- [Implement internal traits that enable `[OsStr]::join`.][96881]
- [Implement `Hash` for `core::alloc::Layout`.][97034]
- [Add capacity documentation for `OsString`.][97202]
- [Put a bound on collection misbehavior.][97316]
- [Make `std::mem::needs_drop` accept `?Sized`.][97675]
- [`impl Termination for Infallible` and then make the `Result` impls
  of `Termination` more generic.][97803]
- [Document Rust's stance on `/proc/self/mem`.][97837]

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

- [`array::from_fn`]
- [`Box::into_pin`]
- [`BinaryHeap::try_reserve`]
- [`BinaryHeap::try_reserve_exact`]
- [`OsString::try_reserve`]
- [`OsString::try_reserve_exact`]
- [`PathBuf::try_reserve`]
- [`PathBuf::try_reserve_exact`]
- [`Path::try_exists`]
- [`Ref::filter_map`]
- [`RefMut::filter_map`]
- [`NonNull::<[T]>::len`][`NonNull::<slice>::len`]
- [`ToOwned::clone_into`]
- [`Ipv6Addr::to_ipv4_mapped`]
- [`unix::io::AsFd`]
- [`unix::io::BorrowedFd<'fd>`]
- [`unix::io::OwnedFd`]
- [`windows::io::AsHandle`]
- [`windows::io::BorrowedHandle<'handle>`]
- [`windows::io::OwnedHandle`]
- [`windows::io::HandleOrInvalid`]
- [`windows::io::HandleOrNull`]
- [`windows::io::InvalidHandleError`]
- [`windows::io::NullHandleError`]
- [`windows::io::AsSocket`]
- [`windows::io::BorrowedSocket<'handle>`]
- [`windows::io::OwnedSocket`]
- [`thread::scope`]
- [`thread::Scope`]
- [`thread::ScopedJoinHandle`]

These APIs are now usable in const contexts:

- [`array::from_ref`]
- [`slice::from_ref`]
- [`intrinsics::copy`]
- [`intrinsics::copy_nonoverlapping`]
- [`<*const T>::copy_to`]
- [`<*const T>::copy_to_nonoverlapping`]
- [`<*mut T>::copy_to`]
- [`<*mut T>::copy_to_nonoverlapping`]
- [`<*mut T>::copy_from`]
- [`<*mut T>::copy_from_nonoverlapping`]
- [`str::from_utf8`]
- [`Utf8Error::error_len`]
- [`Utf8Error::valid_up_to`]
- [`Condvar::new`]
- [`Mutex::new`]
- [`RwLock::new`]

Cargo
-----
- [Stabilize the `--config path` command-line argument.][cargo/10755]
- [Expose rust-version in the environment as
  `CARGO_PKG_RUST_VERSION`.][cargo/10713]

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

- [`#[link]` attributes are now checked more strictly,][96885]
  which may introduce errors for invalid attribute arguments that
  were previously ignored.

Internal Changes
----------------

These changes provide no direct user facing benefits, but represent
significant improvements to the internals and overall performance
of rustc and related tools.

- [Prepare Rust for LLVM opaque pointers.][94214]

[94214]: https://github.com/rust-lang/rust/pull/94214/
[94530]: https://github.com/rust-lang/rust/pull/94530/
[94954]: https://github.com/rust-lang/rust/pull/94954/
[95243]: https://github.com/rust-lang/rust/pull/95243/
[95565]: https://github.com/rust-lang/rust/pull/95565/
[95632]: https://github.com/rust-lang/rust/pull/95632/
[95818]: https://github.com/rust-lang/rust/pull/95818/
[95897]: https://github.com/rust-lang/rust/pull/95897/
[95953]: https://github.com/rust-lang/rust/pull/95953/
[96296]: https://github.com/rust-lang/rust/pull/96296/
[96455]: https://github.com/rust-lang/rust/pull/96455/
[96737]: https://github.com/rust-lang/rust/pull/96737/
[96868]: https://github.com/rust-lang/rust/pull/96868/
[96881]: https://github.com/rust-lang/rust/pull/96881/
[96885]: https://github.com/rust-lang/rust/pull/96885/
[96959]: https://github.com/rust-lang/rust/pull/96959/
[97034]: https://github.com/rust-lang/rust/pull/97034/
[97202]: https://github.com/rust-lang/rust/pull/97202/
[97316]: https://github.com/rust-lang/rust/pull/97316/
[97652]: https://github.com/rust-lang/rust/pull/97652/
[97675]: https://github.com/rust-lang/rust/pull/97675/
[97803]: https://github.com/rust-lang/rust/pull/97803/
[97837]: https://github.com/rust-lang/rust/pull/97837/
[97867]: https://github.com/rust-lang/rust/pull/97867/
[cargo/10713]: https://github.com/rust-lang/cargo/pull/10713/
[cargo/10755]: https://github.com/rust-lang/cargo/pull/10755/

[`array::from_fn`]: https://doc.rust-lang.org/stable/std/array/fn.from_fn.html
[`Box::into_pin`]: https://doc.rust-lang.org/stable/std/boxed/struct.Box.html#method.into_pin
[`BinaryHeap::try_reserve_exact`]: https://doc.rust-lang.org/stable/alloc/collections/binary_heap/struct.BinaryHeap.html#method.try_reserve_exact
[`BinaryHeap::try_reserve`]: https://doc.rust-lang.org/stable/std/collections/struct.BinaryHeap.html#method.try_reserve
[`OsString::try_reserve`]: https://doc.rust-lang.org/stable/std/ffi/struct.OsString.html#method.try_reserve
[`OsString::try_reserve_exact`]: https://doc.rust-lang.org/stable/std/ffi/struct.OsString.html#method.try_reserve_exact
[`PathBuf::try_reserve`]: https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#method.try_reserve
[`PathBuf::try_reserve_exact`]: https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#method.try_reserve_exact
[`Path::try_exists`]: https://doc.rust-lang.org/stable/std/path/struct.Path.html#method.try_exists
[`Ref::filter_map`]: https://doc.rust-lang.org/stable/std/cell/struct.Ref.html#method.filter_map
[`RefMut::filter_map`]: https://doc.rust-lang.org/stable/std/cell/struct.RefMut.html#method.filter_map
[`NonNull::<slice>::len`]: https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.len
[`ToOwned::clone_into`]: https://doc.rust-lang.org/stable/std/borrow/trait.ToOwned.html#method.clone_into
[`Ipv6Addr::to_ipv4_mapped`]: https://doc.rust-lang.org/stable/std/net/struct.Ipv6Addr.html#method.to_ipv4_mapped
[`unix::io::AsFd`]: https://doc.rust-lang.org/stable/std/os/unix/io/trait.AsFd.html
[`unix::io::BorrowedFd<'fd>`]: https://doc.rust-lang.org/stable/std/os/unix/io/struct.BorrowedFd.html
[`unix::io::OwnedFd`]: https://doc.rust-lang.org/stable/std/os/unix/io/struct.OwnedFd.html
[`windows::io::AsHandle`]: https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsHandle.html
[`windows::io::BorrowedHandle<'handle>`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.BorrowedHandle.html
[`windows::io::OwnedHandle`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.OwnedHandle.html
[`windows::io::HandleOrInvalid`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.HandleOrInvalid.html
[`windows::io::HandleOrNull`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.HandleOrNull.html
[`windows::io::InvalidHandleError`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.InvalidHandleError.html
[`windows::io::NullHandleError`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.NullHandleError.html
[`windows::io::AsSocket`]: https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsSocket.html
[`windows::io::BorrowedSocket<'handle>`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.BorrowedSocket.html
[`windows::io::OwnedSocket`]: https://doc.rust-lang.org/stable/std/os/windows/io/struct.OwnedSocket.html
[`thread::scope`]: https://doc.rust-lang.org/stable/std/thread/fn.scope.html
[`thread::Scope`]: https://doc.rust-lang.org/stable/std/thread/struct.Scope.html
[`thread::ScopedJoinHandle`]: https://doc.rust-lang.org/stable/std/thread/struct.ScopedJoinHandle.html

[`array::from_ref`]: https://doc.rust-lang.org/stable/std/array/fn.from_ref.html
[`slice::from_ref`]: https://doc.rust-lang.org/stable/std/slice/fn.from_ref.html
[`intrinsics::copy`]: https://doc.rust-lang.org/stable/std/intrinsics/fn.copy.html
[`intrinsics::copy_nonoverlapping`]: https://doc.rust-lang.org/stable/std/intrinsics/fn.copy_nonoverlapping.html
[`<*const T>::copy_to`]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.copy_to
[`<*const T>::copy_to_nonoverlapping`]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.copy_to_nonoverlapping
[`<*mut T>::copy_to`]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.copy_to-1
[`<*mut T>::copy_to_nonoverlapping`]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.copy_to_nonoverlapping-1
[`<*mut T>::copy_from`]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.copy_from
[`<*mut T>::copy_from_nonoverlapping`]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.copy_from_nonoverlapping
[`str::from_utf8`]: https://doc.rust-lang.org/stable/std/str/fn.from_utf8.html
[`Utf8Error::error_len`]: https://doc.rust-lang.org/stable/std/str/struct.Utf8Error.html#method.error_len
[`Utf8Error::valid_up_to`]: https://doc.rust-lang.org/stable/std/str/struct.Utf8Error.html#method.valid_up_to
[`Condvar::new`]: https://doc.rust-lang.org/stable/std/sync/struct.Condvar.html#method.new
[`Mutex::new`]: https://doc.rust-lang.org/stable/std/sync/struct.Mutex.html#method.new
[`RwLock::new`]: https://doc.rust-lang.org/stable/std/sync/struct.RwLock.html#method.new

(he)

2022-10-10 19:04:52 UTC MAIN commitmail json YAML

lang/rust-analyzer: do the previous ... properly.

Linux x32 has a quirk in the libc crate, so that gets duplicated here.
Also, fix the path to the file to be patched.  Ride previous revision bump.

(he)

2022-10-10 18:28:48 UTC MAIN commitmail json YAML

doc: Updated textproc/split-thai to 2.20

(scole)

2022-10-10 18:21:09 UTC MAIN commitmail json YAML

Update to 2.20
all changes for pthai.el
- redo practice routine without having to reset dictionary
- add pthai-practice-extract-words and pthai-practice-buffer/file/region

(scole)

2022-10-10 17:14:30 UTC MAIN commitmail json YAML

Updated multimedia/ffmpeg4, multimedia/ffplay4

(adam)

2022-10-10 17:14:02 UTC MAIN commitmail json YAML

ffmpeg4 ffplay4: updated to 4.4.3

version 4.4.3:
- avformat/vividas: Check packet size
- configure: link to libatomic when it's present
- avcodec/dstdec: Check for overflow in build_filter()
- avformat/spdifdec: Use 64bit to compute bit rate
- avformat/rpl: Use 64bit for duration computation
- avformat/xwma: Use av_rescale() for duration computation
- avformat/sdsdec: Use av_rescale() to avoid intermediate overflow in duration calculation
- avformat/sbgdec: Check ts_int in genrate_intervals
- avformat/rmdec: check tag_size
- avformat/nutdec: Check fields
- avformat/flvdec: Use 64bit for sum_flv_tag_size
- avformat/jacosubdec: Fix overflow in get_shift()
- avformat/dxa: avoid bpc overflows
- avformat/cafdec: Check that nb_frasmes fits within 64bit
- avformat/asfdec_o: Limit packet offset
- avformat/ape: Check frames size
- avformat/icodec: Check nb_pal
- avformat/aiffdec: Use 64bit for block_duration use
- avformat/aiffdec: Check block_duration
- avformat/mxfdec: only probe max run in
- avformat/mxfdec: Check run_in is within 65536
- avcodec/mjpegdec: Check for unsupported bayer case
- avcodec/apedec: Fix integer overflow in filter_3800()
- avcodec/tta: Check 24bit scaling for overflow
- avcodec/mobiclip: Check quantizer for overflow
- avcodec/exr: Check preview psize
- avcodec/tiff: Fix loop detection
- libavformat/hls: Free keys
- avcodec/fmvc: Move frame allocation to a later stage
- avfilter/vf_showinfo: remove backspaces
- avcodec/speedhq: Check width
- avcodec/bink: disallow odd positioned scaled blocks
- avformat/asfdec_o: limit recursion depth in asf_read_unknown()
- doc/git-howto.texi: Document commit signing
- libavcodec/8bps: Check that line lengths fit within the buffer
- avcodec/midivid: Perform lzss_uncompress() before ff_reget_buffer()
- libavformat/iff: Check for overflow in body_end calculation
- avformat/avidec: Prevent entity expansion attacks
- avcodec/h263dec: Sanity check against minimal I/P frame size
- avcodec/hevcdec: Check s->ref in the md5 path similar to hwaccel
- avcodec/mpegaudiodec_template: use unsigned shift in handle_crc()
- avformat/subviewerdec: Make read_ts() more flexible
- avcodec/mjpegdec: bayer and rct are incompatible
- MAINTAINERS: Add ED25519 key for signing my commits in the future
- avcodec/hevc_filter: copy_CTB() only within width&height
- avcodec/tiff: Check tile_length and tile_width
- avcodec/mss4: Check image size with av_image_check_size2()
- avformat/flvdec: Check for EOF in index reading
- avformat/nutdec: Check get_packetheader() in mainheader
- avformat/asfdec_f: Use 64bit for packet start time
- avcodec/exr: Check x/ysize
- tools/target_dec_fuzzer: Adjust threshold for MMVIDEO
- avcodec/lagarith: Check dst/src in zero run code
- avcodec/h264dec: Skip late SEI
- avcodec/sbrdsp_fixed: Fix integer overflows in sbr_qmf_deint_neg_c()
- avfilter/vf_signature: Fix integer overflow in filter_frame()
- avformat/rtsp: break on unknown protocols
- avcodec/hevcdsp_template: stay within tables in sao_band_filter()
- avcodec/tiff: Check pixel format types for dng
- avcodec/qpeldsp: copy less for the mc0x cases
- avformat/aaxdec: Check for empty segments
- avcodec/ffv1dec: Limit golomb rice coded slices to width 8M
- avformat/iff: simplify duration calculation
- avcodec/wnv1: Check for width =1
- avcodec/ffv1dec_template: fix indention
- avformat/sctp: close socket on errors
- avcodec/aasc: Fix indention
- avcodec/qdrw: adjust max colors to array size
- avcodec/alacdsp: Make intermediates unsigned
- avformat/aiffdec: cleanup size handling for extreem cases
- avformat/matroskadec: avoid integer overflows in SAR computation
- avcodec/jpeglsdec: fix end check for xfrm
- avcodec/cdgraphics: limit scrolling to the line
- avformat/hls: Limit start_seq_no to one bit less
- avformat/aiffdec: avoid integer overflow in get_meta()
- avformat/ape: more bits in size for less overflows
- avformat/aviobuf: Check buf_size in ffio_ensure_seekback()
- avformat/bfi: Check offsets better
- avformat/asfdec_f: Check packet_frag_timestamp
- avcodec/texturedspenc: Fix indexing in color distribution determination
- avformat/act: Check ff_get_wav_header() for failure
- avcodec/libxavs2: Improve r redundancy in occured
- avformat/libzmq: Improve r redundancy in occured
- avfilter/vsrc_mandelbrot: Check for malloc failure
- avfilter/vf_frei0r: Copy to frame allocated according to frei0r requirements
- avfilter/video: Add ff_default_get_video_buffer2() to set specific alignment
- avformat/genh: Check sample rate
- configure: bump year
- lavc/videotoolbox: do not pass AVCodecContext to decoder output callback
- lavc/pthread_frame: always transfer stashed hwaccel state
- avcodec/arm/sbcenc: avoid callee preserved vfp registers
- avfilter/vf_scale: overwrite the width and height expressions with the original values
- lavc/pthread_frame: avoid leaving stale hwaccel state in worker threads
- configure: extend SDL check to accept all 2.x versions
- lavf/tls_mbedtls: add support for mbedtls version 3

(adam)

2022-10-10 12:48:09 UTC MAIN commitmail json YAML

Updated devel/spdlog, multimedia/gerbera

(adam)

2022-10-10 12:47:51 UTC MAIN commitmail json YAML

2022-10-10 12:46:32 UTC MAIN commitmail json YAML

spdlog: use external fmtlib to avoid conflict between fmtlib v8 and v9; remove dylb madness; bump revision

(adam)

2022-10-10 12:13:08 UTC MAIN commitmail json YAML

doc: Updated textproc/p5-Text-Autoformat to 1.75nb4

(wiz)

2022-10-10 12:12:59 UTC MAIN commitmail json YAML

p5-Text-Autoformat: make p5-Text-Reform a full dependency, because it is

Bump PKGREVISION.

(wiz)

2022-10-10 12:06:20 UTC MAIN commitmail json YAML

databases/postgresql12: Avoid autoconf MKDIR bug

Force autoconf to find mkdir as... mkdir.

Work around a bug in autoconf, that thinks almost all mkdir
implementations are deficient, and a bug someplace between postgis
and pgxs, that causes topology/Makefile.in to run pgxs's install-sh
but without a path.

As discussed on tech-pkg@.

(gdt)

2022-10-10 11:27:28 UTC MAIN commitmail json YAML

py-music21: add missing build dependency on py-hatchling

(wiz)

2022-10-10 11:04:21 UTC MAIN commitmail json YAML

doc: Updated devel/py-mercurial to 6.2.3

(wiz)

2022-10-10 11:04:11 UTC MAIN commitmail json YAML

py-mercurial: update to 6.2.3.

Mercurial 6.2.3

    tests: improve portability, debugging and flakiness
    packaging: update dulwich to drop the certifi dependency on Windows
    rhg: fix bugs around [use-dirstate-tracked-hint] and repo auto-upgrade

(wiz)

2022-10-10 10:19:24 UTC MAIN commitmail json YAML

Updated devel/py-macholib, devel/py-tenacity

(adam)

2022-10-10 10:18:56 UTC MAIN commitmail json YAML

2022-10-10 10:09:46 UTC MAIN commitmail json YAML

py-macholib: updated to 1.16.2

macholib 1.16.2
---------------
* Update classifiers for Python 3.11

macholib 1.16.1
---------------
* Added some new CPU subtype definitions

(adam)

2022-10-10 08:47:27 UTC MAIN commitmail json YAML

Updated math/py-scipy, fonts/py-fonttools

(adam)

2022-10-10 08:47:10 UTC MAIN commitmail json YAML

py-fonttools: updated to 4.37.4

4.37.4 (released 2022-09-30)
----------------------------
- [subset] Keep nameIDs used by CPAL palette entry labels
- [varLib] Avoid negative hmtx values when creating font from variable CFF2 font
- [instancer] Don't prune stat.ElidedFallbackNameID
- [unicodedata] Update Scripts/Blocks to Unicode 15.0

4.37.3 (released 2022-09-20)
----------------------------
- Fix arguments in calls to (glyf) glyph.draw() and drawPoints(), whereby offset wasn't
  correctly passed down; this fix also exposed a second bug, where lsb and tsb were not
  set

(adam)

2022-10-10 08:46:13 UTC MAIN commitmail json YAML

py-scipy: updated to 1.9.2

Issues closed for 1.9.2

BUG: 1.9.0rc1: \`OptimizeResult\` not populated when \`optimize.milp\`...
BUG: \`sparse.hstack\` returns incorrect result when the stack...
BUG: optimize.minimize backwards compatability in scipy 1.9
BUG: using msvc + meson to build scipy --> cl cannot be used...
BUG: error from \`scipy.stats.mode\` with \`NaN\`s, \`axis !=...
BUG: scipy 1.7.3 wheels on PyPI require numpy<1.23 in contradiction...
BUG: ncf_gen::ppf(..) causes segfault
Pearson3 PPF does not function properly with negative skew.
BUG: OSX-64 Test failure test_ppf_against_tables getting NaN

Pull requests for 1.9.2

FIX: Updated dtype resolution in \`_stack_along_minor_axis\`
FIX: milp: return feasible solutions if available on time out
ENH: cibuildwheel infrastructure
MAINT: minimize, restore squeezed ((1.0)) addresses 16898
REL: prep for SciPy 1.9.2
DOC: update version switcher for 1.9.1 and pin theme to 0.9
MAINT: cast \`linear_sum_assignment\` to PyCFunction
BLD: use compiler flags in a more portable way
MAINT: stats.mode: fix bug with \`axis!=1\`, \`nan_policy='omit'\`,...
MAINT: fix NumPy upper bound
BLD: fix usage of \`get_install_data\`, which defaults to purelib
DOC: Update numpy supported versions for 1.9.2
BLD: fixes for building with MSVC and Intel Fortran
Rudimentary test for manylinux_aarch64 with cibuildwheel
BLD: make MKL detection a little more robust, add notes on TODOs
CI: Update cibuildwheel to 2.10.1
MAINT: stats.pearson3: fix ppf for negative skew
BUG: Fix numerical precision error of \`truncnorm.logcdf\` when...
FIX: ensure a hold on GIL before raising warnings/errors
TST: stats.studentized_range: fix incorrect test
MAINT: pyproject.toml: Update build system requirements
MAINT: 1.9.2 backports

(adam)

2022-10-10 08:09:06 UTC MAIN commitmail json YAML

Note update of lang/rust-analyzer to 0.0.2022.08.22nb1.

(he)

2022-10-10 08:08:28 UTC MAIN commitmail json YAML

lang/rust-analyzer: use timespec component types from the libc crate.

Should help with general portability to 32-bit ports, since we
import the timespec component types (time_t and c_long) from the
libc crate instead of hardcoding the integer lengths.

Bump PKGREVISION.

(he)

2022-10-10 08:06:51 UTC MAIN commitmail json YAML

Updated devel/py-ZopeInterface, databases/py-apsw

(adam)

2022-10-10 08:06:33 UTC MAIN commitmail json YAML

py-apsw: updated to 3.39.4.0

3.39.4.0

Added Connection.cache_stats() to provide more information about the statement cache.

Cursor.execute() now uses sqlite_prepare_v3 which allows supplying flags.

Cursor.execute() has a new can_cache parameter to control whether the query can use the statement cache. One example use is with authorizers because they only run during prepare, which doesn窶冲 happen with already cached statements.

(The Cursor.execute() additional parameters are keyword only and also present in Cursor.executemany(), and the corresponding Connection.execute() and Connection.executemany() methods.)

Added Cursor.is_readonly, Cursor.is_explain, and Cursor.expanded_sql.

Updated processing named bindings so that types registered with collections.abc.Mapping (such as collections.UserDict) will also be treated as dictionaries. (APSW issue 373)

(adam)

2022-10-10 07:57:40 UTC MAIN commitmail json YAML

py-ZopeInterface: updated to 5.5.0

5.5.0 (2022-10-10)
==================
- Add support for Python 3.10 and 3.11 (as of 3.11.0rc2).
- Add missing Trove classifier showing support for Python 3.9.
- Add some more entries to ``zope.interface.interfaces.__all__``.
- Disable unsafe math optimizations in C code.

(adam)

2022-10-10 07:40:59 UTC MAIN commitmail json YAML

Updated devel/libebml, multimedia/libmatroska, multimedia/mkvtoolnix

(adam)

2022-10-10 07:40:17 UTC MAIN commitmail json YAML

mkvtoolnix: updated to 71.1.0

Version 71.1.0 "Fortitude" 2022-10-09

Bug fixes

* Chapters DTD: added the new edition & chapter elements from Matroska v5.
* Chapters DTD: fixed EditionUID being mandatory. mkvmerge can auto-generate
  it if it's missing from the XML file.
* Chapters DTD: fixed the `example-chapters-1.xml` not validating against the
  DTD.
* Chapters DTD: corrected the old name `EditionManaged` to
  `EditionFlagOrdered`.
* Chapters DTD: fixed `ChapLanguageIETF` missing its element declaration &
  `ChapterLanguage` being required.
* XML DTDs: fixed elements representing binary data not allowing the `format`
  attribute.

Build system changes

* bug fix: configure accidentally tested for libEBML ≥ 2.0.0 & libMatroska ≥
  2.0.0, even though the actual requirements are 1.4.4 & 1.7.1 respectively.

Version 71.0.0 "Altitude" 2022-10-08

New features and enhancements

* mkvmerge, MKVToolNix GUI's multiplexer: added support for the Emphasis audio
  track header element via the `--audio-emphasis` option. It is also read from
  Matroska files.
* mkvmerge: the options `--list-stereo-modes` and `--list-audio-emphasis` have
  been added to list all support numerical & textual values for the
  `--stereo-mode` & `--audio-emphasis` options.
* mkvpropedit, MKVToolNix GUI's header editor: added support for the Emphasis
  audio track header element via the `emphasis` property.
* MKVToolNix GUI: multiplexer: when the track properties are
  configured to be displayed in a tab widget below the files & tracks
  in the "Input" tab, the "Color information" tab will be laid out in
  two columns. This reduces the minimum height the whole tab widget
  requires.
* MKVToolNix GUI: greatly sped up closing the preferences dialog by only
  re-running certain initialization functions when their corresponding
  settings have changed.
* mkvinfo, MKVToolNix GUI's info tool: added support for the following new
  elements from Matroska v5: Emphasis audio track header element; Chapter Skip
  Type; Edition Display; Edition String; Edition Language IETF.
* mkvmerge, mkvpropedit: added support for the following new chapter elements
  from Matroska v5: Chapter Skip Type; Edition Display; Edition String;
  Edition Language IETF. The GUI's chapter editor will receive support for
  them in the next release.

Bug fixes

* mkvmerge: Ogg/OGM reader: mkvmerge will now correctly skip tracks of
  unsupported types as well as tracks for which all track header pages
  haven't been found.

Build system changes

* libEBML 1.4.4 & libMatroska 1.7.1 are now required.
* The bundled libEBML & libMatroska libraries were updated to v1.4.4 & v1.7.1
  respectively.
* The bundled `fmt` library was updated to v9.1.0.
* The bundled `nlohmann-json` library was updated to v3.11.2.

(adam)

2022-10-10 07:39:30 UTC MAIN commitmail json YAML

libmatroska: updated to 1.7.1

Version 1.7.1 2022-10-08

* Fix ABI compatibility: unfortunately release 1.7.0 broke ABI
  compatibility. This release restores the compatibility with release
  1.6.3. Please use it instead of release 1.7.0. In other words: 1.6.3
  & 1.7.1 are compatible, while 1.7.0 is compatible with neither 1.6.3
  nor 1.7.1.

(adam)

2022-10-10 07:37:54 UTC MAIN commitmail json YAML

libebml: updated to 1.4.4

Version 1.4.4 2022-10-08

* Fix ABI compatibility: unfortunately release 1.4.3 broke ABI
  compatibility. This release restores the compatibility with release
  1.4.2. Please use it instead of release 1.4.3. In other words: 1.4.2
  & 1.4.4 are compatible, while 1.4.3 is compatible with neither 1.4.2
  nor 1.4.4.

(adam)

2022-10-10 07:18:57 UTC MAIN commitmail json YAML

doc: Updated wm/leftwm to 0.4.0nb1

(pin)

2022-10-10 07:18:36 UTC MAIN commitmail json YAML

wm/leftwm: Fix broken build

See, http://www.ki.nu/pkgsrc/reports/current/NetBSD-9.0/20221007.2334/leftwm-0.4.0/build.log
Caused by regenerated 'Cargo.lock'.
Fetch the correct versions of dependencies.

While here, add a conflict with 'lefthk'.
The daemon is built-in the WM and the standalone package is only
intended to be used with other WMs.

(pin)

2022-10-10 03:44:54 UTC MAIN commitmail json YAML

2022-10-10 03:42:14 UTC MAIN commitmail json YAML

2022-10-10 03:36:51 UTC MAIN commitmail json YAML

2022-10-10 03:31:44 UTC MAIN commitmail json YAML

2022-10-10 03:29:44 UTC MAIN commitmail json YAML

doc: Removed lang/ruby26-base

(taca)

2022-10-10 03:29:30 UTC MAIN commitmail json YAML

2022-10-10 03:28:55 UTC MAIN commitmail json YAML

lang/Makefile: remove ruby26-base

(taca)

2022-10-10 03:24:52 UTC MAIN commitmail json YAML

2022-10-10 03:23:55 UTC MAIN commitmail json YAML

lang/ruby26: remove package

Ruby 2.6 reached to EOL on 22th April 2022.

(taca)

2022-10-10 03:22:27 UTC MAIN commitmail json YAML

doc: Removed lang/ruby26

(taca)

2022-10-10 03:22:12 UTC MAIN commitmail json YAML

lang/Makefile: remove ruby26

Start removing of Ruby 2.6.

(taca)

2022-10-09 19:21:07 UTC MAIN commitmail json YAML

doc: Updated graphics/simp to 3.2.0

(pin)

2022-10-09 19:20:28 UTC MAIN commitmail json YAML

graphics/simp: update to 3.2.0

- Fixed scaling bug on certain images.
- Add NetBSD package.
- Make trash-rs dep optional
- Added enter/escape keybinds to for Ok/Cancel.

(pin)

2022-10-09 18:51:02 UTC MAIN commitmail json YAML

doc: Updated emulators/open-simh to 4.0.0.20221008

(rhialto)

2022-10-09 18:50:44 UTC MAIN commitmail json YAML

emulators/open-simh: update to 2022-10-08

- Switch to editline for line editing; must be pkgsrc version because simh
  uses <editline/readline.h>. Also link it explicitly, so it doesn't
  randomly use readline any more if it happened to be available at runtime.
- Add 3b2-700.

(rhialto)

2022-10-09 16:13:24 UTC MAIN commitmail json YAML

doc: Added editors/bred version 0.2.2

(pin)

2022-10-09 16:12:55 UTC MAIN commitmail json YAML

2022-10-09 16:12:17 UTC MAIN commitmail json YAML

editors/bred: import package

A simple binary file reader that dumps the output to stdout.

To use, simply input a file (stdin support coming soon), and add any desired
options.
--length option changes how many characters to print (not including any
  formatting like offsets and borders).
--chunk option changes how large the buffer array should be; the bigger it is,
  the faster but uses more memory.
--hex option simply prints the file in hexadecimal.
--color option uses colors to differentiate between letters (\0 are gray,
  others indicate how large the character code is, and orange is non-ascii
  characters). Note, make sure you use a terminal emulator that supports ANSI
  256-color mode.
--space option replaces all the spaces (0x20) with a green-colored _.
  This also affects the hex output.

(pin)

2022-10-09 16:09:59 UTC MAIN commitmail json YAML

doc: Added sysutils/repofetch version 0.3.3

(pin)

2022-10-09 16:09:30 UTC MAIN commitmail json YAML

2022-10-09 16:08:18 UTC MAIN commitmail json YAML

2022-10-09 16:05:51 UTC MAIN commitmail json YAML

doc: Updated www/hackernews-tui to 0.11.0

(pin)

2022-10-09 16:05:31 UTC MAIN commitmail json YAML

www/hackernews-tui: update to 0.11.0

What's Changed
- Expand story view capabilities in #80

Breaking changes
- Renamed toggle_sort_by_date command to cycle_sort_mode in
  keymap.story_view_keymap

(pin)

2022-10-09 16:04:33 UTC MAIN commitmail json YAML

doc: Updated editors/featherpad to 1.3.3

(pin)

2022-10-09 16:04:10 UTC MAIN commitmail json YAML

editors/featherpad: update to 1.3.3

V1.3.3
---------
- Fixed crash on pasting with empty clipboard.
- Covered tab-indented here-docs in Bash syntax highlighting.
- Covered indented here-docs in Perl syntax highlighting.
- Silenced the compilation warnings with Qt ≥ 6.4.

(pin)

2022-10-09 16:03:06 UTC MAIN commitmail json YAML

doc: Updated textproc/csview to 1.2.2

(pin)

2022-10-09 16:02:46 UTC MAIN commitmail json YAML

textproc/csview: update to 1.2.2

- chore: refactor project layout
- fix: fix tests
- refactor: simplify seq logic
- refactor: simplify sniff logic
- chore: upgrade clap to v4
- refactor: adjust error code

(pin)

2022-10-09 16:01:47 UTC MAIN commitmail json YAML

doc: Updated sysutils/broot to 1.16.0

(pin)

2022-10-09 16:01:26 UTC MAIN commitmail json YAML

sysutils/broot: update to 1.16.0

v1.16.0 - 2022-10-07
- status messages now displayed on toggling (for example showing hidden files)
-  upgrade terminal-light to 1.0.1 for better recognition of background color
    on high precision color terminals
-  in default configuration, ctrl-left never opens a panel to the left, as I
    think this was most often unwanted (one too many hit on cltr-left).
    It's possible to get the old behavior by binding ctrl-left to :panel_left
    instead of the new :panel_left_no_open internal.
-  New escaping rules let you skip many \, especially when building regexes -
    See new rules at https://dystroy.org/broot/input/#escaping - Fix #592

(pin)

2022-10-09 15:37:13 UTC MAIN commitmail json YAML

doc: Removed devel/ruby-redmine41

(taca)

2022-10-09 15:36:48 UTC MAIN commitmail json YAML

devel/ruby-redmine: drop redmine41 support

(taca)

2022-10-09 15:35:34 UTC MAIN commitmail json YAML

2022-10-09 15:35:08 UTC MAIN commitmail json YAML

devel/Makefile: remove ruby-redmine41

(taca)

2022-10-09 15:33:25 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-redmine50 to 5.0.3

(taca)

2022-10-09 15:32:55 UTC MAIN commitmail json YAML

devel/ruby-redmine50: update to 5.0.3

5.0.3 (2022-10-02)

[Code cleanup/refactoring]

* Defect #37609: Remove obsolete remnant public/images/openid-bg.gif
* Defect #37449: Passing a wrong parameter to `with_settings` in
  UserTest::test_random_password_include_required_characters

[Filters]

* Defect #36940: Chained custom field filter doesn't work for User fields
* Defect #37349: Chained custom field filter for User fields returns 500
  internal server error when filtering after a float value

[Issues]

* Defect #37369: Mention auto-complete not works in bulk-edit comments
* Defect #37499: Default query should not be applied if the query is not
  allowed to be set as the default
* Defect #37473: Focus IssueId not working when linking issues

[Issues list]

* Defect #37268: Performance problem with Redmine 4.2.7 and 5.0.2

[Rails support]

* Patch #37452: Update Rails to 6.1.7

[Security]

* Defect #37492: Update jQuery UI to 1.13.2

[SCM]

* Defect #33953: Repository tab is not displayed if no repository is set as
  the main repository
* Defect #36258: Support revision without any message in Mercurial
  repositories
* Defect #37585: Do not show "History" tab for content in Filesystem
  repository
* Defect #37626: Diff of a javascript file in repository module is not
  displayed with layout
* Defect #37718: Repository browser does not show "+" (plus sign) in
  filename

[SCM extra]

* Defect #37562: POST Requests to repository WS fail with "Can't verify CSRF
  token authenticity"

[Text formatting]

* Defect #37237: Common Markdown Formatter does not render all properties on
  HTML elements
* Patch #37713: Add rel="noopener" to all external links that would open a
  new tab/window
* Defect #37379: Thumbnail macro does not work when a file is attached and
  preview is displayed immediately

[Translations]

* Defect #37529: Fix mistranslation of label button_create_and_follow in
  Russian translation
* Defect #37603: Missing translation for label_default_queries.for_this_user
* Patch #35613: German translation update of Wiki syntax help for 5.0-stable
* Patch #37263: Lithuanian translation update for 5.0-stable
* Patch #37698: Persian translation update for 4.2-stable

[UI]

* Defect #36901: Jump to project is misaligned in Safari 15.4 and later
* Defect #37282: Subtask isn't displayed correctly since 4.2.7
* Defect #37481: Fix the unintentional selection of rows with the context
  menu
* Defect #37566: The number of the ordered list in the project description
  is not displayed and the indentation does not match the unordered list

(taca)

2022-10-09 15:32:18 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-redmine42 to 4.2.8

(taca)

2022-10-09 15:31:47 UTC MAIN commitmail json YAML

devel/ruby-redmine42: update to 4.2.8

4.2.8 (2022-10-02)

[Code cleanup/refactoring]å…¶

* Defect #37449: Passing a wrong parameter to `with_settings` in
  UserTest::test_random_password_include_required_characters

[Filters]

* Defect #36940: Chained custom field filter doesn't work for User fields

* Defect #37349: Chained custom field filter for User fields returns 500
  internal server error when filtering after a float value

[Issues]

* Defect #37473: Focus IssueId not working when linking issues

[Issues list]

* Defect #37268: Performance problem with Redmine 4.2.7 and 5.0.2

[Rails support]

* Patch #37465: Update Rails to 5.2.8.1

[Security]

* Defect #37492: Update jQuery UI to 1.13.2

[SCM]

* Defect #37718: Repository browser does not show "+" (plus sign) in
  filename

[Text formatting]

* Defect #37379: Thumbnail macro does not work when a file is attached and
  preview is displayed immediately

[Translations]

* Patch #37698: Persian translation update for 4.2-stable

[UI]

* Defect #36901: Jump to project is misaligned in Safari 15.4 and later
* Defect #37282: Subtask isn't displayed correctly since 4.2.7
* Defect #37481: Fix the unintentional selection of rows with the context
  menu
* Defect #37566: The number of the ordered list in the project description
  is not displayed and the indentation does not match the unordered list

(taca)

2022-10-09 13:28:48 UTC MAIN commitmail json YAML

doc: Updated ham/hackrf to 2022.09.1

(mef)

2022-10-09 13:28:26 UTC MAIN commitmail json YAML

(ham/hackrf) Updated 2021.03.1 to 2022.09.1

HackRF 2022.09.1 Release Notes

To upgrade to this release, you must update libhackrf and hackrf-tools on your
host computer.  You must also update firmware on your HackRF.

Major changes in this release include:

- Opera Cake, an antenna switching add-on board for HackRF One is fully
  supported. Thank you, Mike Walters!

- A new user interface for rad1o provides status information during operation
  in HackRF mode. Thanks, schneider!

- Documentation has been migrated from a wiki to source code in the docs
  directory that can be built as HTML or PDF. Thanks, Straithe! The PDF is
  included in release archives, and HTML documentation built from current git
  source is available at: https://hackrf.readthedocs.io/

- Numerous performance, stability, and instrumentation improvements have been
  made to hackrf_transfer, hackrf_sweep, libhackrf, and firmware. Thank you
  especially, Martin Ling!

- The project repository has moved to:
  https://github.com/greatscottgadgets/hackrf

There have been many enhancements and bug fixes.  For a full list of changes,
see the git log.

(mef)

2022-10-09 13:06:08 UTC MAIN commitmail json YAML

doc: Updated wm/dwm to 6.4

(leot)

2022-10-09 13:06:03 UTC MAIN commitmail json YAML

dwm: Update to 6.4

pkgsrc changes:
- Switch to https:// MASTER_SITES and HOMEPAGE
- Remove no longer needed patch (FC_COLOR is no longer referenced)

6.4
---
- Improvements and bug fixes

(leot)

2022-10-09 12:56:45 UTC MAIN commitmail json YAML

doc: Updated x11/dmenu to 5.2

(leot)

2022-10-09 12:56:39 UTC MAIN commitmail json YAML

dmenu: Update to 5.2

pkgsrc changes:
- Switch to https:// MASTER_SITES and HOMEPAGE
- Remove no longer needed patch (FC_COLOR is no longer referenced)

5.2
---
- Improvements and bug fixes

(leot)

2022-10-09 12:52:27 UTC MAIN commitmail json YAML

doc: Updated x11/slock to 1.5

(leot)

2022-10-09 12:52:21 UTC MAIN commitmail json YAML

slock: Update to 1.5

pkgsrc changes:
- Switch to https:// MASTER_SITES and HOMEPAGE

1.5
---
- Bug fixes

(leot)

2022-10-09 12:45:08 UTC MAIN commitmail json YAML

x11/wxGTK32: revert to building with configure by default

since the cmake build is broken for some purposes, which you only notice
when building against it.

https://github.com/wxWidgets/wxWidgets/issues/22841
https://github.com/wxWidgets/wxWidgets/issues/22858

(rhialto)

2022-10-09 12:41:02 UTC MAIN commitmail json YAML

doc: Updated x11/st-term to 0.9

(leot)

2022-10-09 12:40:57 UTC MAIN commitmail json YAML

st-term: Update to 0.9

0.9
---
- Bug fixes and improvements

(leot)

2022-10-09 12:32:09 UTC MAIN commitmail json YAML

doc: Updated x11/tabbed to 0.7

(leot)

2022-10-09 12:32:03 UTC MAIN commitmail json YAML

tabbed: Update to 0.7

0.7
---
- Add Xft support
- Permit to autofocus urgent tabs via Ctrl-Shift-u
- Permit to focus urgent tabs via Ctrl-u
- Add xembed wrapper utility.
  xembed will cause a command to attempt to XEmbed into the window given
  by the environment variable XEMBED, so long as it is in the foreground
  of its controlling terminal. This causes a process to effectively take
  the place of the terminal window, unless it is backgrounded.
- Support urgency WM hints
- Several bug fixes and improvements

(leot)

2022-10-09 12:06:05 UTC MAIN commitmail json YAML

devel/cmake: add patch to Modules/FindOpenGL

In order to use libEGL, it looks for libOpenGL, but NetBSD and pkgsrc's
MesaLib don't have that, they have libGL instead. This causes issues in
x11/wxGTK32. See
https://github.com/wxWidgets/wxWidgets/issues/22841
https://gitlab.kitware.com/cmake/cmake/-/issues/24019

(rhialto)

2022-10-09 09:17:24 UTC MAIN commitmail json YAML

doc: Updated www/ruby-html-proofer to 4.4.3

(taca)

2022-10-09 09:17:02 UTC MAIN commitmail json YAML

www/ruby-html-proofer: udpate to 4.4.3

4.4.1 (2022-09-25)

Closed issues:

* Custom Checker class is not executed #764
* --cache unvailable in CLI #763
* --parallel unavailable in CLI #762
* HTMLproofer does not properly ignore links #756
* Mailto check failed in some cases #754

Merged pull requests:

* Optimize checking internal link hashes in target files #770
  (riccardoporreca)
* Fix --swap-attributes CLI argument in README #765 (mark-monteiro)
* Fix and improve swap_attribute README example #755 (riccardoporreca)

4.4.2 (2022-10-07)

Closed issues:

* erstiebegrüßung.html causing problems on macOS #771
* HTMLProofer times out #768

Merged pull requests:

* Create erstiebegrüßung.html from code #772 (asbjornu)
* Validate options #767 (asbjornu)

4.4.3 (2022-10-08)

Merged pull requests:

* Revert "Validate options" #774 (gjtorikian)

(taca)

2022-10-09 09:13:45 UTC MAIN commitmail json YAML

doc: Updated www/ruby-selenium-webdriver to 4.5.0

(taca)

2022-10-09 09:13:24 UTC MAIN commitmail json YAML

www/ruby-selenium-webdriver: update to 4.5.0

4.5.0 (2022-09-28)

Ruby:

* Fix bug in Platform code
* Update Select class to error when elements are disabled (#10812)

(taca)

2022-10-09 09:10:43 UTC MAIN commitmail json YAML

doc: Updated www/ruby-aws-sdk-secretsmanager to 1.66.0

(taca)

2022-10-09 09:10:24 UTC MAIN commitmail json YAML

www/ruby-aws-sdk-secretsmanager: update to 1.66.0

1.66.0 (2022-09-29)

* Feature - Documentation updates for Secrets Manager

(taca)

2022-10-09 09:08:25 UTC MAIN commitmail json YAML

doc: Updated www/ruby-aws-sdk-core to 3.159.0

(taca)

2022-10-09 09:07:55 UTC MAIN commitmail json YAML

www/ruby-aws-sdk-core: update to 3.159.0

3.159.0 (2022-10-07)

* Feature - Updated Aws::SSO::Client with the latest API changes.

3.158.1 (2022-10-06)

* Issue - Ensure that the ReadCallbackIO is always unwrapped (#2761).

3.158.0 (2022-09-30)

* Feature - Updated Aws::SSO::Client with the latest API changes.

3.157.0 (2022-09-29)

* Feature - Updated Aws::SSO::Client with the latest API changes.

3.156.0 (2022-09-27)

* Feature - Updated Aws::SSO::Client with the latest API changes.

3.155.0 (2022-09-26)

* Feature - Updated Aws::SSO::Client with the latest API changes.

3.154.0 (2022-09-23)

* Feature - Updated Aws::SSO::Client with the latest API changes.

3.153.0 (2022-09-22)

* Feature - Updated Aws::SSO::Client with the latest API changes.

3.152.0 (2022-09-21)

* Feature - Updated Aws::SSO::Client with the latest API changes.

3.151.0 (2022-09-20)

* Feature - Updated Aws::SSO::Client with the latest API changes.

3.150.0 (2022-09-19)

* Feature - Updated Aws::SSO::Client with the latest API changes.

(taca)

2022-10-09 09:04:02 UTC MAIN commitmail json YAML

doc: Updated www/ruby-aws-sigv4 to 1.5.2

(taca)

2022-10-09 09:03:45 UTC MAIN commitmail json YAML

www/ruby-aws-sigv4: update to 1.5.2

1.5.2 (2022-09-30)

* Issue - Fix an issue where quoted strings with multiple spaces are not
  trimmed. (#2758)

(taca)

2022-10-09 09:02:36 UTC MAIN commitmail json YAML

doc: Updated www/ruby-aws-partitions to 1.644.0

(taca)

2022-10-09 09:02:04 UTC MAIN commitmail json YAML

www/ruby-aws-partitions: update to 1.644.0

1.644.0 (2022-10-07)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.643.0 (2022-10-06)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.642.0 (2022-10-04)

* Feature - Added support for enumerating regions for Aws::ConnectCases.

1.641.0 (2022-10-03)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.640.0 (2022-09-30)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.639.0 (2022-09-29)

* Feature - Added support for enumerating regions for
  Aws::MigrationHubOrchestrator.

1.638.0 (2022-09-27)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.637.0 (2022-09-26)

* Feature - Added support for enumerating regions for Aws::IoTFleetWise.

1.636.0 (2022-09-23)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.635.0 (2022-09-22)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.634.0 (2022-09-21)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.633.0 (2022-09-20)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.632.0 (2022-09-19)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

(taca)

2022-10-09 08:36:14 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-haml to 6.0.6

(taca)

2022-10-09 08:35:52 UTC MAIN commitmail json YAML

textproc/ruby-haml: update to 6.0.6

6.0.0 (2022-09-21)

* Replace the implementation with Hamlit

  - Haml 6 is about 1.7x faster than Haml 5 in this benchmark.
  - The parser is kept as is, but everything else is replaced.
  - The haml CLI interface was also replaced.
  - The interface of Haml::Engine is changed. Haml::Template is most likely
    what you need now.
  - Most Haml helpers are removed.

    Rails:

Kept: find_and_reserve, preserve, surround, precede, succeed,
      capture_haml

Removed: block_is_haml?, flatten, haml_concat, haml_indent,
haml_tag, haml_tag_if, html_attrs, html_escape,
init_haml_helpers, is_haml?, list_of, non_haml, tab_down,
tab_up, with_tabs

    Tilt:

Kept: preserve

Removed: block_is_haml?, capture_haml, escape_once,
find_and_preserve, flatten, haml_concat, haml_indent,
haml_tag, haml_tag_if, html_attrs, html_escape,
init_haml_helpers, is_haml?, list_of, non_haml, precede,
succeed, surround, tab_down, tab_up, with_tabs

  - Only the attributes in Haml::AttributeBuilder::BOOLEAN_ATTRIBUTES are
    handled as boolean attributes.
  - Some legacy Rails integration is removed.

6.0.1 (2022-09-23)

* Unescape HTML-safe interpolation on Rails #1084
* Resurrect Haml 5's AttributeParser.available? for syntax_tree-haml #1085

6.0.2 (2022-09-28)

* Unescape HTML-safe arguments for surround, succeed, and precede on Rails
  #1088

6.0.3 (2022-09-28)

* For Wasm, fallback to Ruby when C extension is not available.

6.0.4 (2022-10-02)

* Fix a parse failure of % in attributes #1096
* Add another fallback from C to Ruby for Wasm.

6.0.5 (2022-10-05)

* Resurrect #haml_object_ref support in an object reference #1097

  - This was removed in 6.0.0, and added back in this version.

* Stop warning remove_whitespace: true option.

6.0.6 (2022-10-09)

* Prevent CRuby from accidentally using the Ruby implementation fallback

  - Reversing what v6.0.3 and v6.0.4 did, but still supporting Wasm.

(taca)

2022-10-09 08:26:39 UTC MAIN commitmail json YAML

doc: Updated security/ruby-snaky_hash to 2.0.1

(taca)

2022-10-09 08:26:15 UTC MAIN commitmail json YAML

security/ruby-snaky_hash: update to 2.0.1

Added

* Certificate for signing gem releases (@pboling)
* Gemspec metadata (@pboling)

- funding_uri
- mailing_list_uri

* Checksums for released gems (@pboling)

Changed

* Gem releases are now cryptographically signed (@pboling)

(taca)

2022-10-09 08:24:45 UTC MAIN commitmail json YAML

doc: Updated security/ruby-oauth-tty to 1.0.5

(taca)

2022-10-09 08:24:23 UTC MAIN commitmail json YAML

security/ruby-oauth-tty: update to 1.0.5

1.0.4 (2022-09-19)

Added

* Certificate for signing gem releases (@pboling)
* Gemspec metadata (@pboling)

- funding_uri
- mailing_list_uri

* Installation and usage documentation (@pboling)
* SHA 512 Checksum for release (@pboling)

Changed

* Gem releases are now cryptographically signed (@pboling)

1.0.5 (2022-09-20)

Added

* SHA 256 Checksum for release (in addition to SHA 512) (@pboling)
* Aligned checksums directory name with rake build:checksum task (@pboling)
* General Cleanup

(taca)

2022-10-09 08:21:07 UTC MAIN commitmail json YAML

doc: Updated security/ruby-metasploit-payloads to 2.0.97

(taca)

2022-10-09 08:20:48 UTC MAIN commitmail json YAML

security/ruby-metasploit-payloads: update to 2.0.97

2.0.95 (2022-09-22)

* Changes are too many to write here, please refer:
  <https://github.com/rapid7/metasploit-payloads/compare/v2.0.94...v2.0.95>

2.0.96 (2022-09-22)

* Land #585, Add stdapi_registry_check_key_exists for Python

2.0.97 (2022-09-29)

* land #588, Add TrustedSec's COFFLoader as Meterpreter Extension

(taca)

2022-10-09 08:05:31 UTC MAIN commitmail json YAML

doc: Updated misc/ruby-bundler and misc/ruby-slop

misc/ruby-bundler 2.3.23
misc/ruby-slop 4.9.3

(taca)

2022-10-09 08:03:02 UTC MAIN commitmail json YAML

misc/ruby-slop: update to 4.9.3

4.9.3 (2022-09-30)

Bug fixes:

* Fix explicitly false boolean options and allow for additional false
  arguments #276 (Eugene Otto)

(taca)

2022-10-09 08:01:46 UTC MAIN commitmail json YAML

Updated ham/gnuradio-*

(adam)

2022-10-09 08:01:33 UTC MAIN commitmail json YAML

misc/ruby-bundler: update to 2.3.23

2.3.23 (2022-10-05)

Enhancements:

* Update GitLab CI template with new one #5944

Bug fixes:

* Fix bundle init not respecting umask in generated gem's Gemfile #5947

Performance:

* Further speed up Bundler by not sorting specs unnecessarily #5868

Documentation:

* Update Bundler new feature instructions #5912

(taca)

2022-10-09 07:59:33 UTC MAIN commitmail json YAML

doc: Updated graphics/ruby-RMagick to 5.0.0

(taca)

2022-10-09 07:59:16 UTC MAIN commitmail json YAML

graphics/ruby-RMagick: update to 5.0.0

4.13.0 (2022-09-23)

RMagick 4.3.0

Deprecates

* Mark Magick.trace_proc= as deprecated (#1354)
* Mark Magick::{Image, Image::Info}#monitor= as deprecated (#1353)
* These methods will be removed in RMagick 5.0 and no alternative.

5.0.0 (2022-10-06)

Improvements

* Improve installer in order to avoid SEGV within pkg-config command (#1359)
* Clean up the documents and comment in source code referring to something
  that no longer exist (#1363)
* Remove deprecated 'tile' attribute in Draw#marshal_dump (#1364)
* Remove deprecated #instance_eval calling when block was given with
  Magick::ImageList#montage, Magick::Image::Info.new and more (#1362)
* Remove deprecated RMagick.rb file (#1361)
* Remove deprecated Magick.trace_proc= (#1351)
* Remove deprecated Magick::{Image, Image::Info}#monitor= (#1356)

(taca)

2022-10-09 07:56:51 UTC MAIN commitmail json YAML

2022-10-09 07:56:11 UTC MAIN commitmail json YAML

gnuradio: updated to 3.10.4.0

3.10.4.0

Project Scope

Replace get_initial_sptr() calls with make_block_sptr() calls. There were a number of places the incorrect function was being used.

Runtime

Use correctly typed arguments to log messages to prevent build errors.

GRC

Add xfce4-terminal and urxvt to the list of terminal emulators discovered during the build process.
Suppress GUI hint errors that were being shown in the terminal window.
Use integers for screenshot size (floats were causing Cairo errors).

Build system and packaging

Reformat cmake files and make cmake formatting part of the workflow.
Allow GNU Radio to be a part of other cmake-based projects.
Correct linking to libiio and libad9361 on macOS.
Update method for determining Python installation directory. This should work correctly now on (all?) distro releases.

gr-blocks

New Block Interleaver/Deinterleaver interleaves blocks of symbols
Correct calculation of items_remaining in File Source, which allows seek() to work correctly.
Add an example for Wavefile Sink

gr-digital

Deprecate the CRC32 and CRC16 blocks, which will be removed in the future. There are more general CRC blocks which do the same thing (and more).

gr-filter

Fix demo for PFB channelizer

gr-iio

FMCOMMS2 Sink assumes CS16 data is scaled to 32768, rather than 2048.
FMCOMMS2 returns the correct samples for the second channel in 2-channel mode.

gr-trellis

Correct Python bindings for trellis::metrics.

gr-qtgui

Range widget can now output messages when value changes.
Add C++ code generation for Time Sink
Regenerate Python bindings for some blocks when necessary.
Waterfall Sink correctly uses half spectrum for float input.

gr-uhd

Add Python bindings for the UHD find() functino.

gr-zeromq

Support newer get() and older/deprecated getsockopt() functions in cppzmq depending on availability.

Modtool

Parse IO signatures with or without gr:: prefix.

Documentation

Update certain file lists to keep build paths out of documentation.

Testing

Update Conda recipe for Qt 5.15 and re-render CI support files.
Add testing on Ubuntu 22.04.
Link tests directly against spdlog with not linking to GR runtime.
Ignore Python "missing whitespace after keywork" formatting error.

(adam)

2022-10-09 07:54:18 UTC MAIN commitmail json YAML

Updated devel/catch2, security/libgpg-error, security/libksba

(adam)

2022-10-09 07:53:49 UTC MAIN commitmail json YAML

doc: Updated finance/ruby-braintree to 4.9.0

(taca)

2022-10-09 07:53:32 UTC MAIN commitmail json YAML

finance/ruby-braintree: update to 4.9.0

4.9.0 (2022-10-03)

* Add cardholder_name attribute reader to ApplePayCard (Thanks
  @AxelTheGerman)

* Deprecate chargeback_protection_level and add protection_level to Dispute
  and DisputeSearch

(taca)

2022-10-09 07:51:10 UTC MAIN commitmail json YAML

libksba: updated to 1.6.2

Noteworthy changes in version 1.6.2 (2022-10-07) [C22/A14/R2]
------------------------------------------------

* Fix integer overflow in the CRL parser.

(adam)

2022-10-09 07:50:29 UTC MAIN commitmail json YAML

libgpg-error: updated to 1.46

Noteworthy changes in version 1.46 (2022-10-07) [C33/A33/R1]
-----------------------------------------------

* Support for bidirectional pipes under Windows.  [T6112]

* REG_DWORD types are now support in the Windows Registry.
  [rE745d333cf7]

* Added ES_SYSHD_SOCK support for gpgrt_sysopen under Windows.
  [rE018ea46a30]

* Fixed gpgrt_log_get_fd for the file case.  [T5922]

* Avoids header problem with C11 and "noreturn".  [T4002]

* The gpg-error-config command is not installed by default, because
  it is now replaced by use of pkg-config/gpgrt-config with
  gpg-error.pc.  Supply --enable-install-gpg-error-config configure
  option, if it's really needed.

* Fixed support of posix-lock for FreeBSD.  [rE6e17e70bb7]

* Build fixes for some Mingw tool chain versions.  [T5890, T4656]

* Removed remaining support for WindowsCE.  [T5912]

* Updated config.guess, config.sub, and config.rpath.  [T6078]

* gpg-error-config is now only installed when enabled.  [T5683]

* System paths are now stripped from --cflags --and --libs.  [T6136]

(adam)

2022-10-09 07:45:10 UTC MAIN commitmail json YAML

doc: Updated multimedia/xine-lib to 1.2.12nb9

(wiz)

2022-10-09 07:45:00 UTC MAIN commitmail json YAML

xine-lib: enable fontconfig for subtitles

Patch from adr on pkgsrc-users.

(wiz)

2022-10-09 07:41:47 UTC MAIN commitmail json YAML

doc: Updated x11/xf86-input-vmmouse to 13.2.0

(wiz)

2022-10-09 07:41:36 UTC MAIN commitmail json YAML

xf86-input-vmmouse: update to 13.2.0.

Alan Coopersmith (4):
      Update "See Also" list in vmmouse_detect man page
      Update configure.ac bug URL for gitlab migration
      Build xz tarballs instead of bzip2
      gitlab CI: add a basic build test

Colin Walters (1):
      autogen.sh: Implement GNOME Build API

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

Matt Turner (2):
      tools: Fix declaration of xf86EnableIO()
      xf86-input-vmmouse 13.2.0

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (2):
      Drop maintainer mode from autogen.sh
      autogen.sh: use exec instead of waiting for configure to finish

Thomas Klausner (2):
      Replace unportable test(1) operator.
      Add NetBSD/amd64 support for iopl calls.

(wiz)

2022-10-09 07:38:04 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-zeitwerk to 2.6.1

(taca)

2022-10-09 07:37:47 UTC MAIN commitmail json YAML

devel/ruby-zeitwerk: update to 2.6.1

2.6.1 (2022-10-01)

* Zeitwerk::Loader#dirs allows you to instrospect the root directories
  configured in the receiver. Please check its documentation for details.

(taca)

2022-10-09 07:36:35 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-version_gem to 1.1.1

(taca)

2022-10-09 07:36:18 UTC MAIN commitmail json YAML

devel/ruby-version_gem: update to 1.1.1

pkgsrc change: update HOMEPAGE.

1.1.1 (2022-09-19)

Added

* Alternatives section to README.md (@pboling)
* Signing cert for gem releases (@pboling)
* Mailing List and other metadata URIs (@pboling)
* Checksums for released gems (@pboling)

Changed

* SECURITY.md policy (@pboling)
* Version methods are now memoized (||=) on initial call for performance
  (@pboling)
* Gem releases are now cryptographically signed (@pboling)

(taca)

2022-10-09 07:34:33 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-test-unit to 3.5.5

(taca)

2022-10-09 07:34:15 UTC MAIN commitmail json YAML

devel/ruby-test-unit: update to 3.5.5

pkgsrc change: no restriction to ruby31.

3.5.4 (2022-10-04)

Improvements

* Don't raise an error on Test::Unit::TestCase.clone. GitHub#210[Reported by
  David Marchaland]

* Added support for BigDeciaml in assert_in_delta family. GitHub#218[Patch
  by Kenta Murata]

Thanks

* David Marchaland

* Kenta Murata

3.5.5 (2022-10-04)

Fixes

* Suppressed a warning. GitHub#219[Patch by Kenichi Kamiya]

Thanks

* Kenichi Kamiya

(taca)

2022-10-09 07:31:26 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-rspec_junit_formatter to 0.6.0

(taca)

2022-10-09 07:31:08 UTC MAIN commitmail json YAML

devel/ruby-rspec_junit_formatter: update to 0.6.0

0.6.0 (2022-09-29)

Changed

* Restrict to Ruby 2.3+

Fixed

* Fix handling of nil durations

(taca)

2022-10-09 07:29:35 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-regexp_parser to 2.6.0

(taca)

2022-10-09 07:29:16 UTC MAIN commitmail json YAML

devel/ruby-regexp_parser: update to 2.6.0

2.6.0 (2022-09-26)

Fixed

* fixed #referenced_expression for \g<0> (was nil, is now the Root exp)

* fixed #reference, #referenced_expression for recursion level backrefs

- e.g. (a)(b)\k<-1+1>
- #referenced_expression was nil, now it is the correct Group exp

* detect and raise for two more syntax errors when parsing String input

- quantification of option switches (e.g. (?i)+)
- invalid references (e.g. /\k<1>/)
- these are a SyntaxError in Ruby, so could only be passed as a
          String

Added

* Regexp::Expression::Base#human_name

- returns a nice, human-readable description of the expression

* Regexp::Expression::Base#optional?

- returns true if the expression is quantified accordingly
          (e.g. with *, {,n})

* added a deprecation warning when calling #to_re on set members

(taca)

2022-10-09 07:26:43 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-red-datasets to 0.1.5

(taca)

2022-10-09 07:26:25 UTC MAIN commitmail json YAML

devel/ruby-red-datasets: update to 0.1.5

pkgsrc change: drop ruby26 support.

0.1.5 (2022-09-22)

Improvements

* Datasets::PMJTDatasetList: Added. [GitHub#107][Patch by okadak]
* Datasets::AozoraBunko: Added. [GitHub#108][Patch by Masa]
* Added how to develop to README [GitHub#117][Patch by abcdefg-1234567]
* Datasets::FuelEconomy: Added. [GitHub#114][Patch by Benson Muite]
* Datasets::Geolonia: Added. [GitHub#118][Patch by abcdefg-1234567]
* Datasets::Diamonds: Added. [GitHub#110][Patch by Benson Muite]
* Datasets::ITACorpus: Added. [GitHub#119][Patch by abcdefg-1234567]
* Datasets::KuzushijiMNIST: Added. [GitHub#125][Patch by abcdefg-1234567]
* Updated list of datasets in README. [GitHub#129][Patch by Benson Muite]
* Datasets::CaliforniaHousing: Added. [GitHub#123][Patch by Benson Muite]
* Added support for Ruby 3.1. [GitHub#130][Patch by Benson Muite]
* Datasets::AFINN: Added. [GitHub#120][Patch by Benson Muite]
* Datasets::LivedoorNews: Added. [GitHub#127][Patch by abcdefg-1234567]
* Datasets::SeabornDataList: Added. [GitHub#134][Patch by Hirokazu SUZUKI]
* Datasets::WikipediaKyotoJapaneseEnglish: Added. [GitHub#135][Patch by
  abcdefg-1234567]
* Renamed Rdatasets to Rdataset. [GitHub#148][Patch by Hirokazu SUZUKI]
* Removed support for Ruby 2.6.
* Add missing license information.
* Datasets::QuoraDuplicateQuestionPair: Added. [GitHub#149][Patch by
  otegami]

Fixes

* Fixed key from nil to :index in Datasets::SeabornData. [GitHub#133][Patch
  by Hirokazu SUZUKI]
* Fixed Datasets::Rdatasets#each to change "NA" to nil. [GitHub#139][Patch
  by Hirokazu SUZUKI]
* Fix Datasets::Rdatasets#each with mixed data of numeric and
  string. [GitHub#140][Patch by Hirokazu SUZUKI]

Thanks

* okadak
* Masa
* Benson Muite
* abcdefg-1234567
* Hirokazu SUZUKI
* Sutou Kouhei
* otegami

(taca)

2022-10-09 07:25:23 UTC MAIN commitmail json YAML

cppzmq: fix building without git

(adam)

2022-10-09 07:24:47 UTC MAIN commitmail json YAML

catch2: updated to 2.13.9

v2.13.9

Fixed issue with -# (filename-as-tag) flag when __FILE__ expands into filename without directories
Fixed CAPTURE macro not being variadic when disabled through CATCH_CONFIG_DISABLE

(adam)

2022-10-09 07:22:03 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-msgpack to 1.6.0

(taca)

2022-10-09 07:21:45 UTC MAIN commitmail json YAML

devel/ruby-msgpack: update to 1.6.0

2022-09-30 (1.6.0)

* Fix a potential use-after-free bug in Buffer_free when accessing a packer
  or unpacker buffer.

* `old-style-definition` compilation warnings.

* Restore zero-copy buffer feed when provided a Ruby string. This was
  accidentally broken in 1.5.4.

* Provide implementations for `ObjectSpace.memsize`. Message pack objects
  now properly report their size to Ruby.

* Fix an endianess bug on Windows platform.

(taca)

2022-10-09 07:20:25 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-mocha to 1.15.0

(taca)

2022-10-09 07:20:04 UTC MAIN commitmail json YAML

devel/ruby-mocha: update to 1.15.0

1.15.0 (2022-09-21)

External changes

* Fix examples using mock constructor with block (1cc17667)
* Add another example for API#sequence (b7a7d233, #59)
* Remove support for Ruby v1.8 (ddb5d672)
* Deprecate support for Ruby versions earlier than v2.0 - thanks to
  @wasabigeek (#553, #555)

Internal changes

* Update instructions for obtaining Rubygems API key (ed9c040a)
* Consistent definitions for respond_to? methods (#533)
* Run test tasks before release tasks (92a1bc6e, #447)
* Fix test:performance Rake task (#538, #539)
* Tidying following removal of support for Ruby v1.8 - thanks to @nitishr
  (#542)
* Remove ParametersMatcher from Invocation#call_description - thanks to
  @wasabigeek (#543)
* Remove unnecessary splatting in Invocation - thanks to @wasabigeek (#549)
* Extract handle_method_call from method_missing - thanks to @wasabigeek
  (#550)

(taca)

2022-10-09 07:17:04 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-bindata to 2.4.12

(taca)

2022-10-09 07:16:20 UTC MAIN commitmail json YAML

devel/ruby-bindata: update to 2.4.12

2.4.11 (2022-09-27)

* Make DelayedIO work with :onlyif.  Reported by Spencer McIntyre.

2.4.12 (2022-10-03)

* Do not include DelayedIO objects when :onlyif is false.

(taca)

2022-10-09 07:03:05 UTC MAIN commitmail json YAML

doc: Updated devel/frama-c to 25.0

(tonio)

2022-10-09 07:02:47 UTC MAIN commitmail json YAML

Update devel/frama-c to 25.0

-  Kernel    [2022-10-05] Support for ghost VLA and calls to builtins with
              ghost arguments.
-  Eva      [2022-09-16] Numerors now needs MLMPFR 4.1.0+bugfix2
-  Kernel    [2022-09-07] Improve error message for invalid options -D/-I/-U.
o!  Configure [2022-07-28] Removed autoconf and configure
o!  Makefile  [2022-07-11] Removed Makefile, Frama-C is now built using Dune 3.x
o!  Pdg      [2022-07-01] Removed from Db. Use proper Pdg API instead.
-!  Kernel    [2022-06-06] Remove journalisation.

####################################
Open Source Release 25.0 (Manganese)
####################################

o  Kernel    [2022-05-03] Prototype of AST comparison between two versions
              of the same program, via the new option -ast-diff.
-  Eva      [2022-05-02] Fixes stack overflow errors on very large C functions.
-  Eva      [2022-04-25] Improve the multidim abstract domain: it is now
              more precise and more robust, it is able to infer simple array
              invariants on some loops without unrolling, and has a new option
              -eva-multidim-disjunctive-invariants to infer structures
              disjunctive invariants.
o  Kernel    [2022-03-07] Known compiler builtins are no longer hardcoded in
              OCaml, but defined via JSON files (in share/compliance).
o  Kernel    [2022-02-23] New visitor functions visitFramacFileFunctions
              and visitCilFileFunctions to visit only function definitions,
              for better performance.
o!  Kernel    [2022-02-23] Remove State_selection.Static (deprecated since
              10 years, use directly State_selection instead)
-*  Kernel    [2022-02-22] Fix list of potential types for decimal
              integer literal constants
*  Kernel    [2022-02-17] Reject programs using unsupported
              vector_size attribute (fixes ##2573)
o  Eva      [2022-02-15] New API to run the analysis and access its results,
              intended to replace the old API in Db.Value. It is more precise
              as it uses all available domains to evaluate values and locations.
              See file Eva.mli for more details.
*  Kernel    [2022-02-08] Reject array whose size is too big with a proper
              error message instead of a crash (fixes ##2590)
o!  Kernel    [2022-02-19] Removed obsolete AST nodes IndexPI and Info
*  Kernel    [2022-02-08] Reject array whose size is too big with a proper
              error message instead of a crash (fixes ##2590)
o!  Kernel    [2021-12-03] Remove unused AST node Dcustom_annot and field
              fpadding_in_bits. Do not cache size of types in the AST but in
              a dedicated table.
-*  Logic    [2021-11-30] Fix type of expressions whose value are functions
o!  Kernel    [2021-11-29] Integer.pretty does not have the optional argument
              hexa anymore. Use Integer.pretty_hex or Integer.pp_hex if you
              want to print integers in hexadecimal format.

(tonio)

2022-10-09 06:47:13 UTC MAIN commitmail json YAML

doc: Updated devel/why3 to 1.5.1nb1

(tonio)

2022-10-09 06:46:57 UTC MAIN commitmail json YAML

Update devel/why3 to 1.5.1nb1

Make sure to install the library properly
This is necessary for frama-c to bind properly

(tonio)

2022-10-09 06:39:39 UTC MAIN commitmail json YAML

doc/TODO: add some

+ ImageMagick-7.1.0.50, dmenu-5.2, grafx2-2.8.3137, libgpg-error-1.46,
  poppler-22.10.0, py-mercurial-6.2.3, uriparser-0.9.7, webkit-gtk-2.38.0,
  wireshark-4.0.0.

(wiz)

2022-10-09 03:01:46 UTC MAIN commitmail json YAML

mingw-w64: Update meta-package to 10.0.0

(ryoon)

2022-10-09 02:40:48 UTC MAIN commitmail json YAML

doc: Updated cross/mingw-w64 packages to 10.0.0

And update GCC and binutils to the latest too.

(ryoon)

2022-10-09 02:37:04 UTC MAIN commitmail json YAML

mingw-w64*: Update to 10.0.0

* Update GCC and binutils to the latest too.

Changelog:
v10.0.0: 2022-04-04

Notable changes:

  * New msvcrt10, 20, 40, 70 and 71 import libraries.
  * Drop x86_64 64bit crtdll.dll
  * Updated wine imports
  * Fix intrin.h compatibility with GCC-11
  * _(v)scprintf optimization
  * optimize __ms_vsnprintf for LTO

(ryoon)

2022-10-08 21:44:07 UTC MAIN commitmail json YAML

soapy-sdr: PLIST fix

(adam)

2022-10-08 21:20:44 UTC MAIN commitmail json YAML

doc: Updated www/firefox-l10n to 105.0.3

(ryoon)

2022-10-08 21:20:12 UTC MAIN commitmail json YAML

firefox-l10n: Update to 105.0.3

* Sync with www/firefox-105.0.3.

(ryoon)

2022-10-08 21:19:50 UTC MAIN commitmail json YAML

doc: Updated www/firefox to 105.0.3

(ryoon)

2022-10-08 21:18:55 UTC MAIN commitmail json YAML

firefox: Update to 105.0.3

* Add --enable-new-pass-manager.
* Disable sysutils/dbus dependency for non-Linux platforms by default.

Changelog:
105.0.3:
Fixed
  * Mitigated frequent crashes for Windows users with Avast or AVG Antivirus
    software installed (bug 1794064)

105.0.2:
Fixed
  * Fixed poor contrast on various menu items with certain themes on Linux
    systems (bug 1792063)

  * Fixed the scrollbar appearing on the wrong side of select elements in
    right-to-left locales (bug 1791219)

  * Fixed a possible deadlock when loading some sites in Troubleshoot Mode (bug
    1786259)

  * Fixed a bug causing some dynamic appearance changes to not appear when
    expected (bug 1786521)

  * Fixed a bug causing theme styling to not be properly applied to sidebars
    for some add-ons in Private Browsing Mode (bug 1787543)

105.0.1:
Fixed
  * Reverted focus behavior for new windows back to the content area
    instead of the address bar (bug 1784692)

105.0:
New
  * Added an option to print only the current page from the print preview
    dialog.

  * Firefox now supports partitioned service workers in third-party contexts.
    You can register service workers in a third-party iframe and it will be
    partitioned under the top-level domain.

  * Swipe to navigate (two fingers on a touchpad swiped left or right to
    perform history back or forward) on Windows is now enabled.

  * Firefox is now compliant with the User Timing L3 specification, which adds
    additional optional arguments to the performance.mark and
    performance.measure methods to provide custom start times, end times,
    duration, and attached details.

  * Searching in large lists for individual items is now 2x faster. This
    performance enhancement replaces array.includes and array.indexOf with an
    optimized SIMD version.

Fixed
  * Stability on Windows is significantly improved as Firefox handles
    low-memory situations much better.

  * Touchpad scrolling on macOS was made more accessible by reducing unintended
    diagonal scrolling opposite of the intended scroll axis.

  * Firefox is less likely to run out of memory on Linux and performs more
    efficiently for the rest of the system when memory runs low.

  * Various security fixes.

Web Platform
  * Support for the Offscreen Canvas DOM API with full context and font
    support. The OffscreenCanvas API provides a canvas that can be rendered
    off-screen in both Window and Web Worker contexts.

Security fixes:
#CVE-2022-40959: Bypassing FeaturePolicy restrictions on transient pages
#CVE-2022-40960: Data-race when parsing non-UTF-8 URLs in threads
#CVE-2022-40958: Bypassing Secure Context restriction for cookies with __Host
and __Secure prefix
#CVE-2022-40961: Stack-buffer overflow when initializing Graphics
#CVE-2022-40956: Content-Security-Policy base-uri bypass
#CVE-2022-40957: Incoherent instruction cache when building WASM on ARM64
#CVE-2022-40962: Memory safety bugs fixed in Firefox 105 and Firefox ESR 102.3

(ryoon)

2022-10-08 20:30:46 UTC MAIN commitmail json YAML

geography/R-s2: remove ineffectual use of atomic64.mk.

We now build R itself with that instead.

(he)

2022-10-08 20:03:12 UTC MAIN commitmail json YAML

Note updates of math/R and geography/R-s2.

(he)

2022-10-08 20:02:06 UTC MAIN commitmail json YAML

2022-10-08 19:53:33 UTC MAIN commitmail json YAML

math/R: use ../../mk/atomic64.mk for 64-bit atomics.

R itself doesn't need this, but some modules might, e.g. R-s2.
Bump PKGREVISION.

(he)

2022-10-08 18:07:11 UTC pkgsrc-2022Q3 commitmail json YAML

Pullup ticket #6684 - requested by nia
graphics/babl: evbarm build fix

Revisions pulled up:
- graphics/babl/Makefile                                        1.53
- graphics/babl/PLIST                                          1.24

---
  Module Name: pkgsrc
  Committed By: nia
  Date: Sat Oct  8 11:15:53 UTC 2022

  Modified Files:
  pkgsrc/graphics/babl: Makefile PLIST

  Log Message:
  babl: Fix PLIST on 32-bit ARM

(bsiegert)

2022-10-08 16:38:11 UTC MAIN commitmail json YAML

doc: Added devel/why3 version 1.5.1

(tonio)

2022-10-08 16:37:39 UTC MAIN commitmail json YAML

Adding devel/why3

(tonio)

2022-10-08 16:36:47 UTC MAIN commitmail json YAML

Adding devel/why3 1.5.1

Import from WIP, thanks jihbed.research@gmail.com

Why3 is a platform for deductive program verification. It provides a rich
language for specification and programming, called WhyML, and relies
on external theorem provers, both automated and interactive, to
discharge verification conditions.

(tonio)

2022-10-08 15:04:04 UTC MAIN commitmail json YAML

doc: Added devel/ocaml-ppx_import version 1.10.0

(tonio)

2022-10-08 15:03:18 UTC MAIN commitmail json YAML

Adding devel/ocaml-ppx_import

(tonio)

2022-10-08 15:01:01 UTC MAIN commitmail json YAML

Adding devel/ocaml-ppx_import 1.10.0

OCaml extension to import declarations.
This package provides a ppx rewriter to import declarations from
interface files.

(tonio)

2022-10-08 13:28:04 UTC MAIN commitmail json YAML

Updated ham/soapy-sdr, x11/py-qwt-qt5

(adam)

2022-10-08 13:27:33 UTC MAIN commitmail json YAML

py-qwt-qt5: rm unused patch

(adam)

2022-10-08 13:26:56 UTC MAIN commitmail json YAML

py-qwt-qt5: updated to 1.02.02

Version 1.02.01
- Fix compilation with sip5
- Minor bugfixes in examples

Version 1.02.02
- sip-tool compilation added.

(adam)

2022-10-08 13:25:35 UTC MAIN commitmail json YAML

soapy-sdr: updated to 0.8.1

Release 0.8.1 (2021-07-25)
==========================

- cmake: fix use of CMAKE_INSTALL_LIB_DIR when absolute
- windows: Fix compatibility with non-MSVC compilers
- cmake: version policies for subproject compatibility
- docs: fixed spelling mistakes in doxygen comments
- python3: change OUTPUT_NAME in newer versions of cmake
- Types: consistency changes converting strings to bool
- Type.hpp: fixed templated StringToSetting return true
- Range: fixed default constructor not initializing step

Release 0.8.0 (2021-04-25)
==========================

Build:
- Update to CMake 3.0 style and project config generation
- Increase the CMake build requirement to version 3.1.0

API:
- Added API calls for configuring an external reference clock rate
- Constants for boolean setting strings SOAPY_SDR_TRUE/FALSE
- Templated read/writeSetting()/readSensor() for SoapySDR::Device
- Added Templated StringToSetting() and SettingToString() helpers
- Python bindings duck typing for read/writeSetting()/readSensor()
- Changed SoapySDRDevice_setupStream() to return the stream pointer
- Added unloadModules() API call to manually cleanup modules on exit
- Device: added parallel make() function with string arguments
- Added ABI check to Python module

(adam)

2022-10-08 13:21:06 UTC MAIN commitmail json YAML

Added net/cppzmq, textproc/py-pygccxml, devel/py-cbor2

(adam)

2022-10-08 13:19:52 UTC MAIN commitmail json YAML

py-cbor2: ...and Makefile

(adam)

2022-10-08 13:19:22 UTC MAIN commitmail json YAML

py-cbor2: added version 5.4.3

Pure Python CBOR (de)serializer with extensive tag support

(adam)

2022-10-08 13:17:21 UTC MAIN commitmail json YAML

py-pygccxml: added version 2.2.1

pygccxml is a specialized XML reader that reads the output from CastXML. It
provides a simple framework to navigate C++ declarations, using Python classes.
[pkgsrc/textproc/py-pygccxml] adam% head Makefile

(adam)

2022-10-08 13:15:07 UTC MAIN commitmail json YAML

cppzmq: added version 4.8.1

cppzmq is a C++ binding for libzmq. It has the following design goals:

* cppzmq maps the libzmq C API to C++ concepts. In particular:
  - it is type-safe (the libzmq C API exposes various class-like concepts as
    void*)
  - it provides exception-based error handling (the libzmq C API provides
    errno-based error handling)
  - it provides RAII-style classes that automate resource management (the
    libzmq C API requires the user to take care to free resources explicitly)

* cppzmq is a light-weight, header-only binding. You only need to include the
  header file zmq.hpp (and maybe zmq_addon.hpp) to use it.

* zmq.hpp is meant to contain direct mappings of the abstractions provided by
  the libzmq C API, while zmq_addon.hpp provides additional higher-level
  abstractions.

(adam)