pkgsrc/sysutils
wiz c437def87b Updated py-borgbackup to 1.0.7.
Important note about pre-1.0.4 potential repo corruption
--------------------------------------------------------

Some external errors (like network or disk I/O errors) could lead to
corruption of the backup repository due to issue #1138.

A sign that this happened is if "E" status was reported for a file that can
not be explained by problems with the source file. If you still have logs from
"borg create -v --list", you can check for "E" status.

Here is what could cause corruption and what you can do now:

1) I/O errors (e.g. repo disk errors) while writing data to repo.

This could lead to corrupted segment files.

Fix::

    # check for corrupt chunks / segments:
    borg check -v --repository-only REPO

    # repair the repo:
    borg check -v --repository-only --repair REPO

    # make sure everything is fixed:
    borg check -v --repository-only REPO

2) Unreliable network / unreliable connection to the repo.

This could lead to archive metadata corruption.

Fix::

    # check for corrupt archives:
    borg check -v --archives-only REPO

    # delete the corrupt archives:
    borg delete --force REPO::CORRUPT_ARCHIVE

    # make sure everything is fixed:
    borg check -v --archives-only REPO

3) In case you want to do more intensive checking.

The best check that everything is ok is to run a dry-run extraction::

    borg extract -v --dry-run REPO::ARCHIVE


Version 1.0.7 (2016-08-19)
--------------------------

Security fixes:

- borg serve: fix security issue with remote repository access, #1428
  If you used e.g. --restrict-to-path /path/client1/ (with or without trailing
  slash does not make a difference), it acted like a path prefix match using
  /path/client1 (note the missing trailing slash) - the code then also allowed
  working in e.g. /path/client13 or /path/client1000.

  As this could accidentally lead to major security/privacy issues depending on
  the pathes you use, the behaviour was changed to be a strict directory match.
  That means --restrict-to-path /path/client1 (with or without trailing slash
  does not make a difference) now uses /path/client1/ internally (note the
  trailing slash here!) for matching and allows precisely that path AND any
  path below it. So, /path/client1 is allowed, /path/client1/repo1 is allowed,
  but not /path/client13 or /path/client1000.

  If you willingly used the undocumented (dangerous) previous behaviour, you
  may need to rearrange your --restrict-to-path pathes now. We are sorry if
  that causes work for you, but we did not want a potentially dangerous
  behaviour in the software (not even using a for-backwards-compat option).

Bug fixes:

- fixed repeated LockTimeout exceptions when borg serve tried to write into
  a already write-locked repo (e.g. by a borg mount), #502 part b)
  This was solved by the fix for #1220 in 1.0.7rc1 already.
- fix cosmetics + file leftover for "not a valid borg repository", #1490
- Cache: release lock if cache is invalid, #1501
- borg extract --strip-components: fix leak of preloaded chunk contents
- Repository, when a InvalidRepository exception happens:

  - fix spurious, empty lock.roster
  - fix repo not closed cleanly

New features:

- implement borg debug-info, fixes #1122
  (just calls already existing code via cli, same output as below tracebacks)

Other changes:

- skip the O_NOATIME test on GNU Hurd, fixes #1315
  (this is a very minor issue and the GNU Hurd project knows the bug)
- document using a clean repo to test / build the release


Version 1.0.7rc2 (2016-08-13)
-----------------------------

Bug fixes:

- do not write objects to repository that are bigger than the allowed size,
  borg will reject reading them, #1451.

  Important: if you created archives with many millions of files or
  directories, please verify if you can open them successfully,
  e.g. try a "borg list REPO::ARCHIVE".
- lz4 compression: dynamically enlarge the (de)compression buffer, the static
  buffer was not big enough for archives with extremely many items, #1453
- larger item metadata stream chunks, raise archive item limit by 8x, #1452
- fix untracked segments made by moved DELETEs, #1442

  Impact: Previously (metadata) segments could become untracked when deleting data,
  these would never be cleaned up.
- extended attributes (xattrs) related fixes:

  - fixed a race condition in xattrs querying that led to the entire file not
    being backed up (while logging the error, exit code = 1), #1469
  - fixed a race condition in xattrs querying that led to a crash, #1462
  - raise OSError including the error message derived from errno, deal with
    path being a integer FD

Other changes:

- print active env var override by default, #1467
- xattr module: refactor code, deduplicate, clean up
- repository: split object size check into too small and too big
- add a transaction_id assertion, so borg init on a broken (inconsistent)
  filesystem does not look like a coding error in borg, but points to the
  real problem.
- explain confusing TypeError caused by compat support for old servers, #1456
- add forgotten usage help file from build_usage
- refactor/unify buffer code into helpers.Buffer class, add tests
- docs:

  - document archive limitation, #1452
  - improve prune examples


Version 1.0.7rc1 (2016-08-05)
-----------------------------

Bug fixes:

- fix repo lock deadlocks (related to lock upgrade), #1220
- catch unpacker exceptions, resync, #1351
- fix borg break-lock ignoring BORG_REPO env var, #1324
- files cache performance fixes (fixes unneccessary re-reading/chunking/
  hashing of unmodified files for some use cases):

  - fix unintended file cache eviction, #1430
  - implement BORG_FILES_CACHE_TTL, update FAQ, raise default TTL from 10
    to 20, #1338
- FUSE:

  - cache partially read data chunks (performance), #965, #966
  - always create a root dir, #1125
- use an OrderedDict for helptext, making the build reproducible, #1346
- RemoteRepository init: always call close on exceptions, #1370 (cosmetic)
- ignore stdout/stderr broken pipe errors (cosmetic), #1116

New features:

- better borg versions management support (useful esp. for borg servers
  wanting to offer multiple borg versions and for clients wanting to choose
  a specific server borg version), #1392:

  - add BORG_VERSION environment variable before executing "borg serve" via ssh
  - add new placeholder {borgversion}
  - substitute placeholders in --remote-path

- borg init --append-only option (makes using the more secure append-only mode
  more convenient. when used remotely, this requires 1.0.7+ also on the borg
  server), #1291.

Other changes:

- Vagrantfile:

  - darwin64: upgrade to FUSE for macOS 3.4.1 (aka osxfuse), #1378
  - xenial64: use user "ubuntu", not "vagrant" (as usual), #1331
- tests:

  - fix fuse tests on OS X, #1433
- docs:

  - FAQ: add backup using stable filesystem names recommendation
  - FAQ about glibc compatibility added, #491, glibc-check improved
  - FAQ: 'A' unchanged file; remove ambiguous entry age sentence.
  - OS X: install pkg-config to build with FUSE support, fixes #1400
  - add notes about shell/sudo pitfalls with env. vars, #1380
  - added platform feature matrix
- implement borg debug-dump-repo-objs


Version 1.0.6 (2016-07-12)
--------------------------

Bug fixes:

- Linux: handle multiple LD_PRELOAD entries correctly, #1314, #1111
- Fix crash with unclear message if the libc is not found, #1314, #1111

Other changes:

- tests:

  - Fixed O_NOATIME tests for Solaris and GNU Hurd, #1315
  - Fixed sparse file tests for (file) systems not supporting it, #1310
- docs:

  - Fixed syntax highlighting, #1313
  - misc docs: added data processing overview picture

Version 1.0.6rc1 (2016-07-10)
-----------------------------

New features:

- borg check --repair: heal damaged files if missing chunks re-appear (e.g. if
  the previously missing chunk was added again in a later backup archive),
  #148. (*) Also improved logging.

Bug fixes:

- sync_dir: silence fsync() failing with EINVAL, #1287
  Some network filesystems (like smbfs) don't support this and we use this in
  repository code.
- borg mount (FUSE):

  - fix directories being shadowed when contained paths were also specified,
    #1295
  - raise I/O Error (EIO) on damaged files (unless -o allow_damaged_files is
    used), #1302. (*)
- borg extract: warn if a damaged file is extracted, #1299. (*)
- Added some missing return code checks (ChunkIndex._add, hashindex_resize).
- borg check: fix/optimize initial hash table size, avoids resize of the table.

Other changes:

- tests:

  - add more FUSE tests, #1284
  - deduplicate fuse (u)mount code
  - fix borg binary test issues, #862
- docs:

  - changelog: added release dates to older borg releases
  - fix some sphinx (docs generator) warnings, #881

Notes:

(*) Some features depend on information (chunks_healthy list) added to item
metadata when a file with missing chunks was "repaired" using all-zero
replacement chunks. The chunks_healthy list is generated since borg 1.0.4,
thus borg can't recognize such "repaired" (but content-damaged) files if the
repair was done with an older borg version.


Version 1.0.5 (2016-07-07)
--------------------------

Bug fixes:

- borg mount: fix FUSE crash in xattr code on Linux introduced in 1.0.4, #1282

Other changes:

- backport some FAQ entries from master branch
- add release helper scripts
- Vagrantfile:

  - centos6: no FUSE, don't build binary
  - add xz for redhat-like dists


Version 1.0.4 (2016-07-07)
--------------------------

New features:

- borg serve --append-only, #1168
  This was included because it was a simple change (append-only functionality
  was already present via repository config file) and makes better security now
  practically usable.
- BORG_REMOTE_PATH environment variable, #1258
  This was included because it was a simple change (--remote-path cli option
  was already present) and makes borg much easier to use if you need it.
- Repository: cleanup incomplete transaction on "no space left" condition.
  In many cases, this can avoid a 100% full repo filesystem (which is very
  problematic as borg always needs free space - even to delete archives).

Bug fixes:

- Fix wrong handling and reporting of OSErrors in borg create, #1138.
  This was a serious issue: in the context of "borg create", errors like
  repository I/O errors (e.g. disk I/O errors, ssh repo connection errors)
  were handled badly and did not lead to a crash (which would be good for this
  case, because the repo transaction would be incomplete and trigger a
  transaction rollback to clean up).
  Now, error handling for source files is cleanly separated from every other
  error handling, so only problematic input files are logged and skipped.
- Implement fail-safe error handling for borg extract.
  Note that this isn't nearly as critical as the borg create error handling
  bug, since nothing is written to the repo. So this was "merely" misleading
  error reporting.
- Add missing error handler in directory attr restore loop.
- repo: make sure write data hits disk before the commit tag (#1236) and also
  sync the containing directory.
- FUSE: getxattr fail must use errno.ENOATTR, #1126
  (fixes Mac OS X Finder malfunction: "zero bytes" file length, access denied)
- borg check --repair: do not lose information about the good/original chunks.
  If we do not lose the original chunk IDs list when "repairing" a file
  (replacing missing chunks with all-zero chunks), we have a chance to "heal"
  the file back into its original state later, in case the chunks re-appear
  (e.g. in a fresh backup). Healing is not implemented yet, see #148.
- fixes for --read-special mode:

  - ignore known files cache, #1241
  - fake regular file mode, #1214
  - improve symlinks handling, #1215
- remove passphrase from subprocess environment, #1105
- Ignore empty index file (will trigger index rebuild), #1195
- add missing placeholder support for --prefix, #1027
- improve exception handling for placeholder replacement
- catch and format exceptions in arg parsing
- helpers: fix "undefined name 'e'" in exception handler
- better error handling for missing repo manifest, #1043
- borg delete:

  - make it possible to delete a repo without manifest
  - borg delete --forced allows to delete corrupted archives, #1139
- borg check:

  - make borg check work for empty repo
  - fix resync and msgpacked item qualifier, #1135
  - rebuild_manifest: fix crash if 'name' or 'time' key were missing.
  - better validation of item metadata dicts, #1130
  - better validation of archive metadata dicts
- close the repo on exit - even if rollback did not work, #1197.
  This is rather cosmetic, it avoids repo closing in the destructor.

- tests:

  - fix sparse file test, #1170
  - flake8: ignore new F405, #1185
  - catch "invalid argument" on cygwin, #257
  - fix sparseness assertion in test prep, #1264

Other changes:

- make borg build/work on OpenSSL 1.0 and 1.1, #1187
- docs / help:

  - fix / clarify prune help, #1143
  - fix "patterns" help formatting
  - add missing docs / help about placeholders
  - resources: rename atticmatic to borgmatic
  - document sshd settings, #545
  - more details about checkpoints, add split trick, #1171
  - support docs: add freenode web chat link, #1175
  - add prune visualization / example, #723
  - add note that Fnmatch is default, #1247
  - make clear that lzma levels > 6 are a waste of cpu cycles
  - add a "do not edit" note to auto-generated files, #1250
  - update cygwin installation docs
- repository interoperability with borg master (1.1dev) branch:

  - borg check: read item metadata keys from manifest, #1147
  - read v2 hints files, #1235
  - fix hints file "unknown version" error handling bug
- tests: add tests for format_line
- llfuse: update version requirement for freebsd
- Vagrantfile:

  - use openbsd 5.9, #716
  - do not install llfuse on netbsd (broken)
  - update OSXfuse to version 3.3.3
  - use Python 3.5.2 to build the binaries
- glibc compatibility checker: scripts/glibc_check.py
- add .eggs to .gitignore


Version 1.0.3 (2016-05-20)
--------------------------

Bug fixes:

- prune: avoid that checkpoints are kept and completed archives are deleted in
  a prune run), #997
- prune: fix commandline argument validation - some valid command lines were
  considered invalid (annoying, but harmless), #942
- fix capabilities extraction on Linux (set xattrs last, after chown()), #1069
- repository: fix commit tags being seen in data
- when probing key files, do binary reads. avoids crash when non-borg binary
  files are located in borg's key files directory.
- handle SIGTERM and make a clean exit - avoids orphan lock files.
- repository cache: don't cache large objects (avoid using lots of temp. disk
  space), #1063

Other changes:

- Vagrantfile: OS X: update osxfuse / install lzma package, #933
- setup.py: add check for platform_darwin.c
- setup.py: on freebsd, use a llfuse release that builds ok
- docs / help:

  - update readthedocs URLs, #991
  - add missing docs for "borg break-lock", #992
  - borg create help: add some words to about the archive name
  - borg create help: document format tags, #894
2016-08-19 22:34:14 +00:00
..
9base Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
855resolution Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
915resolution Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
acpica-utils Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
acpidump Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
adtool Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
afbinit Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
agedu Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
amanda
amanda-client Add support for NetBSD wedge names. 2016-02-29 05:50:40 +00:00
amanda-common Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
amanda-plot Add support for NetBSD wedge names. 2016-02-29 05:50:40 +00:00
amanda-server Add support for NetBSD wedge names. 2016-02-29 05:50:40 +00:00
amtterm Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
ansible Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
ansible2 Import ansible version 2.1.0.0 as sysutils/ansible2. 2016-06-08 14:16:25 +00:00
apcupsd Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
asapm Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
atitvout Fixed typo in HAS_CONFIGURE. 2016-07-10 10:45:40 +00:00
attr Remove GNU ld arguments on Darwin and SunOS. 2016-02-29 12:29:56 +00:00
augeas Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
b2sum Import b2sum-20160619 as sysutils/b2sum 2016-07-25 10:07:23 +00:00
backuppc Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
bacula Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
bacula-clientonly Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
bacula-doc Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
bacula-qt-console Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
bacula-tray-monitor Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
bacula-wx-console Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
baloo Fix the install step 2016-05-05 21:23:04 +00:00
baloo-widgets s/baloo/libbaloo4/ 2016-04-28 07:08:13 +00:00
baloo5 Recursive revbump from audio/pulseaudio 2016-08-04 17:03:30 +00:00
bbsload Request kernel types on NetBSD. 2016-03-01 20:09:29 +00:00
bchunk Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
bcmfw use %zu for size_t 2016-02-24 21:43:39 +00:00
bcollect Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
bkpupsd Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
boxbackup-client Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
boxbackup-server Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
brasero Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
brasero-nautilus Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
bsdinstall Add LICENSE (modified-bsd). 2016-01-28 13:38:53 +00:00
bsign Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
btpin-qt Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
bubblemon Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
bup Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
burn Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
burp Fixed some pkglint warnings. 2016-07-24 23:40:10 +00:00
caja Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
caja-dropbox Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
caja-extensions Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
capistrano Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ccd2iso Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ccze Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
cdbkup Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
cdrdao Simplify for pkglint. 2016-06-16 12:58:07 +00:00
cdrkit Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
cdrtools Second attempt for a work around for PR pkg/51257. This time it actually 2016-07-21 19:38:31 +00:00
cfengine2 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
cfengine3 Remove the stability entity, it has no meaning outside of an official context. 2016-06-08 10:16:50 +00:00
checkpassword Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
checkpassword-pam Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
checkperms Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
clex Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
collectd Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
collectd-amqp Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
collectd-curl Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
collectd-dbi Update sysutils/collectd to 5.5.0. 2015-06-10 20:05:26 +00:00
collectd-dns Update sysutils/collectd to 5.5.0. 2015-06-10 20:05:26 +00:00
collectd-memcached Update sysutils/collectd to 5.5.0. 2015-06-10 20:05:26 +00:00
collectd-mysql Update sysutils/collectd to 5.5.0. 2015-06-10 20:05:26 +00:00
collectd-network Update sysutils/collectd to 5.5.0. 2015-06-10 20:05:26 +00:00
collectd-notify-email Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
collectd-postgresql Update sysutils/collectd to 5.5.0. 2015-06-10 20:05:26 +00:00
collectd-riemann Import sysutils/collectd-riemann, a Riemann network monitoring module 2015-10-28 11:44:52 +00:00
collectd-rrdtool Update sysutils/collectd to 5.5.0. 2015-06-10 20:05:26 +00:00
collectd-snmp Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
conky Report memory statistics in NetBSD a little more sensibly. 2016-04-11 01:49:27 +00:00
consolekit Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
consul Extract with bsdtar. 2016-06-07 18:00:20 +00:00
coreutils Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
cpmtools Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
cpogm Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
cpuburn Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
cpuid Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
crashme Use PKGMANDIR. 2016-03-27 22:38:33 +00:00
cuisine Updated sysutils/cuisine to 0.7.13. 2016-07-29 07:52:36 +00:00
cvsreport Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
daemond Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
daemontools Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
dbus Remove the stability entity, it has no meaning outside of an official context. 2016-06-08 10:16:50 +00:00
dbus-glib Update dbus-glib to 0.106: 2016-01-18 22:53:03 +00:00
dbus-python-common Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
dbus-qt3 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
dbus-sharp Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
dbus-sharp-glib Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
dc-tools Fix stupid error in last update (plus some pkglint -Wall cleanup). 2016-07-08 08:30:30 +00:00
dd_rescue Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
dd_rhelp Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ddrescue Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
deforaos-browser Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
deforaos-terminal Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
depot Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
desktop-file-utils Updated desktop-file-utils to 0.23. 2016-06-30 17:42:18 +00:00
detox Make lex/flex a runtime dependency for packages which link against -lfl. 2016-03-30 12:51:16 +00:00
devkitd Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
di Update sysutils/di to 4.40. 2016-01-24 11:07:49 +00:00
direvent Updated direvent to 5.1. 2016-07-07 08:39:12 +00:00
dirsize Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
dirvish Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
disk-filltest Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
diskscrub Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
dmassage Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
dmesg2gif Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
dmg2img Update dmg2img to version 1.6.5. 2016-03-07 20:17:33 +00:00
dmidecode Update dmidecode to 3.0. 2016-08-03 04:18:33 +00:00
dmsdos Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
dog Use PKGMANDIR. 2016-03-27 22:38:33 +00:00
dptutil Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
dtpstree Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
duplicity Updated sysutils/duplicity to 0.7.09 2016-08-18 11:29:06 +00:00
dvd+rw-tools Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
dvdisaster Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
dvdrecord Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
e2fsprogs remove patches that are not in distinfo 2016-08-18 06:26:31 +00:00
easydiskpasswd
edbus Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
efreet Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
eggdbus Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
entr Updated sysutils/entr to 3.5 2016-06-05 13:50:21 +00:00
erlang-goldrush Update sysutils/erlang-goldrush to 0.1.8. 2016-01-16 17:33:51 +00:00
erlang-lager Update sysutils/erlang-lager to 3.2.1. 2016-08-12 09:31:02 +00:00
estd Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
etckeeper Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
etcmanage Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
etcutils Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
euca2ools Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
eventlog Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
extipl Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
fabric Updated sysutils/fabric to 1.12.0. 2016-08-07 15:04:55 +00:00
facette disable portability check for unused configure script 2016-03-14 12:55:40 +00:00
fakeroot Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
fam Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
fastfs Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
fatback Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
fdupes Use PKGMANDIR. 2016-04-01 11:12:27 +00:00
file Make note of upstream bug report 2016-06-16 16:16:44 +00:00
filelight Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
filelight-kde3 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
findnewest Import findnewest-0.3 as sysutils/findnewest. 2015-12-06 15:20:12 +00:00
findutils pkg_admin check (an bmake check) notice that the target of the symlink 2016-05-02 05:18:47 +00:00
fix4SA110rev2 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
fixelfprot Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
flashrom Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
foremost Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
free
fs-kit Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
fscd Silence noisy GCC warning. 2016-05-07 10:09:24 +00:00
fsviewer Fix additional libraries on SunOS. 2016-04-14 12:15:55 +00:00
ftwin Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gamin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gcdmaster Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gcombust Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gdmap Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
genpasswd Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
gentoo Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gfm Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gio-fam Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
gkrellm Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gkrellm-est Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gkrellm-server Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
gkrellm-share
gnome-commander Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnome-device-manager Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnome-menus Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gnome-mount Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnome-nds-thumbnailer Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnome-pkgview Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnome-power-manager Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnome-settings-daemon Recursive revbump from audio/pulseaudio 2016-08-04 17:03:30 +00:00
gnome-system-monitor Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnome-system-tools Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnome-vfs Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnome-vfs-monikers Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnome-vfsmm Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnome-volume-manager Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnometoaster Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gnuit Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gpart Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
grub Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
grub2 Use REAL_ROOT_USER/REAL_ROOT_GROUP instead of ROOT_USER/ROOT_GROUP 2016-05-17 10:32:06 +00:00
grun Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gsettings-desktop-schemas Update gsettings-desktop-schemas to 3.20.0 2016-04-22 23:11:01 +00:00
gst-plugins0.10-gio
gst-plugins0.10-gnomevfs Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gst-plugins1-gio Reset PKGREVISION for gst-plugins1* update to 1.4.0. 2014-08-08 21:31:06 +00:00
gtk-send-pr Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gvfs Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gworkspace Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
hal Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
hal-info Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
hddtemp Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Bump all packages that depend on curses.bui* or terminfo.bui* since they 2015-08-18 07:31:00 +00:00
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
hfsutils Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
hs-temporary Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
htop Reset PKGREVISION after update. 2016-07-22 05:45:05 +00:00
hytctl s/man/main/ - fix typo 2015-12-27 21:27:50 +00:00
i2ocfg Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
i3status Recursive revbump from audio/pulseaudio 2016-08-04 17:03:30 +00:00
i810switch Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
iat Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
idesk Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
install-sh Add LICENSE (mit). 2016-01-29 10:02:52 +00:00
intel-microcode-netbsd Add missing files into PLIST: 2016-07-21 09:50:35 +00:00
ipa Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ipmitool Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
ipw-firmware add firmware.openbsd.org as MASTER_SITE 2015-03-06 21:54:56 +00:00
ir-account
isapnptools Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
iwi-firmware add firmware.openbsd.org as MASTER_SITE 2015-03-06 21:54:56 +00:00
iwi-firmware3 add firmware.openbsd.org as MASTER_SITE 2015-03-06 21:54:56 +00:00
iwn-firmware Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
k3b Recursive revbump from multimedia/libvpx uppdate 2016-08-17 00:06:39 +00:00
k3b-kde3 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
k4dirstat Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
kcron Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
kdbusaddons Recursive revbump from audio/pulseaudio 2016-08-04 17:03:30 +00:00
kdf Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
kdirstat Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
kfilemetadata Recursive revbump from multimedia/libvpx uppdate 2016-08-17 00:06:39 +00:00
kfilemetadata5 Recursive revbump from multimedia/libvpx uppdate 2016-08-17 00:06:39 +00:00
kfloppy Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
krusader Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
ksystemlog Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
kuser Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
lambd Disable GCC error with newer versions. 2016-07-02 14:44:50 +00:00
lastfss Update systutils/lastfss to 0.2 2016-05-03 08:07:27 +00:00
lavaps Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
libbaloo4 Split baloo libraries out into separate package. 2016-04-28 07:01:13 +00:00
libburn Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
libcap Import libcap-2.25 as sysutils/libcap 2016-07-08 14:29:53 +00:00
libdevkit-gobject Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
libfm Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
libfm-extra Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
libgamin Expand --version-script removals for SunOS back out into package Makefiles 2014-09-10 15:59:33 +00:00
libgksu Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
libgtop Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
libirman Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
libisoburn Remove mk/find-prefix.mk usage from the sysutils category. 2015-11-25 12:53:29 +00:00
libisofs Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
liblogging Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
liblognorm Update sysutils/liblognorm to 2.0.1. 2016-08-09 11:52:28 +00:00
libnotify Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
libol Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
liboobs Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
libpciaccess Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
libvirt Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
lilo Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
lnav Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
lockf pkglint cleanups. 2014-10-05 16:27:25 +00:00
logfinder Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
logrider Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
logrot Remove manual OPSYSVARS additions which are now part of the default set. 2016-02-25 08:27:02 +00:00
logrotate Updated to version 3.10.0. Changelog : 2016-08-03 12:49:36 +00:00
lsof Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
lvm2 Revamp bl3 for sysutils/ 2016-07-08 09:17:03 +00:00
lxmenu-data Add msgfmt to USE_TOOLS. That should hopefully fix the build on Linux. 2016-06-06 02:02:33 +00:00
lxpanel Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
lxtask fix function prototype to match body in order to avoid: 2016-08-17 15:19:42 +00:00
magicrescue Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
manifold Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
mate-notification-daemon Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
mate-power-manager Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
mate-sensors-applet Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
mate-system-monitor Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
mbmon Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
mc Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
mc46 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
mcollective Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
mdf2iso Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
memconf Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
memtest86 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
memtester Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
memtestplus Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
mencvcd Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
menu-cache Include the imported libfm-extra. 2016-05-22 22:12:40 +00:00
mesure Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
mgm Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
mklivecd Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
mkmemstick Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
mksunbootcd Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
mktemp Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
monit Needs _KERNTYPES on NetBSD. 2016-03-25 21:05:30 +00:00
monitoring Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
mrsync Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
mtools Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
mtoolsfm Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
mtscan
mtx Fix missing/broken rcsids. 2015-12-29 04:04:26 +00:00
munin-doc Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
munin-node Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
munin-server Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
nautilus Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
nautilus-sendto Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
ncdu Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ndesk-dbus Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
ndesk-dbus-glib Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
neb-wipe Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
netbsd-kmod-tools
netbt-hcidump Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
news Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
notification-daemon Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
nrg2iso Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ntfsprogs Changes 2015.3.14: 2015-11-10 17:45:22 +00:00
nvnet
nvramtool Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
oak Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
open-vm-tools Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
openstack_init Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
openxenmanager Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
osname Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-collectd Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Config-Augeas Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Config-Simple Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-File-chmod Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-File-Copy-Recursive Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-File-Inplace Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-File-Remove Update to 1.57 2016-08-16 00:18:52 +00:00
p5-Filesys-Df Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Filesys-DfPortable Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Filesys-Statvfs Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Gnome2-VFS Updated sysutils/p5-Gnome2-VFS to 1.082 2016-08-18 12:41:42 +00:00
p5-GTop Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-IO-BufferedSelect Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-IO-KQueue Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Lchown Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Linux-Inotify2 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Mac-AppleScript Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Mac-AppleScript-Glue Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Parse-Syslog Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Quota Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Server-Starter Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-SSH-Batch Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Sys-CPU Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Sys-CpuLoad Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Sys-Filesystem Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Sys-Hostname-Long Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Sys-SigAction Update to 0.22 2016-08-16 00:23:23 +00:00
p5-Sys-Syslog Update to 0.34 2016-08-12 11:50:36 +00:00
p5-Sys-Utmp Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Unix-ConfigFile Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Unix-Statgrab Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Unix-Syslog Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-UPS-Nut pkglint whitespace 2016-06-11 22:43:30 +00:00
pciutils Update pciutils to 3.5.1. 2016-05-23 05:25:14 +00:00
pcmanfm Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
pcvt-utils Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
pdumpfs Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
pear-Log Update pear-Log to 1.13.1. 2016-07-19 15:04:48 +00:00
pflogsumm Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
pfstat Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
pftop Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
pidof Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
pluged Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
polysh Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
pscpug Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
psftools Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
psmisc Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
pstree (pkgsrc) 2016-02-09 14:27:57 +00:00
puppet Update sysutils/puppet to 3.8.6. 2016-03-15 12:45:07 +00:00
pv Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
pwgen Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
py-attic Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-augeas Fix PKGNAME to properly version Python. 2015-12-01 13:04:53 +00:00
py-borgbackup Updated py-borgbackup to 1.0.7. 2016-08-19 22:34:14 +00:00
py-collectd Remove non-default perl and python options in sysutils/collectd. Use 2015-04-14 11:27:30 +00:00
py-dbus Update python dbus bindings to 1.2.4. 2016-04-15 10:15:15 +00:00
py-diffoscope Import py-diffoscope-44 as sysutils/py-diffoscope. 2015-12-27 15:43:59 +00:00
py-gnome-menus Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-kazoo Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-magic Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-notify Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-notify-python Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
py-pathtools Fix MASTER_SITES. 2016-06-01 12:30:45 +00:00
py-pefile Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-psutil Update py-psutil to 4.1.0 2016-04-29 15:33:57 +00:00
py-setconf Import setconf-0.6.7 as sysutils/py-setconf 2015-12-12 05:38:45 +00:00
py-setproctitle Switch to MASTER_SITE_PYPI. 2016-06-08 17:49:19 +00:00
py-structlog Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-syslog-ng Import syslog-ng Python bindings as sysutils/py-syslog-ng. 2015-11-01 19:08:22 +00:00
py-watchdog Fix MASTER_SITES. 2016-06-01 12:30:45 +00:00
py-xattr Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
qlogtools Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
radeontool Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
radmind Fix setting custom permission bits, user and group information from 2016-04-14 11:17:31 +00:00
rconfig Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
rdfind Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
rdiff-backup Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
rename Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
rfstool Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
rkflashtool Import rkflashtool-20151023 as sysutils/rkflashtool. 2015-10-24 21:46:07 +00:00
rmtrash Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
roller Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
rox Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
rsnapshot Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
rsyslog Update sysutils/rsyslog 8.20.0. 2016-08-09 11:55:41 +00:00
rsyslog-dbi Import rsyslog-8.4.0 as sysutils/rsyslog* (based on wip/rsyslog8). 2014-09-05 07:15:41 +00:00
rsyslog-elasticsearch Reset sysutils/rsyslog-* revision after rsyslog update. 2016-03-09 20:55:35 +00:00
rsyslog-gnutls Update sysutils/rsyslog to 8.13.0. 2015-10-08 12:46:07 +00:00
rsyslog-gssapi Look for libs at the right place, fixes installation 2015-10-06 13:03:20 +00:00
rsyslog-libgcrypt Not MAKE_JOBS_SAFE. 2015-08-27 19:07:13 +00:00
rsyslog-mysql Import rsyslog-8.4.0 as sysutils/rsyslog* (based on wip/rsyslog8). 2014-09-05 07:15:41 +00:00
rsyslog-pgsql Import rsyslog-8.4.0 as sysutils/rsyslog* (based on wip/rsyslog8). 2014-09-05 07:15:41 +00:00
rsyslog-rabbitmq Reset sysutils/rsyslog-* revision after rsyslog update. 2016-03-09 20:55:35 +00:00
rsyslog-snmp Reset sysutils/rsyslog-* revision after rsyslog update. 2016-03-09 20:55:35 +00:00
rtty Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ruby-activesambaldap Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ruby-capistrano-stats Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ruby-chef remove references to ruby200 2016-03-14 00:59:05 +00:00
ruby-chef-config Add ruby-chef-config version 12.5.1, required by newer misc/ruby-ohai. 2015-12-13 15:16:35 +00:00
ruby-chef-zero Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ruby-childprocess Update ruby-childprocess to 0.5.9. 2016-03-15 15:18:26 +00:00
ruby-directory-watcher Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ruby-facter Update ruby-facter to 2.4.6. 2016-03-15 15:28:05 +00:00
ruby-fssm Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ruby-listen Update ruby-listen to 3.0.6. 2016-03-15 15:35:52 +00:00
ruby-notify Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ruby-quota Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ruby-rb-appscript Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ruby-rb-inotify Update ruby-rb-inotify to 0.9.7. 2016-03-15 15:33:02 +00:00
safetynet Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
salt Update sysutils/salt to 2016.3.1. 2016-07-21 17:05:39 +00:00
salt-docs Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
same Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
sarah Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
screenbrightness Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
screenfetch Import screenFetch-3.7.0 as sysutils/screenfetch 2016-07-18 22:56:44 +00:00
screentest Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
scsiinfo Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
service-config Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
setquota Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
sformat Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
shc Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
shelldap Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
shmux Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
skill Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
slay Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
slocate Use REAL_ROOT_USER/REAL_ROOT_GROUP instead of ROOT_USER/ROOT_GROUP 2016-05-17 10:32:06 +00:00
smartmontools Updated smartmontools to 6.5. 2016-05-08 11:23:15 +00:00
smbldap-tools Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
socket Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
solid Recursive revbump from audio/pulseaudio 2016-08-04 17:03:30 +00:00
spice-protocol Update spice-protocol to 0.12.11. 2016-04-13 18:06:10 +00:00
sredird Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
sshsh Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
stow Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
strace Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
strigi gcc6 build fix 2016-07-16 04:47:45 +00:00
su2 Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
sunxi-tools Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
sux Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
swapd Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
swatch Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
sysbuild Fix path to sysbuild in sysbuild4cron. 2016-02-01 03:21:30 +00:00
sysbuild-user Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
sysgen Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
sysinfo Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
syslog-ng Remove the stability entity, it has no meaning outside of an official context. 2016-06-08 10:16:50 +00:00
syslog-ng-geoip Update syslog-ng to the latest stable 3.7.2 version. 2015-10-29 16:34:13 +00:00
syslog-ng-json Update syslog-ng to the latest stable 3.7.2 version. 2015-10-29 16:34:13 +00:00
syslog-ng-mongodb Update syslog-ng to the latest stable 3.7.2 version. 2015-10-29 16:34:13 +00:00
syslog-ng-redis Update syslog-ng to the latest stable 3.7.2 version. 2015-10-29 16:34:13 +00:00
syslog-ng-smtp Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
syslog-ng-sql Update syslog-ng to the latest stable 3.7.2 version. 2015-10-29 16:34:13 +00:00
system-tools-backends Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
systester Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
sysupgrade Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
tarsnap Update tarsnap to 1.0.37. 2016-03-10 22:54:13 +00:00
tarsnap-gui Recursive revbump from audio/pulseaudio 2016-08-04 17:03:30 +00:00
tcx Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
tdir Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
tegra-firmware Import NVIDIA Tegra SOC firmware as sysutils/tegra-firmware. 2015-10-18 12:20:51 +00:00
tenshi Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
testdisk Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
tits Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
tkcron Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
tkdesk Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
tload Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
tob Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
top Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
torsmo Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
toshutils Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
tpb Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
tphdisk Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
tree Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
ts Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
upower Update to 0.99.4 2016-03-12 11:50:08 +00:00
ups-nut s/long// (leaving "unsigned") in some code that fails when long is 2015-11-10 08:52:38 +00:00
ups-nut-cgi Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
ups-nut-snmp Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
ups-nut-usb s/long// (leaving "unsigned") in some code that fails when long is 2015-11-10 08:52:38 +00:00
usbutil Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
user_cygwin Set MAINTAINER to pkgsrc-users. 2015-03-15 19:57:40 +00:00
user_darwin Update user-darwin to version 20151029. 2015-10-29 12:29:04 +00:00
user_interix Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
user_irix
vbetool Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
vcdimager Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
vcdimager-devel Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
vidc-tools Fixed some pkglint warnings. 2016-07-09 12:47:05 +00:00
vifm Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
vip Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
virt-manager Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
virtinst Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
vobcopy Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
vxargs Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
watchman Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-apache Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-at Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-bandwidth Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-bind8 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-change-user Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-cluster-copy Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-cluster-cron Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-cluster-passwd Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-cluster-shell Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-cluster-useradmin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-cluster-webmin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-custom Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-cyrus-imapd Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-dhcpd Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-dovecot Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-fetchmail Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-file Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-htaccess-htpasswd Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-inetd Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-ipfilter Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-ldap-useradmin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-lpadmin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-mailboxes Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-mount Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-mysql Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-net Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-openslp Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-passwd Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-postfix Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-postgresql Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-qmailadmin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-quota Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-sendmail Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-shell Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-sshd Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-status Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-syslog Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-telnet Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-time Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-tunnel Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-useradmin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wbm-virtual-server Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
WCMCommander Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
webmin Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
whowatch Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wipe Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
wmcpuload Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wmmemmon Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wmSMPmon Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wpi-firmware Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wpi-firmware2 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
wtail Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xapply Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xbatt Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xbattbar Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xc5k-firmware Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xc3028l-firmware Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xcdroast Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xdu Fixed some pkglint warnings. 2016-07-09 13:03:00 +00:00
xe-guest-utilities Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xenkernel3 Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
xenkernel33 Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
xenkernel41 Apply security patch from XSA-182. Bump PKGREVISION 2016-07-26 15:59:20 +00:00
xenkernel42 Apply security patch from XSA-182. Bump PKGREVISION 2016-07-26 15:38:00 +00:00
xenkernel45 add patches for XSAs 176, 180 and 181 from upstream 2016-08-06 10:10:10 +00:00
xenkernel46 Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
xenstoretools Fixed some pkglint warnings. Added VARBASE to BUILD_DEFS. Bumped version. 2016-07-09 13:07:20 +00:00
xentools3 Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
xentools3-hvm Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
xentools33 Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
xentools41 Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
xentools42 Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
xentools45 add patches to XSAs 178 and 180 from upstream 2016-08-06 12:41:36 +00:00
xentools46 Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
xenvstat
xfburn Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-appfinder Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-battery-plugin Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-cpugraph-plugin Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-diskperf-plugin Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-fsguard-plugin Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-genmon-plugin Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-gvfs-mount-plugin Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-mount-plugin Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-netload-plugin Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-quicklauncher-plugin Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-systemload-plugin Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-taskmanager Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-thunar Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-thunar-vcs Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-verve-plugin Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-xarchiver Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfce4-xkb-plugin Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
xfe Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xfm Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xfsprogs Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xhfs Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xhyve xhyve: Fix build on Clang (OS X El Capitan). 2016-04-15 14:13:21 +00:00
xmbmon
xmeter Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xnc Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xosview Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xps Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
xuvmstat Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
zidrav Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
znapzend Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
Makefile Import b2sum-20160619 as sysutils/b2sum 2016-07-25 10:07:23 +00:00