pkgsrc/net
wiz 7f1905d8ce rsync: update to 3.2.4.
# NEWS for rsync 3.2.4 (15 Apr 2022)

## Changes in this version:

### BEHAVIOR CHANGES:

 - A new form of arg protection was added that works similarly to the older
   [`--protect-args`](rsync.1#opt) (`-s`) option but in a way that avoids
   breaking things like rrsync (the restricted rsync script): rsync now uses
   backslash escaping for sending "shell-active" characters to the remote
   shell. This includes spaces, so fetching a remote file via a simple quoted
   filename value now works by default without any extra quoting:

   ```shell
       rsync -aiv host:'a simple file.pdf' .
   ```

   Wildcards are not escaped in filename args, but they are escaped in options
   like the [`--suffix`](rsync.1#opt) and [`--usermap`](rsync.1#opt) values.
   If your rsync script depends on the old arg-splitting behavior, either run
   it with the [`--old-args`](rsync.1#opt) option or `export RSYNC_OLD_ARGS=1`
   in the script's environment.  See also the [ADVANCED USAGE](rsync.1#)
   section of rsync's manpage for how to use a more modern arg style.

 - A long-standing bug was preventing rsync from figuring out the current
   locale's decimal point character, which made rsync always output numbers
   using the "C" locale.  Since this is now fixed in 3.2.4, a script that
   parses rsync's decimal numbers (e.g. from the verbose footer) may want to
   setup the environment in a way that the output continues to be in the C
   locale.  For instance, one of the following should work fine:

   ```shell
       export LC_ALL=C.UTF-8
   ```

   or if iconv translations are needed:

   ```shell
       if [ "${LC_ALL:-}" ]; then
           export LANG="$LC_ALL"
           export LC_CTYPE="$LC_ALL"
           unset LC_ALL
       fi
       export LC_NUMERIC=C.UTF-8
   ```

### SECURITY FIXES:

 - A fix for CVE-2018-25032 in the bundled zlib (memory corruption issue).

### BUG FIXES:

 - Fixed a bug with [`--inplace`](rsync.1#opt) + [`--sparse`](rsync.1#opt) (and
   a lack of [`--whole-file`](rsync.1#opt)) where the destination file could
   get reconstructed with bogus data.  Since the bug can also be avoided by
   using (the seemingly redundant) [`--no-W`](rsync.1#opt) on the receiving
   side, the latest rsync will now send `--no-W` to a remote receiver when this
   option combination occurs.  If your client rsync is not new enough to do
   this for you (or if you're just paranoid), you can manually specify `--no-W
   -M--no-W` (when not using [`--whole-file`](rsync.1#opt)) to make sure the
   bug is avoided.

 - Fixed a bug with [`--mkpath`](rsync.1#opt) if a single-file copy specifies
   an existing destination dir with a non-existing destination filename.

 - Fixed `--update -vv` to output "is uptodate" instead of "is newer" messages
   for files that are being skipped due to an identical modify time.  (This was
   a new output quirk in 3.2.3.)

 - When doing an append transfer, the sending side's file must not get shorter
   or it is skipped. Fixes a crash that could occur when the size changes to 0
   in the middle of the send negotiations.

 - When dealing with special files (see [`--specials`](rsync.1#opt)) in an
   alt-dest hierarchy, rsync now checks the non-permission mode bits to ensure
   that the 2 special files are really the same before hard-linking them
   together.

 - Fixed a bug where [`--delay-updates`](rsync.1#opt) with stale partial data
   could cause a file to fail to update.

 - Fixed a few places that would output an INFO message with
   [`--info=NAME`](rsync.1#opt) that should only have been output given
   [`--verbose`](rsync.1#opt) or [`--itemize-changes`](rsync.1#opt).

 - Avoid a weird failure if you run a local copy with a (useless)
   [`--rsh`](rsync.1#opt) option that contains a `V` in the command.

 - Fixed a long-standing compression bug where the compression level of the
   first file transferred affected the level for all future files.  Also, the
   per-file compression skipping has apparently never worked, so it is now
   documented as being ineffective.

 - Fixed a truncate error when a `--write-devices` copy wrote a file onto a
   device that was shorter than the device.

 - Made `--write-devices` support both `--checksum` and `--no-whole-file` when
   copying to a device.

 - Improved how the [`--stop-at`](rsync.1#opt), [`--stop-after`](rsync.1#opt),
   and (the deprecated) [`--time-limit`](rsync.1#opt) options check to see if
   the allowed time is over, which should make rsync exit more consistently.

 - Tweak --progress to display "`??:??:??`" when the time-remaining value is so
   large as to be meaningless.

 - Silence some chmod warnings about symlinks when it looks like we have a
   function to set their permissions but they can't really be set.

 - Fixed a potential issue in git-set-file-times when handling commits with
   high-bit characters in the description & when handling a description that
   might mimick the git raw-commit deliniators.  (See the support dir.)

 - The bundled systemd/rsync.service file now includes `Restart=on-failure`.

### ENHANCEMENTS:

 - Use openssl's `-verify_hostname` option in the rsync-ssl script.

 - Added extra info to the "FILENAME exists" output of
   [`--ignore-existing`](rsync.1#opt) when [`--info=skip2`](rsync.1#opt) is
   used.  The skip message becomes "FILENAME exists (INFO)" where the INFO is
   one of "type change", "sum change" (requires [`--checksum`](rsync.1#opt)),
   "file change" (based on the quick check), "attr change", or "uptodate".
   Prior versions only supported `--info=skip1`.

 - Added the [`--fsync`](rsync.1#opt) option (promoted from the patches repo).

 - Added the [`--copy-devices`](rsync.1#opt) option.  Compared to the
   historical version from the rsync-patches repo, this version: properly
   handles `--checksum`; fixes a truncation bug when doing an `--inplace` copy
   onto a longer file; fixes several bugs in the `--itemize` output; and only
   the sending side needs the enhanced rsync for the copy to work.

 - Reduced memory usage for an incremental transfer that has a bunch of small
   directories.

 - The rsync daemon can now handle a client address with an implied "%scope"
   suffix.

 - Added support for [`--atimes`](rsync.1#opt) on macOS and fixed a bug where
   it wouldn't work without [`--times`](rsync.1#opt).

 - Rsync can now update the xattrs on a read-only file when your user can
   temporarily add user-write permission to the file. (It always worked for a
   root transfer.)

 - Rsync can now work around an [`--inplace`](rsync.1#opt) update of a file
   that is being refused due to the Linux fs.protected_regular sysctl setting.

 - When [`--chown`](rsync.1#opt), [`--usermap`](rsync.1#opt), or
   [`--groupmap`](rsync.1#opt) is specified, rsync now makes sure that the
   appropriate [`--owner`](rsync.1#opt) and/or [`--group`](rsync.1#opt) options
   are enabled.

 - Added the [`--info=NONREG`](rsync.1#opt) setting to control if rsync should
   warn about non-regular files in the transfer.  This is enabled by default
   (keeping the behavior the same as before), so specifying `--info=nonreg0`
   can be used to turn the warnings off.

 - An optional asm optimization for the rolling checksum from Shark64. Enable
   it with `./configure --enable-roll-asm`.

 - Using `--debug=FILTER` now outputs a caution message if a filter rule
   has trailing whitespace.

 - Transformed rrsync into a python script with improvements:
   - Security has been beefed up.
   - The known rsync options were updated to include recent additions.
   - Make rrsync reject [`--copy-links`](rsync.1#opt) (`-L`),
     [`--copy-dirlinks`](rsync.1#opt) (`-k`), &
     [`--keep-dirlinks`](rsync.1#opt) (`-K`) by default to make it harder to
     exploit any out-of-subdir symlinks.
   - A new rrsync option of [`-munge`](rrsync.1#opt) tells rrsync to always
     enable rsync's [`--munge-links`](rsync.1#opt) option on the server side.
   - A new rrsync option of [`-no-lock`](rrsync.1#opt) disables a new
     single-use locking idiom that is the default when [`-ro`](rrsync.1#opt) is
     not used (useful with [`-munge`](rrsync.1#opt)).
   - A new rrsync option of [`-no-del`](rrsync.1#opt) disables all `--remove*`
     and `--delete*` rsync options on the server side.
   - The log format has been tweaked slightly to add seconds to the timestamp
     and to output the command executed as a tuple (making the args clearer).
   - An rrsync.1 manpage was added (in the support dir with rrsync).

 - Added options to the lsh script to facilitate rrsync testing. (See the
   support dir.)

 - Transformed the atomic-rsync script into a python script and added the
   ability to ignore one or more non-zero exit codes.  By default, it now
   ignores code 24, the file-vanished exit code. (See the support dir.)

 - Transformed the munge-symlinks script into python. (See the support dir.)

 - Improved the rsync-no-vanished script to not join stdout & stderr together.
   (See the support dir.)

 - Work around a glibc bug where lchmod() breaks in a chroot w/o /proc mounted.

 - Try to support a client that sent a remote rsync a wacko stderr file handle
   (such as an older File::RsyncP perl library used by BackupPC).

 - Lots of manpage improvements, including better HTML versions.

### PACKAGING RELATED:

 - Give configure the `--with-rrsync` option if you want `make install` to
   install the (now python3) rrsync script and its new manpage.

 - If the rrsync script is installed, its package should be changed to depend
   on python3 and the (suggested but not mandatory) python3 braceexpand lib.

 - When creating a package from a non-release version (w/o a git checkout), the
   packager can elect to create git-version.h and define RSYNC_GITVER to the
   string they want `--version` to output.  (The file is still auto-generated
   using the output of `git describe` when building inside a non-shallow git
   checkout, though.)

 - Renamed configure's `--enable-simd` option to `--enable-roll-simd` and added
   the option `--enable-roll-asm` to use the new asm version of the code.  Both
   are x86_64/amd64 only.

 - Renamed configure's `--enable-asm` option to `--enable-md5-asm` to avoid
   confusion with the asm option for the rolling checksum.  It is also honored
   even when openssl crypto is in use.  This allows: normal MD4 & MD5, normal
   MD4 + asm MD5, openssl MD4 & MD5, or openssl MD4 + asm MD5 depending on the
   configure options selected.

 - Made SIMD & asm configure checks default to "no" on non-Linux hosts due to
   various reports of problems on NetBSD & macOS hosts.  These were also
   tweaked to allow enabling the feature on a host_cpu of amd64 (was only
   allowed on x86_64 before).

 - Fixed configure to not fail at the SIMD check when cross-compiling.

 - Improved the IPv6 determination in configure.

 - Compile the C files with `-pedantic-errors` (when possible) so that we will
   get warned if a static initialization overflows in the future (among other
   things).

 - When linking with an external zlib, rsync renames its `read_buf()` function
   to `read_buf_()` to avoid a symbol clash on an unpatched zlib.

 - Added a SECURITY.md file.
2022-04-20 20:09:55 +00:00
..
3proxy net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
6tunnel net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
adns net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
aget net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
aiccu revbump for icu and libffi 2021-12-08 16:01:42 +00:00
amazon-ecs-cli Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
amule revbump for icu and libffi 2021-12-08 16:01:42 +00:00
aoe-vblade net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
apollo net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
argus net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
aria2 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
arp-scan net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
arpd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
arping net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
arpwatch net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
asuka net/asuka: import package 2022-02-10 13:55:43 +00:00
autonet net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
avahi revbump for icu and libffi 2021-12-08 16:01:42 +00:00
avahi-ui revbump for icu and libffi 2021-12-08 16:01:42 +00:00
awhois net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
balance net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
bandcamp-dl python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
barnyard net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
batchftp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
bbk_cli revbump for icu and libffi 2021-12-08 16:01:42 +00:00
beanstalkd beanstalkd: remove -Werror flag, fixes build on NetBSD HEAD 2022-04-19 07:13:19 +00:00
bftpd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
bind911 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
bind916 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
bird bird: incompatible with MKPIE 2021-12-27 09:53:49 +00:00
bird6
bmon net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
bombadillo Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
bounce net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
bridged net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
bsddip net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
btget revbump for icu and libffi 2021-12-08 16:01:42 +00:00
btpd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
bwm-ng net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
bwping net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
cacti revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
cacti-spine net/cacti-spine: MySQL 8.0.0 no longer supports my_bool type 2022-02-20 20:43:31 +00:00
calypso calypso: convert to egg.mk 2022-01-10 20:21:37 +00:00
castor castor: bump PKGREVISION for icon installation 2022-01-28 08:24:56 +00:00
cclive *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
ccrtp revbump for icu and libffi 2021-12-08 16:01:42 +00:00
cdpd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
chksniff net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
choparp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
choqok revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
chrony chrony: update to 4.2 2022-04-12 14:19:55 +00:00
cia net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
cidr net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
cisco-mibs net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
citrix_ica Add BLAKE2s for Linux/i386 distfile 2021-11-16 08:32:14 +00:00
clisp-rawsock net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
clive net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
cmu-dhcpd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
cntlm net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
coda net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
coherence *: use versioned_dependencies for py-twisted 2022-02-13 08:53:42 +00:00
coilmq *: set USE_PKG_RESOURCES for more packages 2022-01-05 20:47:34 +00:00
connect net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
corebird revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
corkscrew net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
couriertcpd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
coursera-dl python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
csup net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dante net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
daq net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
darkstat net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
DarwinStreamingServer net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dbip-asn-lite dbip-asn-lite: update to 2022.04. 2022-04-02 15:26:50 +00:00
dbip-city-lite dbip-city-lite: update to 2022.04. 2022-04-02 15:28:17 +00:00
dbip-country-lite dbip-country-lite: update to 2022.04. 2022-04-02 15:29:57 +00:00
dc_gui2 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
dctc revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ddclient net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
deforaos-vncviewer revbump for icu and libffi 2021-12-08 16:01:42 +00:00
delegate net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dgd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dhcpcd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dhcpcd-dbus net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dhcpcd-gtk revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dhcpcd-icons net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dhcpcd-qt revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
dhcpd-pools net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dhid net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dhisd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
djbdns Reorder lines via "make makesum". NFCI. 2021-11-15 20:36:26 +00:00
djbdns-run
djbdnscurve6 Update to 42. From the changelog: 2022-01-30 08:44:39 +00:00
dlint net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dnc net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dnscap net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dnscheck net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dnscrypt-proxy2 Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
dnsdist revbump for devel/protobuf 2022-04-03 18:50:16 +00:00
dnsmasq net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dnstop net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dnstracer net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
docsis net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
doh revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dq Add dq, a recursive DNS/DNSCurve server. This package contains: 2022-01-27 15:31:09 +00:00
driftnet net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
drill net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dtcp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dtcpclient net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dtorrent net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
dynipclient net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
echoping net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ed2k-gtk-gui revbump for icu and libffi 2021-12-08 16:01:42 +00:00
edonkey2k net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
enet net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
entropy net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
erlang-esip net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
erlang-idna net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
erlang-stun net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
erlang-xmpp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ether2dns net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
etherape revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ettercap revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ettercap-gtk revbump for icu and libffi 2021-12-08 16:01:42 +00:00
exabgp exabgp: update to 4.2.17. 2022-01-10 18:17:36 +00:00
ez-ipupdate net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
fair-identd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
fastd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
fd-proxy Add fd-proxy, glue for making a TCP proxy using ucspi-tcp tools. 2021-11-25 08:18:18 +00:00
fehqlibs net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
fetch
filezilla revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
firewalk net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
flickcurl revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
flodo net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
flow-tools net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
fmirror net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
fpdns net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
fping net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
freeDiameter revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
freenet-tools net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
freeradius freeradius: tweak list generation code examples (NFC) 2022-04-12 01:02:47 +00:00
freeradius-freetds revbump for icu and libffi 2021-12-08 16:01:42 +00:00
freeradius-iodbc
freeradius-krb5 freeradius: updated to 3.0.25 2021-11-12 12:27:38 +00:00
freeradius-ldap
freeradius-memcached
freeradius-mysql freeradius: updated to 3.0.25 2021-11-12 12:27:38 +00:00
freeradius-perl
freeradius-pgsql
freeradius-python
freeradius-rest revbump for icu and libffi 2021-12-08 16:01:42 +00:00
freeradius-sqlite3 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
freeradius-unixodbc
freeradius-yubikey
freerdp2 {f,h,l,n,p}*/*: revbump(1) for libsndfile 2022-03-28 10:56:15 +00:00
frr net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
fstrm net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ftplibpp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ftpproxy net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
fwknop fwknop: let the RC script work unprivileged 2021-11-07 18:37:02 +00:00
gallery-dl gallery-dl: Update to 1.20.3 2022-02-05 12:00:34 +00:00
GeoIP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
Geomyidae net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
get-flash-videos net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
get_iplayer get_iplayer: update to 3.29 2022-04-10 15:16:09 +00:00
gethost net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
gh Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
gift net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
gift-fasttrack net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
gift-gnutella revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gift-openft net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
giftcurs revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gini net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
gitso revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gkrellm-multiping revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gkrellm-snmp revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gkrellm-wireless revbump for icu and libffi 2021-12-08 16:01:42 +00:00
glib-networking revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnapfetch net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
gnet revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnet1 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnetcat net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
gnome-nettool revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnome-online-accounts revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gnome-vfs-smb revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gnugk net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
go-dnstap Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
go-net Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
go-websocket Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
gofish net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
gopher net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
grilo revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
grilo-plugins revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
grive2 *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
grpc revbump for devel/protobuf 2022-04-03 18:50:16 +00:00
gsnmp revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gssdp revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gssdp12 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gst-plugins0.10-mms revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gst-plugins0.10-rtmp revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gst-plugins0.10-soup revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gst-plugins1-libnice revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gst-plugins1-mms *: update gstreamer1 and plugins and related packages to 1.18.5 2021-11-15 22:01:15 +00:00
gst-plugins1-rtmp gst-plugins1: Update to 1.20.1 2022-04-18 12:36:04 +00:00
gst-plugins1-soup gst-plugins1: Update to 1.20.1 2022-04-18 12:36:04 +00:00
gst-rtsp-server revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gt-itm net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
gtk-gnutella revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gtk-vnc revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gtk_wicontrol net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
guacamole-server {f,h,l,n,p}*/*: revbump(1) for libsndfile 2022-03-28 10:56:15 +00:00
gunison Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
gupnp revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gupnp-av revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gupnp-dlna revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gupnp-igd revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gupnp-tools revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gupnp12 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gvproxy gvproxy: update to 0.3.0, fix build with Go 1.18 2022-04-18 18:24:25 +00:00
haproxy haproxy: updated to 2.5.5 2022-04-05 19:08:11 +00:00
hdl-dump net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
hercules4sdl-telnet net/hercules4sdl-telnet: add missing patch file. 2022-01-19 20:15:10 +00:00
hesiod net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
hf6to4
hlfl net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
hoogle net/hoogle: Link hoogle with static Haskell libraries 2022-02-26 07:13:07 +00:00
host net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
howl net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
hping net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
hping3 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
hs-connection Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-iproute Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-mime-types Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-network Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-network-bsd Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-network-byte-order Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-network-info Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-network-uri Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-resolv Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-simple-sendfile Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-socks Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-uri-encode Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
httping net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
httpstat net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
httptunnel net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
hub Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
iana-etc net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
icinga-base net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
icinga2 *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
icingaweb2 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
icsi-finger net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
iftop net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
IglooFTP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
inadyn net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
inetutils net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
iodine net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ipcalc net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ipcheck net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
iperf2 iperf2: Add bug report URL 2022-03-13 14:38:10 +00:00
iperf3 iperf3: updated to 3.11 2022-02-01 07:39:34 +00:00
ipgrab net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
iplog net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ipv6calc net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ipw net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
irrd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
irrtoolset5 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
isc-dhclient4
isc-dhcp4 isc-dhcp*: SunOS needs libnsl. 2022-03-31 09:50:54 +00:00
isc-dhcpd4
isc-dhcrelay4
ishell net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
isic net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
istgt net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
jftpgw net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
jigdo revbump for icu and libffi 2021-12-08 16:01:42 +00:00
jumpgate net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
jwhois net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
kdenetwork-filesharing revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
kdenetwork-strigi-analyzers revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
kdnssd revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
kdsoap revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
kget revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
kismet net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
kmldonkey revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
knewstuff revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
knock net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
knot knot: Update to 3.1.4 2021-12-17 15:15:58 +00:00
kopete revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
kppp revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
krdc revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
krfb revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ktorrent revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
kubectl Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
kxmlrpcclient revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
lagrange {f,h,l,n,p}*/*: revbump(1) for libsndfile 2022-03-28 10:56:15 +00:00
lambdamoo net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
lambdamoo-core net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
lambdamoo-doc net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
latd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ldns Update to ldns version 1.8.0. 2021-11-26 23:52:34 +00:00
lft net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
lftp revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libares net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libasr net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libasyncns net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libbind net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libcares libcares: update to 1.18.1. 2021-11-01 09:57:53 +00:00
libcmis revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
libdlna net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libdmapsharing3 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
libdnet net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libexosip libexosip: fix libosip dependency 2022-04-17 05:25:35 +00:00
libfetch libfetch: Only enable IPv6 on supported systems. Needed on UnixWare. 2021-12-26 10:24:22 +00:00
libfilezilla libfilezilla: add upstream bug report URL 2022-02-07 10:53:52 +00:00
libgdata revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
libgdata0.6 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
libIDL revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libiscsi net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libktorrent revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
liblive liblive: Fix whitespace issue when linking. 2022-03-24 19:36:29 +00:00
libmicrodns libmicrodns: needs -lsocket on SunOS 2022-04-12 11:50:23 +00:00
libmms net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libnice revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
libnids revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libnipper net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libnpupnp revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libpcap libpcap: updated to 1.10.1 2021-11-16 16:18:48 +00:00
libquic net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libquvi revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libquvi-scripts net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libradius net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
librsync net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libslirp revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libsoup revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
libsscript net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libtelnet net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libtorrent net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libtorrent-rasterbar libtorrent-rasterbar: bump buildlink 2022-04-19 16:34:41 +00:00
libtrace revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libupnp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
libvncserver revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libzrtpcpp revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
linc revbump for icu and libffi 2021-12-08 16:01:42 +00:00
lldpd revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
llnlxdir net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
llnlxftp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
lopster net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
lua-copas net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
lua-socket net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
mangos mangos: import 3.4.1 2022-04-20 10:10:59 +00:00
maradns net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
mate-user-share revbump for icu and libffi 2021-12-08 16:01:42 +00:00
mbrowse revbump for icu and libffi 2021-12-08 16:01:42 +00:00
mcast-tools net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
md-whois net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
mDNSResponder net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
mDNSResponder-nss net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
megatools revbump for icu and libffi 2021-12-08 16:01:42 +00:00
microdc2 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
mikutter ruby-diva: does not support ruby 2.6, mark it as such 2022-03-27 06:45:51 +00:00
mikutter-plugins-twitter ruby-diva: does not support ruby 2.6, mark it as such 2022-03-27 06:45:51 +00:00
mimms *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
minitube revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
miniupnpc miniupnpc: Update to 2.2.3 2022-04-11 10:04:38 +00:00
miniupnpd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
miredo net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
mirror net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
miruo net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
mitmproxy mitmproxy: convert to egg.mk 2022-01-10 22:43:41 +00:00
mkvserver_mk2 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
mldonkey net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
mldonkey-gui revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
modpcap net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
mono-nat revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
monotorrent revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
mosh revbump for devel/protobuf 2022-04-03 18:50:16 +00:00
mosquitto mosquitto: add checksum for 'add missing patch' commit 2022-02-03 08:02:11 +00:00
mouse-pppoe net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
mping net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
mrstat net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
mrt net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
mrtg net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
msdl net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
mtftpd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
mtr mtr: update to 0.95. 2022-01-16 22:46:12 +00:00
mydns-mysql
mydns-pgsql net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-base net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-nrpe net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-nsca net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-plugin-dnsmaster net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-plugin-dnsrbl net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-plugin-dotpid nagios-plugin-dotpid: regen distinfo for currently used hashes 2022-02-03 08:03:58 +00:00
nagios-plugin-dumpdates net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-plugin-fstab net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-plugin-gfbricks net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-plugin-ldap
nagios-plugin-milter net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-plugin-mysql
nagios-plugin-mysqlslave net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-plugin-pgsql
nagios-plugin-printer net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-plugin-radius
nagios-plugin-raidctl net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-plugin-snmp
nagios-plugin-snmp_environment net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-plugin-spamd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-plugin-syncrepl net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nagios-plugins nagios-plugins: Fix building on NetBSD-current. 2022-04-02 10:35:35 +00:00
nagstamon revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
nam net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nanomsg nanomsg: updated to 1.1.5 2021-12-28 12:04:09 +00:00
nanomsgxx nanomsgxx: fix building 2021-12-28 11:56:52 +00:00
nanotodon revbump for icu and libffi 2021-12-08 16:01:42 +00:00
nap net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
napshare net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nasd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nats-server Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
nbtscan net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ncdc revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ncftp3 ncftp3: disable precompiled headers for GCC 2021-11-18 14:07:20 +00:00
ncgopher revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ndiff *: convert to egg.mk 2022-01-10 23:46:48 +00:00
ndpi ndpi:updated to 4.2 2022-03-28 19:24:14 +00:00
nemesis net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
net-snmp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
net6 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
netatalk3 net/netatalk3 update to 3.1.13 2022-03-22 08:25:37 +00:00
netatalk22 Backgrond printing works again: 2022-01-28 21:18:18 +00:00
netbsd-iscsi-initiator
netbsd-iscsi-target
netcat net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
netcat-openbsd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
netcat6 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
netdisco net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
netgroup net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
netname net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
netpipes net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
netwake net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nfdump revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ngrep net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nicotine-plus nicotine-plus: convert to egg.mk 2022-01-10 07:49:44 +00:00
nicovideo-dl net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nidentd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nipper net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nload net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nmap nmap: Disable liblinear option on NetBSD, per icb discussion. 2021-11-24 14:17:58 +00:00
nng net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nocol net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nprobe net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ns net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nsca-ng net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nsd nsd: Update to 4.3.9 2021-12-15 14:50:58 +00:00
nslint net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nstx net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ntopng revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ntp4 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
nyx
obfs4proxy Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
ocaml-conduit net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ocaml-domain-name net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ocaml-ipaddr net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ocaml-protocol_version_header net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ocamlnet revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ocsinventory-agent net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ocsync revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
oidentd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
oinkmaster net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
omniNotify net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
omniORB net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
openag net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
openconnect revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
openh323 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
openntpd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
openresolv net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
openrrcp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
openrsync net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
openslp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
opentracker net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
openvmps net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
openvpn openvpn: updated to 2.5.6 2022-03-17 07:50:17 +00:00
openvpn-acct-wtmpx openvpn: updated to 2.5.6 2022-03-17 07:50:17 +00:00
openvpn-nagios openvpn: updated to 2.5.6 2022-03-17 07:50:17 +00:00
ORBit2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ortp revbump for icu and libffi 2021-12-08 16:01:42 +00:00
overnet net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
owncloudclient revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
p5-Cisco-Abbrev net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Danga-Socket net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Data-Stream-Bulk net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-DNS-LDNS net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-DNS-ZoneParse net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-File-Rsync net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-File-RsyncP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-FusionInventory-Agent net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Geo-IP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Geo-IPfree Update to 1.160000 2022-03-19 23:47:13 +00:00
p5-GeoIP2 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-IO-Interface net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-IO-SessionData net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-IO-Socket-INET6 Update to 2.73 2022-03-19 23:54:15 +00:00
p5-IO-Socket-Multicast net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-IO-Socket-Timeout net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-IP-Country net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-MaxMind-DB-Common p5-MaxMind-DB-*: drop maintainership. 2022-02-10 13:11:58 +00:00
p5-MaxMind-DB-Reader p5-MaxMind-DB-*: drop maintainership. 2022-02-10 13:11:58 +00:00
p5-MaxMind-DB-Writer p5-MaxMind-DB-*: drop maintainership. 2022-02-10 13:11:58 +00:00
p5-Net net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Akismet net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Amazon net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Amazon-S3 Update to 0.99 2022-03-20 09:32:03 +00:00
p5-Net-AMQP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Bind net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Bonjour net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-CIDR-Lite net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-CIDR-Set net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Daemon net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-DBus net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Dev-MIBLoadOrder net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-DHCP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-DNS Update to 1.33 2022-04-03 07:48:07 +00:00
p5-Net-DNS-Resolver-Mock net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-DNS-Resolver-Programmable net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-DNS-Zone-Parser net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-DNSServer net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Domain-TLD net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-DRI net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-eBay net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Frame net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Frame-Device net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Frame-Dump net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Frame-Layer-ICMPv6 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Frame-Layer-IPv6 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Frame-Simple net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-FTPSSL net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-GitHub net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Google-AuthSub net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Google-Code net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Ident net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-INET6Glue net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Interface net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-IP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-IPv4Addr net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-IPv6Addr net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Jifty net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-LDAP-Server net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Libdnet net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Libdnet6 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-LibIDN net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-MAC net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-NBName net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-OAuth net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-OpenID-Common net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-OpenID-Consumer net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Packet net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Patricia net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Pcap net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-RawIP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Server net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Server-SS-PreFork net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-SFTP-Foreign net/p5-Net-SFTP-Foreign: Add comments about finding changes 2022-01-24 16:24:27 +00:00
p5-Net-SMTP-TLS net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-SNMP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-SNMP-Mixin net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-SSH-Expect net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Stomp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Telnet net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Telnet-Cisco net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-TFTP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Trac net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Twitter net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Works net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Write net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-XMPP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-XWhois net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Net-Z3950-ZOOM revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
p5-NetAddr-IP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-NetAddr-MAC net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-NetPacket net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Nmap-Parser net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-POE-Component-Client-DNS net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-POE-Component-Client-Ident net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-POE-Component-SNMP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-RADIUS net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-RadiusPerl net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Regexp-Common-net-CIDR net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Regexp-IPv6 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-RPC-XML net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-RT-Client-REST net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-SNMP-Info net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-SNMP-MIB-Compiler net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-SNMP_Session net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-SOAP-Lite net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Socket6 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Test-DNS net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Test-RequiresInternet net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Test-TCP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-WebService-Google-Reader net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-WebService-MusicBrainz net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-X500-DN net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-XML-RPC net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-XMLRPC-Lite net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
p5-Zabbix-Sender net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
packit net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
paris-traceroute net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
parpd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
partysip net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pchar net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pconsole net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pear-Net_DIME net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pear-Net_IDNA2 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pear-Net_LDAP2 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pear-Net_LDAP3 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pear-Net_Sieve net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pear-Net_SMTP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pear-Net_Socket net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pear-Net_URL net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pear-Net_URL2 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pear-SOAP net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pen net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
perlbal net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pfnet net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
phetch net/phetch: Reset maintainer for stagnated project. 2022-02-25 09:13:58 +00:00
php-baikal php-baikal: update to 0.9.1. 2022-03-14 13:40:28 +00:00
php-ftp
php-geoip net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
php-snmp
php-soap revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
php-sockets php-sockets: Support GCC >= 10. 2021-09-28 12:57:56 +00:00
php-xmlrpc revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
php-yaz revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
pim6dd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pim6sd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pload net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
podcastdl revbump for icu and libffi 2021-12-08 16:01:42 +00:00
poink net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
poptop net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
portmap net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
powerdns revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
powerdns-geoip
powerdns-ldap *: recursive bump for heimdal 7.7.0 2021-10-21 07:46:31 +00:00
powerdns-mysql
powerdns-odbc
powerdns-pgsql
powerdns-recursor net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pppd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pptp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
prettyping Add prettyping, a wrapper to colorize and simplify ping's output. 2021-12-22 16:16:29 +00:00
proftpd proftpd: Disable some overzealous RELRO checks 2022-03-07 16:27:48 +00:00
proftpd-geoip
proftpd-ldap
proftpd-memcached
proftpd-mysql
proftpd-odbc
proftpd-postgresql
proftpd-sqlite revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
proxycheck net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
proxytunnel net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
publicfile net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
publicfile-run
puf net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pulledpork net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pure-ftpd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
pxe net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
py-adns *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-aio-pika *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-aioresponses py-aioresponses: updated to 0.7.3 2022-01-21 11:36:24 +00:00
py-aiormq *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-aiorpcX py-aiorpcX: convert to egg.mk 2022-01-04 19:57:05 +00:00
py-amqp *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-apache-libcloud *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-asyncio-nats-client *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-awscli *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-beanstalkc *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-bonjour py-bonjour: fix PLIST 2022-01-22 14:38:01 +00:00
py-boto *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-boto3 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-botocore *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-cares *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-celery py-celery: update to 5.2.3. 2022-02-15 16:24:56 +00:00
py-cymruwhois python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-digitalocean py-digitalocean: updated to 1.17.0 2022-02-10 20:51:56 +00:00
py-dns *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-dnsdiag *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-dpkt *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-dropbox py-dropbox: updated to 11.27.0 2022-02-21 19:10:46 +00:00
py-ec2instanceconnectcli *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-flower py-flower: update to 1.0.0. 2022-02-15 16:38:15 +00:00
py-foolscap *: use versioned_dependencies for py-twisted 2022-02-13 08:53:42 +00:00
py-gcs-oauth2-boto-plugin py-gcs-oauth2-boto-plugin: mark as not for python 2.7 due to py-rsa 2022-01-27 23:49:41 +00:00
py-GeoIP *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-gevent *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-geventhttpclient *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-google *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-google-cloud-sdk net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
py-grpcio revbump for devel/protobuf 2022-04-03 18:50:16 +00:00
py-grpcio-testing grpc py-grpcio py-grpcio-testing py-grpcio-tools: updated to 1.44.0 2022-02-18 09:08:08 +00:00
py-grpcio-tools revbump for devel/protobuf 2022-04-03 18:50:16 +00:00
py-gsutil python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-hatop net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
py-hpack *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-ifaddr *: remove workaround patches for python 3.6 2022-01-14 11:49:41 +00:00
py-impacket python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-IP py-IP: fix PLIST for python 2.7 2022-01-14 11:29:02 +00:00
py-ipaddress *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-ipcalc *: fix for python 3.x 2022-01-19 17:50:45 +00:00
py-irclib py-irclib: convert to egg.mk 2022-01-04 19:23:01 +00:00
py-junos-eznc py-junos-eznc: use versioned dependencies for jinja2 2022-04-19 12:04:07 +00:00
py-kenosis *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-kombu py-kombu: update to 5.2.3. 2022-02-15 14:37:06 +00:00
py-ldapdomaindump *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-lexicon py-lexicon: updated to 3.9.4 2022-03-06 20:13:57 +00:00
py-libdnet *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-libpcap *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-magic-wormhole python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-magic-wormhole-mailbox-server *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-magic-wormhole-transit-relay *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-medusa *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-metar *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-minio py-minio: updated to 7.1.6 2022-04-12 10:13:59 +00:00
py-moto py-moto: update to 3.0.3. 2022-02-15 15:32:09 +00:00
py-namecheap *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-ncclient *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-netaddr py-netaddr: remove python 3.6 support 2022-01-14 21:51:09 +00:00
py-netifaces *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-netsnmp *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-nyx py-nyx: convert to egg.mk 2022-01-08 12:11:51 +00:00
py-omniORBpy net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
py-onionbalance python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-ORBit revbump for icu and libffi 2021-12-08 16:01:42 +00:00
py-paho-mqtt *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pamqp *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pcap py-pcap: convert to egg.mk 2022-01-22 14:35:52 +00:00
py-pika *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-portend *: setuptools_scm: switch to versioned_dependencies 2022-01-13 19:31:20 +00:00
py-prometheus_client py-prometheus_client: updated to 0.14.0 2022-04-06 09:28:38 +00:00
py-ptt python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-pychromecast *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pyftpdlib *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pylint-celery *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pynng *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pypiserver python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-pysendfile *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-python-socks py-python-socks: updated to 2.0.3 2022-03-17 14:24:31 +00:00
py-requestbuilder *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-responses *: convert py-flake8 users to versioned_dependencies 2022-01-29 08:48:40 +00:00
py-rpyc py-rpyc: convert to egg.mk 2022-01-04 19:54:28 +00:00
py-rt *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-s3cmd py-s3cmd: fix PLIST 2022-01-22 14:34:18 +00:00
py-s3transfer *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sbws py-sbws: convert to egg.mk 2022-01-10 08:01:01 +00:00
py-scp py-scp: updated to 0.14.4 2022-03-28 20:12:27 +00:00
py-simplesoap *: fix for python 3.x 2022-01-19 17:50:45 +00:00
py-smb *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-smbc *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-soaplib net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
py-soappy *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-socketpool *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-Socks *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-socksipy-branch py-SocksiPy-branch: fix PLIST for python 2.7 2022-01-22 14:31:59 +00:00
py-softlayer py-softlayer: updated to 5.9.9 2022-02-27 09:08:57 +00:00
py-softlayer_messaging *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-stone py-stone: updated to 3.3.1 2022-02-21 19:08:36 +00:00
py-subunit *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-tldextract python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-tweepy *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-twine python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-twisted py-twisted: updated to 22.1.0 2022-02-13 09:26:19 +00:00
py-twisted-docs *: use versioned_dependencies for py-twisted 2022-02-13 08:53:42 +00:00
py-twisted19 py-twisted19: bump PKGREVISION to make it higher than it was in py-twisted 2022-02-14 09:14:10 +00:00
py-twython *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-txamqp *: use versioned_dependencies for py-twisted 2022-02-13 08:53:42 +00:00
py-txtorcon *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-xandikos *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-xmm7360 Forget about Python 3.6 2021-12-30 13:05:27 +00:00
py-zeep *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-zeroconf py-zeroconf: updated to 0.38.4 2022-03-17 12:54:47 +00:00
py-zmq *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
pygopherd *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
qadsl net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
qbittorrent qbittorrent: updated to 4.4.2 2022-04-19 16:37:16 +00:00
quagga net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
queryperf net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
quvi revbump for icu and libffi 2021-12-08 16:01:42 +00:00
R-pbdZMQ net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
R-pingr net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ra-rtsp-proxy net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
rabbiter net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
rabbitmq rabbitmq: updated to 3.9.15 2022-04-13 19:31:39 +00:00
rabbitmq-c net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
Radicale Radicale: convert to egg.mk 2022-01-09 15:37:47 +00:00
Radicale2 Radicale: convert to egg.mk 2022-01-10 20:20:41 +00:00
radiusclient-ng net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
radsecproxy radsecproxy: use BLAKE2s 2021-11-15 18:10:08 +00:00
rancid net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ratman revbump for devel/protobuf 2022-04-03 18:50:16 +00:00
rbldnsd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
rclone Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
rdesktop {f,h,l,n,p}*/*: revbump(1) for libsndfile 2022-03-28 10:56:15 +00:00
rdist6 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
remmina revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
restclient-ui net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
rinetd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
rootprobe net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
routinator Upgrade routinator to version 0.11.0. 2022-03-01 13:08:13 +00:00
rp-l2tp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
rp-pppoe net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
rsync rsync: update to 3.2.4. 2022-04-20 20:09:55 +00:00
rt4-cli net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
rtmpdump revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rtorrent revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ruby-addressable net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-amq-client net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-amq-protocol net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-amqp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-connection_pool net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-dnsruby net/ruby-dnsruby: update to 1.61.9 2022-02-13 07:20:38 +00:00
ruby-domain_name net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-em-socksify net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-ffi-rzmq net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-ffi-rzmq-core net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-icmp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-ipaddress net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-net-dhcp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-net-ldap net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-net-ping net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-netaddr net/ruby-netaddr: update to 2.0.5 2021-11-28 07:59:47 +00:00
ruby-netrc net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-network_interface net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-nio4r net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-pcaprub ruby-pcaprub: allow ruby30 2022-01-14 16:31:25 +00:00
ruby-pluggaloid ruby-pluggaloid: update to 1.7.0. 2022-01-08 15:15:22 +00:00
ruby-proxifier net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-public_suffix ruby-public_suffix: update to 4.0.7. 2022-04-16 15:59:17 +00:00
ruby-recog net/ruby-recog: update to 2.3.22 2021-12-19 06:38:33 +00:00
ruby-ruby_smb net/ruby-ruby_smb: update to 3.0.3 2022-02-14 14:11:03 +00:00
ruby-rubytter net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-slack-api net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-snmp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-soap4r net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-stompserver net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-train-core net/ruby-train-core: update to 3.8.6 2021-12-19 06:40:14 +00:00
ruby-train-winrm net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-tw net/ruby-tw: s/RUBY_JSON_VERSION/RUBY_JSON_VER/ 2022-01-14 15:51:50 +00:00
ruby-twitter net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-twitter-stream net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-twitter-text net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-twitter-text-simpleidn net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-winrm net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-winrm-elevated net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-winrm-fs net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ruby-xdr net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
s6-dns Update to 2.3.5.3. From the changelog: 2021-12-22 16:06:35 +00:00
s6-networking Update to 2.5.1.0. From the changelog: 2021-12-22 16:07:04 +00:00
sacc sacc: Update to 1.05 2021-12-18 13:49:25 +00:00
samba revbump for icu and libffi 2021-12-08 16:01:42 +00:00
samba4 Restore a SYSCONFDIR path substitution that had gone lost, probably as 2022-03-24 10:16:13 +00:00
sayaka sayaka: update to 3.5.3. 2022-02-19 18:48:52 +00:00
scamper net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
scapy scapy: remove default-off gnuplot option 2022-01-25 01:44:22 +00:00
scdp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
scli revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
sdig net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
sdist net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
SDL2_net {f,h,l,n,p}*/*: revbump(1) for libsndfile 2022-03-28 10:56:15 +00:00
SDL_net net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
sendfile sendfile: actually SSP is a red herring, just disable FORTIFY 2021-12-27 10:07:32 +00:00
ser net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
sharity-light net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
sipcalc net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
siproxd revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
sipsak updated net/sipsak to 0.9.8.1 2021-12-17 21:40:06 +00:00
sitescooper net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
slurm net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
smokeping net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
sniffit net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
sniproxy net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
snmptt net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
snort revbump for icu and libffi 2021-12-08 16:01:42 +00:00
socat net/socat: Patch ctype(3) abuse. 2022-04-03 10:29:41 +00:00
socket++ net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
socks4 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
solaris-tap net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
speedtest-cli speedtest-cli: set USE_PKG_RESOURCES 2022-01-10 22:21:17 +00:00
speedtouch net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
spegla net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
spread net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
spreadlogd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
srsh net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
sslh net/sslh: update to 1.22c 2022-01-01 16:47:20 +00:00
ssmping net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ssync net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
stagit-gopher net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
statzone statzone: update to 1.1.1. 2021-11-21 07:25:02 +00:00
stund net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
sup net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
syncffsd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
syncthing Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
syncthing-gtk revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
synergy synergy: needs pkg-config 2022-03-27 02:10:15 +00:00
sysmon net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tacacs net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tacacs-shrubbery net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
taskserver revbump for icu and libffi 2021-12-08 16:01:42 +00:00
tcl-scotty net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tcpdmerge net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tcpdpriv net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tcpdstat net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tcpdump tcpdump: add patch-Makefile.in 2021-11-16 16:20:18 +00:00
tcpexec Add tcpexec, a minimal UCSPI inetd. It attaches the standard input and 2021-11-15 11:36:58 +00:00
tcpflow revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
tcpick net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tcpillust net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tcpreplay net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tcpslice net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tcptrace net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tcptraceroute net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tcptraceroute6 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
teamspeak-client net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
teamspeak-server net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
terraform Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
terraform-provider-archive Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
terraform-provider-aws Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
terraform-provider-kubernetes Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
terraform-provider-local Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
terraform-provider-null Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
terraform-provider-random Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
terraform-provider-template Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
terraform-provider-vultr Revbump all Go packages after go117 update 2022-04-13 07:50:51 +00:00
tigervnc tigervnc: depend on xkbcomp when using modular X 2022-04-15 15:05:30 +00:00
tightvnc net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tightvncviewer net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tinc net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tinydyndns net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tinydyndns-run
tinyfugue net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tkined
tn5250 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tnftp tnftp: Disable ipv6 option if the OS doesn't have it. 2021-11-22 16:09:33 +00:00
tnftpd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tor tor: reset maintainer 2022-04-20 09:15:08 +00:00
torrentutils net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
torsocks net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
totd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
traceroute-as net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
traceroute-nanog net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
trafshow net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
transmission revbump for icu and libffi 2021-12-08 16:01:42 +00:00
transmission-gtk revbump for icu and libffi 2021-12-08 16:01:42 +00:00
transmission-qt revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
trickle net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tsocks net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tspc net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ttt net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
tvnjviewer net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
twittering-mode net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
u6rd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ucarp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ucspi-ipc net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ucspi-proxy net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ucspi-ssl net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ucspi-tcp ucspi-tcp: use BLAKE2s 2021-11-15 18:11:27 +00:00
ucspi-tcp6 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ucspi-tools Needs libbsd on Linux. 2021-11-26 10:19:20 +00:00
ucspi-udp Provide definition of struct sockaddr_in to fix NetBSD-current build. 2021-12-13 21:59:09 +00:00
ucspi-unix net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
udns net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
udpcast net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
udptunnel net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
uftp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
unbound revbump for devel/protobuf 2022-04-03 18:50:16 +00:00
unfs3 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
unifi net/unifi: Update to 6.5.55 2021-12-18 17:00:19 +00:00
unison revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
unworkable net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
upclient net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
upnpinspector *: set USE_PKG_RESOURCES for more packages 2022-01-05 20:47:34 +00:00
urlgfe revbump for icu and libffi 2021-12-08 16:01:42 +00:00
userppp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
uucp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
vcheck net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
vde net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
vinagre revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
vino revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
vnc net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
vncviewer net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
vnstat net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
vpnc net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
vpnc-script net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
vsftpd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
vtun net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
wakeup net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
walker net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
wap-utils net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
waste net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
websocketpp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
wget wget: update to 1.21.3. 2022-03-08 08:37:17 +00:00
wget2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
wgetpaste net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
whatmask net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
whois3 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
whoson net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
wide-dhcpv6 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
wimon net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
wireguard-tools net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
wireshark revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
wistumbler net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
wistumbler2 net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
wistumbler2-gtk revbump for icu and libffi 2021-12-08 16:01:42 +00:00
wmget revbump for icu and libffi 2021-12-08 16:01:42 +00:00
wminet net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
wmnd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
wmnet net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
wmpload net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
wol net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
wpa_gui revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
wpa_supplicant net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
x2vnc net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
xfce4-wavelan-plugin revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xl2tpd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
xmftp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
xorp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
xrmftp net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
xtraceroute net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
xymon revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
xymonclient Ignore 'linsysfs' filesystem on FreeBSD 2022-01-06 11:53:26 +00:00
yafc net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
yale-tftpd net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
yaydl net/yaydl: update to 0.7.0 2022-04-11 08:29:37 +00:00
yaz revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
youtube-dl python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
yt-dlp Update to 2022.02.04. From the changelog: 2022-02-10 15:48:11 +00:00
ytalk net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
ywho net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
zenmap *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
zeroconf-ioslave revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
zeromq zeromq: no code is good enough to be able to assume -Werror generally 2022-01-02 00:17:33 +00:00
zsync net: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:05:20 +00:00
Makefile Add mangos 2022-04-20 10:11:34 +00:00