pkgsrc/sysutils
wiz 4794c078c6 py-borgbackup: update to 1.2.0.
Version 1.2.0 (2022-02-22 22:02:22 :-)
--------------------------------------

Please note:

This is the first borg 1.2 release, so be careful and read the notes below.

Upgrade notes:

Strictly taken, nothing special is required for upgrading to 1.2, but some
things can be recommended:

- do you already want to upgrade? 1.1.x also will get fixes for a while.
- be careful, first upgrade your less critical / smaller repos.
- first upgrade to a recent 1.1.x release - especially if you run some older
  1.1.* or even 1.0.* borg release.
- using that, run at least one `borg create` (your normal backup), `prune`
  and especially a `check` to see everything is in a good state.
- check the output of `borg check` - if there is anything special, consider
  a `borg check --repair` followed by another `borg check`.
- if everything is fine so far (borg check reports no issues), you can consider
  upgrading to 1.2.0. if not, please first fix any already existing issue.
- if you want to play safer, first **create a backup of your borg repository**.
- upgrade to latest borg 1.2.x release (you could use the fat binary from
  github releases page)
- run `borg compact --cleanup-commits` to clean up a ton of 17 bytes long files
  in your repo caused by a borg 1.1 bug
- run `borg check` again (now with borg 1.2.x) and check if there is anything
  special.
- run `borg info` (with borg 1.2.x) to build the local pre12-meta cache (can
  take significant time, but after that it will be fast) - for more details
  see below.
- check the compatibility notes (see below) and adapt your scripts, if needed.
- if you run into any issues, please check the github issue tracker before
  posting new issues there or elsewhere.

If you follow this procedure, you can help avoiding that we get a lot of
"borg 1.2" issue reports that are not really 1.2 issues, but existed before
and maybe just were not noticed.

Compatibility notes:

- dropped support / testing for older Pythons, minimum requirement is 3.8.
  In case your OS does not provide Python >= 3.8, consider using our binary,
  which does not need an external Python interpreter. Or continue using
  borg 1.1.x, which is still supported.
- freeing repository space only happens when "borg compact" is invoked.
- mount: the default for --numeric-ids is False now (same as borg extract)
- borg create --noatime is deprecated. Not storing atime is the default behaviour
  now (use --atime if you want to store the atime).
- list: corrected mix-up of "isomtime" and "mtime" formats.
  Previously, "isomtime" was the default but produced a verbose human format,
  while "mtime" produced a ISO-8601-like format.
  The behaviours have been swapped (so "mtime" is human, "isomtime" is ISO-like),
  and the default is now "mtime".
  "isomtime" is now a real ISO-8601 format ("T" between date and time, not a space).
- create/recreate --list: file status for all files used to get announced *AFTER*
  the file (with borg < 1.2). Now, file status is announced *BEFORE* the file
  contents are processed. If the file status changes later (e.g. due to an error
  or a content change), the updated/final file status will be printed again.
- removed deprecated-since-long stuff (deprecated since):

  - command "borg change-passphrase" (2017-02), use "borg key ..."
  - option "--keep-tag-files" (2017-01), use "--keep-exclude-tags"
  - option "--list-format" (2017-10), use "--format"
  - option "--ignore-inode" (2017-09), use "--files-cache" w/o "inode"
  - option "--no-files-cache" (2017-09), use "--files-cache=disabled"
- removed BORG_HOSTNAME_IS_UNIQUE env var.
  to use borg you must implement one of these 2 scenarios:

  - 1) the combination of FQDN and result of uuid.getnode() must be unique
       and stable (this should be the case for almost everybody, except when
       having duplicate FQDN *and* MAC address or all-zero MAC address)
  - 2) if you are aware that 1) is not the case for you, you must set
       BORG_HOST_ID env var to something unique.
- exit with 128 + signal number, #5161.
  if you have scripts expecting rc == 2 for a signal exit, you need to update
  them to check for >= 128.

Fixes:

- diff: reduce memory consumption, fix is_hardlink_master, #6295
- compact: fix / improve freeable / freed space log output

  - derive really freed space from quota use before/after, #5679
  - do not say "freeable", but "maybe freeable" (based on hint, unsure)
- fix race conditions in internal SaveFile function, #6306 #6028
- implement internal safe_unlink (was: truncate_and_unlink) function more safely:
  usually it does not truncate any more, only under "disk full" circumstances
  and only if there is only one hardlink.
  see: https://github.com/borgbackup/borg/discussions/6286

Other changes:

- info: use a pre12-meta cache to accelerate stats for borg < 1.2 archives.
  the first time borg info is invoked on a borg 1.1 repo, it can take a
  rather long time computing and caching some stats values for 1.1 archives,
  which borg 1.2 archives have in their archive metadata structure.
  be patient, esp. if you have lots of old archives.
  following invocations are much faster due to the cache.
  related change: add archive name to calc_stats progress display.
- docs:

  - add borg 1.2 upgrade notes, #6217
  - link to borg placeholders and borg patterns help
  - init: explain the encryption modes better
  - clarify usage of patternfile roots
  - put import-tar docs into same file as export-tar docs
  - explain the difference between a path that ends with or without a slash,
    #6297


Version 1.2.0rc1 (2022-02-05)
-----------------------------

Fixes:

- repo::archive location placeholder expansion fixes, #5826, #5998
- repository: fix intermediate commits, shall be at end of current segment
- delete: don't commit if nothing was deleted, avoid cache sync, #6060
- argument parsing: accept some options only once, #6026
- disallow overwriting of existing keyfiles on init, #6036
- if ensure_dir() fails, give more informative error message, #5952

New features:

- delete --force: do not ask when deleting a repo, #5941

Other changes:

- requirements: exclude broken or incompatible-with-pyinstaller setuptools
- add a requirements.d/development.lock.txt and use it for vagrant
- tests:

  - added nonce-related tests
  - refactor: remove assert_true
  - vagrant: macos box tuning, netbsd box fixes, #5370, #5922
- docs:

  - update install docs / requirements docs, #6180
  - borg mount / FUSE "versions" view is not experimental any more
  - --pattern* is not experimental any more, #6134
  - impact of deleting path/to/repo/nonce, #5858
  - key export: add examples, #6204
  - ~/.config/borg/keys is not used for repokey keys, #6107
  - excluded parent dir's metadata can't restore


Version 1.2.0b4 (2022-01-23)
----------------------------

Fixes:

- create: fix passing device nodes and symlinks to --paths-from-stdin, #6009
- create --dry-run: fix display of kept tagfile, #5834
- check --repair: fix missing parameter in "did not consistently fail" msg, #5822
- fix hardlinkable file type check, #6037
- list: remove placeholders for shake_* hashes, #6082
- prune: handle case of calling prune_split when there are no archives, #6015
- benchmark crud: make sure cleanup of borg-test-data files/dir happens, #5630
- do not show archive name in repository-related error msgs, #6014
- prettier error msg (no stacktrace) if exclude file is missing, #5734
- do not require BORG_CONFIG_DIR if BORG_{SECURITY,KEYS}_DIR are set, #5979
- fix pyinstaller detection for dir-mode, #5897
- atomically create the CACHE_TAG file, #6028
- deal with the SaveFile/SyncFile race, docs, see #6056 708a5853
- avoid expanding path into LHS of formatting operation + tests, #6064 #6063
- repository: quota / compactable computation fixes
- info: emit repo info even if repo has 0 archives + test, #6120

New features:

- check --repair: significantly speed up search for next valid object in segment, #6022
- check: add progress indicator for archive check, #5809
- create: add retry_erofs workaround for O_NOATIME issue on volume shadow copies in WSL1, #6024
- create: allow --files-cache=size (this is potentially dangerous, use on your own risk), #5686
- import-tar: implement import-tar to complement export-tar, #2233
- implement BORG_SELFTEST env variable (can be carefully used to speedup borg hosting), #5871
- key export: print key if path is '-' or not given, #6092
- list --format: Add command_line to format keys

Other changes:

- pypi metadata: alpha -> beta
- require python 3.8+, #5975
- use pyinstaller 4.7
- allow msgpack 1.0.3
- upgrade to bundled xxhash to 0.8.1
- import-tar / export-tar: tar file related changes:

  - check for short tarfile extensions
  - add .lz4 and .zstd
  - fix docs about extensions and decompression commands
- add github codeql analysis, #6148
- vagrant:

  - box updates / add new boxes / remove outdated and broken boxes
  - use Python 3.9.10 (incl. binary builds) and 3.10.0
  - fix pyenv initialisation, #5798
  - fix vagrant scp on macOS, #5921
  - use macfuse instead of osxfuse
- shell completions:

  - update shell completions to 1.1.17, #5923
  - remove BORG_LIBC completion, since 9914968 borg no longer uses find_library().
- docs:

  - fixed readme.rst irc webchat link (we use libera chat now, not freenode)
  - fix exceptions thrown by `setup.py build_man`
  - check --repair: recommend checking hw before check --repair, #5855
  - check --verify-data: clarify and document conflict with --repository-only, #5808
  - serve: improve ssh forced commands docs, #6083
  - list: improve docs for `borg list` --format, #6061
  - list: remove --list-format from borg list
  - FAQ: fix manifest-timestamp path (inside security dir)
  - fix the broken link to .nix file
  - document behavior for filesystems with inconsistent inodes, #5770
  - clarify user_id vs uid for fuse, #5723
  - clarify pattern usage with commands, #5176
  - clarify pp vs. pf pattern type, #5300
  - update referenced freebsd/macOS versions used for binary build, #5942
  - pull mode: add some warnings, #5827
  - clarify "you will need key and passphrase" borg init warning, #4622
  - add missing leading slashes in help patterns, #5857
  - add info on renaming repositories, #5240
  - check: add notice about defective hardware, #5753
  - mention tar --compare (compare archive to fs files), #5880
  - add note about grandfather-father-son backup retention policy / rotation scheme, #6006
  - permissions note rewritten to make it less confusing
  - create github security policy
  - remove leftovers of BORG_HOSTNAME_IS_UNIQUE
  - excluded parent dir's metadata can't restore. (#6062)
  - if parent dir is not extracted, we do not have its metadata
  - clarify who starts the remote agent


Version 1.2.0b3 (2021-05-12)
----------------------------

Fixes:

- create: fix --progress --log-json, #4360#issuecomment-774580052
- do not load files cache for commands not using it, #5673
- fix repeated cache tag file writing bug

New features:

- create/recreate: print preliminary file status early, #5417
- create/extract: add --noxattrs and --noacls options, #3955
- create: verbose files cache logging via --debug-topic=files_cache, #5659
- mount: implement --numeric-ids (default: False!), #2377
- diff: add --json-lines option
- info / create --stats: add --iec option to print sizes in powers of 1024.

Other changes:

- create: add --upload-(ratelimit|buffer), deprecate --remote-* options, #5611
- create/extract/mount: add --numeric-ids, deprecate --numeric-owner option, #5724
- config: accept non-int value for max_segment_size / storage_quota
- use PyInstaller v4.3, #5671
- vagrant: use Python 3.9.5 to build binaries
- tox.ini: modernize and enable execution without preinstalling deps
- cleanup code style checks
- get rid of distutils, use setuptools+packaging
- github CI: test on Python 3.10-dev
- check: missing / healed chunks: always tell chunk ID, #5704
- docs:

  - remove bad /var/cache exclusion in example commands, #5625
  - misc. fixes and improvements, esp. for macOS
  - add unsafe workaround to use an old repo copy, #5722


Version 1.2.0b2 (2021-02-06)
----------------------------

Fixes:

- create: do not recurse into duplicate roots, #5603
- create: only print stats if not ctrl-c'ed, fixes traceback, #5668
- extract:
  improve exception handling when setting xattrs, #5092.
  emit a warning message giving the path, xattr key and error message.
  continue trying to restore other xattrs and bsdflags of the same file
  after an exception with xattr-setting happened.
- export-tar:
  fix memory leak with ssh: remote repository, #5568.
  fix potential memory leak with ssh: remote repository with partial extraction.
- remove empty shadowed_segments lists, #5275
- fix bad default: manifest.archives.list(consider_checkpoints=False),
  fixes tracebacks / KeyErros for missing objects in ChunkIndex, #5668

New features:

- create: improve sparse file support

  - create --sparse (detect sparse file holes) and file map support,
    only for the "fixed" chunker, #14
  - detect all-zero chunks in read data in "buzhash" and "fixed" chunkers
  - cached_hash: use a small LRU cache to accelerate all-zero chunks hashing
  - use cached_hash also to generate all-zero replacement chunks
- create --remote-buffer, add a upload buffer for remote repos, #5574
- prune: keep oldest archive when retention target not met

Other changes:

- use blake2 from python 3.6+ hashlib
  (this removes the requirement for libb2 and the bundled blake2 code)
- also accept msgpack up to 1.0.2.
  exclude 1.0.1 though, which had some issues (not sure they affect borg).
- create: add repository location to --stats output, #5491
- check: debug log the segment filename
- delete: add a --list switch to borg delete, #5116
- borg debug dump-hints - implemented to e.g. to look at shadow_index
- Tab completion support for additional archives for 'borg delete'
- refactor: have one borg.constants.zero all-zero bytes object
- refactor shadow_index updating repo.put/delete, #5661, #5636.
- docs:

  - add another case of attempted hardlink usage
  - fix description of borg upgrade hardlink usage, #5518
  - use HTTPS everywhere
  - add examples for --paths-from-stdin, --paths-from-command, --paths-separator, #5644
  - fix typos/grammar
  - update docs for dev environment installation instructions
  - recomend running tests only on installed versions for setup
  - add badge with current status of package
- vagrant:

  - use brew install --cask ..., #5557
  - use Python 3.9.1 and PyInstaller 4.1 to build the borg binary


Version 1.2.0b1 (2020-12-06)
----------------------------

Fixes:

- BORG_CACHE_DIR crashing borg if empty, atomic handling of
  recursive directory creation, #5216
- fix --dry-run and --stats coexistence, #5415
- allow EIO with warning when trying to hardlink, #4336
- export-tar: set tar format to GNU_FORMAT explicitly, #5274
- use --timestamp for {utcnow} and {now} if given, #5189
- make timestamp helper timezone-aware

New features:

- create: implement --paths-from-stdin and --paths-from-command, see #5492.
  These switches read paths to archive from stdin. Delimiter can specified
  by --paths-delimiter=DELIM. Paths read will be added honoring every
  option but exclusion options and --one-file-system. borg won't recurse
  into directories.
- 'obfuscate' pseudo compressor obfuscates compressed chunk size in repo
- add pyfuse3 (successor of llfuse) as an alternative lowlevel fuse
  implementation to llfuse (deprecated), #5407.
  FUSE implementation can be switched via env var BORG_FUSE_IMPL.
- allow appending to the files cache filename with BORG_FILES_CACHE_SUFFIX
- create: implement --stdin-mode, --stdin-user and --stdin-group, #5333

Other changes:

- split recursive directory walking/processing into directory walking and
  item processing.
- fix warning by importing setuptools before distutils.
- debug info: include infos about FUSE implementation, #5546
- testing:

  - add a test for the hashindex corruption bug, #5531 #4829
  - move away from travis-ci, use github actions, #5528 #5467
  - test both on fuse2 and fuse3
  - upload coverage reports to codecov
  - fix spurious failure in test_cache_files, #5438
  - add tests for Location.with_timestamp
  - tox: add a non-fuse env to the envlist
- vagrant:

  - use python 3.7.latest and pyinstaller 4.0 for binary creation
  - pyinstaller: compute basepath from spec file location
  - vagrant: updates/fixes for archlinux box, #5543
- docs:

  - "filename with spaces" example added to exclude file, #5236
  - add a hint about sleeping computer, #5301
  - how to adjust macOS >= Catalina security settings, #5303
  - process/policy for adding new compression algorithms
  - updated docs about hacked backup client, #5480
  - improve ansible deployment docs, make it more generic
  - how to approach borg speed issues, give speed example, #5371
  - fix mathematical inaccuracy about chunk size, #5336
  - add example for excluding content using --pattern cli option
  - clarify borg create's '--one-file-system' option, #4009
  - improve docs/FAQ about append-only remote repos, #5497
  - fix reST markup issues, labels
  - add infos about contributor retirement status


Version 1.2.0a9 (2020-10-05)
----------------------------

Fixes:

- fix memory leak related to preloading, #5202
- check --repair: fix potential data loss, #5325
- persist shadow_index in between borg runs, #4830
- fix hardlinked CACHEDIR.TAG processing, #4911
- --read-special: .part files also should be regular files, #5217
- allow server side enforcing of umask, --umask is for the local borg
  process only (see docs), #4947
- exit with 128 + signal number, #5161
- borg config --list does not show last_segment_checked, #5159
- locking:

  - fix ExclusiveLock race condition bug, #4923
  - fix race condition in lock migration, #4953
  - fix locking on openindiana, #5271

New features:

- --content-from-command: create archive using stdout of given command, #5174
- allow key-import + BORG_KEY_FILE to create key files
- build directory-based binary for macOS to avoid Gatekeeper delays

Other changes:

- upgrade bundled zstd to 1.4.5
- upgrade bundled xxhash to 0.8.0, #5362
- if self test fails, also point to OS and hardware, #5334
- misc. shell completions fixes/updates, rewrite zsh completion
- prettier error message when archive gets too big, #5307
- stop relying on `false` exiting with status code 1
- rephrase some warnings, #5164
- parseformat: unnecessary calls removed, #5169
- testing:

  - enable Python3.9 env for test suite and VMs, #5373
  - drop python 3.5, #5344
  - misc. vagrant fixes/updates
  - misc. testing fixes, #5196
- docs:

  - add ssh-agent pull backup method to doc, #5288
  - mention double --force in prune docs
  - update Homebrew install instructions, #5185
  - better description of how cache and rebuilds of it work
    and how the workaround applies to that
  - point to borg create --list item flags in recreate usage, #5165
  - add a note to create from stdin regarding files cache, #5180
  - add security faq explaining AES-CTR crypto issues, #5254
  - clarify --exclude-if-present in recreate, #5193
  - add socat pull mode, #5150, #900
  - move content of resources doc page to community project, #2088
  - explain hash collision, #4884
  - clarify --recompress option, #5154


Version 1.2.0a8 (2020-04-22)
----------------------------

Fixes:

- fixed potential index corruption / data loss issue due to bug in hashindex_set, #4829.
  Please read and follow the more detailed notes close to the top of this document.
- fix crash when upgrading erroneous hints file, #4922
- commit-time free space calc: ignore bad compact map entries, #4796
- info: if the archive doesn't exist, print a pretty message, #4793
- --prefix / -P: fix processing, avoid argparse issue, #4769
- ignore EACCES (errno 13) when hardlinking, #4730
- add a try catch when formatting the info string, #4818
- check: do not stumble over invalid item key, #4845
- update prevalence of env vars to set config and cache paths
- mount: fix FUSE low linear read speed on large files, #5032
- extract: fix confusing output of borg extract --list --strip-components, #4934
- recreate: support --timestamp option, #4745
- fix ProgressIndicator msgids (JSON output), #4935
- fuse: set f_namemax in statfs result, #2684
- accept absolute paths on windows
- pyinstaller: work around issue with setuptools > 44

New features:

- chunker speedup (plus regression test)
- added --consider-checkpoints and related test, #4788
- added --noflags option, deprecate --nobsdflags option, #4489
- compact: add --threshold option, #4674
- mount: add birthtime to FUSE entries
- support platforms with no os.link, #4901 - if we don't have os.link,
  we just extract another copy instead of making a hardlink.
- move sync_file_range to its own extension for better platform compatibility.
- new --bypass-lock option to bypass locking, e.g. for read-only repos
- accept absolute paths by removing leading slashes in patterns of all
  sorts but re: style, #4029
- delete: new --keep-security-info option

Other changes:

- support msgpack 0.6.2 and 1.0.0, #5065
- upgrade bundled zstd to 1.4.4
- upgrade bundled lz4 to 1.9.2
- upgrade xxhash to 0.7.3
- require recent enough llfuse for birthtime support, #5064
- only store compressed data if the result actually is smaller, #4516
- check: improve error output for matching index size, see #4829
- ignore --stats when given with --dry-run, but continue, #4373
- replaced usage of os.statvfs with shutil.disk_usage (better cross-platform support).
- fuse: remove unneeded version check and compat code, micro opts
- docs:

  - improve description of path variables
  - document how to completely delete data, #2929
  - add FAQ about Borg config dir, #4941
  - add docs about errors not printed as JSON, #4073
  - update usage_general.rst.inc
  - added "Will move with BORG_CONFIG_DIR variable unless specified." to BORG_SECURITY_DIR info.
  - put BORG_SECURITY_DIR immediately below BORG_CONFIG_DIR (and moved BORG_CACHE_DIR up before them).
  - add paragraph regarding cache security assumptions, #4900
  - tell about borg cache security precautions
  - add FAQ describing difference between a local repo vs. repo on a server.
  - document how to test exclusion patterns without performing an actual backup
  - create: tell that "Calculating size" time and space needs are caused by --progress
  - fix/improve documentation for @api decorator, #4674
  - add a pull backup / push restore how-to, #1552
  - fix man pages creation, #4752
  - more general FAQ for backup and retain original paths, #4532
  - explain difference between --exclude and --pattern, #4118
  - add FAQ for preventing SSH timeout in extract, #3866
  - improve password FAQ (decrease pw length, add -w 0 option to base64 to prevent line wrap), #4591
  - add note about patterns and stored paths, #4160
  - add upgrade of tools to pip installation how-to, #5090
  - document one cause of orphaned chunks in check command, #2295
  - clean up the whole check usage paragraph
  - FAQ: linked recommended restrictions to ssh public keys on borg servers, #4946
  - fixed "doc downplays severity of Nonce reuse issue", #4883
  - borg repo restore instructions needed, #3428
  - new FAQ: A repo is corrupt and must be replaced with an older repo.
  - clarify borg init's encryption modes
- native windows port:

  - update README_WINDOWS.rst
  - updated pyinstaller spec file to support windows builds
- testing / CI:

  - improved travis config / install script, improved macOS builds
  - allow osx builds to fail, #4955
  - Windows 10 build on Appveyor CI
- vagrant:

  - upgrade pyinstaller to v3.5 + patch
  - use py369 for binary build, add py380 for tests
  - fix issue in stretch VM hanging at grub installation
  - add a debian buster and a ubuntu focal VM
  - update darwin box to 10.12
  - upgrade FreeBSD box to 12.1
  - fix debianoid virtualenv packages
  - use pyenv in freebsd64 VM
  - remove the flake8 test
  - darwin: avoid error if pkg is already installed
  - debianoid: don't interactively ask questions


Version 1.2.0a7 (2019-09-07)
----------------------------

Fixes:

- slave hardlinks extraction issue, see #4350
- extract: fix KeyError for "partial" extraction, #4607
- preload chunks for hardlink slaves w/o preloaded master, #4350
- fix preloading for old remote servers, #4652
- fix partial extract for hardlinked contentless file types, #4725
- Repository.open: use stat() to check for repo dir, #4695
- Repository.check_can_create_repository: use stat() to check, ~ #4695.
- SecurityManager.known(): check all files, #4614
- after double-force delete, warn about necessary repair, #4704
- cope with ANY error when importing pytest into borg.testsuite, #4652
- fix invalid archive error message
- setup.py: fix detection of missing Cython
- filter out selinux xattrs, #4574
- location arg - should it be optional? #4541
- enable placeholder usage in --comment, #4559
- use whitelist approach for borg serve, #4097

New features:

- minimal native Windows support, see windows readme (work in progress)
- create: first ctrl-c (SIGINT) triggers checkpoint and abort, #4606
- new BORG_WORKAROUNDS mechanism, basesyncfile, #4710
- remove WSL autodetection. if WSL still has this problem, you need to
  set BORG_WORKAROUNDS=basesyncfile in the borg process environment to
  work around it.
- support xxh64 checksum in addition to the hashlib hashes in borg list
- enable placeholder usage in all extra archive arguments
- enable placeholder usage in --comment, #4559
- enable placeholder usage in --glob-archives, #4495
- ability to use a system-provided version of "xxhash"
- create:

  - changed the default behaviour to not store the atime of fs items. atime is
    often rather not interesting and fragile - it easily changes even if nothing
    else has changed and, if stored into the archive, spoils deduplication of
    the archive metadata stream.
  - if you give the --noatime option, borg will output a deprecation warning
    because it is currently ignored / does nothing.
    Please remove the --noatime option when using borg 1.2.
  - added a --atime option for storing files' atime into an archive

Other changes:

- argparser: always use REPOSITORY in metavar
- do not check python/libc for borg serve, #4483
- small borg compact improvements, #4522
- compact: log freed space at INFO level
- tests:

  - tox / travis: add testing on py38-dev
  - fix broken test that relied on improper zlib assumptions
  - pure-py msgpack warning shall not make a lot of tests fail, #4558
  - rename test_mount_hardlinks to test_fuse_mount_hardlinks (master)
  - vagrant: add up-to-date openindiana box (py35, openssl10)
  - get rid of confusing coverage warning, #2069
- docs:

  - reiterate that 'file cache names are absolute' in FAQ,
    mention bind mount solution, #4738
  - add restore docs, #4670
  - updated docs to cover use of temp directory on remote, #4545
  - add a push-style example to borg-create(1), #4613
  - timestamps in the files cache are now usually ctime, #4583
  - benchmark crud: clarify that space is used until compact
  - update documentation of borg create,
    corrects a mention of borg 1.1 as a future version.
  - fix osxfuse github link in installation docs
  - how to supply a passphrase, use crypto devices, #4549
  - extract: document limitation "needs empty destination",  #4598
  - update macOS Brew link
  - add note about software for automating backup
  - compact: improve docs,
  - README: new URL for funding options


Version 1.2.0a6 (2019-04-22)
----------------------------

Fixes:

- delete / prune: consider part files correctly for stats, #4507
- fix "all archives" stats considering part files, #4329
- create: only run stat_simple_attrs() once
- create: --stats does not work with --dry-run, exit with error msg, #4373
- give "invalid repo" error msg if repo config not found, #4411

New features:

- display msgpack version as part of sysinfo (e.g. in tracebacks)

Other changes:

- docs:

  - sdd "SSH Configuration" section, #4493, #3988, #636, #4485
  - better document borg check --max-duration, #4473
  - sorted commands help in multiple steps, #4471
- testing:

  - travis: use py 3.5.3 and 3.6.7 on macOS to get a pyenv-based python
    build with openssl 1.1
  - vagrant: use py 3.5.3 and 3.6.8 on darwin64 VM to build python and
    borg with openssl 1.1
  - pytest: -v and default XDISTN to 1, #4481


Version 1.2.0a5 (2019-03-21)
----------------------------

Fixes:

- warn if a file has changed while being backed up, #1750
- lrucache: regularly remove old FDs, #4427
- borg command shall terminate with rc 2 for ImportErrors, #4424
- make freebsd xattr platform code api compatible with linux, #3952

Other changes:

- major setup code refactoring (especially how libraries like openssl, liblz4,
  libzstd, libb2 are discovered and how it falls back to code bundled with
  borg), new: uses pkg-config now (and needs python "pkgconfig" package
  installed), #1925

  if you are a borg package maintainer, please try packaging this
  (see comments in setup.py).
- Vagrantfile: add zstd, reorder, build env vars, #4444
- travis: install script improvements
- update shell completions
- docs:

  - add a sample logging.conf in docs/misc, #4380
  - fix spelling errors
  - update requirements / install docs, #4374


Version 1.2.0a4 (2019-03-11)
----------------------------

Fixes:

- do not use O_NONBLOCK for special files, like FIFOs, block and char devices
  when using --read-special. fixes backing up FIFOs. fixes to test. #4394
- more LibreSSL build fixes: LibreSSL has HMAC_CTX_free and HMAC_CTX_new

New features:

- check: incremental repo check (only checks crc32 for segment entries), #1657
  borg check --repository-only --max-duration SECONDS ...
- delete: timestamp for borg delete --info added, #4359

Other changes:

- redo stale lock handling, #3986
  drop BORG_HOSTNAME_IS_UNIQUE (please use BORG_HOST_ID if needed).
  borg now always assumes it has a unique host id - either automatically
  from fqdn plus uuid.getnode() or overridden via BORG_HOST_ID.
- docs:

  - added Alpine Linux to distribution list
  - elaborate on append-only mode docs
- vagrant:

  - darwin: new 10.12 box
  - freebsd: new 12.0 box
  - openbsd: new 6.4 box
  - misc. updates / fixes


Version 1.2.0a3 (2019-02-26)
----------------------------

Fixes:

- LibreSSL build fixes, #4403
- dummy ACL/xattr code fixes (used by OpenBSD and others), #4403
- create: fix openat/statat issues for root directory, #4405


Version 1.2.0a2 and earlier (2019-02-24)
----------------------------------------

New features:

- compact: "borg compact" needs to be used to free repository space by
  compacting the segments (reading sparse segments, rewriting still needed
  data to new segments, deleting the sparse segments).
  Borg < 1.2 invoked compaction automatically at the end of each repository
  writing command.
  Borg >= 1.2 does not do that any more to give better speed, more control,
  more segment file stability (== less stuff moving to newer segments) and
  more robustness.
  See the docs about "borg compact" for more details.
- "borg compact --cleanup-commits" is to cleanup the tons of 17byte long
  commit-only segment files caused by borg 1.1.x issue #2850.
  Invoke this once after upgrading (the server side) borg to 1.2.
  Compaction now automatically removes unneeded commit-only segment files.
- prune: Show which rule was applied to keep archive, #2886
- add fixed blocksize chunker (see --chunker-params docs), #1086

Fixes:

- avoid stale filehandle issues, #3265
- use more FDs, avoid race conditions on active fs, #906, #908, #1038
- add O_NOFOLLOW to base flags, #908
- compact:

  - require >10% freeable space in a segment, #2985
  - repository compaction now automatically removes unneeded 17byte
    commit-only segments, #2850
- make swidth available on all posix platforms, #2667

Other changes:

- repository: better speed and less stuff moving around by using separate
  segment files for manifest DELETEs and PUTs, #3947
- use pyinstaller v3.3.1 to build binaries
- update bundled zstd code to 1.3.8, #4210
- update bundled lz4 code to 1.8.3, #4209
- msgpack:

  - switch to recent "msgpack" pypi pkg name, #3890
  - wrap msgpack to avoid future compat complications, #3632, #2738
  - support msgpack 0.6.0 and 0.6.1, #4220, #4308

- llfuse: modernize / simplify llfuse version requirements
- code refactorings / internal improvements:

  - include size/csize/nfiles[_parts] stats into archive, #3241
  - calc_stats: use archive stats metadata, if available
  - crypto: refactored crypto to use an AEAD style API
  - crypto: new AES-OCB, CHACHA20-POLY1305
  - create: use less syscalls by not using a python file obj, #906, #3962
  - diff: refactor the diff functionality to new ItemDiff class, #2475
  - archive: create FilesystemObjectProcessors class
  - helpers: make a package, split into smaller modules
  - xattrs: move to platform package, use cython instead ctypes, #2495
  - xattrs/acls/bsdflags: misc. code/api optimizations
  - FUSE: separate creation of filesystem from implementation of llfuse funcs, #3042
  - FUSE: use unpacker.tell() instead of deprecated write_bytes, #3899
  - setup.py: move build_man / build_usage code to setup_docs.py
  - setup.py: update to use a newer Cython/setuptools API for compiling .pyx -> .c, #3788
  - use python 3.5's os.scandir / os.set_blocking
  - multithreading preparations (not used yet):

    - item.to_optr(), Item.from_optr()
    - fix chunker holding the GIL during blocking I/O
  - C code portability / basic MSC compatibility, #4147, #2677
- testing:

  - vagrant: new VMs for linux/bsd/darwin, most with OpenSSL 1.1 and py36
2022-03-03 12:01:09 +00:00
..
9base sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
855resolution sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
915resolution sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
accountsservice revbump for icu and libffi 2021-12-08 16:01:42 +00:00
acpica-utils sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
acpidump sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
adtool sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
afbinit sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
agedu sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
amanda systuils/amanda: Drop semi-MAINTAINERship 2020-07-27 16:36:35 +00:00
amanda-client revbump for icu and libffi 2021-12-08 16:01:42 +00:00
amanda-common Amanda expects the security config file to be owned by root. 2022-01-31 10:56:27 +00:00
amanda-plot revbump for icu and libffi 2021-12-08 16:01:42 +00:00
amanda-server revbump for icu and libffi 2021-12-08 16:01:42 +00:00
amlogic-meson-fwtools sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
amtterm revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ansible *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
ansible-base ansible-base: updated to 2.10.17 2022-02-08 16:41:06 +00:00
ansible-lint python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
apcupsd sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
arm-trusted-firmware sysutils/arm-trusted-firmware: add patch to avoid build failure on warnings. 2022-01-29 14:03:13 +00:00
arm-trusted-firmware-fiptool sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
arm-trusted-firmware-rk3328 - Re-factor the arm-trusted-firmware packages into common definitions and 2020-06-30 14:33:14 +00:00
arm-trusted-firmware-rk3399 - Re-factor the arm-trusted-firmware packages into common definitions and 2020-06-30 14:33:14 +00:00
arm-trusted-firmware-sun50i-h6 - Re-factor the arm-trusted-firmware packages into common definitions and 2020-06-30 14:33:14 +00:00
arm-trusted-firmware-sun50i_a64 - Re-factor the arm-trusted-firmware packages into common definitions and 2020-06-30 14:33:14 +00:00
asapm sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
atitvout sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
attr sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
augeas revbump for icu and libffi 2021-12-08 16:01:42 +00:00
auto-admin sysutils/auto-admin: Update to 0.7.8 2021-12-12 15:09:59 +00:00
b2sum sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
backuppc sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
bacula revbump for icu and libffi 2021-12-08 16:01:42 +00:00
bacula-clientonly Complete import of bareos - a fork of bacula 5.2 around 2010 providing 2020-07-28 06:42:44 +00:00
bacula-doc sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
bacula-qt-console revbump for icu and libffi 2021-12-08 16:01:42 +00:00
bacula-qt5-console revbump for icu and libffi 2021-12-08 16:01:42 +00:00
bacula-tray-monitor revbump for icu and libffi 2021-12-08 16:01:42 +00:00
bacula-tray-monitor-qt5 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
baloo *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
baloo-widgets revbump for icu and libffi 2021-12-08 16:01:42 +00:00
baloo5 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
bareos revbump for icu and libffi 2021-12-08 16:01:42 +00:00
bareos-clientonly sysutils/bareos{,-clientonly}: rework config file permissions and users 2021-02-10 11:27:19 +00:00
bbsload sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
bchunk sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
bcmfw sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
bcollect sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
bdfresize sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
beats Revump all Go packages after go117 update 2022-02-13 19:24:21 +00:00
bfs sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
binwalk binwalk: convert to egg.mk 2022-01-07 23:18:19 +00:00
bkpupsd sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
bkt sysutils/bkt: update to 0.5.2 2022-02-07 09:17:55 +00:00
boxbackup-client sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
boxbackup-server *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
brasero revbump for icu and libffi 2021-12-08 16:01:42 +00:00
broot sysutils/broot: update to 1.9.3 2022-03-01 22:37:40 +00:00
bsdec2-image-upload bsdec2-image-upload: update to 1.4.5 2021-12-05 18:34:17 +00:00
bsdinstall
bsign sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
btpin-qt revbump for icu and libffi 2021-12-08 16:01:42 +00:00
bubblemon revbump for icu and libffi 2021-12-08 16:01:42 +00:00
bup bup: mark as not for Python 2.7 2022-02-05 09:05:42 +00:00
burn revbump for icu and libffi 2021-12-08 16:01:42 +00:00
burp sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
caja revbump for icu and libffi 2021-12-08 16:01:42 +00:00
caja-dropbox revbump for icu and libffi 2021-12-08 16:01:42 +00:00
caja-extensions revbump for icu and libffi 2021-12-08 16:01:42 +00:00
capistrano sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ccd2iso sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
cchmod sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ccze sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
cdbkup sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
cdirip sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
cdrdao sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
cdrkit sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
cdrtools sysutils/cdrtools: Build fix for Darwin and SunOS 2022-02-18 11:52:56 +00:00
cfengine3 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
cfm sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
checkpassword sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
checkpassword-pam sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
checkperms sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
clex sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
collectd Fix installation of collectd plugins 2021-12-28 01:02:42 +00:00
collectd-amqp collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-CGP sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
collectd-curl revbump for icu and libffi 2021-12-08 16:01:42 +00:00
collectd-dbi collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-dns collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-gmond collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-gps collectd*: update to 5.12.0 2021-03-07 14:19:41 +00:00
collectd-grpc collectd-grpc: revbump after net/grpc update 2022-02-18 09:11:57 +00:00
collectd-haproxy *: convert py-flake8 users to versioned_dependencies 2022-01-29 08:48:40 +00:00
collectd-kafka collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-lua collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-memcachec collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-mongodb revbump for icu and libffi 2021-12-08 16:01:42 +00:00
collectd-mysql Revbump for MySQL default change 2021-06-23 20:33:06 +00:00
collectd-network collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-notify-email collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-notify_desktop revbump for icu and libffi 2021-12-08 16:01:42 +00:00
collectd-nut *: Recursive revbump from devel/nss 2021-04-15 11:23:03 +00:00
collectd-openldap collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-pinba *: Revbump for protobuf-3.19.0 2021-11-11 12:02:46 +00:00
collectd-postgresql collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-redis collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-riemann revbump for icu and libffi 2021-12-08 16:01:42 +00:00
collectd-rrdtool revbump for icu and libffi 2021-12-08 16:01:42 +00:00
collectd-snmp collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-tokyotyrant collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-varnish collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-virt revbump for icu and libffi 2021-12-08 16:01:42 +00:00
collectd-web sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
collectd-write_prometheus revbump for icu and libffi 2021-12-08 16:01:42 +00:00
collectd-xen collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-xmms collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
collectd-yajl collectd: update to 5.11.0 2020-10-24 22:39:45 +00:00
conky revbump for icu and libffi 2021-12-08 16:01:42 +00:00
consolekit revbump for icu and libffi 2021-12-08 16:01:42 +00:00
consul Revump all Go packages after go117 update 2022-02-13 19:24:21 +00:00
coreutils sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
cpmtools sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
cpogm sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
cpuburn sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
cpuid sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
crashme sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ctv sysutils/ctv: import package 2022-02-13 08:16:13 +00:00
cuisine *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
cvsreport sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
daemond sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
daemonize sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
daemontools sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
daemontools-encore sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
daemontools-run
dbus Use the right variable to check for MKPIE 2022-01-27 09:02:58 +00:00
dbus-glib revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dbus-python-common Do not mention Python 3.6 2021-12-30 13:24:01 +00:00
dbus-sharp revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dbus-sharp-glib revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dc-tools sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
dd_rescue sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
dd_rhelp sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ddiff sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ddrescue sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
decode-dimms decode-dimms: Update to upstream v4.3 2021-10-28 20:18:20 +00:00
deforaos-browser revbump for icu and libffi 2021-12-08 16:01:42 +00:00
deforaos-terminal revbump for icu and libffi 2021-12-08 16:01:42 +00:00
depot sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
desktop-file-utils revbump for icu and libffi 2021-12-08 16:01:42 +00:00
detox sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
devkitd revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dfc sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
di sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
direnv Revump all Go packages after go117 update 2022-02-13 19:24:21 +00:00
direvent sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
dirsize sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
dirvish sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
disk-filltest sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
diskscrub sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
dmassage sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
dmenu-wld revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dmesg2gif *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
dmg2img sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
dmidecode sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
dmsdos sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
dog sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
dolphin revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dosfstools sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
dptutil sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
dtb-arm-exynos5422
dtb-arm-tegra124
dtb-arm-vexpress
dtb-arm64-sun50i
dtb-arm64-tegra210
dtc sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
dtpstree sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
dua-cli sysutils/dua-cli: update to 2.17.0 2022-01-22 16:11:48 +00:00
dupeguru dupeguru: regenerate PLIST for newer sphinx 2021-12-27 10:18:25 +00:00
duplicity python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
durt sysutils/durt: import package 2021-11-10 09:36:42 +00:00
dusage sysutils/dusage: update to 0.2.3 2022-02-10 22:03:09 +00:00
dust sysutils/dust: update to 0.8.0 2022-02-27 20:33:27 +00:00
dvd+rw-tools sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
dvdisaster revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dvdrecord sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
e2fsprogs Fix PLIST by not implicitly depending on gettext-tools 2021-12-02 17:59:05 +00:00
easydiskpasswd Avoid complex version logic for obsolete NetBSD versions 2020-04-29 19:57:51 +00:00
edbus revbump for icu and libffi 2021-12-08 16:01:42 +00:00
efreet revbump for icu and libffi 2021-12-08 16:01:42 +00:00
eggdbus revbump for icu and libffi 2021-12-08 16:01:42 +00:00
entr entr: Update to 5.1 2022-01-08 15:41:31 +00:00
erlang-goldrush sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
erlang-lager sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
estd sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
etckeeper Fix a missing EGREP subst. While here, subst PERL5 too. Bump PKGREVISION. 2022-01-20 13:53:13 +00:00
etcmanage sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
etcutils sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
eventlog sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
exa sysutils/exa: Refactor the crates into it's own file. 2021-11-08 05:11:27 +00:00
extipl sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
fabric python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
facette revbump for icu and libffi 2021-12-08 16:01:42 +00:00
fakeroot sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
fam sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
fastfs sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
fatback sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
fd-find fd-find: update to 8.3.2. 2022-02-27 14:43:06 +00:00
fdtools sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
fdupes sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
felix sysutils/felix: update to 0.4.0 2022-02-01 19:14:54 +00:00
fff sysutils/fff: Reset maintainer for stagnated project. 2022-02-25 09:12:29 +00:00
file Also set DYLD_LIBRARY_PATH=. (in addition to LD_PRELOAD) when generating 2022-01-29 13:06:25 +00:00
filelight revbump for icu and libffi 2021-12-08 16:01:42 +00:00
findcrcs sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
findnewest sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
findutils findutils: update to 4.9.0. 2022-02-17 15:42:00 +00:00
fix4SA110rev2 sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
fixelfprot all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
flashrom sysutils/pciutils: no longer static, remove 2021-12-19 09:47:58 +00:00
fluent-bit sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
foremost sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
free
fs-kit sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
fscd sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
fsviewer sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ftwin sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
fzf Revump all Go packages after go117 update 2022-02-13 19:24:21 +00:00
gamin revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gcdmaster revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gcombust sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
gdmap revbump for icu and libffi 2021-12-08 16:01:42 +00:00
genpasswd sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
gentoo revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gfm revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gkrellm revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gkrellm-est revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gkrellm-server revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gkrellm-share
gkrellm-themes Import gkrellm-themes-2003.01.29 2021-11-27 09:32:09 +00:00
gnome-characters revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnome-control-center revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnome-font-viewer gnome-font-viewer: fix builds with meson>=0.61 2022-03-03 01:11:27 +00:00
gnome-menus revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnome-nds-thumbnailer revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnome-settings-daemon revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnome-tracker revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnome-tracker-miners revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnome-vfs Forget about audio/gnome-vfs-cdda 2021-12-08 16:08:48 +00:00
gnome-vfsmm revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnuit sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
goreman Revump all Go packages after go117 update 2022-02-13 19:24:21 +00:00
gpart sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
grub grub: get rid of silly NetBSD version check 2021-11-09 10:25:13 +00:00
grub2 grub2: disable MKPIE and RELRO 2021-11-09 10:21:35 +00:00
grun revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gsettings-desktop-schemas revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gst-plugins0.10-gio revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gst-plugins0.10-gnomevfs revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gtk-send-pr revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gvfs revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gworkspace revbump for icu and libffi 2021-12-08 16:01:42 +00:00
hal sysutils/pciutils: no longer static, remove 2021-12-19 09:47:58 +00:00
hal-info sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
hcal sysutils/hcal: update to 0.3.4 2022-02-17 19:34:42 +00:00
hddtemp sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
heirloom-basename
heirloom-cat
heirloom-chmod
heirloom-chown
heirloom-cksum
heirloom-cmp
heirloom-copy
heirloom-cp
heirloom-csplit
heirloom-dd
heirloom-dirname
heirloom-doc sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
heirloom-du
heirloom-env
heirloom-file
heirloom-find
heirloom-getconf
heirloom-groups
heirloom-hostname
heirloom-id
heirloom-listusers
heirloom-ln
heirloom-logins
heirloom-logname
heirloom-ls
heirloom-mesg
heirloom-mkdir
heirloom-mkfifo
heirloom-mknod
heirloom-nice
heirloom-nohup
heirloom-pathchk
heirloom-pgrep
heirloom-priocntl
heirloom-ps
heirloom-psrinfo
heirloom-pwd
heirloom-renice
heirloom-rm
heirloom-rmdir
heirloom-setpgrp
heirloom-shl
heirloom-sort
heirloom-split
heirloom-stty
heirloom-sync
heirloom-tapecntl
heirloom-tee
heirloom-touch
heirloom-tsort
heirloom-tty
heirloom-uname
heirloom-users
heirloom-who
heirloom-whoami
heirloom-whodo
heirloom-xargs
heirloom-yes
hexyl hexyl: move cargo depends to cargo-depends.mk to simplify updates 2022-01-13 20:32:08 +00:00
hfsutils sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
hivex revbump for icu and libffi 2021-12-08 16:01:42 +00:00
hs-byteorder Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-easy-file Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-fast-logger Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-filepattern Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-hostname Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-hslogger Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-hslua-module-path Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-opentelemetry Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-process-extras Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-system-fileio Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-system-filepath Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-temporary Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-typed-process Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
htop sysutils/htop: Update to 3.1.2 2022-01-20 22:48:41 +00:00
hytctl sysutils: align variable assignments 2019-11-04 21:28:40 +00:00
i2ocfg sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
i3status revbump for icu and libffi 2021-12-08 16:01:42 +00:00
i810switch sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
iat sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
idesk sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
imx_usb_loader sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
install-sh
intel-backlight sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
intel-microcode-netbsd Update intel-microcode-netbsd to 20220207. 2022-02-09 05:56:05 +00:00
intellij-fsnotifier sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ioping sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ipa sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ipmitool sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ipw-firmware sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ir-account sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
isapnptools sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
iwi-firmware sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
iwi-firmware3 sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
iwn-firmware sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
k3b revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kcron *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
kdbusaddons revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kdf revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kfilemetadata *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
kfilemetadata5 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kfloppy revbump for icu and libffi 2021-12-08 16:01:42 +00:00
krusader revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ksystemlog revbump for icu and libffi 2021-12-08 16:01:42 +00:00
kuser *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
lambd
lastfss sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
lavaps sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
lf Revump all Go packages after go117 update 2022-02-13 19:24:21 +00:00
libbaloo4 *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
libburn sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
libcap sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
libdevkit-gobject revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libfm revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libfm-extra revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libgamin
libgksu revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libgtop revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libisoburn sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
libisofs sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
liblogging sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
liblognorm sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
libnotify revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libol sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
liboobs revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libpciaccess sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
libtpms sysutils/libtpms: import libtpms-0.9.1 2022-02-05 03:09:26 +00:00
libtree Add libtree-2.0.0 2021-12-31 17:28:11 +00:00
libvirt sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
lilo sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
lnav revbump for icu and libffi 2021-12-08 16:01:42 +00:00
lockf
logfinder sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
logrider sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
logrot sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
logrotate sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
lsd sysutils/lsd: update to 0.21.0 2022-01-16 16:51:31 +00:00
lsfp sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
lsof lsof: fix typo in comment in previous commit 2022-02-27 02:13:44 +00:00
lvm2 sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
lxmenu-data sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
lxpanel revbump for icu and libffi 2021-12-08 16:01:42 +00:00
lxqt-powermanagement revbump for icu and libffi 2021-12-08 16:01:42 +00:00
lxtask revbump for icu and libffi 2021-12-08 16:01:42 +00:00
m1n1 Fix packages that use GITSUB_MODULES on SunOS and possibly others 2022-01-09 23:42:02 +00:00
macchina sysutils/macchina: update to 6.0.6 2022-02-08 12:37:05 +00:00
magicrescue sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
manifold manifold: convert to egg.mk 2022-01-10 08:18:25 +00:00
mate-notification-daemon revbump for icu and libffi 2021-12-08 16:01:42 +00:00
mate-power-manager revbump for icu and libffi 2021-12-08 16:01:42 +00:00
mate-sensors-applet revbump for icu and libffi 2021-12-08 16:01:42 +00:00
mate-system-monitor revbump for icu and libffi 2021-12-08 16:01:42 +00:00
mbmon sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
mc revbump for icu and libffi 2021-12-08 16:01:42 +00:00
mc46 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
mcollective sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
mdf2iso sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
memtester sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
memtestplus sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
mencvcd sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
menu-cache revbump for icu and libffi 2021-12-08 16:01:42 +00:00
meson-tools sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
mesure sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
mgm sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
minipro Add a package for minipro, an open source program for controlling the 2022-01-22 17:52:53 +00:00
mklivecd
mkmemstick
mksunbootcd sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
mktemp sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
monit sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
monitoring monitoring: convert to egg.mk 2022-01-10 08:27:12 +00:00
mrsync sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
mtools sysutils/mtools: update to 4.0.36 2022-01-01 17:25:09 +00:00
mtoolsfm sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
mtscan all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
mtx sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
munin-common sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
munin-master munin: update to version 2.0.67 2021-07-25 13:26:35 +00:00
munin-node munin: update to version 2.0.67 2021-07-25 13:26:35 +00:00
nautilus revbump for icu and libffi 2021-12-08 16:01:42 +00:00
navi sysutils/navi: update to 2.19.0 2022-01-19 10:53:37 +00:00
nbase sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ncdu sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ndesk-dbus revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ndesk-dbus-glib revbump for icu and libffi 2021-12-08 16:01:42 +00:00
neb-wipe sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
neofetch sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
netbt-hcidump sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
netmask sysutils/netmask: Import netmask-2.4.4 from wip 2021-11-17 17:12:45 +00:00
news sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
nnn sysutils/nnn: Update to 4.4 2021-11-23 23:20:14 +00:00
node_exporter Revump all Go packages after go117 update 2022-02-13 19:24:21 +00:00
noice sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
notification-daemon revbump for icu and libffi 2021-12-08 16:01:42 +00:00
nrg2iso sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ntfsprogs
nvnet sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
nvramtool sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
oak sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
onefetch sysutils/onefetch: update to 2.11.0 2021-11-24 18:23:06 +00:00
open-vm-tools Workaround for an issue regarding write operations on vmhgfs 2022-01-30 16:22:19 +00:00
openipmi sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
openstack_init Revbump packages with a runtime Python dep but no version prefix. 2020-12-04 20:44:57 +00:00
openxenmanager revbump for icu and libffi 2021-12-08 16:01:42 +00:00
osname sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ovmf sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-BackupPC-XS sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-collectd *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
p5-Config-Augeas revbump for icu and libffi 2021-12-08 16:01:42 +00:00
p5-Config-Simple sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Daemon-Generic sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-File-chmod sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-File-Copy-Recursive sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-File-Copy-Recursive-Reduced sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-File-Inplace sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-File-Remove sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Filesys-Df sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Filesys-DfPortable sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Filesys-Statvfs sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Gnome2-VFS revbump for icu and libffi 2021-12-08 16:01:42 +00:00
p5-GTop revbump for icu and libffi 2021-12-08 16:01:42 +00:00
p5-IO-BufferedSelect sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-IO-KQueue mk: For consistency, rename PKG_HAS_ to OPSYS_HAVE_. 2021-11-09 12:04:43 +00:00
p5-Lchown sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Linux-Inotify2 sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Mac-AppleScript sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Mac-AppleScript-Glue sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Monitoring-Plugin sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Parse-Syslog sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Quota sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Server-Starter sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-SSH-Batch sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Sys-CPU sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Sys-CpuLoad sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Sys-Filesystem sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Sys-Hostname-Long sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Sys-MemInfo Add p5-Sys-MemInfo version 0.99 2021-12-18 15:07:01 +00:00
p5-Sys-SigAction sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Sys-Utmp sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Unburden-Home-Dir Update Unburden-Home-Dir to v0.4.1.3 2021-11-24 16:29:30 +00:00
p5-Unix-ConfigFile sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Unix-Process sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Unix-Processors sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Unix-Statgrab sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-Unix-Syslog sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
p5-UPS-Nut *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
pciutils pciutils: fix build on SunOS, no symbol versioning available 2022-01-09 22:31:57 +00:00
pcmanfm revbump for icu and libffi 2021-12-08 16:01:42 +00:00
pcmanfm-qt revbump for icu and libffi 2021-12-08 16:01:42 +00:00
pcvt-utils sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
pdumpfs sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
pear-Log sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
pfetch sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
pflogsumm sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
pfstat sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
pftop sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
pidof sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
pluged sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
podman podman: skip a portability check 2022-01-09 02:58:52 +00:00
polysh *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
pscpug sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
psftools sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
psmisc sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
pstree sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
puppet sysutils/puppet: update to 7.13.1 2021-12-14 14:47:28 +00:00
pv sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
pwgen sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
py-appnope *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-augeas *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-borgbackup py-borgbackup: update to 1.2.0. 2022-03-03 12:01:09 +00:00
py-collectd Update installation procedure 2021-12-28 01:11:53 +00:00
py-cpuinfo python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-crontab *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-dbus revbump for icu and libffi 2021-12-08 16:01:42 +00:00
py-diffoscope python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-eliot python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-euca2ools *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-filetype python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-Glances python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-google-compute-engine python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-jeepney py-jeepney: updated to 0.7.1 2022-01-23 09:09:51 +00:00
py-kazoo *: convert py-flake8 users to versioned_dependencies 2022-01-29 08:48:40 +00:00
py-magic py-magic: updated to 0.4.25 2022-02-02 12:29:14 +00:00
py-notify *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-notify-python revbump for icu and libffi 2021-12-08 16:01:42 +00:00
py-pathtools *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pefile *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pid *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-psutil py-psutil: updated to 5.9.0 2022-01-10 17:05:27 +00:00
py-ptyprocess *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-pyinotify *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-salt-pepper *: setuptools_scm: switch to versioned_dependencies 2022-01-13 19:31:20 +00:00
py-Send2Trash py-Send2Trash: updated to 1.8.0 2022-02-05 11:51:59 +00:00
py-setconf python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-setproctitle *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-sh *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-stack-data py-stack-data: add missing build dependency 2022-02-01 10:08:09 +00:00
py-structlog py-structlog: updated to 21.5.0 2022-01-07 17:04:31 +00:00
py-supervisor python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-syslog-ng revbump for icu and libffi 2021-12-08 16:01:42 +00:00
py-watchdog python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-xattr python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
qdirstat revbump for icu and libffi 2021-12-08 16:01:42 +00:00
qlogtools sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
qpasswd sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
R-later sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
R-processx sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
R-progress sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
R-ps (sysutils/R-ps) PKGREVISION++ 2021-11-06 13:37:33 +00:00
R-sys sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
R-unix sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
R-xopen sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
radeontool sysutils/pciutils: no longer static, remove 2021-12-19 09:47:58 +00:00
radmind sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
rcm sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
rconfig sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
rdfind sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
rdiff-backup *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
refi sysutils/refi: Reset maintainer for stagnated project. 2022-02-25 09:14:41 +00:00
rename sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
renameutils sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
restic Revump all Go packages after go117 update 2022-02-13 19:24:21 +00:00
rfstool sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
riemann-client revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rkdeveloptool sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
rkflashtool sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
rmtrash sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
roller sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
rox revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rsnapshot sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
rsyslog revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rsyslog-dbi revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rsyslog-elasticsearch revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rsyslog-gnutls revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rsyslog-gssapi revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rsyslog-kafka revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rsyslog-libgcrypt revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rsyslog-mysql revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rsyslog-omprog revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rsyslog-pgsql revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rsyslog-rabbitmq revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rsyslog-relp revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rsyslog-snmp revbump for icu and libffi 2021-12-08 16:01:42 +00:00
rtty sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ruby-capistrano-harrow sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ruby-capistrano-stats sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ruby-chef Allow build with Ruby 3.1. 2022-01-16 14:29:47 +00:00
ruby-chef-config sysutils/ruby-chef: update to 17.8.25 2021-12-12 13:07:02 +00:00
ruby-chef-telemetry sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ruby-chef-utils sysutils/ruby-chef: update to 17.8.25 2021-12-12 13:07:02 +00:00
ruby-chef-zero sysutils/ruby-chef-zero: update to 15.0.11 2021-12-12 13:18:14 +00:00
ruby-childprocess sysutils/ruby-childprocess: update to 4.1.0 2021-12-12 13:19:44 +00:00
ruby-directory-watcher sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ruby-facter sysutils/ruby-facter: update to 4.2.6 2021-12-14 14:32:57 +00:00
ruby-fssm sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ruby-inspec-core sysutils/ruby-inspec-core: update to 4.50.3 2021-12-12 13:16:23 +00:00
ruby-listen sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ruby-notify sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ruby-puppet-resource_api sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ruby-quota sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ruby-rb-appscript sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ruby-serverspec sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ruby-specinfra sysutils/ruby-specinfra 2021-12-11 14:22:28 +00:00
ruby-syslog-logger sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
rw sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
s6 Update to 2.11.0.1. From the changelog: 2021-12-22 16:03:27 +00:00
safetynet sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
salt python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
salt-docs salt salt-docs: updated to 3004 2021-11-14 20:01:17 +00:00
same sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
sandboxctl sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
sarah sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
screenbrightness sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
screenfetch sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
screentest revbump for icu and libffi 2021-12-08 16:01:42 +00:00
scsiinfo sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
service-config sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
setquota sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
sfm sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
sformat sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
shc sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
shelldap sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
shmux sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
skill sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
slay sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
sleepwatcher Add sleepwatcher, a daemon that runs a Unix command on various macOS 2022-01-05 10:56:00 +00:00
slocate sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
smartmontools sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
smbldap-tools sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
socket sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
solid revbump for icu and libffi 2021-12-08 16:01:42 +00:00
spice-gtk revbump for icu and libffi 2021-12-08 16:01:42 +00:00
spice-protocol sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
spice-server spice-server: fix build with python 3.10 2022-01-27 19:04:12 +00:00
sredird sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
sshsh sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
stow sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
strace sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
strigi *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
su2 sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
sunxi-tools sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
sux sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
swapd sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
swatch sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
swtpm sysutils/swtpm: import swtpm-0.7.0 2022-02-05 03:13:12 +00:00
sysbuild sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
sysbuild-user
sysgen sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
sysinfo sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
syslog-ng revbump for icu and libffi 2021-12-08 16:01:42 +00:00
syslog-ng-amqp revbump for icu and libffi 2021-12-08 16:01:42 +00:00
syslog-ng-curl revbump for icu and libffi 2021-12-08 16:01:42 +00:00
syslog-ng-geoip2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
syslog-ng-mongodb revbump for icu and libffi 2021-12-08 16:01:42 +00:00
syslog-ng-redis revbump for icu and libffi 2021-12-08 16:01:42 +00:00
syslog-ng-smtp revbump for icu and libffi 2021-12-08 16:01:42 +00:00
syslog-ng-snmp revbump for icu and libffi 2021-12-08 16:01:42 +00:00
syslog-ng-sql syslog-ng: update to 3.34.1 2021-09-16 09:22:46 +00:00
system-tools-backends revbump for icu and libffi 2021-12-08 16:01:42 +00:00
systester revbump for icu and libffi 2021-12-08 16:01:42 +00:00
sysupgrade sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
tarsnap tarsnap: update to 1.0.40. 2022-02-12 22:58:08 +00:00
tarsnap-gui revbump for icu and libffi 2021-12-08 16:01:42 +00:00
tcx sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
tdir sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
tealdeer tealdeer: update to 1.5.0. 2022-01-01 19:32:04 +00:00
tegra-firmware sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
tenshi sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
testdisk sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
tiramisu revbump for icu and libffi 2021-12-08 16:01:42 +00:00
tits sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
tkcron sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
tkdesk sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
tload sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
tob sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
top sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
toshutils sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
tpb sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
tphdisk sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
trash sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
tre-command sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
tree sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
trusted-firmware-a Add Trusted Firmware-A (TF-A, the new name for Arm'sATF) v2.6 with 2022-02-09 01:57:57 +00:00
trusted-firmware-a-fiptool Add Trusted Firmware-A (TF-A, the new name for Arm'sATF) v2.6 with 2022-02-09 01:57:57 +00:00
trusted-firmware-a-rk3328 Add Trusted Firmware-A (TF-A, the new name for Arm'sATF) v2.6 with 2022-02-09 01:57:57 +00:00
trusted-firmware-a-rk3399 Add Trusted Firmware-A (TF-A, the new name for Arm'sATF) v2.6 with 2022-02-09 01:57:57 +00:00
ts sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
tsm8 Update sysutils/tsm8 to v8.1.13 2022-02-02 13:38:56 +00:00
ttyplot sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
u-boot load pinebook pro SPI environment from the same location that 2022-02-12 07:44:55 +00:00
u-boot-a10-olinuxino-lime u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-a20-olinuxino-lime2 u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-a20-olinuxino-lime2-emmc u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-a20-olinuxino-micro u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-a20-olinuxino-micro-emmc u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-apple-m1 sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
u-boot-bananapi u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-bananapi-m2-zero u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-bananapi-m3 u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-bananapi-p2-zero u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-bananapi-r2 sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
u-boot-bananapro u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-beagleboard u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-beagleboneblack u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-beaglebonewhite u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-chip u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-chip-pro u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-ci20 sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
u-boot-cubieboard2 u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-cubieboard4 u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-cubietruck u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-cubietruck-plus u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-de0-nanosoc u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-hummingbird-a31 u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-jetson-nano sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
u-boot-jetson-tk1 u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-jetson-tx1 u-boot*: fix more pkglint 2021-08-12 07:30:21 +00:00
u-boot-jetson-tx2 u-boot*: fix more pkglint 2021-08-12 07:30:21 +00:00
u-boot-lamobo-r1 u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-libretech-all-h3-cc-h2-plus u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-libretech-all-h3-cc-h3 u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-libretech-all-h3-cc-h5 u-boot*: fix more pkglint 2021-08-12 07:30:21 +00:00
u-boot-libretech-cc u-boot*: fix more pkglint 2021-08-12 07:30:21 +00:00
u-boot-licheepi-zero u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-nanopi-duo2 u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-nanopi-m1 u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-nanopi-neo u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-nanopi-neo-plus2 u-boot*: fix more pkglint 2021-08-12 07:30:21 +00:00
u-boot-nanopi-neo2 u-boot*: fix more pkglint 2021-08-12 07:30:21 +00:00
u-boot-nanopi-r1 u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-odroid-c2 sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
u-boot-odroid-xu3 u-boot*: fix more pkglint 2021-08-12 07:35:05 +00:00
u-boot-orangepi-2 u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-orangepi-lite u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-orangepi-lite2 u-boot*: fix more pkglint 2021-08-12 07:30:21 +00:00
u-boot-orangepi-one u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-orangepi-pc u-boot*: fix more pkglint 2021-08-12 07:35:05 +00:00
u-boot-orangepi-plus2e u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-orangepi-zero u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-orangepi-zero-plus u-boot*: fix more pkglint 2021-08-12 07:30:21 +00:00
u-boot-pandaboard u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-pico-pi-imx7d u-boot*: fix more pkglint 2021-08-12 07:35:05 +00:00
u-boot-pine-h64 *: Remove PKGREVISION=0 2021-08-12 07:36:39 +00:00
u-boot-pine64 u-boot*: fix more pkglint 2021-08-12 07:30:21 +00:00
u-boot-pinebook sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
u-boot-pinebook-pro load pinebook pro SPI environment from the same location that 2022-02-12 07:44:55 +00:00
u-boot-pinephone sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
u-boot-pocketchip u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-roc-rk3328-cc u-boot*: fix more pkglint 2021-08-12 07:30:21 +00:00
u-boot-rock64 update u-boot-rock64 to 2022.01 and tf-a 2.6. 2022-02-11 23:03:50 +00:00
u-boot-rockpro64 update u-boot-rock64 to 2022.01 and tf-a 2.6. 2022-02-11 23:03:50 +00:00
u-boot-rockpro64-ayufan sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
u-boot-rpi3-32 u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-sopine-baseboard u-boot*: fix more pkglint 2021-08-12 07:30:21 +00:00
u-boot-tinker u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-zynq-zybo u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
u-boot-zynq-zybo-z7 u-boot*: fix some pkglint 2021-08-12 07:25:54 +00:00
ufetch sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
upower revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ups-nut sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ups-nut-cgi ups-nut*: add options.mk for SSL support 2021-02-11 10:05:13 +00:00
ups-nut-snmp *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ups-nut-usb *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
usbhid-dump sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
usbutil sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
user_cygwin
user_darwin
user_interix
user_irix
vbetool sysutils/pciutils: no longer static, remove 2021-12-19 09:47:58 +00:00
vcdimager revbump for icu and libffi 2021-12-08 16:01:42 +00:00
vidc-tools sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
vifm vifm: fix PLIST on Darwin 2021-12-13 13:15:41 +00:00
vip sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
virt-manager revbump for icu and libffi 2021-12-08 16:01:42 +00:00
virt-viewer virt-viewer: Add missing dependency on gettext tools 2021-12-13 13:23:50 +00:00
virt-what sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
virtinst *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
vobcopy sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
vultr Revump all Go packages after go117 update 2022-02-13 19:24:21 +00:00
vxargs sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
watchman sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
wbm-apache (sysutils/wbm-apache) remove PKGREVISION for update 1.955 to 1.960 2020-10-27 12:30:59 +00:00
wbm-at (sysutils/wbm-at) regen PLIST 2020-10-30 22:08:55 +00:00
wbm-bandwidth (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-bind8 (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-change-user (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-cluster-copy (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-cluster-cron (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-cluster-passwd (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-cluster-shell (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-cluster-useradmin (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-cluster-webmin (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-custom (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-cyrus-imapd sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
wbm-dhcpd (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-dovecot (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-fetchmail (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-htaccess-htpasswd (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-inetd (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-ipfilter (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-ldap-useradmin (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-lpadmin (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-mailboxes (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-mount (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-mysql (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-net (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-openslp (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-postfix (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-postgresql (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-qmailadmin (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-quota (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-sendmail (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-shell (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-sshd (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-status (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-syslog (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-telnet (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-time (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-tunnel (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-useradmin (sysutils/webmin,wbm-*) updated 1.953 to 1.955 2020-09-06 02:38:53 +00:00
wbm-virtual-server sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
WCMCommander sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
webmin sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
whowatch sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
wipe sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
within sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
wmbattery revbump for icu and libffi 2021-12-08 16:01:42 +00:00
wmcpuload sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
wmmemmon sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
wmSMPmon sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
wpi-firmware sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
wpi-firmware2 sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
wtail sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xapply sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xbatt sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xbattbar sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xc5k-firmware sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xc3028l-firmware sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xcdroast revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xdu sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xe xe: simplify, and fix build on NetBSD 2022-01-23 21:37:07 +00:00
xe-guest-utilities sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xenkernel411 sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xenkernel413 sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xenkernel415 sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xenstoretools revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xentools411 sysutils/pciutils: no longer static, remove 2021-12-19 09:47:58 +00:00
xentools413 sysutils/pciutils: no longer static, remove 2021-12-19 09:47:58 +00:00
xentools415 xentools415: convert to egg.mk 2022-01-15 17:44:35 +00:00
xenvstat all: migrate several HOMEPAGEs to https 2020-01-18 23:30:43 +00:00
xfburn revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xfce4-appfinder revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xfce4-battery-plugin revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xfce4-cpugraph-plugin xfce4-cpugraph-plugin: this now requires a C++14 feature 2022-02-10 02:14:12 +00:00
xfce4-diskperf-plugin xfce4-diskperf-plugin: update to 2.6.3 2021-12-17 00:41:59 +00:00
xfce4-fsguard-plugin xfce4-fsguard-plugin: update to 1.1.2 2021-12-18 02:11:04 +00:00
xfce4-genmon-plugin revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xfce4-mount-plugin xfce4-mount-plugin: update to 1.1.5 2021-12-20 02:39:33 +00:00
xfce4-netload-plugin xfce4-netload-plugin: update to 1.4.0 2021-12-11 13:44:44 +00:00
xfce4-power-manager revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xfce4-systemload-plugin xfce4-systemload-plugin: update to 1.3.1 2021-12-11 14:10:05 +00:00
xfce4-taskmanager xfce4-taskmanager: update to 1.5.2 2022-01-05 01:14:22 +00:00
xfce4-thunar xfce4-thunar: this now requires a C99 feature 2022-02-10 02:12:46 +00:00
xfce4-thunar-vcs revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xfce4-verve-plugin revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xfce4-xkb-plugin revbump for icu and libffi 2021-12-08 16:01:42 +00:00
xfe sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xfm sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xfsprogs sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xhfs sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xhyve sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xmbmon
xmeter sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xnc sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xosview sysutils/xosview: Update to 1.23 2021-12-03 13:06:57 +00:00
xplr sysutils/xplr: update to 0.17.3 2022-02-28 08:28:01 +00:00
xps sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
xuvmstat sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
yadm Use pax; it's better than tar -c|tar -x 2021-11-23 07:30:52 +00:00
yank sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
ytree ytree: update to 2.04. 2021-11-21 07:43:31 +00:00
zabbix revbump for icu and libffi 2021-12-08 16:01:42 +00:00
zabbix-frontend Switch to use lang/php/json.mk. 2021-03-07 13:21:56 +00:00
zabbix50-agent revbump for icu and libffi 2021-12-08 16:01:42 +00:00
zabbix50-frontend zabbix50: Update to 5.0.17 2021-11-13 20:41:09 +00:00
zabbix50-java zabbix50: Update to 5.0.17 2021-11-13 20:41:09 +00:00
zabbix50-proxy revbump for icu and libffi 2021-12-08 16:01:42 +00:00
zabbix50-server revbump for icu and libffi 2021-12-08 16:01:42 +00:00
zidrav sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
znapzend sysutils: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:19:17 +00:00
zoxide sysutils/zoxide: update to 0.8.0 2021-12-29 05:54:01 +00:00
Makefile sysutils/Makefile: + hs-system-fileio 2022-02-24 01:22:13 +00:00