pkgsrc/sysutils
bsiegert 836ce7b2d6 Update duplicity to 0.7.07. From Frédéric Fauberteau in PR pkg/51061.
New in v0.7.07 (2016/04/10)
---------------------------
* Merged in lp:~matthew-t-bentley/duplicity/b2
  - Fix import and error typos.
  - Allow multiple backups in the same bucket.
  - Fixes bug #1523498.
  - A couple fixes allowing multiple backups to be hosted in different
    folders in the same bucket as well as some logging for -v9.
* Random stuff:
  - remove RPM stuff from makedist
  - have makedist pull directly from VCS, not local dir
  - update po translation directory and build process
  - clean up some odd error messages
  - move Pep8 ignores to tox.ini
  - supply correct path for pydevd under Mac
  - fix some tests to run under Linux and Mac
* Partial fix for bug #1529606 - shell code injection in lftpbackend
  - still need to fix the other backends that spawn shell commands
* Make test_restart compatible with both GNUtar and BSDtar
* Fix stupid issue with functional test path for duplicity
* Applied patch from shaochun to fix bug #1531154,
  - --file-changed failed when file contains spaces
* Applied patch from abeverly to fix bug #1475890
  - allow port to be specified along with hostname on S3
  - adjusted help text and man page to reflect the change
* Undo changes to test_restart.py.  GNU tar is needed.
* Fix minor pep8 nit in collections.py
* Applied changes from ralle-ubuntu to fix bug 1072130.
  - duplicity does not support ftpes://
* Fixed bug #1296793 - Failed to create bucket
  - use S3Connection.lookup() to check bucket exists
  - skips Boto's Exception processing for this check
  - dupe of bug #1507109 and bug #1537185
* Merged in lp:~mifchip/duplicity/duplicity
  - fix bug #1313964, absolute path doesn't work for FTP
* Merged in lp:~fpytloun/duplicity/webdav-gssapi
  - support GSSAPI authentication in webdav backend
* Add more pylint ignore warnings tags
* Adjust so test_restart.py can run on Mac as well
* Fix for bug #1538333 - assert filecount == len(self.files_changed)
  - added flush after every write for all FileobjHooked files which
    should prevent some errors when duplicity is forcibly closed.
* Fix bug #1540279 - mistake in --help
* Applied patch from kay-diam to fix error handling in ssh pexpect,
  fixes bug #1541314
* Fixed a patching error in ssh_pexpect_backend.py
* Merged in lp:~fpytloun/duplicity/webdav-gssapi-fix
  - Make kerberos optional for webdav backend
* Merged in lp:~harningt/duplicity/multibackend-mirror
  - This changeset addresses multibackend handling to permit a
    mirroring option in addition to its "stripe" mode to make it
    a redundancy tool vs space-expansion tool. To do this without
    changing the configuration too much, I used the query string
    that would generally go unused for files to specify behavior
    that applies to all items inside the configuration file.
* Added acdclibackend.py from Stefan Breunig and Malay Shah
  - renamed from amazoncloudbackend to stress use of acd_cli
* Fixed some 2to3 and Pep8 issues that had crept in
* Backed out changes made by patching for bug #1541314.  These
  patches should not have been applied to the 0.7 series.
* Merged in lp:~rye/duplicity/mediafire
  - Backend for https://www.mediafire.com
  - Requires https://pypi.python.org/pypi/mediafire/ installed.
* Reverted changes made in rev 1164 w.r.t. getting the source from
  VCS rather than local directory.  Fixes bug #1548080.
* More fixes to dist/makedist to make it more OS agnostic.
* Merged in lp:~ed.so/duplicity/webdav.lftp.ssl-overhaul
    duplicity.1, commandline.py, globals.py
    - added --ssl-cacert-path parameter
    backend.py
    - make sure url path component is properly url decoded,
      in case it contains special chars (eg. @ or space)
    lftpbackend.py
    - quote _all_ cmd line params
    - added missing lftp+ftpes protocol
    - fix empty list result when chdir failed silently
    - added ssl_cacert_path support
    webdavbackend.py
    - add ssl default context support for python 2.7.9+
      (using system certs eg. in /etc/ssl/certs)
    - added ssl_cacert_path support for python 2.7.9+
    - gettext wrapped all log messages
    - minor refinements
* Applied patch from Dmitry Nezhevenko to upgrade dropbox backend:
  - update to SDK v2
  - use chunked upload
* Merged in lp:~aaron-whitehouse/duplicity/improve_present_get_sf_man_page
  - Improve man page entry for --exclude-if-present
* Merged in lp:~aaron-whitehouse/duplicity/split_glob_matching_from_select
  - Move glob matching code out of selection.py's Select function and
    into globmatch.py.
* Fix bug reported on the mailing list from Mark Grandi (assertion error
  while backing up).  In file_naming.parse() the filename was being lower
  cased prior to parsing.  If you had used a prefix with mixed case, we
  were writing the file properly, but could not find it in the backend.
* Merged in lp:~duplicity-team/duplicity/po-updates


New in v0.7.06 (2015/12/07)
---------------------------
* Merged in lp:~mnjul/duplicity/s3-infreq-access
  - This adds support for AWS S3's newly announced Infrequent Access
    storage class and is intended to implement Blueprint:
    https://blueprints.launchpad.net/duplicity/+spec/aws-s3-std-ia-class .
  - A new command line option, --s3-use-ia, is added, and boto backend
    will automatically use the correct storage class value depending on
    whether --s3-use-rrs and --s3-use-ia is set. Command line parser will
    prompt error if both --s3-use-ia and --s3-use-rrs are used together,
    as they conflict with each other.
  - The manpage has been updated giving a short explanation on the new
    option. Its wording derives from Amazon's official announcement:
    https://aws.amazon.com/about-aws/whats-new/2015/09/announcing-new-\
    amazon-s3-storage-class-and-lower-glacier-prices/
* The ptyprocess module no longer supports Python 2.6, so fix tox.ini to
  use an older version.  Make explicit environs for all tests.
* Upgrade to newest version of pep8 and pylint.   Add three ignores
  to test_pep8 and one to test_pylint to get the rest to pass.  They
* Applied patch from Alexander Zangerl to update to changes in lockfile
  API 0.9 and later.  Updated README to notify users.
* Modded tox.ini to use the latest lockfile.
* Merged in lp:~ed.so/duplicity/setup.shebang
  - Having the python interpreter searched in the PATH is much more
    flexible than the /usr/bin/python inserted into our scripts shebang
    by setuptools.  This patch prevents that. don't touch my shebang! :)
* Cleanup issues around Launchpad build, mainly lockfile >= 0.9.
* Merged in lp:~michal-s/duplicity/duplicity
  - WindowsAzureMissingResourceError and WindowsAzureConflictError
    changed due to SDK changes.
  are all valid in our case.
* Reversed previous changes to lockfile.  Now it will take any version
  extant in the LP build repository.  (PyPi is not avail in LP build).
* Merged in lp:~ed.so/duplicity/tempfile.tempdir
  - make sure packages using python's tempfile create temp files in
    duplicity's temp dir
* Fixed bug #1511308 - Cannot restore no-encryption, no-compression backup
  - Corrected code to include plain file in write_multivolume()
  - Added PlainWriteFile() to gpg.py
* Merged in lp:~michal-s/duplicity/duplicity
  - Fix azurebackend storage class import
* Merged in lp:~feraudet/duplicity/fix
  - Fix missing SWIFT_ENDPOINT_TYPE env var, bug 1519694.
* Fix bug #1520691 - Shell Code Injection in hsi backend
  - Replace use of os.popen3() with subprocess equivalent.
  - Added code to expand relative program path to full path.
  - Fix hisbackend where it expected a list not a string.
* Merged in lp:~noizyland/duplicity/azurebackend-fixes
  - Support new version of Azure Storage SDK
  - Refactor _list method to support containers with >5000 blobs
* Merged in lp:~matthew-t-bentley/duplicity/b2
  - Adds a backed for BackBlaze's (currently beta) B2 backup service.
  - This adds backends/b2backend.py, modifies log.py to add an
    error code and modifies commandline.py to add the b2://
    example to the help text.
* Pep8 corrections for recently released code.
* Fixed bug #1260666 universally by splitting the filelist for
  delete before passing to backend.
* Fixed bug #1369243 by adjusting messages to be more readable.
* Fixed bug #1375019 with patch from Eric Bavier (home to tmp).
* Fixed bug #1379575 with patch from Tim Ruffing (shorten webdav response).
* Fixed bug #1492301 with patch from askretov (manually refresh oauth).


New in v0.7.05 (2015/09/15)
---------------------------
* Merged in lp:~aaron-whitehouse/duplicity/fix_patch_error
  - Change use of mock.patch in unit tests to accommodate the obsolete
    version of python-mock on the build server.
* Fixed Bug 1476019 S3 storage bucket not being automatically created
  with patch from abeverley
* Merged in lp:~aaron-whitehouse/duplicity/launchpad_tox_profile
  - Add tox testing profile that mimics the packages installed on the
    Launchpad build server, to reduce the likelihood of tests passing
    our test suite, but failing on the build server (e.g. because of
    the out-of-date mock version).
* Merged in lp:~aaron-whitehouse/duplicity/disable_code_tests_for_lpbuildd
  - Set RUN_CODE_TESTS to 0 for lpbuildd tox profile, reflecting its value
    on the Launchpad build server (and therefore skipping PEP8, 2to3 and
    pylint). More accurately reflects the system we are mimicking and saves
    approximately 1 minute per test run.
* Fixed Bug 1438170 duplicity crashes on resume when using gpg-agent with
  patch from Artur Bodera (abodera).  Applied the same patch to incremental
  resumes as well.
* Merged in lp:~w.baranowski/duplicity/selection_debug
  - This little patch logs debug messages concerning path selection process,
    and so allows users to debug their include/exclude configuration.
* Merged in lp:~germar/duplicity/par2removefix
  - After reorganisation in revision 981 and the fix for bug #1406173 the
    par2backend does not remove .par2 files anymore when removing
    duplicity-*.gpg files.
  - This banch adds an unfiltered_list() method which is used in
    delete() and delete_list()
* Updated man pages to reflect more contributors.
* Fix bug #1493573.  Correct option typo in man page.
* Fix bug #1494228 CygWin: TypeError: basis_file must be a (true) file
  - The problem that caused the change to tempfile.TemporaryFile was due
    to the fact that os.tmpfile always creates its file in the system
    temp directory, not in the directory specified.  The fix applied was
    to use os.tmpfile in cygwin/windows and tempfile.TemporaryFile in all
    the rest.  This means that cygwin is now broken with respect to temp
    file placement of this one file (deleted automatically on close).
* Merged in lp:~bmerry/duplicity/pydrive-id-cache
  - This fixes the issue a number of users (including myself) have been
    having with duplicity creating files with duplicate filenames on
    Google Drive. It keeps a runtime cache of filename to object ID
    mappings, so that once it has uploaded an object it won't be fooled
    by weakly consistent directory listings.
* Merged in lp:~duplicity-team/duplicity/po-updates


New in v0.7.04 (2015/08/02)
---------------------------
* Merged in lp:~noizyland/duplicity/fix-progress
  - Fixes bug 1264744.  selection.filelist_globbing_get_sfs leaves the
    filelist file object's position at the end of the file. When the
    --progress option is used the filelists need to be read twice. On
    the second read nothing is read from the file because file has
    already been read and the position is EOF.  This patch calls seek(0)
    on the filelist to reset the position to BOF so that subsequent
    read() calls will return data.
* Added pylint ignore error in webdavbackend.py.
* Merged in lp:~bmerry/duplicity/pydrive-regular
  - This implements the proposal made by somebody else
    (http://lists.gnu.org/archive/html/duplicity-talk/2015-02/msg00037.html)
    to allow the pydrive backend to work with a normal drive account instead
    of a service account. It seems to be working for me: I was able to migrate
    seamlessly from the gdocs backend. It's set up so that a service account
    can still be used, depending on which environment variable is set.
    The man page is updated to describe how to use the new functionality.
* Merged in lp:~ed.so/duplicity/gdocs.pydrive
  - make pydrive new gdocs default backend
  - keep gdata backend as gdata+gdocs://
* Merged in lp:~raymii/duplicity/fix-swiftbackend-max-10000-files-in-list
  - Swiftclient by default returns at max 10000 files. By adding
    full_listing=True we make sure all objects are returned.
    Ref: https://lists.nongnu.org/archive/html/duplicity-talk/2015-05/msg00060.html
    and http://docs.openstack.org/developer/python-swiftclient/swiftclient.html#swiftclient.client.get_container
* Fix a couple of PEP8 glitches.
* Fixed bug 791794 - description of --gpg-options is misleading, Simply
  needed to add the '--' before the options as in "--opt1 --opt2=parm".
* Fixed bug 1465335 - pydrive still use files in trash can - with patch
  from Kuang-che Wu to ignore trashed files.
* Fixed bug 1452263 - par2 option not working on small processors - with patch
  from Kuang-che Wu to ignore default 30 second timeout.
* Fixed bug 1466160 - pydrive backend is slow to remove old backup set - with
  patch from Kuang-che Wu to implement _delete_list().
* Fixed bug 1466582 - reduce unnecessary syscall with --exclude-if-present - with
  patch from Kuang-che Wu to make sure resulting path is a directory.
* Merged in lp:~ed.so/duplicity/gpg.binary
  - new parameter --gpg-binary allows user to point to a different gpg binary,
    not necessarily in path
* Merged in lp:~aaron-whitehouse/duplicity/fix_POTFILES.in_and_run-tests
  - Fixed two filename references in po/POTFILES.in, a mistake which crept in in
    rev 1093 and caused testing/run-tests to fail with "IndexError: list index
    out of range".
* Merged in lp:~aaron-whitehouse/duplicity/reactivate_progress_test
  - Re-enable the test of the --progress option (test_exclude_filelist_progress_option),
    which was marked as an expected failure. The issue causing this test to fail was
    fixed in revision 1095 and the test now passes.
* Fixed bug 1471348 Multi back-end doesn't work with hubiC
  - added init of appropriate superclass in both cases.
* Fixed bug 1471348 Multi back-end doesn't work with hubiC (again)
  - hubiC should reach up to duplicity.backend.__init__
* Merged in lp:~aaron-whitehouse/duplicity/bug_884371
  - Fixed Bug #884371 - Stopped an exclude glob trumping an earlier scan glob, but also
    ensured that an exclude glob is not trumped by a later include. This fix is important,
    as without it files that are specified to be included are not being backed up as expected.
  - Fixed Bug #932482 - a trailing slash at the end of globs no longer prevents them working
    as expected.
* Merged in lp:~aaron-whitehouse/duplicity/reenable_tests
  - Re-enable unit.test_selection tests that had been temporarily commented out.
* Merged in lp:~aaron-whitehouse/duplicity/trailing_slash_match_dirs
  - Made globs with trailing slashes only match directories, not files, fixing Bug #1479545.
* Merged in lp:~aaron-whitehouse/duplicity/improve_tox_and_python2-6_testing
  - Testing improvements, particularly in relation to testing against Python version 2.6:
    * tox.ini fixed so that it is possible to run individual tests against both Python 2.6 and 2.7;
    * updated test_code.py to use unittest2 for Python versions < 2.7 (instead of failing);
    * ./run-tests now correctly runs all tests against both Python 2.6 and 2.7; and
    * improved testing directions in README-REPO.
* Merged in lp:~dag-stenstad/duplicity/swift_authversion_3_support
  - Added support for Openstack Identity v3 in the Swift backend.
* Merged in lp:~aaron-whitehouse/duplicity/fix_2to3_issues
  - Fixed 2to3 issues. Updated README-REPO with more test information. Updated pylint and
    test_diff2 descriptions to make it clear these require packages to be installed on the
    sytem to pass. All tests pass on Python 2.6 and Python 2.7 as at this revision.


New in v0.7.03 (2015/05/11)
---------------------------
* Merged in lp:~aaron-whitehouse/duplicity/filelist_combine
  - Merged globbing and non-globbing filelists to use the same code path
    and all accept globbing characters. Added deprecation warning to the
    --exclude-globbing-filelist and include-globbing-filelist options in
    commandline.py and hid them from help output. Updated the manual
    (and unit tests) accordingly.
  - Note that this does trigger a change in behaviour for duplicity.
    Previously, include patterns in include-filelist did not match files
    in a directory that was included, so /usr/local in an include file
    would not have matched /usr/local/doc. Now, this folder would be
    included, as would occur if --include or the old
    --include-globbing-filelist was used. Additional lines will therefore
    need to be added to filelists to unambiguously exclude unwanted
    subfolders, if this is intended.
  - Mark --include-filelist-stdin and --exclude-fielist-stdin for
    deprecation and hide from --help output.
* Fix bug 1432999 with hint from Antoine Afalo.
  - '/'s at end of destination cause problems with onedrivebackend.
* Fix bug 1434702 with help from Robin Nehls
  - incorrect response BackendException while downloading signatures file.
* Fix bug 1437789 with patch from pdf
  - par2backend.py incorrect syntax in get()
* Merge in lp:~stynor/duplicity/multi-backend
  - A new backend that allows use of more than one backend stores (e.g. to
    combine the available space from more than one cloud provider to make
    a larger store available to duplicity).
* Move requirements section lower in manpage.
* Merge in lp:~cemsbr/duplicity/duplicity
  - Fix bug 1432229 in Copy.com backend:
    Reply header has no content-type for JSON detection. Now, we also check
    whether the content starts with '{'.
* Fixed bug 1444404 with patch from Samu Nuutamo
  - rdiffdir patch crashes if a regular file is changed to a non-regular
    file (symlink, fifo, ...)
* Fixed bug 1448249 and bug 1449151 thanks to David Coppit.
  - When patching, close base file before renaming
  - Enable --ignore-errors flag in rdiffdir
* Added ability to get single file status from collection-status with
  patch from jitao (bug 1044715), like so:
  $ duplicity collection-status --file-changed c1 file://./foo
* Merge in lp:~sjakthol/duplicity/onedrive-error-message
  - Add proper error message for OneDrive backend when python-requests or
    python-requests-oauthlib is not installed (bug 1453355).


New in v0.7.02 (2015/03/10)
---------------------------
* Merged in lp:~vincegt/duplicity/swift_regionname
  - Fixes bug #1376628
  - Add mapping of SWIFT_REGIONNAME to select region inside SWIFT when a
    provider proposes more than one region.
* Merged in lp:~aaron-whitehouse/duplicity/progress_option_error
  - Added test_exclude_globbing_filelist_progress_option into
    functional/test_selection.py, which shows the error reported in
    Bug #1264744 - that the --exclude-globbing-filelist does not backup
    the correct files if the --progress option is used. Test is marked as
    an expected failure so as not to cause the test suite to fail.
* Merged in lp:~noizyland/duplicity/fix_azurebackend_container_names
  - Azure Backend examples have underscores in the container names.  These
    are not valid Azure container names.  The underscores have been replaced
    with hypens and a note about valid container names added to the man page.
  - Also corrects a problem where Azure Exceptions were returing unicode
    strings that were not being handled correctly.
* Merged in lp:~user3942934/duplicity/pydrive
  - Currently duplicity uses gdocs backend for Google Drive backups.
    gdocs uses deprecated API and don't allow backups for managed Google
    accounts.  (see https://bugs.launchpad.net/duplicity/+bug/1315684)
  - Added pydrive backend that solves both of those problems. Published
    also on https://github.com/westerngateguard/duplicity-pydrive-backend.
* Fixed some tabs/spaces problems that were causing install failures.
* Fixed variable typo in commandline.py that was causing build fails.
* Merged in lp:~duplicity-team/duplicity/po-updates
* Remove 'gs' and 's3+http' from uses_netloc[].  Fixes Bug 1411803.
* Fixed bug # 1414418
  - Aligned commandline.py options and help display contents.
  - Aligned commandline.py options and manpage contents.
* Changed --s3_multipart_max_timeout to --s3-multipart-max-timeout to be
  consistent with commandline option naming conventions.
* Applied patch from Adam Reichold to fix bug # 1413792.
* Merged in lp:~angusgr/duplicity/exclude-older-than
  - Add "--exclude-older-than" commandline option, that allows you to only
    back up files with a modification date newer than a particular threshold.
* Merged in lp:~aaron-whitehouse/duplicity/bug_884371_asterisks_in_includes
  - Added tests to unit/test_selection.py and funtional/test_selection.py
    to show the behaviour reported in Bug #884371, i.e. that selection is
    incorrect when there is a * or ** on an include line of a filelist or
    commandline --include.
* Merged in lp:~aaron-whitehouse/duplicity/bug_932482_trailing_slashes_and_wildcards_error
  - Added functional and unit tests to show Bug #932482 - that selection does
    not work correctly when excludes (in a filelist or in a commandline option)
    contain both a single or double asterisk and a trailing slash.
* Misc fixes for the following PEP8 issues:
  - E111, E121, E122, E124, E125, E126, E127, E128, E201, E202, E203,
    E231, E241, E251, E261, E262, E271, E272, E301, E302, E303, E401,
    E502, E701, E702, E703, E711, E721, W291, W292, W293, W391
  - to run pep8 on duplicity use 'pep8 --ignore=E501'
  - see http://pep8.readthedocs.org
* Fixes for 2to3 issues
* Fix spelling error in manpage, bug 1419314.
* Fix _librsyncmodule.c compilation, bug 1416344, thanks to Kari Hautio.
* Really fix bug 1416344 based on comment #5 by Roman Tereshonkov.
* Fix for --pydevd debug environment and location under Eclipse.
* Fix for bug where scp was actually working as scp and not working with
  rsync.net because of using extraneous test command in restricted shell.
  Was trying "test -d 'foo' || mkdir -p 'foo'", now only "mkdir -p foo".
* remove extraneous string format arg in previous scp fix.


New in v0.7.01 (2015/01/11)
---------------------------
Enhancements:
* Undid move of testing/test_code.py.  Instead I fixed it
  so that it would not run during PPA build.  It now needs
  the setting RUN_CODE_TESTS=1 in the environment which is
  supplied in the tox.ini file.
* Moved testing/test_code.py to testing/manual/code_test.py
  so PPA builds would succeed.  Should be moved back later.
* Remove valid_extension() check from file_naming.py.  It was
  causing failed tests for short filenames.  Thanks edso.
* Partial fix for PPA build failures, new backend name.
* Merged in lp:~ed.so/duplicity/fix.dpbx.import
  - fix dpbx import error import lazily
* Merged in lp:~hooloovoo/duplicity/fix-typo-in-test-description
  - Fixed spelling mistake/typo in a description of a test.
* Merged in lp:~mterry/duplicity/missing-unicode-escape
  - Convert restore_dir to unicode before printing.
* Merged in lp:~ed.so/duplicity/lftp.ncftp.and.prefixes
  - retire --ssh-backend, --use-scp parameters
  - introduce scheme prefixes for alternative backend selection
    e.g. ncftp+ftp://, see manpage
  - scp is now selected via scheme e.g. scp://
  - added lftp fish, webdav(s), sftp support
* Merged in lp:~mterry/duplicity/code-nits
  - Fix some pylint/pep8 nits that prevented the test_code.py test from passing.
* Merged in lp:~mterry/duplicity/debian-dir
  - Add a debian/ directory to make it easier to manage the PPAs for duplicity.
* In webdavbackend.py:
  - Fixed bug 1396106 with change by Tim Ruffing, mispelled member.
  - Added missing 'self.' before member in error message.
* Merged in lp:~adrien-delhorme/duplicity/hubic
  - Add Hubic support through pyrax and a custom pyrax_identity module.
* Fixed bug 1385599 with changes by Yannick Molin. SSL settings are now
  conditioned on protocol ftp or ftps.
* Partial fix of bug 1236248 with changes by az, manpage warning about
  --extra-clean, however, recovery with missing sig files is broken.
* Fixed bug 1255453 with changes by Gaudenz Steinlin, report backend import
  results, both normal and failed, at INFO log level.
* Manually merged in lp:~m4ktub/duplicity/0.6-reliability
  - Per fix proposed in Bug #1395341.
* Modded .bzrignore to ignore *.egg test dependencies, normalized, sorted.
* Merged in lp:~ed.so/duplicity/paramiko.identyfile
  - fix identity file parsing of --ssh-options for paramiko
  - manpage fixes
* Source formatted, using PyDev, all source files to fix some easily fixed
  PEP8 issues. Use ignore space when comparing against previous versions.
* Merge in lp:~andol/duplicity/signkeyformat
  - Allow --sign-key to use short format, long format alt. full fingerprint.
* Merge in lp:~hooloovoo/duplicity/verify-not-check-source
  - Tests to validate that duplicity does not check filesystem source during
    verify unless --compare-data is specified
* Merge in lp:~ed.so/duplicity/move_netloc
  - move netloc usage definitions into respective backends
  - fix "[Question #259173]: rsync backend fails"
    https://answers.launchpad.net/duplicity/+question/259173
* Make ssh an unsupported backend scheme
* Temporarily disable RsyncBackendTest and test_verify_changed_source_file
* Merge in lp:~hooloovoo/duplicity/test-verify-improvements
  - Fix up test_verify, which was a bit of a mess:
  - Simplify test_verify.py to just do a simple backup and verify on a
    single file in each test.
  - Modify tests to correctly use --compare-data option.
  - Add tests for when the source files have atime/mtime manipulated.
* Fix duplicity verify to ignore the file system when globals.compare_data is
  False.  This means that verify only validates the viability of the backup
  itself unless --compare-data is specified.
* Reenable test_verify_changed_source_file test
* Merged in lp:~hooloovoo/duplicity/add-additional-verify-tests-for-corrupted-archives
  - Add tests to test_verify.py to test that verify fails if the archive
    file is corrupted. Changed file objects to use the with keyword to ensure
    that the file is properly closed.
  - Small edit to find statement in verify_test.sh to make it work as
    expected (enclose string in quotes).
* Merged in lp:~hooloovoo/duplicity/add-else-to-badupload-try-except
  - Badupload test previously did not have an else in the try-except. The
    test passed if the except was triggered, but would also pass if the
    test did not trigger an error at all.
* Fixed bug 1406173 by applying patch supplied in report
  - Ignore .par2 files in remote file list
* Removed redundant shell test testing/verify_test.sh
* Misc fixes for the following PEP8 issues:
   - E211, E221, E222, E225, E226, E228
   - see http://pep8.readthedocs.org
* Fixed bug 1278529 by applying patch supplied in report
  - Use get_bucket() rather than lookup() on S3 to get proper error msg.
* Merged in lp:~stapelberg+ubuntu/duplicity/add-onedrive-backend
  - Add a Microsoft OneDrive backend
* Merged in lp:~hooloovoo/duplicity/filelist_select_bug_1408411
  - Adds functional test cases that fail because of Bug #1408411 (commented
    out), to assist in fixing that bug.
* Merged in lp:~hooloovoo/duplicity/process_filelists_for_spaces_etc
  - Process filelists to remove imperfections such as blank lines, comments
    and leading/trailing whitespace. Also correctly processes quoted folders
    containing spaces in their names. Extensive unit and functional tests to
    test these changes (and selection more generally).
  - The branch does add an additional folder to testfiles.tar.gz called
    select2. This included a folder with a trailing space, to test the quote
    test. The subfolders also have clearer names than in the "select" folder
    (eg "1sub2sub3") which makes it easier to keep track of issues in tests.
* Merged in lp:~9-sa/duplicity/FixBug1408289
  - Fix bug #1408289
  - Wrong attribute name prevented raise of client exception, working now
* Merged in lp:~noizyland/duplicity/azurebackend
  - Add backend for Azure Blob Storage Service


New in v0.7.00 (2014/10/23)
---------------------------
Enhancements:
* Adjust unit tests to expect single FTP backend
* Merged in lp:~moritzm/duplicity/duplicity
  - Use lftp for both FTP and FTPS
* Merged in lp:~ed.so/duplicity/0.7-dpbx.importfix
  - fix this showstopper with the dropbox backend
    "NameError: global name 'rest' is not defined"
* Merged in lp:~jflaker/duplicity/BugFix1325215
  - The reference to "--progress_rate" in the man page as a parameter is
    incorrect. Should be "--progress-rate".
* Merged in lp:~hooloovoo/duplicity/updated-README-REPO
  - Changes to README-REPO to reflect the restructuring of the directories.
* Fixed bug 1375304 with patch supplied by Aleksandar Ivanovic
* Merged in lp:~ed.so/duplicity/webdav200fix-0.7
  - webdav backend fix "BackendException: Bad status code 200 reason OK. " when
    restarting an interrupted backup and overwriting partially uploaded volumes.
* Merged in lp:~mterry/duplicity/require-2.6
  - Require at least Python 2.6.
  - Our code base already requires 2.6, because 2.6-isms have crept in. Usually
    because we or a contributor didn't think to test with 2.4. And frankly,
    I'm not even sure how to test with 2.4 on a modern system.
* Merged in lp:~mterry/duplicity/drop-pexpect
  - Drop our local copy of pexpect in favor of a system version.
  - It's only used by the pexpect ssh backend (and if you're opting into that,
    you probably can expect that you will need pexpect) and the tests.
  - I've done a quick smoketest (backed up and restored using
    --ssh-backend=pexpect) and it seemed to work fine with a modern version
    of pexpect.
* Merged in lp:~mterry/duplicity/2.6isms
  - Here's a whole stack of minor syntax modernizations that will become
    necessary in python3. They all work in python2.6.
  - I've added a new test to keep us honest and prevent backsliding on these
    modernizations. It runs 2to3 and will fail the test if 2to3 finds anything
    that needs fixing (with a specific set of exceptions carved out).
  - This branch has most of the easy 2to3 fixes, the ones with obvious and
    safe syntax changes.
  - We could just let 2to3 do them for us, but ideally we use 2to3 as little
    as possible, since it doesn't always know how to solve a given problem.
    I will propose a branch later that actually does use 2to3 to generate
    python3 versions of duplicity if they are requested. But this is a first
    step to clean up the code base.
* Merged in lp:~mterry/duplicity/drop-static
  - Drop static.py.
  - This is some of the oldest code in duplicity! A bzr blame says it is
    unmodified (except for whitespace / comment changes) since revision 1.
  - But it's not needed anymore. Not really even since we updated to python2.4,
    which introduced the @staticmethod decorator. So this branch drops it and
    its test file.
* Merged in lp:~mterry/duplicity/py3-map-filter
  - In py3, map and filter return iterable objects, not lists. So in each case
    we use them, I've either imported the future version or switched to a list
    comprehension if we really wanted a list.
* Merged in lp:~mterry/duplicity/backend-unification
  - Reorganize and simplify backend code.  Specifically:
    - Formalize the expected API between backends and duplicity.  See the new
      file duplicity/backends/README for the instructions I've given authors.
    - Add some tests for our backend wrapper class as well as some tests for
      individual backends.  For several backends that have some commands do all
      the heavy lifting (hsi, tahoe, ftp), I've added fake little mock commands
      so that we can test them locally.  This doesn't truly test our integration
      with those commands, but at least lets us test the backend glue code.
    - Removed a lot of duplicate and unused code which backends were using (or
      not using).  This branch drops 700 lines of code (~20%)
      in duplicity/backends!
    - Simplified expectations of backends.  Our wrapper code now does all the
      retrying, and all the exception handling.  Backends can 'fire and forget'
      trusting our wrappers to give the user a reasonable error message.
      Obviously, backends can also add more details and make nicer error
      messages.  But they don't *have* to.
    - Separate out the backend classes from our wrapper class.  Now there is no
      possibility of namespace collision.  All our API methods use one
      underscore.  Anything else (zero or two underscores) are for the backend
      class's use.
    - Added the concept of a 'backend prefix' which is used by par2 and gio
      backends to provide generic support for "schema+" in urls -- like par2+
      or gio+.  I've since marked the '--gio' flag as deprecated, in favor of
      'gio+'.  Now you can even nest such backends like
      par2+gio+file://blah/blah.
    - The switch to control which cloudfiles backend had a typo.  I fixed this,
      but I'm not sure I should have?  If we haven't had complaints, maybe we
      can just drop the old backend.
    - I manually tested all the backends we have (except hsi and tahoe -- but
      those are simple wrappers around commands and I did test those via mocks
      per above).  I also added a bunch more manual backend tests to
      ./testing/manual/backendtest.py, which can now be run like the above to
      test all the files you have configured in config.py or you can pass it a
      URL which it will use for testing (useful for backend authors).
* Merged in lp:~mterry/duplicity/py2.6.0
  - Support python 2.6.0.
  - Without this branch, we only support python >= 2.6.5 because that's when
    python's urlparse.py module became its more modern incarnation. (I won't
    get into the wisdom of them making such a change in the middle of the
    2.6 lifecycle.)
  - Also, the version of lockfile that I have (0.8) doesn't work with python
    2.6.0 or 2.6.1 due to their implementation of
    threading.current_thread().ident returning None unexpectedly. So this
    branch tells lockfile not to worry about adding the current thread's
    identifier to the lock filename (we don't need a separate lock per thread,
    since our locking is per process).
  - I've tested with 2.6.0 and 2.7.6 (both extremes of our current support).
* Update shebang line to python2 instead of python to avoid confusion.
* Merged in lp:~3v1n0/duplicity/copy.com-backend
  - I've added a backend for Copy.com cloud storage, this supports all the
    required operations and works as it should from my tests.
  - You can use it by calling duplicity with something like:
    copy://account@email.com:your-password@copy.com/duplicity
  - The only thing I've concerns with is the optimized support for _delete_list
    which can't be enabled here because the test_delete_list tries also to
    delete a not-existing files, and it requires the backend not to raise an
    exception in that case (is this somewhat wanted or could we do the same as
    for _delete or _query?)
* Merged in lp:~ed.so/duplicity/webdav200fix-0.7
  - webdav backend fix "BackendException: Bad status code 200 reason OK. " when
    restarting an interrupted backup and overwriting partially uploaded volumes.
* Merged in lp:~mterry/duplicity/webdav-fixes
  - This branch fixes two issues I saw when testing the webdav backend:
  - 1) Errors like the following: "Attempt 1 failed. BackendException: File
    /tmp/duplicity-LQ1a0i-tempdir/mktemp-u2aiyX-2 not found locally after get
    from backend".  These were caused by the _get() method not calling setdata()
    on the local path object, so the rest of the code thought it didn't exist.
  - 2) Some odd issues from stale responses/data. We have a couple places in
    webdavbackend.py where we close the connection before making a request
    because of this problem. But I've changed it to do it every time, more
    reliably, by putting a _close() call inside the request() method.
  - With this, the webdav backend seems fine to me.
* Merged in lp:~antmak/duplicity/0.7-par2-fix
  - Useful fix for verbatim par2cmdline options (like "-t" in par2-tbb version)
* Fixed bug 1327550: OverflowError: signed integer is greater than maximum
  - Major and minor device numbers are supposed to be one byte each.  Someone
    has crafted a special system image using OpenVZ where the major and minor
    device numbers are much larger (ploop devices).  We treat them as (0,0).
* Added sxbacked.py, Skylable backend.  Waiting on man page updates.
* Merged in lp:~ed.so/duplicity/manpage.verify
  - Clarify verify's functionality as wished for by a user surprised with a big
    bandwidth bill from rackspace.
* Merged in lp:~jeffreydavidrogers/duplicity/duplicity
  - This change fixes two small typos in the duplicity man page.
* Merged in lp:~johnleach/duplicity/1315437-swift-container-create
  - Check to see if the swift container exists before trying to create it,
    in case we don't have permissions to create containers. Fixes #1315437
* Merged in lp:~ed.so/duplicity/manpage.blocksize
  - add --max_blocksize doc
  - reorder 'a note on filename prefixes' into alphabetical order
2016-04-18 17:49:20 +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 Add support for NetBSD wedge names. 2016-02-29 05:50:40 +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 (pkgsrc) 2016-02-12 14:11:24 +00:00
ansible Move the ansible/roles file tree out from under etc/ to share/, 2016-02-18 09:24:25 +00:00
apcupsd Help configure to find shutdown on NetBSD where PATH might not contain 2016-03-22 18:56:36 +00:00
asapm Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
atitvout Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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
backuppc fix perl syntax deprecation warnings 2016-03-13 01:02:44 +00:00
bacula Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +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 Needs main bacula package for shared libraries. Bump revision. 2016-03-25 21:05:55 +00:00
bacula-wx-console Recursive revbump following MesaLib update, categories p through x. 2015-04-25 14:24:44 +00:00
baloo Fix install on Darwin which doesn't use PolicyKit. 2016-03-23 15:40:36 +00:00
baloo-widgets Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +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 security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
boxbackup-server Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
brasero Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
brasero-nautilus Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
bup Drop maintainership. 2016-03-09 23:53:17 +00:00
burn Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
burp Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +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 Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
cdrdao Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
cdrkit Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
cdrtools Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
cfengine2 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
cfengine3 Update cfengine3 to 3.7.3. 2016-04-11 12:48:37 +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 Use OPSYSVARS. 2016-02-26 10:24:10 +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 2016-03-12 23:07:33 +00:00
coreutils Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
cpmtools Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
cpogm Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +00:00
cvsreport Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Update dbus to 1.10.8 2016-03-09 10:34:53 +00:00
dbus-glib Update dbus-glib to 0.106: 2016-01-18 22:53:03 +00:00
dbus-python-common Update python dbus bindings to 1.2.4. 2016-04-15 10:15:15 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Package DeforaOS Browser 0.5.1 2016-04-14 23:37:33 +00:00
deforaos-terminal Package DeforaOS Terminal 0.1.0 2016-03-28 19:28:42 +00:00
depot Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
desktop-file-utils Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
dirsize Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
dirvish Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
disk-filltest Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
diskscrub Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
dmassage Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
dmesg2gif Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:50:58 +00:00
dmg2img Update dmg2img to version 1.6.5. 2016-03-07 20:17:33 +00:00
dmidecode Add support for CFLAGS and LDFLAGS 2016-04-18 15:29:38 +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 Update duplicity to 0.7.07. From Frédéric Fauberteau in PR pkg/51061. 2016-04-18 17:49:20 +00:00
dvd+rw-tools Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
dvdisaster Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
dvdrecord Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
e2fsprogs Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Update HOMEPAGE. 2016-02-13 00:46:06 +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.0.2. 2016-01-16 17:37:37 +00:00
estd Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
etckeeper Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
etcmanage Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
etcutils Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
euca2ools Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +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 Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +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 Update file to 5.25. 2016-03-05 15:44:36 +00:00
filelight Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
filelight-kde3 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
findnewest Import findnewest-0.3 as sysutils/findnewest. 2015-12-06 15:20:12 +00:00
findutils Update findutils to 4.6.0: 2016-01-03 17:00:48 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
fsviewer Fix additional libraries on SunOS. 2016-04-14 12:15:55 +00:00
ftwin Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
gamin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gcdmaster Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
gcombust Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gdmap SunOS needs an explicit -lm. 2016-04-14 11:32:45 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gio-fam Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
gkrellm Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
gkrellm-est Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
gkrellm-server Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
gkrellm-share
gnome-commander Recursive PKGREVISION bump for poppler-0.42.0. 2016-04-15 14:42:51 +00:00
gnome-device-manager Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
gnome-menus Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gnome-mount Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gnome-nds-thumbnailer Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gnome-pkgview Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
gnome-power-manager Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
gnome-settings-daemon Recursive revbump from libxklavier-5.4 2016-03-12 11:28:36 +00:00
gnome-system-monitor Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gnome-system-tools Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gnome-vfs Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
gnome-vfs-monikers Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
gnome-vfsmm Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
gnome-volume-manager Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
grun Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gsettings-desktop-schemas Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
gst-plugins0.10-gio
gst-plugins0.10-gnomevfs Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +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 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
gvfs Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
gworkspace Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
hal Remove manual OPSYSVARS additions which are now part of the default set. 2016-02-25 08:27:02 +00:00
hal-info Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32: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
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 Update to 20151106. Added the following files: 2015-11-16 16:31:19 +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 Don't add doc subdirectory twice - fixes build with latest cmake 2016-03-29 10:55:45 +00:00
k3b-kde3 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
k4dirstat Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
kcron Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +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 PKGREVISION bump for poppler-0.42.0. 2016-04-15 14:42:51 +00:00
kfloppy Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
krusader Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +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
lastfss only for NetBSD, fss(4) is NetBSD-specific 2016-03-09 21:47:12 +00:00
lavaps Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
libburn Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
libdevkit-gobject Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
libgamin Expand --version-script removals for SunOS back out into package Makefiles 2014-09-10 15:59:33 +00:00
libgksu Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
libgtop Fix Darwin build. 2016-04-07 11:54:57 +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 1.1.3. 2016-03-09 20:45:44 +00:00
libnotify Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
libol Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
liboobs Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
libpciaccess Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
libvirt Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
lilo Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 fixed silly typo 2016-02-24 21:06:11 +00:00
lsof Update lsof to 4.88. From David H. Gutteridge in PR pkg/50487. 2015-12-29 12:42:57 +00:00
magicrescue Support PKGMANDIR. 2016-04-01 12:31:20 +00:00
manifold Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +00:00
mbmon Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
mc Update mc to 4.8.16 2016-04-13 18:34:27 +00:00
mc46 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
mesure Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
mgm Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
munin-node Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
munin-server Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
nautilus Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
nautilus-sendto Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
openstack_init Bump applications PKGREVISIONs for python users that might be using 2014-05-17 16:10:41 +00:00
openxenmanager Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +00:00
osname Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-collectd Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:50:58 +00:00
p5-Config-Augeas Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Config-Simple Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-File-chmod Update 0.32 to 0.42 2016-02-09 13:24:45 +00:00
p5-File-Copy-Recursive Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-File-Inplace Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-File-Remove Update 1.52 to 1.55 2016-02-09 13:22:37 +00:00
p5-Filesys-Df Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Filesys-DfPortable Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Filesys-Statvfs Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Gnome2-VFS Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
p5-GTop Correct PKGNAME, was 0.16 but reallity was already 0.18 (since 2012-09-09 2016-02-09 13:06:22 +00:00
p5-IO-BufferedSelect Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-IO-KQueue Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Lchown Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Linux-Inotify2 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Mac-AppleScript Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Mac-AppleScript-Glue Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Parse-Syslog Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Quota Update 1.7.0 to 1.7.2 2016-02-09 13:35:40 +00:00
p5-Server-Starter Update 0.17 to 0.32 2016-02-01 12:12:05 +00:00
p5-SSH-Batch Update to 0.030 2016-02-09 14:16:53 +00:00
p5-Sys-CPU Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Sys-CpuLoad Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Sys-Filesystem Update to 1.406 2016-02-09 14:19:32 +00:00
p5-Sys-Hostname-Long Update to 1.5 2016-02-09 14:22:02 +00:00
p5-Sys-SigAction Update 0.15 to 0.21 2016-02-09 14:13:17 +00:00
p5-Sys-Syslog Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Sys-Utmp Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Unix-ConfigFile Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Unix-Statgrab Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-Unix-Syslog Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
p5-UPS-Nut Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:50:58 +00:00
pciutils Add support for CFLAGS and LDFLAGS 2016-04-14 23:21:45 +00:00
pcmanfm Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
pflogsumm Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
pfstat Recursive revbump from multimedia/libvpx 2015-11-18 14:19:46 +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 Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
py-augeas Fix PKGNAME to properly version Python. 2015-12-01 13:04:53 +00:00
py-borgbackup Update py-borgbackup to 1.0.1. 2016-04-15 13:31:29 +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 Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +00:00
py-kazoo Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
py-magic Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
py-notify Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +00:00
py-notify-python Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +00:00
py-pathtools Import py-pathtools-0.1.2 as sysutils/py-pathtools. 2015-12-30 14:17:06 +00:00
py-pefile Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +00:00
py-psutil Add upstream bug report URL. 2016-02-10 13:20:28 +00:00
py-setconf Import setconf-0.6.7 as sysutils/py-setconf 2015-12-12 05:38:45 +00:00
py-setproctitle Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
py-structlog Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Import py-watchdog-0.8.3 as sysutils/py-watchdog. 2015-12-30 14:22:34 +00:00
py-xattr Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
rdfind Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
rdiff-backup Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
rox Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
rsnapshot Remove mk/find-prefix.mk usage from the sysutils category. 2015-11-25 12:53:29 +00:00
rsyslog This package needs to be able to do atomic compare-and-swap on time_t. 2016-03-14 11:12:22 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
salt Avoid a crash on NetBSD when not every minion is present 2016-02-16 01:52:34 +00:00
salt-docs Needs gpg binary to build, so add build dependency. 2016-04-06 12:38:42 +00:00
same Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
sarah Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
screenbrightness Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
screentest Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
smartmontools Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
smbldap-tools Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
socket Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
strace Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
strigi Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 syslog-ng installs systemd journal library on Linux with systemd 2016-03-09 10:49:00 +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 Recursive PKGREVISION bump for all packages mentioning 'perl', 2015-06-12 10:50:58 +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 textproc/icu 57.1 2016-04-11 19:01:33 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Recursive revbump from multimedia/libvpx 2015-11-18 14:19:46 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
vifm Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
vip Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
virt-manager Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
virtinst Extend PYTHON_VERSIONS_INCOMPATIBLE to 35 2015-12-05 21:25:27 +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 security/openssl ABI bump. 2016-03-05 11:27:40 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xdu Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xe-guest-utilities Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xenkernel3 Newer binutils requires cmpw access to %r11 to explicitly qualify the 2016-03-01 20:09:03 +00:00
xenkernel33 Newer binutils requires cmpw access to %r11 to explicitly qualify the 2016-03-01 20:09:03 +00:00
xenkernel41 Newer binutils requires cmpw access to %r11 to explicitly qualify the 2016-03-01 20:09:03 +00:00
xenkernel42 pply patches from Xen repository, fixing: 2016-01-07 17:53:58 +00:00
xenkernel45 Update xenkernel45 and xentools45 to 4.5.2. 2016-01-08 13:24:29 +00:00
xenstoretools Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
xentools3 Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
xentools3-hvm Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
xentools33 Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
xentools41 Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
xentools42 Bump PKGREVISON for previous. 2016-04-04 15:17:33 +00:00
xentools45 Drop more unnecessary variables from MAKE_ENV. 2016-04-04 14:51:59 +00:00
xenvstat
xfburn Long overdue import of xfburn-0.5.4 as sysutils/xfburn. 2016-03-04 11:11:39 +00:00
xfce4-appfinder Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xfce4-battery-plugin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xfce4-cpugraph-plugin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xfce4-diskperf-plugin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xfce4-fsguard-plugin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xfce4-genmon-plugin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xfce4-gvfs-mount-plugin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xfce4-mount-plugin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xfce4-netload-plugin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xfce4-quicklauncher-plugin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xfce4-systemload-plugin Use OPSYSVARS. 2016-02-26 10:24:10 +00:00
xfce4-taskmanager Make it work in NetBSD-current (where vsize_t is hidden from regular userland) 2016-01-28 12:47:00 +00:00
xfce4-thunar patch CVE-2013-7447 2016-03-13 03:45:53 +00:00
xfce4-thunar-vcs Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
xfce4-verve-plugin Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xfce4-xarchiver Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +00:00
xfce4-xkb-plugin Recursive revbump from libxklavier-5.4 2016-03-12 11:28:36 +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 Add SHA512 digests for distfiles for sysutils category 2015-11-04 01:32:05 +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 Update sysutils/znapzend to 0.15.3 2016-03-17 00:26:16 +00:00
Makefile add and enable xhyve 2016-04-14 05:47:52 +00:00