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

2024-05-13 02:44:24 UTC Now

2022-08-30 19:23:28 UTC MAIN commitmail json YAML

Note update of lang/rust to 1.62.1.

(he)

2022-08-30 19:22:18 UTC MAIN commitmail json YAML

lang/rust: update to version 1.62.1.

Pkgsrc changes:

* Bump required GCC to 7 (same as LLVM) to avoid ABI issues
  Fixes native i386 and powerpc 8.x build w/pkgsrc LLVM 14
* Bump available bootstraps to 1.61.0.
* Also unlimit stacksize
* Sync patches over from wip/rust
* Adjust line number in patches which had non-zero offsets.
* no longer pass -I/usr/pkg/include through via gcc-wrap script
  when building natively.  Attempt at fixing version skew with curl
  package vs. internal version of curl (may not work...)
* The NetBSD bootstraps now use .xz compression.
* Use mk/atomic64.mk.  Still have conditional for libatomic-links.
* Default to using the internal LLVM when cross-building.

Upstream changes:

Version 1.62.1 (2022-07-19)
==========================

Rust 1.62.1 addresses a few recent regressions in the compiler and standard
library, and also mitigates a CPU vulnerability on Intel SGX.

* [The compiler fixed unsound function coercions involving `impl
  Trait` return types.][98608]
* [The compiler fixed an incremental compilation bug with `async
  fn` lifetimes.][98890]
* [Windows added a fallback for overlapped I/O in synchronous reads
  and writes.][98950]
* [The `x86_64-fortanix-unknown-sgx` target added a mitigation for the
  MMIO stale data vulnerability][98126], advisory [INTEL-SA-00615].

[98608]: https://github.com/rust-lang/rust/issues/98608
[98890]: https://github.com/rust-lang/rust/issues/98890
[98950]: https://github.com/rust-lang/rust/pull/98950
[98126]: https://github.com/rust-lang/rust/pull/98126
[INTEL-SA-00615]: https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00615.html

Version 1.62.0 (2022-06-30)
==========================

Language
--------

- [Stabilize `#[derive(Default)]` on enums with a `#[default]` variant][94457]
- [Stop validating some checks in dead code after functions with
  uninhabited return types][93313]
- [Fix constants not getting dropped if part of a diverging expression][94775]
- [Support unit struct/enum variant in destructuring assignment][95380]
- [Remove mutable_borrow_reservation_conflict lint and allow the
  code pattern][96268]

Compiler
--------

- [linker: Stop using whole-archive on dependencies of dylibs][96436]
- [Make `unaligned_references` lint deny-by-default][95372]
  This lint is also a future compatibility lint, and is expected to eventually
  become a hard error.
- [Only add codegen backend to dep info if -Zbinary-dep-depinfo is used][93969]
- [Reject `#[thread_local]` attribute on non-static items][95006]
- [Add tier 3 `aarch64-pc-windows-gnullvm` and `x86_64-pc-windows-gnullvm`
  targets\*][94872]
- [Implement a lint to warn about unused macro rules][96150]
- [Promote `x86_64-unknown-none` target to Tier 2\*][95705]

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

Libraries
---------

- [Move `CStr` to libcore, and `CString` to liballoc][94079]
- [Windows: Use a pipe relay for chaining pipes][95841]
- [Replace Linux Mutex and Condvar with futex based ones.][95035]
- [Replace RwLock by a futex based one on Linux][95801]
- [std: directly use pthread in UNIX parker implementation][96393]

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

- [`bool::then_some`]
- [`f32::total_cmp`]
- [`f64::total_cmp`]
- [`Stdin::lines`]
- [`windows::CommandExt::raw_arg`]
- [`impl<T: Default> Default for AssertUnwindSafe<T>`]
- [`From<Rc<str>> for Rc<[u8]>`][rc-u8-from-str]
- [`From<Arc<str>> for Arc<[u8]>`][arc-u8-from-str]
- [`FusedIterator for EncodeWide`]
- [RDM intrinsics on aarch64][stdarch/1285]

Clippy
------

- [Create clippy lint against unexpectedly late drop for temporaries
  in match scrutinee expressions][94206]

Cargo
-----

- Added the `cargo add` command for adding dependencies to `Cargo.toml` from
  the command-line.
  [docs](https://doc.rust-lang.org/nightly/cargo/commands/cargo-add.html)
- Package ID specs now support `name@version` syntax in addition to the
  previous `name:version` to align with the behavior in `cargo add` and other
  tools. `cargo install` and `cargo yank` also now support this syntax so the
  version does not need to passed as a separate flag.
- The `git` and `registry` directories in Cargo's home directory (usually
  `~/.cargo`) are now marked as cache directories so that they are not
  included in backups or content indexing (on Windows).
- Added automatic `@` argfile support, which will use "response files" if the
  command-line to `rustc` exceeds the operating system's limit.

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

- `cargo test` now passes `--target` to `rustdoc` if the specified target is
  the same as the host target.
  [#10594](https://github.com/rust-lang/cargo/pull/10594)
- [rustdoc: Remove .woff font files][96279]
- [Enforce Copy bounds for repeat elements while considering lifetimes][95819]

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

- [Unify ReentrantMutex implementations across all platforms][96042]

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

[93313]: https://github.com/rust-lang/rust/pull/93313/
[93969]: https://github.com/rust-lang/rust/pull/93969/
[94079]: https://github.com/rust-lang/rust/pull/94079/
[94206]: https://github.com/rust-lang/rust/pull/94206/
[94457]: https://github.com/rust-lang/rust/pull/94457/
[94775]: https://github.com/rust-lang/rust/pull/94775/
[94872]: https://github.com/rust-lang/rust/pull/94872/
[95006]: https://github.com/rust-lang/rust/pull/95006/
[95035]: https://github.com/rust-lang/rust/pull/95035/
[95372]: https://github.com/rust-lang/rust/pull/95372/
[95380]: https://github.com/rust-lang/rust/pull/95380/
[95431]: https://github.com/rust-lang/rust/pull/95431/
[95705]: https://github.com/rust-lang/rust/pull/95705/
[95801]: https://github.com/rust-lang/rust/pull/95801/
[95819]: https://github.com/rust-lang/rust/pull/95819/
[95841]: https://github.com/rust-lang/rust/pull/95841/
[96042]: https://github.com/rust-lang/rust/pull/96042/
[96150]: https://github.com/rust-lang/rust/pull/96150/
[96268]: https://github.com/rust-lang/rust/pull/96268/
[96279]: https://github.com/rust-lang/rust/pull/96279/
[96393]: https://github.com/rust-lang/rust/pull/96393/
[96436]: https://github.com/rust-lang/rust/pull/96436/
[96557]: https://github.com/rust-lang/rust/pull/96557/

[`bool::then_some`]: https://doc.rust-lang.org/stable/std/primitive.bool.html#method.then_some
[`f32::total_cmp`]: https://doc.rust-lang.org/stable/std/primitive.f32.html#method.total_cmp
[`f64::total_cmp`]: https://doc.rust-lang.org/stable/std/primitive.f64.html#method.total_cmp
[`Stdin::lines`]: https://doc.rust-lang.org/stable/std/io/struct.Stdin.html#method.lines
[`impl<T: Default> Default for AssertUnwindSafe<T>`]: https://doc.rust-lang.org/stable/std/panic/struct.AssertUnwindSafe.html#impl-Default
[rc-u8-from-str]: https://doc.rust-lang.org/stable/std/rc/struct.Rc.html#impl-From%3CRc%3Cstr%3E%3E
[arc-u8-from-str]: https://doc.rust-lang.org/stable/std/sync/struct.Arc.html#impl-From%3CArc%3Cstr%3E%3E
[stdarch/1285]: https://github.com/rust-lang/stdarch/pull/1285
[`windows::CommandExt::raw_arg`]: https://doc.rust-lang.org/stable/std/os/windows/process/trait.CommandExt.html#tymethod.raw_arg
[`FusedIterator for EncodeWide`]: https://doc.rust-lang.org/stable/std/os/windows/ffi/struct.EncodeWide.html#impl-FusedIterator

Version 1.61.0 (2022-05-19)
==========================

Language
--------

- [`const fn` signatures can now include generic trait bounds][93827]
- [`const fn` signatures can now use `impl Trait` in argument and return
  position][93827]
- [Function pointers can now be created, cast, and passed around in a
  `const fn`][93827]
- [Recursive calls can now set the value of a function's opaque
  `impl Trait` return type][94081]

Compiler
--------

- [Linking modifier syntax in `#[link]` attributes and on the command
  line, as well as the `whole-archive` modifier specifically, are now
  supported][93901]
- [The `char` type is now described as UTF-32 in debuginfo][89887]
- The [`#[target_feature]`][target_feature] attribute
  [can now be used with aarch64 features][90621]
- X86 [`#[target_feature = "adx"]` is now stable][93745]

Libraries
---------

- [`ManuallyDrop<T>` is now documented to have the same layout as `T`][88375]
- [`#[ignore = "#"]` messages are printed when running tests][92714]
- [Consistently show absent stdio handles on Windows as NULL handles][93263]
- [Make `std::io::stdio::lock()` return `'static` handles.][93965]
  Previously, the creation of locked handles to stdin/stdout/stderr would
  borrow the handles being locked, which prevented writing
  `let out = std::io::stdout().lock();` because `out` would outlive
  the return value of `stdout()`.
  Such code now works, eliminating a common pitfall that affected many
  Rust users.
- [`Vec::from_raw_parts` is now less restrictive about its inputs][95016]
- [`std::thread::available_parallelism` now takes cgroup quotas into
  account.][92697] Since `available_parallelism` is often used to create a
  thread pool for parallel computation, which may be CPU-bound for
  performance, `available_parallelism` will return a value consistent with
  the ability to use that many threads continuously, if possible.
  For instance, in a container with 8 virtual CPUs but quotas only allowing
  for 50% usage, `available_parallelism` will return 4.

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

- [`Pin::static_mut`]
- [`Pin::static_ref`]
- [`Vec::retain_mut`]
- [`VecDeque::retain_mut`]
- [`Write` for `Cursor<[u8; N]>`][cursor-write-array]
- [`std::os::unix::net::SocketAddr::from_pathname`]
- [`std::process::ExitCode`] and [`std::process::Termination`].
  The stabilization of these two API s now makes it possible for
  programs to return errors from `main` with custom exit codes.
- [`std::thread::JoinHandle::is_finished`]

These APIs are now usable in const contexts:

- [`<*const T>::offset` and `<*mut T>::offset`][ptr-offset]
- [`<*const T>::wrapping_offset` and `<*mut T>::wrapping_offset`]
  [ptr-wrapping_offset]
- [`<*const T>::add` and `<*mut T>::add`][ptr-add]
- [`<*const T>::sub` and `<*mut T>::sub`][ptr-sub]
- [`<*const T>::wrapping_add` and `<*mut T>::wrapping_add`][ptr-wrapping_add]
- [`<*const T>::wrapping_sub` and `<*mut T>::wrapping_sub`][ptr-wrapping_sub]
- [`<[T]>::as_mut_ptr`][slice-as_mut_ptr]
- [`<[T]>::as_ptr_range`][slice-as_ptr_range]
- [`<[T]>::as_mut_ptr_range`][slice-as_mut_ptr_range]

Cargo
-----

No feature changes, but see compatibility notes.

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

- Previously native static libraries were linked as `whole-archive` in
  some cases, but now rustc tries not to use `whole-archive` unless
  explicitly requested. This [change][93901] may result in linking errors
  in some cases. To fix such errors, native libraries linked from the
  command line, build scripts, or [`#[link]` attributes][link-attr] need to
  - (more common) either be reordered to respect dependencies between them
    (if `a` depends on `b` then `a` should go first and `b` second)
  - (less common) or be updated to use the [`+whole-archive`] modifier.
- [Catching a second unwind from FFI code while cleaning up from a Rust
  panic now causes the process to abort][92911]
- [Proc macros no longer see `ident` matchers wrapped in groups][92472]
- [The number of `#` in `r#` raw string literals is now required to be
  less than 256][95251]
- [When checking that a dyn type satisfies a trait bound, supertrait
  bounds are now enforced][92285]
- [`cargo vendor` now only accepts one value for each `--sync` flag]
  [cargo/10448]
- [`cfg` predicates in `all()` and `any()` are always evaluated to detect
  errors, instead of short-circuiting.][94295] The compatibility
  considerations here arise in nightly-only code that used the
  short-circuiting behavior of `all` to write something like
  `cfg(all(feature = "nightly", syntax-requiring-nightly))`, which
  will now fail to compile. Instead, use either `cfg_attr(feature
  = "nightly", ...)` or nested uses of `cfg`.
- [bootstrap: static-libstdcpp is now enabled by default, and can
  now be disabled when llvm-tools is enabled][94832]

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.

- [debuginfo: Refactor debuginfo generation for types][94261]
- [Remove the everybody loops pass][93913]

[88375]: https://github.com/rust-lang/rust/pull/88375/
[89887]: https://github.com/rust-lang/rust/pull/89887/
[90621]: https://github.com/rust-lang/rust/pull/90621/
[92285]: https://github.com/rust-lang/rust/pull/92285/
[92472]: https://github.com/rust-lang/rust/pull/92472/
[92697]: https://github.com/rust-lang/rust/pull/92697/
[92714]: https://github.com/rust-lang/rust/pull/92714/
[92911]: https://github.com/rust-lang/rust/pull/92911/
[93263]: https://github.com/rust-lang/rust/pull/93263/
[93745]: https://github.com/rust-lang/rust/pull/93745/
[93827]: https://github.com/rust-lang/rust/pull/93827/
[93901]: https://github.com/rust-lang/rust/pull/93901/
[93913]: https://github.com/rust-lang/rust/pull/93913/
[93965]: https://github.com/rust-lang/rust/pull/93965/
[94081]: https://github.com/rust-lang/rust/pull/94081/
[94261]: https://github.com/rust-lang/rust/pull/94261/
[94295]: https://github.com/rust-lang/rust/pull/94295/
[94832]: https://github.com/rust-lang/rust/pull/94832/
[95016]: https://github.com/rust-lang/rust/pull/95016/
[95251]: https://github.com/rust-lang/rust/pull/95251/
[`+whole-archive`]: https://doc.rust-lang.org/stable/rustc/command-line-arguments.html#linking-modifiers-whole-archive
[`Pin::static_mut`]: https://doc.rust-lang.org/stable/std/pin/struct.Pin.html#method.static_mut
[`Pin::static_ref`]: https://doc.rust-lang.org/stable/std/pin/struct.Pin.html#method.static_ref
[`Vec::retain_mut`]: https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.retain_mut
[`VecDeque::retain_mut`]: https://doc.rust-lang.org/stable/std/collections/struct.VecDeque.html#method.retain_mut
[`std::os::unix::net::SocketAddr::from_pathname`]: https://doc.rust-lang.org/stable/std/os/unix/net/struct.SocketAddr.html#method.from_pathname
[`std::process::ExitCode`]: https://doc.rust-lang.org/stable/std/process/struct.ExitCode.html
[`std::process::Termination`]: https://doc.rust-lang.org/stable/std/process/trait.Termination.html
[`std::thread::JoinHandle::is_finished`]: https://doc.rust-lang.org/stable/std/thread/struct.JoinHandle.html#method.is_finished
[cargo/10448]: https://github.com/rust-lang/cargo/pull/10448/
[cursor-write-array]: https://doc.rust-lang.org/stable/std/io/struct.Cursor.html#impl-Write-4
[link-attr]: https://doc.rust-lang.org/stable/reference/items/external-blocks.html#the-link-attribute
[ptr-add]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.add
[ptr-offset]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.offset
[ptr-sub]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.sub
[ptr-wrapping_add]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.wrapping_add
[ptr-wrapping_offset]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.wrapping_offset
[ptr-wrapping_sub]: https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.wrapping_sub
[slice-as_mut_ptr]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_mut_ptr
[slice-as_mut_ptr_range]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_mut_ptr_range
[slice-as_ptr_range]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_ptr_range
[target_feature]: https://doc.rust-lang.org/reference/attributes/codegen.html#the-target_feature-attribute

(he)

2022-08-30 18:42:53 UTC MAIN commitmail json YAML

xrdb: simplify NetBSD-specific workaround

(wiz)

2022-08-30 18:39:28 UTC MAIN commitmail json YAML

bFS: remove unneeded configure argument

(wiz)

2022-08-30 18:36:36 UTC MAIN commitmail json YAML

xauth: remove unneeded define

(wiz)

2022-08-30 18:33:24 UTC MAIN commitmail json YAML

libX11: remove unneeded configure flags/defines

(wiz)

2022-08-30 18:23:39 UTC MAIN commitmail json YAML

libXfont2: remove -D_OPENBSD_SOURCE, not needed any longer

(wiz)

2022-08-30 18:04:18 UTC MAIN commitmail json YAML

Updated www/nginx to 1.22.0nb6
Updated www/nginx-devel to 1.23.1nb1
Updated lang/njs to 0.7.7

(osa)

2022-08-30 18:00:49 UTC MAIN commitmail json YAML

*/*: update NGINX JavaScript 0.7.6 -> 0.7.7

Bump PKGREVISION for www/nginx and www/nginx-devel.

<ChangeLog>

nginx modules:

*) Feature: the number of nginx configuration contexts where
  js directives can be specified is extended.

  HTTP: js_import, js_path, js_set and js_var are allowed
  in server and location contexts. js_content, js_body_filter
  and js_header_filter are allowed in 'if' context.

  Stream: js_import, js_path, js_set and js_var are allowed
  in server context.

*) Feature: added r.internal property.

*) Bugfix: fixed reading response body in fetch API.

*) Bugfix: fixed "js_fetch_timeout" in stream module.

*) Bugfix: fixed socket leak with 0 fetch timeout.

Core:

*) Feature: extended "fs" module.  Added fs.openSync(),
  fs.promises.open(), fs.fstatSync(), fs.readSync(),
  fs.writeSync().

  The following properties of FileHandle are implemented:
  fd, read(), stat(), write(), close().

*) Bugfix: fixed parseInt(), parseFloat(), Symbol.for()
  with no arguments.

</ChangeLog>

(osa)

2022-08-30 17:55:37 UTC MAIN commitmail json YAML

doc: Updated security/tlswrapper to 20220814nb1

(schmonz)

2022-08-30 17:55:31 UTC MAIN commitmail json YAML

2022-08-30 17:47:50 UTC MAIN commitmail json YAML

2022-08-30 15:55:19 UTC MAIN commitmail json YAML

doc: Updated math/py-astropy to 5.0.4

(thor)

2022-08-30 15:51:57 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-yajl to 1.4.3

(taca)

2022-08-30 15:51:38 UTC MAIN commitmail json YAML

textproc/ruby-yajl: update to 1.4.3

1.4.3 (2022-05-26)

* add rb_undef_alloc_func for Parser and Encoder
* Update gemspec file to recent styles (#212)
* Prevent int overflow causing infinite loop in buf resizing

(taca)

2022-08-30 15:48:15 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-yard to 0.9.28

(taca)

2022-08-30 15:47:43 UTC MAIN commitmail json YAML

textproc/ruby-yard: update to 0.9.28

0.9.28 (2022-06-01)

* Safe load config YAML files (#1385)
* Handle empty string constants (#1415)
* Pre-emptively support removal of Object#taint in Ruby 3.2 (#1419)
* Fix Ruby 3.1 forward args Ripper change (#1431)

(taca)

2022-08-30 15:46:11 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-unicode-display_width to 2.2.0

(taca)

2022-08-30 15:45:42 UTC MAIN commitmail json YAML

textproc/ruby-unicode-display_width: update to 2.2.0

2.2.0 (2022-06-24)

* Add Hangul Jamo Extended-B block to zero-width chars, thanks @ninjalj #22

(taca)

2022-08-30 15:45:28 UTC MAIN commitmail json YAML

lame: Pull in iconv when the option is enabled.

(jperkin)

2022-08-30 15:43:32 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-tilt to 2.0.11

(taca)

2022-08-30 15:43:04 UTC MAIN commitmail json YAML

textproc/ruby-tilt: update to 2.0.11

2.0.11 (2022-07-22)

* Fix #extensions_for for RedcarpetTemplate (judofyr)
* Support the new sass-embedded gem (#367, ntkme)
* Add Tilt::EmacsOrg support (#366, hacktivista)
* Improve rendering of BasicObject instances (#348, jeremyevans)
* Fix Ruby 3.0 compatibility (#360, voxik)

(taca)

2022-08-30 15:42:57 UTC MAIN commitmail json YAML

doc: Updated editors/neovim to 0.7.2

(bsiegert)

2022-08-30 15:41:11 UTC MAIN commitmail json YAML

Update neovim to 0.7.2.

BREAKING CHANGES:
introduce $NVIM, unset $NVIM_LISTEN_ADDRESS

FEATURES:
feat(api): add `group_name` to `nvim_get_autocmds`
feat(api): add `group_name` to `nvim_get_autocmds`
feat(tui): query terminal for CSI u support

Plus a long list of bugfixes.

(bsiegert)

2022-08-30 15:40:15 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-simplecov_json_formatter to 0.1.4

(taca)

2022-08-30 15:39:54 UTC MAIN commitmail json YAML

textproc/ruby-simplecov_json_formatter: update to 0.1.4

0.1.4 (2022-02-12)

Enhancements

* Add support for simplecov's groups feature -w #2 @PragTob

(taca)

2022-08-30 15:38:25 UTC MAIN commitmail json YAML

doc: Added textproc/ruby-sanitize version 6.0.0

(taca)

2022-08-30 15:38:11 UTC MAIN commitmail json YAML

textproc/Makefile: add and enable ruby-sanitize

(taca)

2022-08-30 15:37:23 UTC MAIN commitmail json YAML

textproc/ruby-sanitize: add package version 6.0.0

It is required for forthcoming redmine50 package.

Sanitize is an allowlist-based HTML and CSS sanitizer.  It removes all HTML
and/or CSS from a string except the elements, attributes, and properties you
choose to allow.

(taca)

2022-08-30 15:35:28 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-rqrcode to 2.1.2

(taca)

2022-08-30 15:35:08 UTC MAIN commitmail json YAML

textproc/ruby-rqrcode: update to 2.1.2

2.1.2 (2022-07-26)

* Remove setup script as it just calls bundle install [#128]
* Change inline styles to the fill property to allow for strict CSP
  style-src directive [#127]

(taca)

2022-08-30 15:33:52 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-review to 5.5.0

(taca)

2022-08-30 15:33:18 UTC MAIN commitmail json YAML

textproc/ruby-review: update to 5.5.0

5.4.0 (2022-02-27)

New Features

* GitHub Discussions has been opened to answer questions about Re:VIEW

Breaking Changes

* EPUBMaker: manifest/item in the opf file is now sorted by the dictional
  order of ID strings (#1763)
* TextMaker: the separator line now put between the heading rows and the
  normal rows of the table.  To revert this behavior to old version, set
  textmaker/th_bold parameter to true (#1789)
* TextMaker: the output result of the //indepimage op has been adjusted to
  //image (#1790)
* TextMaker: the output result of the //imgtable op has been adjusted to
  //image and //table (#1791)
* //source op is now also not escaped when highlighting is enabled (#1788)

Bug Fixes

* fixed YAML error in Ruby 3.1 and kept backward compatibility (#1767,
  #1775)
* EPUBMaker: removed epub:type=cover from titlepage and colophon (#1776)
* removed invalid urnid sample (#1779)
* when there is a syntax error in config.yml, exit with proper error message
  instead of an exception (#1797)
* IDGXMLMaker: fixed an error to compile prefaces or postfaces when secttags
  is enabled (#1800)

Enhancements

* EPUBMaker, WebMaker: use layout.html.erb or layout-web.html.erb as the
  base template for cover, titlepage, colophon, and part, just like regular
  chapters (#1780)
* EPUBMaker, WebMaker: cover, titlepage, colophon, and part can now be
  overwritten with _cover.html.erb, _titlepage.html.erb, _colophon.html.erb,
  _colophon_history.html.erb, and _part_body.html.erb (#1777)

Docs

* mentioned GitHub Discussions in README.md (#1772)

Others

* refactor code with RuboCop 1.25.1 (#1773, #1782, #1783, #1784, #1792)

5.5.0 (2022-06-29)

New Features

* introduced @<secref>, @<sec>, and @<sectitle> as inline op to refer
  sections (#1809)

Bug Fixes

* fixed test error (#1804)
* fixed an error of review-update (#1807)

Others

* added rexml to gemspec (#1808)

(taca)

2022-08-30 15:24:32 UTC MAIN commitmail json YAML

textproc/ruby-rexml: improve comment text

Ruby 3.1 contains the same version of ruby-rexml in it as Ruby 3.0.

(taca)

2022-08-30 14:54:22 UTC MAIN commitmail json YAML

mk/blas.bl3: Define *_PC variables for pkg-config use

This enables pointing builds to pkg-config instead of plain compiler/linker flags.
Future CMake integration profits from that.

(thor)

2022-08-30 14:16:09 UTC MAIN commitmail json YAML

zathura-pdf-mupdf: Clean up confusing dependency handling, eliminating
some deps that are pulled as a result of some workarounds for how
Linux distributions are distributing mupdf. Concern raised by leot@.

(nia)

2022-08-30 12:48:15 UTC MAIN commitmail json YAML

doc: Updated print/zathura-pdf-mupdf to 0.3.9

(nia)

2022-08-30 12:47:51 UTC MAIN commitmail json YAML

zathura-pdf-mupdf: Update to 0.3.9. Fixes the package.

(nia)

2022-08-30 12:47:20 UTC MAIN commitmail json YAML

doc: Added lang/mujs version 1.2.0

(nia)

2022-08-30 12:47:02 UTC MAIN commitmail json YAML

Add lang/mujs.

MuJS is a lightweight Javascript interpreter designed for embedding in other
software to extend them with scripting capabilities.

MuJS was designed with a focus on small size, correctness, and simplicity.

It is written in portable C and implements ECMAScript as specified by
ECMA-262. The interface for binding with native code is designed to be as
simple as possible to use, and is very similar to Lua.

(nia)

2022-08-30 12:21:00 UTC MAIN commitmail json YAML

Added mail/gyb version 1.70

(sborrill)

2022-08-30 12:20:15 UTC MAIN commitmail json YAML

gyb: Add 1.70

Got Your Back a.k.a. GYB is a command-line tool to backup/restore Gmail
accounts. It can also perform other batch operations such as bulk
deletion.

GYB works with Gmail.com and Google Workspace (formerly G Suite /
Google Apps) accounts.

(sborrill)

2022-08-30 12:11:30 UTC MAIN commitmail json YAML

Updated security/py-google-auth

(sborrill)

2022-08-30 12:01:51 UTC MAIN commitmail json YAML

py-google-auth: update to 2.11.0

Changes since 1.34.0:

2.11.0 (2022-08-18)
Features

    add integration tests for configurable token lifespan (#1103) (124bae6)

Bug Fixes

    Async certificate retrieving (#1101) (05f125d)

2.10.0 (2022-08-05)
Features

    add integration tests for pluggable auth (#1073) (f8d776a)
    support for configurable token lifetime (0dc6a9a)
    support for configurable token lifetime (#1079) (0dc6a9a)

Bug Fixes

    async certificate decoding (#1085) (741c6c6)
    Async system tests were not unwrapping async_generators (#1086) (29d248a)
    Fix IDTokenCredentials update bug (#1072) (b62c25c)
    make expiration_time optional in response schema (#1091) (032fb8d)
    refactor credential subclass parameters (#1095) (8d15f69)

2.9.1 (2022-07-12)
Bug Fixes

    there was a raise missing for throwing exceptions (#1077) (d1f17b0)

2.9.0 (2022-06-28)
Features

    pluggable auth support (#1045) (de14f4e)

2.8.0 (2022-06-14)
Features

    add experimental GDCH support (#1044) (94fb5e2)

2.7.0 (2022-06-07)
Features

    add experimental enterprise cert support (#1052) (dda7dda)
    add experimental GDCH support (#1022) (5367aac)
    Pluggable auth support (#995) (62daa73)

Bug Fixes

    validate urls for external accounts (#1031) (61b1f15)

Reverts

    pluggable auth support #995 (#1039) (513d999)
    revert experimental GDCH support (#1022) (#1042) (c720995)

Documentation

    fix changelog header to consistent size (#1046) (e64d084)

2.6.6 (2022-04-21)
Bug Fixes

    silence TypeError during tear down stage (#1027) (952a6aa)

2.6.5 (2022-04-14)
Bug Fixes

    add additional missing import in _default.py (#1018) (638331b)

2.6.4 (2022-04-12)
Bug Fixes

    fix missing import in _default.py (#1015) (63f4e38)

2.6.3 (2022-04-06)
Bug Fixes

    change requests lib import place (#1010) (c753c08)
    clean up HTTP session and pool during tear down phase (#1007) (d057376)
    pin click version and update sys test creds (#1008) (ae2804b)

2.6.2 (2022-03-16)
Bug Fixes

    Rename aws imdsv2 url field and update token lifetime (#982) (818e6d2)

Miscellaneous Chores

    let release-please finish the release (#991) (d2bdc9a)

2.6.1 (2022-02-09)
Bug Fixes

    Add AWS session token to metadata requests (#958) (5c7f734)

2.6.0 (2022-01-31)
Features

    ADC can load an impersonated service account credentials. (#962) (52c8ef9)

Bug Fixes

    revert "feat: add api key support (#826)" (#964) (f9f23f4)

2.5.0 (2022-01-25)
Features

    ADC can load an impersonated service account credentials. (#956) (a8eb4c8)

2.4.1 (2022-01-21)
Bug Fixes

    urllib3 import (#953) (c8b5cae)

2.4.0 (2022-01-20)
Features

    add 'py.typed' declaration (#919) (c993504)
    add api key support (#826) (3b15092)

Bug Fixes

    deps: allow cachetools 5.0 for python 3.7+ (#937) (1eae37d)
    fix the message format for metadata server exception (#916) (e756f08)

Documentation

    fix intersphinx link for 'requests-oauthlib' (#921) (967be4f)
    note ValueError in verify_oauth2_token (#928) (82bc5f0)

2.3.3 (2021-11-01)
Bug Fixes

    add fetch_id_token_credentials (#866) (8f1e9cf)
    fix error in sign_bytes (#905) (ef31284)
    use 'int.to_bytes' and 'int.from_bytes' for py3 (#904) (bd0ccc5)

2.3.2 (2021-10-26)
Bug Fixes

    add clock_skew_in_seconds to verify_token functions (#894) (8e95c1e)

2.3.1 (2021-10-21)
Bug Fixes

    add back python 2.7 for gcloud usage only (#892) (5bd5ccf)

Documentation

    Fix formatting of GCE_METADATA_HOST (#890) (e2b3c98)

2.3.0 (2021-10-07)
Features

    add support for Python 3.10 (#882) (19d41f8)

Bug Fixes

    ADC with impersonated workforce pools (#877) (10bd9fb)

2.2.1 (2021-09-28)
Bug Fixes

    disable self signed jwt for domain wide delegation (#873) (0cd15e2)

2.2.0 (2021-09-21)
Features

    add support for workforce pool credentials (#868) (993bab2)

2.1.0 (2021-09-10)
Features

    Improve handling of clock skew (#858) (45c4491)

Bug Fixes

    add SAML challenge to reauth (#819) (13aed5f)
    disable warning if quota project id provided to auth.default() (#856) (11ebaeb)
    rename CLOCK_SKEW and separate client/server user case (#863) (738611b)

2.0.2 (2021-08-25)
Bug Fixes

    use 'int.to_bytes' rather than deprecated crypto wrapper (#848) (b79b554)
    use int.from_bytes (#846) (466aed9)

2.0.1 (2021-08-17)
Bug Fixes

    normalize AWS paths correctly on windows (#842) (4e0fb1c)

2.0.0 (2021-08-16)
    BREAKING CHANGES

    drop support for Python 2.7 (#778) (560cf1e)

Features

    service account is able to use a private token endpoint (#835) (20b817a)

Bug Fixes

    downscoping documentation bugs (#830) (da8bb13)
    Fix missing space in error message. (#821) (7b03988)

Documentation

    update user guide/references for downscoped creds (#827) (d1840dc)

(sborrill)

2022-08-30 11:47:16 UTC MAIN commitmail json YAML

Updated security/py-google-auth-oauthlib to 0.5.2

(sborrill)

2022-08-30 11:45:19 UTC MAIN commitmail json YAML

py-google-auth-oauthlib: update to 0.5.2

Changes since 0.4.6:
fix changelog header to consistent size.
avoid deprecated "out-of-band" authentication flow
deprecate OAuth out-of-band flow

(sborrill)

2022-08-30 11:37:14 UTC MAIN commitmail json YAML

Updated www/py-google-api-python-client to 2.58.0

(sborrill)

2022-08-30 11:33:50 UTC MAIN commitmail json YAML

py-google-api-python-client: update to 2.58.0

Too many changes to list (229 commits over 3659 files).
Changelog mainly just lists the names of the individual APIs that have
been updated.

Full changelog here:
https://github.com/googleapis/google-api-python-client/blob/main/CHANGELOG.md

(sborrill)

2022-08-30 11:21:07 UTC MAIN commitmail json YAML

doc: Updated news/tuifeed to 0.3.2

(pin)

2022-08-30 11:20:43 UTC MAIN commitmail json YAML

news/tuifeed: update to 0.3.2

0.3.2 Released on 30/08/2022
- Fixed articles sorted by date

0.3.1 Yanked relese

0.3.0 Released on 29/08/2022
- Show timestamp next to articles (can be configured)
- Added new key article-title to configuration (optional)

(pin)

2022-08-30 10:48:54 UTC MAIN commitmail json YAML

py-stack-data: updated to 0.5.0

0.5.0:
Unknown changes

(adam)

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

2022-08-30 10:01:34 UTC MAIN commitmail json YAML

Updated devel/py-astroid, devel/py-pylint

(adam)

2022-08-30 10:01:18 UTC MAIN commitmail json YAML

py-pylint: updated to 2.15.0

In pylint 2.15.0, we added a new check missing-timeout to warn of default timeout values that could cause a program to be hanging indefinitely.

We improved pylint's handling of namespace packages. More packages should be linted without resorting to using the --recursive=y option.

We still welcome any community effort to help review, integrate, and add good/bad examples to the doc for 5953. This should be doable without any pylint or astroid knowledge, so this is the perfect entrypoint if you want to contribute to pylint or open source without any experience with our code!

Internally, we changed the way we generate the release notes, thanks to DudeNr33. There will be no more conflict resolution to do in the changelog, and every contributor rejoice.

(adam)

2022-08-30 09:58:05 UTC MAIN commitmail json YAML

py-astroid: updated to 2.12.5

What's New in astroid 2.12.5?
* Prevent first-party imports from being resolved to `site-packages`.
* Fix ``astroid.interpreter._import.util.is_namespace()`` incorrectly
  returning ``True`` for frozen stdlib modules on PyPy.

(adam)

2022-08-30 07:13:02 UTC MAIN commitmail json YAML

llvm: On NetBSD/powerpc 8.x or 9.x, omit use of -mno-pltseq.

Fixes build on NetBSD/macppc 8.0, where we end up with pkgsrc gcc7.
NetBSD 9.0 has gcc 7.4 in-tree, so is also missing -mno-pltseq.
On non-NetBSD powerpc platforms, for now just insist on -mno-pltseq,
i.e. a gcc at least newer than 7 (untested).

(he)

2022-08-29 16:27:45 UTC MAIN commitmail json YAML

doc/TODO: + frama-c-25.0.

(wiz)

2022-08-29 16:20:29 UTC MAIN commitmail json YAML

doc: Updated math/py-asdf to 2.11.0

(thor)

2022-08-29 16:20:19 UTC MAIN commitmail json YAML

devel/py-asdf: import 2.11.0 from wip

2.11.0 (2022-03-15)
-------------------

- Update minimum jsonschema version to 4.0.1. [#1105]

2.10.1 (2022-03-02)
-------------------

- Bugfix for circular build dependency for asdf. [#1094]
- Fix small bug with handling multiple schema uris per tag. [#1095]

2.10.0 (2022-02-17)
-------------------

- Replace asdf-standard submodule with pypi package. [#1079]

2.9.2 (2022-02-07)
------------------

- Fix deprecation warnings stemming from the release of pytest 7.0.0. [#1075]

- Fix bug in pytest plugin when schemas are not in a directory named "schemas". [#1076]

2.9.1 (2022-02-03)
------------------

- Fix typo in testing module ``__init__.py`` name. [#1071]

2.9.0 (2022-02-02)
------------------

- Added the capability for tag classes to provide an interface
  to asdf info functionality to obtain information about the
  class attributes rather than appear as an opaque class object.
  [#1052 #1055]

- Fix tag listing when extension is not fully implemented. [#1034]

- Drop support for Python 3.6. [#1054]

- Adjustments to compression plugin tests and documentation. [#1053]

- Update setup.py to raise error if "git submodule update --init" has
  not been run. [#1057]

- Add ability for tags to correspond to multiple schema_uri, with an
  implied allOf among the schema_uris. [#1058, #1069]

- Add the URL of the file being parsed to ``SerializationContext``. [#1065]

- Add ``asdf.testing.helpers`` module with simplified versions of test
  helpers previously available in ``asdf.tests.helpers``. [#1067]

(thor)

2022-08-29 16:14:41 UTC MAIN commitmail json YAML

frama-c: add missing ocaml-num dependency

Now fails later.

This should be updated to frama-c-25.0

(wiz)

2022-08-29 16:11:02 UTC MAIN commitmail json YAML

textproc/py-jsonschema: another PLIST fix because of licenses/

(thor)

2022-08-29 16:08:27 UTC MAIN commitmail json YAML

devel/py-hatch-vcs: fix PLIST

They changed a directory name.

(thor)

2022-08-29 15:56:19 UTC MAIN commitmail json YAML

py-pyerfa: restore restriction to 3.8+

(wiz)

2022-08-29 15:54:18 UTC MAIN commitmail json YAML

doc: Updated math/py-pyerfa to 2.0.0.1

(thor)

2022-08-29 15:54:08 UTC MAIN commitmail json YAML

math/py-pyerfa: import 2.0.0.1 from wip

2.0.0.1 (2021-11-02)
====================

- The underlying universal functions in ``erfa.ufunc`` now work with an ``out``
  argument also if the required output is a structured array. [gh-76]

2.0.0 (2021-05-17)
==================

- Bundled liberfa version update to v2.0.0. This includes new functionality,
  and hence pyerfa 2.0.0 cannot run with previous versions of liberfa.
- ``erfa.dt_eraLDBODY`` has been corrected to ensure that the 'pv' entry is
  now of type ``erfa.dt_pv``, so that cross-assignments with that dtype work
  correctly. [gh-74]
- ``erfa_generator`` now also generates a ``test_ufunc.py`` file that
  runs all the C code tests on the ufuncs, thus verifying the code
  wrapping worked correctly. As part of that, the ability to give
  specific output file names has been removed, as it was not used.
  (Note: these changes have no effect on use of PyERFA.) [gh-71]

1.7.3 (2021-04-25)
==================

- Bundled liberfa version update to v1.7.3.
- Fixed a bug that caused the output of ``rx``, ``ry``, and ``rz`` to be
  boolean rather than float for some compilers/OS. [gh-72]

1.7.2 (2021-01-25)
==================

- Bundled liberfa version update to v1.7.2.
- The classproperty decorator is now thread-safe
  (backport https://github.com/astropy/astropy/pull/11224).

(thor)

2022-08-29 15:34:11 UTC MAIN commitmail json YAML

doc/TODO: + pandoc-2.19.2.

(wiz)

2022-08-29 15:30:03 UTC MAIN commitmail json YAML

2022-08-29 14:48:53 UTC MAIN commitmail json YAML

doc: Updated devel/py-colorlog to 6.6.0

(thor)

2022-08-29 14:48:41 UTC MAIN commitmail json YAML

2022-08-29 14:27:31 UTC MAIN commitmail json YAML

php-mecab: limit to old php versions

(wiz)

2022-08-29 14:25:36 UTC MAIN commitmail json YAML

ruby-semverse: does not support ruby 2.6 any longer

(wiz)

2022-08-29 14:20:57 UTC MAIN commitmail json YAML

2022-08-29 14:07:37 UTC MAIN commitmail json YAML

dris: fix build with current pkgsrc version of dependencies

(wiz)

2022-08-29 13:42:00 UTC MAIN commitmail json YAML

py-hatchling: fix PLIST

(adam)

2022-08-29 13:39:46 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-libxml to 3.2.3

(taca)

2022-08-29 13:39:26 UTC MAIN commitmail json YAML

textproc/ruby-libxml: update to 3.2.3

3.2.2 (2022-01-15)

* Switch to Github actions for CI/CD (Greg)
* Test fixes (Greg, Sergio Durigan Junior)
* Fix typo on test/test_sax_parser.rb (Sergio Durigan Junior)
* Update homepage in gemspec (Pirate Praveen Arimbrathodiyil)

3.2.3 (022-05-22)

* Change some getter methods to instance variables with attr_accessors for
  easier debuggability (David Hansen)
* Add a number of tests related to schemas  (David Hansen)
* Add schema.imported_elements so we can find imported elements (David Hansen)
* Fix segfault under windows when dereferencing a pre-existing error where
  the node has already been freed (David Hansen)
* Update to change name from imported_elements to imported_ns_elements and
  return a hash of hashes for namespaced elements (David Hansen)
* Only call xmlGetFeaturesList if LIBXML_LEGACY_ENABLED is defined.  Most
  distros still ship libxml2 with legacy features enabled, but this will
  change (Nick Wellnhofer)
* Update GitHub Actions to use ruby/setup-ruby (Greg)
* Fix memory leak in rxml_node_path, node.path (vovanmozg)

(taca)

2022-08-29 13:35:24 UTC MAIN commitmail json YAML

2022-08-29 13:27:08 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-kramdown to 2.4.0

(taca)

2022-08-29 13:26:46 UTC MAIN commitmail json YAML

textproc/ruby-kramdown: update to 2.4.0

2.4.0 (2022-04-25)

A minor release bringing a small enhancement to the kramdown converter and
some bug fixes.

Changes

* 1 minor change:

- Allow using a different list indentation (pull request #753 by
          Carsten Borman)

* 2 bug fixes:

- Fixed escaping of colon when converting to kramdown (fixes #751 by
          Carsten Borman)

- Fixed setting highlighter class for code spans in HTML converter
          when using a default language (fixes #752 by Aswhin Maroli)

(taca)

2022-08-29 13:24:10 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-jmespath to 1.6.1

(taca)

2022-08-29 13:23:44 UTC MAIN commitmail json YAML

textproc/ruby-jmespath: update to 1.6.1

1.5.0 (2022-01-10)

* Support implicitly convertible objects/duck-type values responding to
  to_hash and to_ary.

  See related GitHub pull request #51.

1.6.0 (2022-02-14)

* Feature - Add support for string comparissons.

1.6.1 (2022-03-07)

* ssue - Use JSON.parse instead of JSON.load.

(taca)

2022-08-29 13:21:19 UTC MAIN commitmail json YAML

doc: Added textproc/ruby-html-pipeline version 2.14.2

(taca)

2022-08-29 13:21:01 UTC MAIN commitmail json YAML

textproc/Makefile: add and enable ruby-html-pipeline

(taca)

2022-08-29 13:20:07 UTC MAIN commitmail json YAML

textproc/ruby-html-pipeline: add pacakge 2.14.2

It is required for forthcoming redmine50 package.

HTML::Pipeline

HTML processing filters and utilities.  This module includes a small
framework for defining DOM based content filters and applying them to user
provided content.

This project was started at GitHub.  While GitHub still uses a similar
design and pattern for rendering content, this gem should be considered
standalone and independent from GitHub.

(taca)

2022-08-29 13:09:13 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-gyoku to 1.4.0

(taca)

2022-08-29 13:08:54 UTC MAIN commitmail json YAML

textproc/ruby-gyoku: update to 1.4.0

1.4.0 (2022-04-01)

Fixed

* Fix Issue #56 with PR #57. Thanks, @jpmoral!
* Avoid circular reference #69, thanks @ccarruitero!

Added

* Unwrap specific keys #54, by @rlburkes. Documented by @mahemoff. Thanks to
  you both!
* Add :pretty_print, :indent and :compact options to allow prettified XML
  output. #59, by @Jeiwan. Thanks!

Changed

* Removed Rubinius support, by @olleolleolle
* Clean-up, CI setup, and changelog authoring, by @olleolleolle

(taca)

2022-08-29 13:07:06 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-erubi to 1.11.0

(taca)

2022-08-29 13:06:43 UTC MAIN commitmail json YAML

textproc/ruby-erubi: update to 1.11.0

1.11.0 (2022-08-02)

* Support :freeze_template_literals option for configuring whether to add
  .freeze to template literal strings (casperisfine) (#33)

* Support :chain_appends option for chaining appends to the buffer variable
  (casperisfine, jeremyevans) (#32)

* Avoid unnecessary defined? usage on Ruby 3+ when using the :ensure option
  (jeremyevans)

(taca)

2022-08-29 12:59:37 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-csv to 3.2.5

(taca)

2022-08-29 12:59:17 UTC MAIN commitmail json YAML

textproc/ruby-csv: update to 3.2.5

3.2.4 (2022-08-22)

Improvements

* Cleaned up internal implementations. [GitHub#249] [GitHub#250]
  [GitHub#251] [Patch by Mau Magnaguagno]
* Added support for RFC 3339 style time. [GitHub#248] [Patch by Thierry
  Lambert]
* Added support for transcoding String CSV. Syntax is
  from-encoding:to-encoding. [GitHub#254] [Reported by Richard Stueven]
* Added quoted information to CSV::FieldInfo. [GitHub#254] [Reported by
  Hirokazu SUZUKI]

Fixes

* Fixed a link in documents. [GitHub#244] [Patch by Peter Zhu]

Thanks

* Peter Zhu
* Mau Magnaguagno
* Thierry Lambert
* Richard Stueven
* Hirokazu SUZUKI

(taca)

2022-08-29 12:56:05 UTC MAIN commitmail json YAML

doc: Added textproc/ruby-commonmarker version 0.23.5

(taca)

2022-08-29 12:55:48 UTC MAIN commitmail json YAML

textproc/Makefile: add and enable ruby-commonmarker

(taca)

2022-08-29 12:54:56 UTC MAIN commitmail json YAML

textproc/ruby-commonmarker: add package 0.23.5

It is required for forthcoming redmine50 package.

A fast, safe, extensible parser for CommonMark.  This wraps the
official libcmark library.

(taca)

2022-08-29 12:53:17 UTC MAIN commitmail json YAML

2022-08-29 12:50:48 UTC MAIN commitmail json YAML

doc: Added textproc/ruby-deckar01-task_list version 2.3.2

(taca)

2022-08-29 12:50:30 UTC MAIN commitmail json YAML

textproc/Makefile: add and enable ruby-deckar01-task_list

(taca)

2022-08-29 12:49:52 UTC MAIN commitmail json YAML

textproc/ruby-deckar01-task_list: add package version 2.3.2

It is required for forthcoming redmine50 package.

Task Lists

This is a community fork of GitHub's archived task_list gem.

(taca)

2022-08-29 12:38:16 UTC MAIN commitmail json YAML

doc: Updated sysutils/ruby-specinfra to 2.83.3

(taca)

2022-08-29 12:37:51 UTC MAIN commitmail json YAML

sysutils/ruby-specinfra: update to 2.83.3

2.83.2 (2022-03-31)

* Make host_inventory["kernel"]["machine"] always available

2.83.3 (2022-07-26)

* fix get_block_device

(taca)

2022-08-29 12:36:01 UTC MAIN commitmail json YAML

doc: Updated sysutils/ruby-serverspec to 2.42.0

(taca)

2022-08-29 12:35:33 UTC MAIN commitmail json YAML

sysutils/ruby-serverspec: update to 2.42.0

2.42.0 (2022-02-02)

* Provide user uid and group gid as properties

(taca)

2022-08-29 12:22:55 UTC MAIN commitmail json YAML

doc: Added x11/xisxwayland version 2

(wiz)

2022-08-29 12:22:37 UTC MAIN commitmail json YAML

x11/Makefile: + xiswayland

(wiz)

2022-08-29 12:21:41 UTC MAIN commitmail json YAML

x11/xisxwayland: import xisxwayland-2

xisxwayland connects to the X server and exits with status code 0
if that server is Xwayland. This tool is intended to be used in
shell scripts and/or to make it easier for users to check whether
they're on a Wayland or X session.

(wiz)

2022-08-29 12:12:56 UTC MAIN commitmail json YAML

hs-HsYAML-aeson: fix build with current pkgsrc versions of dependencies

(wiz)

2022-08-29 12:07:00 UTC MAIN commitmail json YAML

doc: Updated lang/hs-purescript-cst to 0.5.0.0

(wiz)

2022-08-29 12:06:42 UTC MAIN commitmail json YAML

2022-08-29 11:53:27 UTC MAIN commitmail json YAML

2022-08-29 11:22:55 UTC MAIN commitmail json YAML

doc: Updated graphics/oculante to 0.6.5

(pin)

2022-08-29 11:22:35 UTC MAIN commitmail json YAML

graphics/oculante: update to 0.6.5

0.6.5
  - update build script

0.6.4
  - fix #40: keyboard zoom/pan

(pin)

2022-08-29 11:21:55 UTC MAIN commitmail json YAML

doc: Updated sysutils/felix to 1.1.2

(pin)

2022-08-29 11:21:36 UTC MAIN commitmail json YAML

sysutils/felix: update to 1.1.2

v1.1.2 (2022-08-29)
Fixed
- Use full width of the terminal when use_full_width in config.toml is not set.
- Use cursor::Goto instead of cursor::Left to fix the layout in macOS
  Terminal.app.
- Refactor functions around the layout.

(pin)

2022-08-29 10:58:27 UTC MAIN commitmail json YAML

2022-08-29 10:57:17 UTC MAIN commitmail json YAML

Correct tyop, re-word sentence.

(hauke)

2022-08-29 10:50:02 UTC MAIN commitmail json YAML

doc: Updated devel/goredo to 1.27.0

(schmonz)

2022-08-29 10:49:54 UTC MAIN commitmail json YAML

Update to 1.27.0. From the changelog:

* Improved out-of-date check and ".do" files search performance, because
  of caching their results.

(schmonz)

2022-08-29 10:41:14 UTC MAIN commitmail json YAML

doc: Updated converters/hs-cborg-json to 0.2.4.0

(wiz)

2022-08-29 10:41:03 UTC MAIN commitmail json YAML

2022-08-29 10:36:51 UTC MAIN commitmail json YAML

2022-08-29 10:33:05 UTC MAIN commitmail json YAML

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

doc/TODO: add some

+ hunspell-1.7.1, libatomic_ops-7.6.14, libtasn1-4.19.0, npm-8.18.0,
  rust-analyzer-0.0.20220822.

(wiz)

2022-08-29 09:47:02 UTC MAIN commitmail json YAML

doc: Updated x11/libXfont2 to 2.0.6

(wiz)

2022-08-29 09:46:50 UTC MAIN commitmail json YAML

libXfont2: update to 2.0.6.

Alan Coopersmith (6):
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      Fix spelling/wording issues
      configure: Use pkg-config to handle zlib dependency if possible
      Fix comments to reflect removal of OS/2 support
      libXfont2 2.0.6

Jeremy Huddleston Sequoia (1):
      Correct fsCreateACReq length

Peter Harris (1):
      Fix buffer overrun in FontFileMakeDir on WIN32

(wiz)

2022-08-29 09:46:04 UTC MAIN commitmail json YAML

doc: Updated x11/libXaw3d to 1.6.4

(wiz)

2022-08-29 09:45:50 UTC MAIN commitmail json YAML

libXaw3d: update to 1.6.4.

Alan Coopersmith (9):
      Fix fd leak when write() fails in WriteToFile()
      Update README for gitlab migration
      Update configure.ac bug URL for gitlab migration
      Pass correct number of atoms from SelectSave to _XawTextSaltAwaySelection
      Build xz tarballs instead of bzip2
      Fix spelling/wording issues
      gitlab CI: add a basic build test
      convert ISO8859-1 encoded source files to UTF-8
      libXaw3d 1.6.4

Eric Sesterhenn (1):
      Bug 24635: File Descriptor leaks in libxaw-1.0.7

Thomas E. Dickey (2):
      build-fixes when _CONST_X_STRING is defined
      issue #4: configure doesn't fail if flex is not installed

(wiz)

2022-08-29 09:44:45 UTC MAIN commitmail json YAML

doc: Updated x11/libXau to 1.0.10

(wiz)

2022-08-29 09:44:32 UTC MAIN commitmail json YAML

libXau: update to 1.0.10.

Alan Coopersmith (7):
      gitlab CI: add a basic build test
      Build xz tarballs instead of bzip2
      Fix spelling/wording issues
      Autest.c: Fix -Wdiscarded-qualifiers warnings
      Remove unnnecessary casts from malloc() and free() calls
      XauReadAuth: move failure handling code to a common code block
      libXau 1.0.10

(wiz)

2022-08-29 09:43:18 UTC MAIN commitmail json YAML

doc: Updated x11/libFS to 1.0.9

(wiz)

2022-08-29 09:43:07 UTC MAIN commitmail json YAML

libFS: update to 1.0.9.

Alan Coopersmith (6):
      Build xz tarballs instead of bzip2
      Fix spelling/wording issues
      gitlab CI: add a basic build test
      Import reallocarray() from libX11 (originally from OpenBSD)
      Convert code to use FSmallocarray() & FSreallocarray()
      libFS 1.0.9

(wiz)

2022-08-29 06:30:29 UTC MAIN commitmail json YAML

Updated lang/nodejs16, lang/nodejs

(adam)

2022-08-29 06:30:11 UTC MAIN commitmail json YAML

nodejs: updated to 18.8.0

Version 18.8.0 (Current)

Notable changes

bootstrap: implement run-time user-land snapshots via --build-snapshot and --snapshot-blob

crypto:
(SEMVER-MINOR) allow zero-length IKM in HKDF and in webcrypto PBKDF2
(SEMVER-MINOR) allow zero-length secret KeyObject
deps:
upgrade npm to 8.18.0 (npm team)
doc:
add Erick Wendel to collaborators
add theanarkh to collaborators
add MoLow to collaborators
add cola119 to collaborators
deprecate --trace-atomics-wait
http:
(SEMVER-MINOR) make idle http parser count configurable
net:
(SEMVER-MINOR) add local family
src:
(SEMVER-MINOR) print source map error source on demand
tls:
(SEMVER-MINOR) pass a valid socket on tlsClientError

(adam)

2022-08-29 06:28:38 UTC MAIN commitmail json YAML

nodejs16: updated to 16.17.0

Version 16.17.0 'Gallium' (LTS)

Notable Changes

Experimental command-line argument parser API

Adds util.parseArgs helper for higher level command-line argument parsing.

Experimental ESM Loader Hooks API

Node.js ESM Loader hooks now support multiple custom loaders, and composition is achieved via "chaining": foo-loader calls bar-loader calls qux-loader (a custom loader must now signal a short circuit when intentionally not calling the next). See the ESM docs for details.

Real-world use-cases are laid out for end-users with working examples in the article Custom ESM loaders: Who, what, when, where, why, how.

Experimental test runner

The node:test module, which was initially introduced in Node.js v18.0.0, is now available with all the changes done to it up to Node.js v18.7.0.

Improved interoperability of the Web Crypto API

To better align Node.js' experimental implementation of the Web Crypto API with other runtimes, several changes were made:

Support for CFRG curves was added, with the 'Ed25519', 'Ed448', 'X25519', and 'X448' algorithms.
The proprietary 'NODE-DSA', 'NODE-DH', 'NODE-SCRYPT', 'NODE-ED25519', 'NODE-ED448', 'NODE-X25519', and 'NODE-X448' algorithms were removed.
The proprietary 'node.keyObject' import/export format was removed.

(adam)

2022-08-28 21:38:54 UTC MAIN commitmail json YAML

doc: Updated converters/hs-lens-aeson to 1.2.2

(mef)

2022-08-28 21:38:42 UTC MAIN commitmail json YAML

(converters/hs-lens-aeson) Updated 1.1.3 to 1.2.2

1.2.2 [2022.08.11]
------------------
* Add `atKey :: AsValue t => Key -> Traversal' t (Maybe Value)`, a variant of
  `key` that uses `at` instead of `ix`.

1.2.1 [2022.05.07]
------------------
* Change the `IsKey` instances for `ByteString`s to use
  `decodeUtf8With lenientDecode` instead of `decodeUtf8`. While these `IsKey`
  instances are meant to used for interoperability with `aeson` values that
  are UTF-8窶兎ncoded, using `decodeUtf8With lenientDecode` at least ensures
  that converting a non窶填TF-8窶兎ncoded `ByteString` will not crash.

1.2 [2022.03.19]
----------------
* Require `aeson-2.0.2.*` and `lens-5.0.*` or greater.
* Change the types of `_Object`, `key`, and `members`:

  ```diff
  -_Object :: Prism' t (HashMap Text Value)
  +_Object :: Prism' t (KeyMap Value)

  -key :: AsValue t => Text -> Traversal' t Value
  +key :: AsValue t => Key  -> Traversal' t Value

  -members :: AsValue t => IndexedTraversal' Text t Value
  +members :: AsValue t => IndexedTraversal' Key  t Value
  ```

  This mirrors similar changes made in `aeson-2.0.*`, where the type of
  `Object`'s field was changed from `HashMap Text Value` to `KeyMap Value`.

  The `Ixed Value` instance changes similarly:

  ```diff
  -type instance Index Value = Text
  +type instance Index Value = Key
  ```
* Remove `Primitive` and `AsPrimitive`, since https://tools.ietf.org/html/rfc7159
  de-emphasized the notion of primitive versus composite JSON values.
  * The `AsPrimitive` methods (`_Value`, `_String`, and `_Bool`) are now
    `AsValue` methods.
  * `_Number`'s default signature, `Bool_`, `String_`, and `Null_` now have an
    `AsValue` constraint.
* Add `Wrapped` and `Rewrapped` instances for `KeyMap`. These treat `KeyMap v`
  as a wrapper around `[(Key, v)]`. The order in which the key-value pairs
  appear in this list is not stable.
* Add an `IsKey` class, whose method `_Key` is an `Iso` for converting values
  to and from a `Key`.

(mef)

2022-08-28 19:50:37 UTC MAIN commitmail json YAML

Note update of vim

(morr)

2022-08-28 19:49:13 UTC MAIN commitmail json YAML

Update to new Vim 9.

Changelog:

9.0.0001  Travis CI is no longer used
9.0.0002  map functionality outside of map.c
9.0.0003  functions are global while they could be local
9.0.0004  plural messages not translated properly
9.0.0005  hare files are not recognized
9.0.0006  not all Visual Basic files are recognized
9.0.0007  no support for double, dotted and dashed underlines
9.0.0008  cannot specify the variable name for "xxd -i"
9.0.0009  going past the end of a menu item with only modifier
9.0.0010  returning 0 for has('patch-9.0.0') is inconsistent
9.0.0011  reading beyond the end of the line with put command
9.0.0012  signature files not detected properly
9.0.0013  reproducing memory access errors can be difficult
9.0.0014  missing part of the test override change
9.0.0015  with EXITFREE defined terminal menus are not cleared
9.0.0016  comparing line pointer for 'breakindent' is not reliable
9.0.0017  accessing memory beyond the end of the line
9.0.0018  going over the end of the typahead
9.0.0019  timers test not run where possible
9.0.0020  with some completion reading past end of string
9.0.0021  invalid memory access when adding word to spell word list
9.0.0022  spell test fails
9.0.0023  on Solaris timer_create() exists but does not work
9.0.0024  may access part of typeahead buf that isn't filled
9.0.0025  accessing beyond allocated memory with the cmdline window
9.0.0026  accessing freed memory with diff put
9.0.0027  the command line test is getting quite big
9.0.0028  MS-Windows: tests fail if there is a "runtime" directory
9.0.0029  the bitmaps/vim.ico file is not in the distribution
9.0.0030  matchfuzzy test depends on path of current directory
9.0.0031  &lt;cmod&gt; of user command does not have correct verbose value
9.0.0032  in the quickfix window 'cursorline' overrules QuickFixLine
9.0.0033  on a Belgian keyboard CTRL-[ does not work
9.0.0034  spell tests do not always clear the word list
9.0.0035  spell dump may go beyond end of an array
9.0.0036  'fillchars' cannot have window-local values
9.0.0037  build error
9.0.0038  'listchars' test fails
9.0.0039  not all systems have GDK_KEY_dead_circumflex
9.0.0040  use of set_chars_option() is confusing
9.0.0041  a couple of filetype patterns do not have "*" before "/etc"
9.0.0042  missing change for filetype detection
9.0.0043  insufficient testing for bracket commands
9.0.0044  typos in comments, wrapping lines
9.0.0045  reading past end of completion with a long line
9.0.0046  reading past end of completion with duplicate match
9.0.0047  using freed memory with recursive substitute
9.0.0048  cursor in wrong column with mouse click after concealed text
9.0.0049  csv and tsv files are not recognized
9.0.0050  split else-if is confusing
9.0.0051  using CTRL-C wih :append may hang Vim
9.0.0052  "zG" may throw an error if invalid character follows
9.0.0053  E1281 not tested with the old regexp engine
9.0.0054  compiler warning for size_t to int conversion
9.0.0055  bitbake files are not detected
9.0.0056  wrong line number reported when :cexpr fails in :def function
9.0.0057  has('patch-xxx') returns true
9.0.0058  Win32: cannot test low level events
9.0.0059  test file has wrong name
9.0.0060  accessing uninitialized memory when completing long line
9.0.0061  ml_get error with nested autocommand
9.0.0062  compiler warnings for signed/unsigned char
9.0.0063  too many type casts for dict_get functions
9.0.0064  confusing error when using "q:" in command line window
9.0.0065  cross-compiling doesn't work because of timer_create check
9.0.0066  switching window uneccarily when getting buffer options
9.0.0067  cannot show virtual text
9.0.0068  build fails with tiny features
9.0.0069  leaking memory when using text prop with inserted text
9.0.0070  using utfc_ptr2char_len() when length is negative
9.0.0071  command overlaps with printed text in scrollback
9.0.0072  compiler warning for uninitialized variable
9.0.0073  too many files recognized as bsdl
9.0.0074  Coverity warns for double free
9.0.0075  some compilers warn for using an uninitialized variable
9.0.0076  no test for what patch 8.1.1424 fixes
9.0.0077  wrong restored cursor position if switching window in autocmd
9.0.0078  star register is unexpectedly changed when deleting
9.0.0079  error in autoload script not reported for 'foldexpr'
9.0.0080  compiler warning for size_t to int conversion
9.0.0081  command line completion of user command may have duplicates
9.0.0082  cannot interrupt global command from command line
9.0.0083  ModeChanged event not triggered when leaving cmdline window
9.0.0084  using "terraform" filetype for .tfvars file is bad
9.0.0085  ":write" fails after ":file name" and then ":edit"
9.0.0086  tabline is not redrawn when entering command line
9.0.0087  MS-Windows: CTRL-[ on Belgian keyboard does not work like Esc
9.0.0088  pattern for detecting bitbake files is not sufficient
9.0.0089  fuzzy argument completion doesn't work for shell commands
9.0.0090  no error when assigning bool to a string option
9.0.0091  duplicate error number
9.0.0092  plugins cannot change v:completed_item
9.0.0093  sway config files are recognized as i3config
9.0.0094  cursor restored unexpected with nested autocommand
9.0.0095  conditions are always true
9.0.0096  flag "new_value_alloced" is always true
9.0.0097  long quickfix line is truncated for :clist
9.0.0098  missing include file in timer_create configure check
9.0.0099  scrollback can be wrong after redrawing the command line
9.0.0100  get hit-enter prompt for system() when '!' is in 'guioptions'
9.0.0101  invalid memory access in diff mode with "dp" and undo
9.0.0102  reading past end of line with insert mode completion
9.0.0103  if running configure with cached results -lrt may be missing
9.0.0104  going beyond allocated memory when evaluating string constant
9.0.0105  illegal memory access when pattern starts with illegal byte
9.0.0106  illegal byte regexp test doesn't fail when fix is reversed
9.0.0107  condition always has the same value
9.0.0108  configure check for timer_create may give wrong error
9.0.0109  writing over the end of a buffer on stack
9.0.0110  help tag generation picks up words in code examples
9.0.0111  "nocombine" is missing from synIDattr()
9.0.0112  MS-Windows: test fails because file already exists
9.0.0113  has() is not strict about parsing the patch version
9.0.0114  the command line takes up space even when not used
9.0.0115  when 'cmdheight' is zero pressing ':' may scroll a window
9.0.0116  virtual text not displayed if 'signcolumn' is "yes"
9.0.0117  text of removed textprop with text is not freed
9.0.0118  no test for what patch 9.0.0115 fixes
9.0.0119  tiny chance that creating a backup file fails
9.0.0120  MS-Windows GUI: cannot use AltGr + Space
9.0.0121  cannot put virtual text after or below a line
9.0.0122  breakindent test fails
9.0.0123  cannot build with small features
9.0.0124  code has more indent than needed
9.0.0125  cursor positioned wrong with virtual text after the line
9.0.0126  expanding file names fails in dir with more than 255 entries
9.0.0127  unused variable
9.0.0128  Coverity complains about possible double free
9.0.0129  compiler warning for int/size_t usage
9.0.0130  cursor position wrong when inserting around virtual text
9.0.0131  virtual text with Tab is not displayed correctly
9.0.0132  multi-byte characters in virtual text not handled correctly
9.0.0133  virtual text after line moves to joined line
9.0.0134  no test for text property with column zero
9.0.0135  comment about tabpage line above the wrong code
9.0.0136  after CTRL-Left-mouse click a mouse scroll also has CTRL
9.0.0137  debugger test may fail when $CWD is very long
9.0.0138  not enough characters accepted for 'spellfile'
9.0.0139  truncating virtual text after a line not implemented
9.0.0140  execute() does not use the "legacy" command modifier
9.0.0141  "delmenu" does not remove autocmmands
9.0.0142  crash when adding and removing virtual text
9.0.0143  cursor positioned after virtual text in empty line
9.0.0144  text property cannot override 'cursorline' highlight
9.0.0145  substitute that joins lines drops text properties
9.0.0146  missing part of change for "override" flag
9.0.0147  cursor positioned wrong after two "below" text properties
9.0.0148  a "below" aligned text property gets 'showbreak' displayed
9.0.0149  test for fuzzy completion fails sometimes
9.0.0150  error for using #{ in an expression is a bit confusing
9.0.0151  a "below" aligned text property does not work with 'nowrap'
9.0.0152  warning for unused argument in small build
9.0.0153  no fold and sign column for virtual text with "below" align
9.0.0154  text properties wrong after splitting a line
9.0.0155  text properties "right" and "after" wrong with 'nowrap'
9.0.0156  giving E1170 only in an expression is confusing
9.0.0157  'showbreak' displayed below truncated "after" text prop
9.0.0158  with 'nowrap' "below" property not displayed correctly
9.0.0159  cannot build with small features
9.0.0160  some diff mode tests fail
9.0.0161  warning for uninitialized variable
9.0.0162  text property "below" gets indent if 'breakindent' is set
9.0.0163  text property not adjusted for text inserted with "p"
9.0.0164  using freed memory with put command
9.0.0165  looking up a text property type by ID is slow
9.0.0166  when using text properties line text length computed twice
9.0.0167  checking for text properties could be a bit more efficient
9.0.0168  cursor positioned wrong with two virtual text properties
9.0.0169  insufficient testing for line2byte() with text properties
9.0.0170  various minor code formatting issues
9.0.0171  quickfix line highlight is overruled by 'cursorline'
9.0.0172  trying to allocate zero bytes
9.0.0173  assert fails only on MS-Windows
9.0.0174  no error for using "#{ comment" in a compiled function
9.0.0175  spell checking for capital not working with trailing space
9.0.0176  checking character options is duplicated and incomplete
9.0.0177  cursor position wrong with 'virtualedit' and mouse click
9.0.0178  cursor position wrong with virtual text before Tab
9.0.0179  cursor pos wrong with wrapping virtual text in empty line
9.0.0180  stray logfile appears when running tests
9.0.0181  textprop test with line2byte() fails on MS-Windows
9.0.0182  quarto files are not recognized
9.0.0183  extra space after virtual text when 'linebreak' is set
9.0.0184  virtual text prop highlight continues after truncation
9.0.0185  virtual text does not show if text prop at same position
9.0.0186  virtual text without highlighting does not show
9.0.0187  command line height changes when maximizing window height
9.0.0188  strange effects when using "text_align" with non-zero column
9.0.0189  invalid memory access for text prop without highlight
9.0.0190  the way 'cmdheight' can be made zero is inconsistent
9.0.0191  messages test fails; window size incorrect
9.0.0192  possible invalid memory access when 'cmdheight' is zero
9.0.0193  search and match highlight interfere with virtual text
9.0.0194  cursor displayed in wrong position after removing text prop
9.0.0195  metafun files are not recogized
9.0.0196  finding value in list may require a for loop
9.0.0197  astro files are not detected
9.0.0198  ml_get error when switching buffer in Visual mode
9.0.0199  cursor position wrong with two right-aligned virtual texts
9.0.0200  cursor wrong if 'nowrap' and two right aligned text props
9.0.0201  CursorLine highlight overrules virtual text highlight
9.0.0202  code and help for indexof() is not ideal
9.0.0203  confusing variable name
9.0.0204  indexof() may leak memory
9.0.0205  cursor in wrong position when inserting after virtual text
9.0.0206  redraw flags are not named specifically
9.0.0207  stacktrace not shown when debugging
9.0.0208  the override flag has no effect for virtual text
9.0.0209  build error with small features
9.0.0210  'list' mode does not work properly with virtual text
9.0.0211  invalid memory access when compiling :lockvar
9.0.0212  invalid memory access when compiling :unlet
9.0.0213  using freed memory with error in assert argument
9.0.0214  splitting a line may duplicate virtual text
9.0.0215  not passing APC_INDENT flag
9.0.0216  undo earlier test sometimes fails on MS-Windows
9.0.0217  'shellslash' works differently when sourcing a script again
9.0.0218  reading before the start of the line
9.0.0219  cannot make a funcref with "s:func" in a def function
9.0.0220  invalid memory access with for loop over NULL string
9.0.0221  accessing freed memory if compiling nested function fails
9.0.0222  no good reason why text objects are only in larger builds
9.0.0223  typo in diffmode test
9.0.0224  Using NULL pointer when skipping compiled code
9.0.0225  using freed memory with multiple line breaks in expression
9.0.0226  job_start() test may fail under valgrind
9.0.0227  cannot read error message when abort() is called
9.0.0228  crash when pattern looks below the last line
9.0.0229  Vim9: error message for missing type is not clear
9.0.0230  no error for comma missing in list in :def function
9.0.0231  expanding "**" may loop forever with directory links
9.0.0232  test with BufNewFile autocmd is flaky
9.0.0233  removing multiple text properties takes many calls
9.0.0234  cannot make difference between :normal end and argument char
9.0.0235  'autoshelldir' does not work with chunked respose
9.0.0236  popup menu not removed when 'wildmenu' reset while visible
9.0.0237  Mac: cannot build if dispatch.h is not available
9.0.0238  Shift-Tab shows matches on cmdline when 'wildmenu' is off
9.0.0239  build failure without the +wildmenu feature
9.0.0240  crash when using ":mkspell" with an empty .dic file
9.0.0241  "make install" does not install shared syntax file
9.0.0242  "make install" still fails
9.0.0243  text properties "below" sort differently on MS-Windows
9.0.0244  cannot easily get the list of sourced scripts
9.0.0245  mechanism to prevent recursive screen updating is incomplete
9.0.0246  using freed memory when 'tagfunc' deletes the buffer
9.0.0247  cannot add padding to virtual text without highlight
9.0.0248  duplicate code in finding a script in the execution stack
9.0.0249  no test for what 9.0.0234 fixes
9.0.0250  slightly inconsistent error messages
9.0.0251  test output shows up in git
9.0.0252  cursor in wrong place after virtual text
9.0.0253  a symlink to an autoload script results in two entries
9.0.0254  typo in function name
9.0.0255  build failure without the eval feature
9.0.0256  compiler warning for uninitialized variables
9.0.0257  "-&gt;" in ":scriptnames" output not tested yet
9.0.0258  MS-Windows installer skips syntax/shared
9.0.0259  crash with mouse click when not initialized
9.0.0260  using freed memory when using 'quickfixtextfunc' recursively
9.0.0261  bufload() reads a file even if the name is not a file name
9.0.0262  build failure without the +quickfix feature
9.0.0263  too many #ifdefs
9.0.0264  CI still runs on Ubuntu 18.04
9.0.0265  no good reason why the "gf" command isn't in the tiny version
9.0.0266  compiler warning for unused argument
9.0.0267  Coverity workflow still uses Ubuntu 18.04
9.0.0268  build error without the +eval feature
9.0.0269  getscriptinfo() does not include the version
9.0.0270  some values of 'path' and 'tags' invalid in the tiny version
9.0.0271  using INIT() in non-header files
9.0.0272  BufReadCmd not triggered when loading a "nofile" buffer
9.0.0273  Konsole termresponse not recognized
9.0.0274  netrw plugin does not show remote files
9.0.0275  BufEnter not triggered when using ":edit" in "nofile" buffer
9.0.0276  'buftype' values not sufficiently tested
9.0.0277  Coverity CI: update-alternatives not needed with Ubuntu 20.04
9.0.0278  the +wildignore feature is nearly always available
9.0.0279  the tiny version has the popup menu but not 'wildmenu'
9.0.0280  the builtin termcap list depends on the version
9.0.0281  build failure without the +eval feature
9.0.0282  a nested timout stops the previous timeout
9.0.0283  cannot complete "syn list @cluster"
9.0.0284  using static buffer for multiple completion functions
9.0.0285  it is not easy to change the command line from a plugin
9.0.0286  using freed memory when location list changed in autocmd
9.0.0287  Irix systems no longer exist
9.0.0288  when 'cmdheight' is zero some messages are not displayed
9.0.0289  invalid memory write
9.0.0290  compiler warning for variable set but not used
9.0.0291  test failing
9.0.0292  test causes another test to fail
9.0.0293  messages window not hidden when starting a command line
9.0.0294  crash when 'cmdheight' is 0 and popup_clear() used
9.0.0295  GUI drop files test sometimes fails
9.0.0296  message in popup is shortened unnecessary
9.0.0297  cursor position wrong after right aligned virtual text
9.0.0298  compiler warning for size_t to int conversion
9.0.0299  error messages for setcmdline() could be better
9.0.0300  'cpoptions' tests are flaky
9.0.0301  the message window popup is delayed after an error message
9.0.0302  CI for Coverity is bothered by deprecation warnings
9.0.0303  it is not easy to get information about a script
9.0.0304  WinScrolled is not triggered when only skipcol changes
9.0.0305  CI lists useless deprecation warnings

(morr)

2022-08-28 18:34:15 UTC MAIN commitmail json YAML

math/fplll: use mk/atomic64.mk, since this wants 8-byte atomics.

(he)

2022-08-28 16:21:54 UTC MAIN commitmail json YAML

doc: Added net/piratebay version 0.1.4

(pin)

2022-08-28 16:21:26 UTC MAIN commitmail json YAML

Add piratebay

(pin)

2022-08-28 16:20:17 UTC MAIN commitmail json YAML

net/piratebay: import package

PirateBay CLI helps you search torrents on piratebay right from the terminal.

(pin)

2022-08-28 16:17:26 UTC MAIN commitmail json YAML

doc: Updated textproc/csvlens to 0.1.8

(pin)

2022-08-28 16:17:06 UTC MAIN commitmail json YAML

textproc/csvlens: update to 0.1.8

v0.1.8
  - Support horizontal scrolling

(pin)

2022-08-28 16:15:52 UTC MAIN commitmail json YAML

doc: Updated devel/difftastic to 0.34.0

(pin)

2022-08-28 16:15:33 UTC MAIN commitmail json YAML

devel/difftastic: update to 0.34.0

0.34.0 (released 27th August 2022)
Build
- Fixed build on Rust 1.61+.

Display
- Fixed an issue where side-by-side display would sometimes print the line
  number from the second file rather than the first file.

0.33.0 (released 21st August 2022)
Diffing
- Difftastic now explores 2x more parenthesis nesting possibilities. This can
  make diffing slower, but produces substantially better results.

Parsing
- Added support for CMake.
- Improved comment detection using tree-sitter syntax highlighting queries.
- Fixed an issue with language detection when file names were very short.

Command Line Interface
- Difftastic prefers to show the second path when called with two arguments.
  This fixes an issue (broken in 0.31) where the path would be shown as
  /tmp/git-blob-abc/file_name.

Build
- Difftastic now requires Rust 1.57 to build.
- Fixed build on Windows. Previously it would fail non-deterministically.

(pin)

2022-08-28 16:14:21 UTC MAIN commitmail json YAML

doc: Updated graphics/oculante to 0.6.3

(pin)

2022-08-28 16:14:01 UTC MAIN commitmail json YAML

graphics/oculante: update to 0.6.3

0.6.3
- fix missing vsync argument on windows

0.6.2
- draw brush preview
- update to latest notan
- fix test
- add undocumented key shortcut
- clean-up

(pin)

2022-08-28 16:12:30 UTC MAIN commitmail json YAML

doc: Updated wm/wmutils-core to 1.7

(pin)

2022-08-28 16:12:04 UTC MAIN commitmail json YAML

2022-08-28 14:59:18 UTC pkgsrc-2022Q2 commitmail json YAML

2022-08-28 13:58:00 UTC pkgsrc-2022Q2 commitmail json YAML

Pullup ticket #6668 - requested by khorben
lang/openjdk8: security update
lang/openjdk11: security update

Revisions pulled up:
- lang/openjdk11/Makefile                                      1.45
- lang/openjdk11/distinfo                                      1.35
- lang/openjdk11/patches/patch-make_common_NativeCompilation.gmk deleted
- lang/openjdk11/patches/patch-make_lib_Awt2dLibraries.gmk      deleted
- lang/openjdk11/patches/patch-src_hotspot_cpu_arm_c1__LIRAssembler__arm.cpp deleted
- lang/openjdk11/patches/patch-src_hotspot_cpu_arm_c1__LIRGenerator__arm.cpp deleted
- lang/openjdk11/patches/patch-src_hotspot_os__cpu_bsd__arm_vm__version__bsd__arm__32.cpp deleted
- lang/openjdk11/patches/patch-src_hotspot_os__cpu_bsd__zero_os__bsd__zero.cpp deleted
- lang/openjdk11/patches/patch-src_java.desktop_share_native_libfontmanager_harfbuzz_hb-blob.cc deleted
- lang/openjdk8/Makefile                                        1.111-1.112
- lang/openjdk8/distinfo                                        1.89-1.91
- lang/openjdk8/patches/patch-common_autoconf_generated-configure.sh 1.22
- lang/openjdk8/patches/patch-hotspot_src_cpu_aarch64_vm_pauth__aarch64.hpp deleted
- lang/openjdk8/patches/patch-hotspot_src_os__cpu_bsd__aarch64_vm_os__bsd__aarch64.cpp 1.2-1.3
- lang/openjdk8/patches/patch-hotspot_src_share_vm_classfile_symbolTable.cpp deleted
- lang/openjdk8/patches/patch-hotspot_src_share_vm_gc__implementation_concurrentMarkSweep_compactibleFreeListSpace.cpp deleted
- lang/openjdk8/patches/patch-hotspot_src_share_vm_gc__implementation_g1_heapRegionSet.hpp deleted
- lang/openjdk8/patches/patch-hotspot_src_share_vm_memory_metaspace.cpp deleted
- lang/openjdk8/patches/patch-make_common_MakeBase.gmk          deleted

-------------------------------------------------------------------
  Module Name:    pkgsrc
  Committed By:  ryoon
  Date:          Sun Jul 10 14:47:25 UTC 2022

  Modified Files:
          pkgsrc/lang/openjdk8: Makefile distinfo
          pkgsrc/lang/openjdk8/patches:
              patch-common_autoconf_generated-configure.sh
              patch-hotspot_src_os__cpu_bsd__aarch64_vm_os__bsd__aarch64.cpp
  Added Files:
          pkgsrc/lang/openjdk8/patches: patch-make_common_MakeBase.gmk
  Removed Files:
          pkgsrc/lang/openjdk8/patches:
              patch-hotspot_src_share_vm_classfile_symbolTable.cpp
              patch-hotspot_src_share_vm_gc__implementation_concurrentMarkSweep_compactibleFreeListSpace.cpp
              patch-hotspot_src_share_vm_gc__implementation_g1_heapRegionSet.hpp
              patch-hotspot_src_share_vm_memory_metaspace.cpp

  Log Message:
  openjdk8: Update to 1.8.332

  CHangelog:
  Follow OpenJDK 8u332 GA.

  To generate a diff of this commit:
  cvs rdiff -u -r1.110 -r1.111 pkgsrc/lang/openjdk8/Makefile
  cvs rdiff -u -r1.88 -r1.89 pkgsrc/lang/openjdk8/distinfo
  cvs rdiff -u -r1.21 -r1.22 \
      pkgsrc/lang/openjdk8/patches/patch-common_autoconf_generated-configure.sh
  cvs rdiff -u -r1.1 -r1.2 \
      pkgsrc/lang/openjdk8/patches/patch-hotspot_src_os__cpu_bsd__aarch64_vm_os__bsd__aarch64.cpp
  cvs rdiff -u -r1.1 -r0 \
      pkgsrc/lang/openjdk8/patches/patch-hotspot_src_share_vm_classfile_symbolTable.cpp \
      pkgsrc/lang/openjdk8/patches/patch-hotspot_src_share_vm_gc__implementation_concurrentMarkSweep_compactibleFreeListSpace.cpp \
      pkgsrc/lang/openjdk8/patches/patch-hotspot_src_share_vm_gc__implementation_g1_heapRegionSet.hpp \
      pkgsrc/lang/openjdk8/patches/patch-hotspot_src_share_vm_memory_metaspace.cpp
  cvs rdiff -u -r0 -r1.3 \
      pkgsrc/lang/openjdk8/patches/patch-make_common_MakeBase.gmk

-------------------------------------------------------------------
  Module Name:    pkgsrc
  Committed By:  tnn
  Date:          Sun Jul 17 03:03:41 UTC 2022

  Modified Files:
          pkgsrc/lang/openjdk8: distinfo
          pkgsrc/lang/openjdk8/patches:
              patch-hotspot_src_os__cpu_bsd__aarch64_vm_os__bsd__aarch64.cpp
  Added Files:
          pkgsrc/lang/openjdk8/patches:
              patch-hotspot_src_cpu_aarch64_vm_pauth__aarch64.hpp

  Log Message:
  openjdk8: fix NetBSD/evbarm-aarch64 build; PAC is only supported on Linux

  To generate a diff of this commit:
  cvs rdiff -u -r1.89 -r1.90 pkgsrc/lang/openjdk8/distinfo
  cvs rdiff -u -r0 -r1.1 \
      pkgsrc/lang/openjdk8/patches/patch-hotspot_src_cpu_aarch64_vm_pauth__aarch64.hpp
  cvs rdiff -u -r1.2 -r1.3 \
      pkgsrc/lang/openjdk8/patches/patch-hotspot_src_os__cpu_bsd__aarch64_vm_os__bsd__aarch64.cpp

-------------------------------------------------------------------
  Module Name:    pkgsrc
  Committed By:  tnn
  Date:          Mon Aug 15 12:23:06 UTC 2022

  Modified Files:
          pkgsrc/lang/openjdk11: Makefile distinfo
          pkgsrc/lang/openjdk8: Makefile distinfo
  Removed Files:
          pkgsrc/lang/openjdk11/patches: patch-make_common_NativeCompilation.gmk
              patch-make_lib_Awt2dLibraries.gmk
              patch-src_hotspot_cpu_arm_c1__LIRAssembler__arm.cpp
              patch-src_hotspot_cpu_arm_c1__LIRGenerator__arm.cpp
              patch-src_hotspot_os__cpu_bsd__arm_vm__version__bsd__arm__32.cpp
              patch-src_hotspot_os__cpu_bsd__zero_os__bsd__zero.cpp
              patch-src_java.desktop_share_native_libfontmanager_harfbuzz_hb-blob.cc
          pkgsrc/lang/openjdk8/patches:
              patch-hotspot_src_cpu_aarch64_vm_pauth__aarch64.hpp
              patch-make_common_MakeBase.gmk

  Log Message:
  openjdk*: Security & bugfix update for the long term support branches

  Upstream kindly merged many of the NetBSD-specific patches. Thanks! <3

  To generate a diff of this commit:
  cvs rdiff -u -r1.44 -r1.45 pkgsrc/lang/openjdk11/Makefile
  cvs rdiff -u -r1.34 -r1.35 pkgsrc/lang/openjdk11/distinfo
  cvs rdiff -u -r1.1 -r0 \
      pkgsrc/lang/openjdk11/patches/patch-make_common_NativeCompilation.gmk \
      pkgsrc/lang/openjdk11/patches/patch-make_lib_Awt2dLibraries.gmk \
      pkgsrc/lang/openjdk11/patches/patch-src_hotspot_cpu_arm_c1__LIRAssembler__arm.cpp \
      pkgsrc/lang/openjdk11/patches/patch-src_hotspot_cpu_arm_c1__LIRGenerator__arm.cpp \
      pkgsrc/lang/openjdk11/patches/patch-src_hotspot_os__cpu_bsd__arm_vm__version__bsd__arm__32.cpp \
      pkgsrc/lang/openjdk11/patches/patch-src_hotspot_os__cpu_bsd__zero_os__bsd__zero.cpp
  cvs rdiff -u -r1.2 -r0 \
      pkgsrc/lang/openjdk11/patches/patch-src_java.desktop_share_native_libfontmanager_harfbuzz_hb-blob.cc
  cvs rdiff -u -r1.111 -r1.112 pkgsrc/lang/openjdk8/Makefile
  cvs rdiff -u -r1.90 -r1.91 pkgsrc/lang/openjdk8/distinfo
  cvs rdiff -u -r1.1 -r0 \
      pkgsrc/lang/openjdk8/patches/patch-hotspot_src_cpu_aarch64_vm_pauth__aarch64.hpp
  cvs rdiff -u -r1.3 -r0 \
      pkgsrc/lang/openjdk8/patches/patch-make_common_MakeBase.gmk

(spz)

2022-08-28 13:08:03 UTC MAIN commitmail json YAML

doc: Updated sysutils/ruby-listen to 3.7.1

(taca)

2022-08-28 13:07:27 UTC MAIN commitmail json YAML

sysutils/ruby-listen: update to 3.7.1

3.7.1 (2022-01-13)

* Issue #548: fix error when renaming folder (#552) @ColinDKelley
* issue #550: fix README to document start rather than unpause (#551)
  @ColinDKelley
* Issue #543: Ignore emacs backup/swap files by default. (#546) @zw963

(taca)

2022-08-28 12:58:04 UTC MAIN commitmail json YAML

doc: Updated sysutils/capistrano to 3.17.1

(taca)

2022-08-28 12:57:33 UTC MAIN commitmail json YAML

sysutils/capistrano: update to 3.17.1

3.17.0 (2022-03-12)

New Features

* Add common Rails paths to suggested linked_dirs and linked_files (#2105)
  @gdurelle
* Add new default webpacker path to linked_dirs (#2084) @razum2um

Bug Fixes

* Add linked_dirs and linked_files to VariblesDoctor WHITELIST (#2103)
  @y-yagi

Housekeeping

* Switch from Travis to Circle CI (#2100) @mattbrictson
* Ensure rubocop can run under Ruby 3.1 (#2099) @mattbrictson
* Fix warnings and errors in cucumber feature tests (#2095) @mattbrictson

3.17.1 (2022-08-07)

Documentation

* Remove reference to the deprecated :scm variable (#2111) @elondaits

Housekeeping

* Switch cucumber tests to use https instead of git:// (#2112) @mattbrictson
* Install newer SSH client to fix CI for old Rubies (#2106) @mattbrictson

(taca)

2022-08-28 12:53:54 UTC MAIN commitmail json YAML

doc: Updated security/ruby-vault to 0.17.0

(taca)

2022-08-28 12:53:19 UTC MAIN commitmail json YAML

security/ruby-vault: update to 0.17.0

0.17.0 (2022-05-11)

IMPROVEMENTS

* Added MissingRequiredStateErr error type to refer to 412s returned by
  Vault 1.10 when the WAL index on the node does not match the index in the
  Server-Side Consistent Token.  This error type can be passed as a
  parameter to #with_retries, and will also be retried automatically when
  #with_retries is used with no parameters.

(taca)

2022-08-28 12:49:40 UTC MAIN commitmail json YAML

doc: Updated security/ruby-rex-text to 0.2.39

(taca)

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

security/ruby-rex-text: update to 0.2.39

0.2.37 (2021-09-16)

* Land #42, Update Ubuntu version & Ruby setup

0.2.38 (2022-06-29)

* Land #44, Fix rex-text split string crash

0.2.39 (2022-08-08)

* Land #47, Run ubuntu 22.04 in test matrix

(taca)

2022-08-28 12:45:16 UTC MAIN commitmail json YAML

doc: Updated security/ruby-rex-socket to 0.1.41

(taca)

2022-08-28 12:44:39 UTC MAIN commitmail json YAML

security/ruby-rex-socket: update to 0.1.41

0.1.35 (2022-04-05)

* Land #42, Add ruby 3.1.1 to test matrix

0.1.36 (2022-05-03)

* Land #45, Allow explicitly setting peer hostname

0.1.37 (2022-05-03)

* Land #46, fixes a bug caused by a missing require statement

0.1.38 (2022-05-03)

* Land #44, Ignore trailing commas in range walker

0.1.39 (2022-05-09)

* Land #48, Fix typo in ssl_tcp.rb Fixes #47

0.1.40 (2022-06-13)

* Fix typo in README.md

0.1.41 (2022-08-02)

* Land #50, Run ubuntu 22.04 in test matrix

(taca)

2022-08-28 12:39:01 UTC MAIN commitmail json YAML

doc: Updated security/ruby-rex-powershell to 0.1.96

(taca)

2022-08-28 12:38:41 UTC MAIN commitmail json YAML

security/ruby-rex-powershell: update to 0.1.96

0.1.95 (2022-02-14)

* Land #39, Fix upgrading sessions on Windows

0.1.96 (2022-04-07)

* Land #40, Add ruby 3.1.1 to test matrix

(taca)

2022-08-28 12:36:32 UTC MAIN commitmail json YAML

doc: Updated security/ruby-rex-mime to 0.1.7

(taca)

2022-08-28 12:36:11 UTC MAIN commitmail json YAML

security/ruby-rex-mime: update to 0.1.7

0.1.7 (2022-03-07)

* Land #2, Fix Multipart Boundary Fingerprint Issue

(taca)

2022-08-28 12:34:25 UTC MAIN commitmail json YAML

doc: Updated security/ruby-rex-exploitation to 0.1.35

(taca)

2022-08-28 12:33:50 UTC MAIN commitmail json YAML

security/ruby-rex-exploitation: update to 0.1.35

0.1.29 (2022-03-07)

* Land #30, Add 'no_proto' option to wget/curl/lwp-request command stagers

0.1.30 (2022-04-05)

* Land #30, Add 'no_proto' option to wget/curl/lwp-request command stagers

0.1.31 (2022-07-01)

* Land #32, Add ruby 3.1.1 to test matrix

* Land #34, CmdStagerTFTP: Set payload filename; raise if tftphost is not
  set

0.1.32 (2022-07-11)

* Land #35, add cmdstager tests

0.1.33 (2022-07-14)

* Land #33, add FtpHttp cmdstager

0.1.34 (2022-07-18)

* Land #37, Update spec tests

0.1.35 (2022-7-18)

* Land #38, Add missing Rex::Exploitation::ObfuscateJS tests

(taca)

2022-08-28 12:23:17 UTC MAIN commitmail json YAML

doc: Updated security/ruby-rex-core to 0.1.28

(taca)

2022-08-28 12:22:40 UTC MAIN commitmail json YAML

security/ruby-rex-core: update to 0.1.28

0.1.21 (2022-01-25)

* Land #21, Apply rubocop changes to socket_abstraction

0.1.22 (2022-01-26)

* Land #23, GitHub actions for running tests

0.1.23 (2022-01-26)

* Land #24, move verify.yml to workflows folder

0.1.24 (2022-01-26)

* Land #24, move verify.yml to workflows folder

0.1.25 (2022-01-26)

* Land #22, cherry pick of stream_server cleanup

0.1.26 (2022-02-15)

* Land #20, Fix metasploit-framework#15968 (Multiple Socket Abstraction
  Bugs)

0.1.27 (2022-03-24)

* Land #25, Stop refs being cloned or duped

0.1.28 (2022-04-05)

* Land #26, Rex::Compat: open_browser: Prepend 'file://' to file URLs for
  Android

(taca)

2022-08-28 11:55:05 UTC MAIN commitmail json YAML

doc: Updated devel/hs-primitive-extras to 0.10.1.5

(mef)

2022-08-28 11:54:49 UTC MAIN commitmail json YAML

(devel/hs-primitive-extras) Updated to 0.10.1.5, ChangeLog unknown

(mef)

2022-08-28 08:15:06 UTC pkgsrc-2022Q2 commitmail json YAML

2022-08-28 08:13:40 UTC pkgsrc-2022Q2 commitmail json YAML

Pullup tickets #6664 #6669 - requested by taca
net/samba4: security update
databases/ldb: dependency update

Update net/samba4 to 4.15.9 from samba-4.15.6 by patch,
since HEAD is on a later minor.
Update databases/ldb to 2.4.4 from 2.4.2 because samba-4.15.9 requires it.

(spz)

2022-08-28 06:06:01 UTC MAIN commitmail json YAML

doc: Updated security/ruby-chef-vault to 4.1.10

(taca)

2022-08-28 06:05:39 UTC MAIN commitmail json YAML

security/ruby-chef-vault: update to 4.1.10

4.1.6 (2022-01-07)

* To add a workflow for Simplecov Report

4.1.7 (2022-01-17)

* Add workstation team as code-owner
* Avoid loading all of chef-vault unless we're running the plugin (#385)

4.1.8 (2022-04-10)

* updated the HTTPServerException to HTTPClientException
* Merge pull request #391 from chef/nikhil/updating-ruby-3.0/3.1

4.1.9 (2022-04-12)

* Update chef-utils requirement from = 16.6.14 to 17.10.0 #394
  (dependabot[bot])
* Update pry-stack_explorer requirement from ~> 0.4.0 to ~> 0.6.1 #395
  (dependabot[bot])

4.1.10 (2022-04-18)

Merged Pull Requests

* To integrate test coverage % report in PR creation or merge #387
  (snehaldwivedi)

(taca)

2022-08-28 05:54:52 UTC MAIN commitmail json YAML

doc: Updated security/ruby-oauth to 1.0.0

(taca)

2022-08-28 05:54:26 UTC MAIN commitmail json YAML

security/ruby-oauth: update to 1.0.0

1.0.0 (2022-08-23)

The first "Stable Release" in terms of Semantic Versioning.

The oldest supported Ruby, currently 2.7, will be dropped no later than
April 2025, and a new major version of this gem will be released to drop
Ruby 2.7 support (and possibly other stuff).

(taca)

2022-08-28 05:52:47 UTC MAIN commitmail json YAML

doc: Updated security/ruby-openssl-cmac to 2.0.2

(taca)

2022-08-28 05:52:22 UTC MAIN commitmail json YAML

security/ruby-openssl-cmac: update to 2.0.2

2.0.2 (2022-07-29)

* Fix calculation with openss3

(taca)

2022-08-28 05:51:06 UTC MAIN commitmail json YAML

doc: Updated security/ruby-openssl-ccm to 1.2.3

(taca)

2022-08-28 05:50:37 UTC MAIN commitmail json YAML

security/ruby-openssl-ccm: update to 1.2.3

1.2.3 (2022-07-29)

* Fix calculation with openssl3

(taca)

2022-08-28 05:39:41 UTC MAIN commitmail json YAML

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

(taca)

2022-08-28 05:39:05 UTC MAIN commitmail json YAML

security/ruby-metasploit-payloads: really update to 2.0.94

Reallu update to 2.0.94 not 2.0.93.

(taca)

2022-08-28 05:37:29 UTC MAIN commitmail json YAML

security/ruby-metasploit-payloads: update to 2.0.94

2.0.75 (2022-02-23)

* Fix race condition when reading subprocess results
* Fail on invalid impersonation levels

2.0.76 (2022-03-01)

*  Land #537, Fix race condition in pymet

2.0.77 (2022-03-01)

* Update mimikatz to 61cd1b9168

2.0.78 (2022-03-25)

* Build and ship debug builds for windows meterpreter
* Don't modify strings you don't own
* add AMD64 in get_system_arch
* add case insensivity
* Land #555, add AMD64 arch in get_system_arch()

2.0.79 (2022-04-01)

* Fix PHP Meterpreter crashing when trying to close a resource
* Land #553, Build and ship debug builds for windows meterpreter

2.0.80 (2022-04-01)

*  Land #560, add build debug version to r7_all

2.0.81 (2022-04-05)

* Land #558, PHP Meterpreter v8.x Support - ensure already closed channels
  are not reclosed

2.0.82 (2022-04-12)

* Fix AF_INET constants in PHP Meterpreter
*  Land #557, Add debug logfile to Python Meterpreter

2.0.83 (2022-04-12)

*  Land #559, Add logging prerequisites to PHP Meterpreter

2.0.84 (2022-04-26)

* Update the kiwi extension
* Various changes required for cross compilation
* Land #564, Remove unused extension network pug

2.0.85 (2022-04-29)

* Add REQUEST_IGNORE_BATTERY_OPTIMIZATIONS android permission
* Land #563, Add logging to file capabilities to windows Meterpreter

2.0.86 (2022-05-03)

*  Land #566, Add REQUEST_IGNORE_BATTERY_OPTIMIZATIONS android permission

2.0.87 (2022-05-03)

* Land #565, update mimikatz (the kiwi extension)

2.0.88 (2022-05-04)

* Fix order of closing channels
* Update to include ReflectiveDllInjection#12
* Land #562, Fix AF_INET constants in PHP Meterpreter

2.0.89 (2022-05-05)

* Land #572, Fix argument order for array join

2.0.90 (2022-05-06)

* Land #570, Fix order of closing channels

2.0.91 (2022-05-11)

* Land #574, Remove logging artifacts that made their way into the release
  build

2.0.92 (2022-05-16)

* Land #575, fix android meterpreter > play audio command

2.0.93 (2022-05-17)

* Land #571, Update ReflectiveDLLInjection to include #12 and remove a few
  RWX memory sections.

2.0.94 (2022-06-23)

* Land #577, Add 6th getsystem technique EfsPotato

(taca)

2022-08-28 05:19:47 UTC MAIN commitmail json YAML

doc: Updated security/ruby-metasploit-model to 4.0.6

(taca)

2022-08-28 05:19:19 UTC MAIN commitmail json YAML

security/ruby-metasploit-model: update to 4.0.6

4.0.4 (20220-4-07)

* Add ruby 3.1.1 to test matrix

4.0.5 (2022-06-17)

* Add login status enum for incorrect public part

4.0.6 (2022-08-02)

* Run ubuntu 22.04 in test matrix

(taca)

2022-08-28 05:16:02 UTC MAIN commitmail json YAML

doc: Updated security/ruby-metasploit-concern to 4.0.4

(taca)

2022-08-28 05:15:32 UTC MAIN commitmail json YAML

security/ruby-metasploit-concern: update to 4.0.4

4.0.4 (2022-04-05)

* Add ruby 3.1.1 to test matrix.

(taca)

2022-08-28 05:14:04 UTC MAIN commitmail json YAML

doc: Updated security/ruby-bcrypt to 3.1.18

(taca)

2022-08-28 05:13:34 UTC MAIN commitmail json YAML

security/ruby-bcrypt: update to 3.1.18

3.1.17 (2022-05-14)

* Unlock GVL when calculating hashes and salts [GH #260]
* Fix compilation warnings in `ext/mri/bcrypt_ext.c` [GH #261]

3.1.18 (2022-05-16)

* Fix regex in validators to use \A and \z instead of ^ and $ [GH #121]
* Truncate secrets greater than 72 bytes in hash_secret [GH #255]
* Assorted test and doc improvements

(taca)

2022-08-28 05:09:33 UTC MAIN commitmail json YAML

doc: Updated security/ruby-airbrussh to 1.4.1

(taca)

2022-08-28 05:09:07 UTC MAIN commitmail json YAML

security/ruby-airbrussh: update to 1.4.1

1.4.1 (2022-07-23)

This is a gem housekeeping release. No user-facing changes.

Housekeeping

* Rename default branch to main (#140) @mattbrictson
* Include link to full diff in generated release notes (#144) @mattbrictson
* Replace Travis with CircleCI and add Ruby 3.0 and 3.1 to CI matrix (#138)
  @mattbrictson
* Upgrade to modern version of coveralls gem (#143) @mattbrictson
* Update appveyor to use a more modern version of Ruby (2.6) (#142)
  @mattbrictson
* Fix build failures on Ruby < 2.5 (#141) @mattbrictson
* Simplify release-drafter config (#139) @mattbrictson

(taca)

2022-08-28 05:06:45 UTC MAIN commitmail json YAML

doc: Updated print/ruby-pdf-reader to 2.10.0

(taca)

2022-08-28 05:06:07 UTC MAIN commitmail json YAML

print/ruby-pdf-reader: update to 2.10.0

2.9.2 (2022-02-20)

* Fix PDF::Reader::ObjectHash#page_references to return an Array of
  PDF::Reader::Reference (http://github.com/yob/pdf-reader/pull/444)

2.10.0 (2022-05-12)

* Various bug fixes
* Expanded sorbet type annotations

(taca)

2022-08-28 04:59:08 UTC MAIN commitmail json YAML

doc: Updated net/ruby-xdr to 3.0.3

(taca)

2022-08-28 04:58:40 UTC MAIN commitmail json YAML

net/ruby-xdr: update to 3.0.3

pkgsrc change: relax dependency to Rail's version.

3.0.3 (2022-02-18)

Bug Fixes

* make XDR::Option write empty strings as values (#15) (ccab229)

(taca)

2022-08-28 04:35:49 UTC MAIN commitmail json YAML

doc: Updated net/ruby-train-winrm to 0.2.13

(taca)

2022-08-28 04:35:24 UTC MAIN commitmail json YAML

net/ruby-train-winrm: update to 0.2.13

0.2.13 (2022-02-25)

Merged Pull Requests

* CFINSPEC-2 Added options to allow SSL connection with certificates #34
  (Nik08)

(taca)

2022-08-28 04:33:53 UTC MAIN commitmail json YAML

doc: Updated net/ruby-ruby_smb to 3.1.7

(taca)

2022-08-28 04:33:32 UTC MAIN commitmail json YAML

net/ruby-ruby_smb: update to 3.1.7

No Changes nor release note and there are too many changes from 3.0.3.
Please refer: <https://github.com/rapid7/ruby_smb/compare/v3.0.3...v3.1.7>.

(taca)

2022-08-28 04:28:51 UTC MAIN commitmail json YAML

doc: Updated net/ruby-recog to 3.0.2

(taca)