836ce7b2d6
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 |
||
---|---|---|
.. | ||
9base | ||
855resolution | ||
915resolution | ||
acpica-utils | ||
acpidump | ||
adtool | ||
afbinit | ||
agedu | ||
amanda | ||
amanda-client | ||
amanda-common | ||
amanda-plot | ||
amanda-server | ||
amtterm | ||
ansible | ||
apcupsd | ||
asapm | ||
atitvout | ||
attr | ||
augeas | ||
backuppc | ||
bacula | ||
bacula-clientonly | ||
bacula-doc | ||
bacula-qt-console | ||
bacula-tray-monitor | ||
bacula-wx-console | ||
baloo | ||
baloo-widgets | ||
bbsload | ||
bchunk | ||
bcmfw | ||
bcollect | ||
bkpupsd | ||
boxbackup-client | ||
boxbackup-server | ||
brasero | ||
brasero-nautilus | ||
bsdinstall | ||
bsign | ||
btpin-qt | ||
bubblemon | ||
bup | ||
burn | ||
burp | ||
capistrano | ||
ccd2iso | ||
ccze | ||
cdbkup | ||
cdrdao | ||
cdrkit | ||
cdrtools | ||
cfengine2 | ||
cfengine3 | ||
checkpassword | ||
checkpassword-pam | ||
checkperms | ||
clex | ||
collectd | ||
collectd-amqp | ||
collectd-curl | ||
collectd-dbi | ||
collectd-dns | ||
collectd-memcached | ||
collectd-mysql | ||
collectd-network | ||
collectd-notify-email | ||
collectd-postgresql | ||
collectd-riemann | ||
collectd-rrdtool | ||
collectd-snmp | ||
conky | ||
consolekit | ||
coreutils | ||
cpmtools | ||
cpogm | ||
cpuburn | ||
cpuid | ||
crashme | ||
cuisine | ||
cvsreport | ||
daemond | ||
daemontools | ||
dbus | ||
dbus-glib | ||
dbus-python-common | ||
dbus-qt3 | ||
dbus-sharp | ||
dbus-sharp-glib | ||
dc-tools | ||
dd_rescue | ||
dd_rhelp | ||
ddrescue | ||
deforaos-browser | ||
deforaos-terminal | ||
depot | ||
desktop-file-utils | ||
detox | ||
devkitd | ||
di | ||
direvent | ||
dirsize | ||
dirvish | ||
disk-filltest | ||
diskscrub | ||
dmassage | ||
dmesg2gif | ||
dmg2img | ||
dmidecode | ||
dmsdos | ||
dog | ||
dptutil | ||
dtpstree | ||
duplicity | ||
dvd+rw-tools | ||
dvdisaster | ||
dvdrecord | ||
e2fsprogs | ||
easydiskpasswd | ||
edbus | ||
efreet | ||
eggdbus | ||
entr | ||
erlang-goldrush | ||
erlang-lager | ||
estd | ||
etckeeper | ||
etcmanage | ||
etcutils | ||
euca2ools | ||
eventlog | ||
extipl | ||
fabric | ||
facette | ||
fakeroot | ||
fam | ||
fastfs | ||
fatback | ||
fdupes | ||
file | ||
filelight | ||
filelight-kde3 | ||
findnewest | ||
findutils | ||
fix4SA110rev2 | ||
fixelfprot | ||
flashrom | ||
foremost | ||
free | ||
fs-kit | ||
fscd | ||
fsviewer | ||
ftwin | ||
gamin | ||
gcdmaster | ||
gcombust | ||
gdmap | ||
genpasswd | ||
gentoo | ||
gfm | ||
gio-fam | ||
gkrellm | ||
gkrellm-est | ||
gkrellm-server | ||
gkrellm-share | ||
gnome-commander | ||
gnome-device-manager | ||
gnome-menus | ||
gnome-mount | ||
gnome-nds-thumbnailer | ||
gnome-pkgview | ||
gnome-power-manager | ||
gnome-settings-daemon | ||
gnome-system-monitor | ||
gnome-system-tools | ||
gnome-vfs | ||
gnome-vfs-monikers | ||
gnome-vfsmm | ||
gnome-volume-manager | ||
gnometoaster | ||
gnuit | ||
gpart | ||
grub | ||
grub2 | ||
grun | ||
gsettings-desktop-schemas | ||
gst-plugins0.10-gio | ||
gst-plugins0.10-gnomevfs | ||
gst-plugins1-gio | ||
gtk-send-pr | ||
gvfs | ||
gworkspace | ||
hal | ||
hal-info | ||
hddtemp | ||
heirloom-basename | ||
heirloom-cat | ||
heirloom-chmod | ||
heirloom-chown | ||
heirloom-cksum | ||
heirloom-cmp | ||
heirloom-copy | ||
heirloom-cp | ||
heirloom-csplit | ||
heirloom-dd | ||
heirloom-dirname | ||
heirloom-doc | ||
heirloom-du | ||
heirloom-env | ||
heirloom-file | ||
heirloom-find | ||
heirloom-getconf | ||
heirloom-groups | ||
heirloom-hostname | ||
heirloom-id | ||
heirloom-listusers | ||
heirloom-ln | ||
heirloom-logins | ||
heirloom-logname | ||
heirloom-ls | ||
heirloom-mesg | ||
heirloom-mkdir | ||
heirloom-mkfifo | ||
heirloom-mknod | ||
heirloom-nice | ||
heirloom-nohup | ||
heirloom-pathchk | ||
heirloom-pgrep | ||
heirloom-priocntl | ||
heirloom-ps | ||
heirloom-psrinfo | ||
heirloom-pwd | ||
heirloom-renice | ||
heirloom-rm | ||
heirloom-rmdir | ||
heirloom-setpgrp | ||
heirloom-shl | ||
heirloom-sort | ||
heirloom-split | ||
heirloom-stty | ||
heirloom-sync | ||
heirloom-tapecntl | ||
heirloom-tee | ||
heirloom-touch | ||
heirloom-tsort | ||
heirloom-tty | ||
heirloom-uname | ||
heirloom-users | ||
heirloom-who | ||
heirloom-whoami | ||
heirloom-whodo | ||
heirloom-xargs | ||
heirloom-yes | ||
hfsutils | ||
hs-temporary | ||
htop | ||
hytctl | ||
i2ocfg | ||
i810switch | ||
iat | ||
idesk | ||
install-sh | ||
intel-microcode-netbsd | ||
ipa | ||
ipmitool | ||
ipw-firmware | ||
ir-account | ||
isapnptools | ||
iwi-firmware | ||
iwi-firmware3 | ||
iwn-firmware | ||
k3b | ||
k3b-kde3 | ||
k4dirstat | ||
kcron | ||
kdf | ||
kdirstat | ||
kfilemetadata | ||
kfloppy | ||
krusader | ||
ksystemlog | ||
kuser | ||
lambd | ||
lastfss | ||
lavaps | ||
libburn | ||
libdevkit-gobject | ||
libgamin | ||
libgksu | ||
libgtop | ||
libirman | ||
libisoburn | ||
libisofs | ||
liblogging | ||
liblognorm | ||
libnotify | ||
libol | ||
liboobs | ||
libpciaccess | ||
libvirt | ||
lilo | ||
lnav | ||
lockf | ||
logfinder | ||
logrider | ||
logrot | ||
logrotate | ||
lsof | ||
magicrescue | ||
manifold | ||
mbmon | ||
mc | ||
mc46 | ||
mcollective | ||
mdf2iso | ||
memconf | ||
memtest86 | ||
memtester | ||
memtestplus | ||
mencvcd | ||
menu-cache | ||
mesure | ||
mgm | ||
mklivecd | ||
mkmemstick | ||
mksunbootcd | ||
mktemp | ||
monit | ||
monitoring | ||
mrsync | ||
mtools | ||
mtoolsfm | ||
mtscan | ||
mtx | ||
munin-doc | ||
munin-node | ||
munin-server | ||
nautilus | ||
nautilus-sendto | ||
ncdu | ||
ndesk-dbus | ||
ndesk-dbus-glib | ||
neb-wipe | ||
netbsd-kmod-tools | ||
netbt-hcidump | ||
news | ||
notification-daemon | ||
nrg2iso | ||
ntfsprogs | ||
nvnet | ||
nvramtool | ||
oak | ||
open-vm-tools | ||
openstack_init | ||
openxenmanager | ||
osname | ||
p5-collectd | ||
p5-Config-Augeas | ||
p5-Config-Simple | ||
p5-File-chmod | ||
p5-File-Copy-Recursive | ||
p5-File-Inplace | ||
p5-File-Remove | ||
p5-Filesys-Df | ||
p5-Filesys-DfPortable | ||
p5-Filesys-Statvfs | ||
p5-Gnome2-VFS | ||
p5-GTop | ||
p5-IO-BufferedSelect | ||
p5-IO-KQueue | ||
p5-Lchown | ||
p5-Linux-Inotify2 | ||
p5-Mac-AppleScript | ||
p5-Mac-AppleScript-Glue | ||
p5-Parse-Syslog | ||
p5-Quota | ||
p5-Server-Starter | ||
p5-SSH-Batch | ||
p5-Sys-CPU | ||
p5-Sys-CpuLoad | ||
p5-Sys-Filesystem | ||
p5-Sys-Hostname-Long | ||
p5-Sys-SigAction | ||
p5-Sys-Syslog | ||
p5-Sys-Utmp | ||
p5-Unix-ConfigFile | ||
p5-Unix-Statgrab | ||
p5-Unix-Syslog | ||
p5-UPS-Nut | ||
pciutils | ||
pcmanfm | ||
pcvt-utils | ||
pdumpfs | ||
pear-Log | ||
pflogsumm | ||
pfstat | ||
pftop | ||
pidof | ||
pluged | ||
polysh | ||
pscpug | ||
psftools | ||
psmisc | ||
pstree | ||
puppet | ||
pv | ||
pwgen | ||
py-attic | ||
py-augeas | ||
py-borgbackup | ||
py-collectd | ||
py-dbus | ||
py-diffoscope | ||
py-gnome-menus | ||
py-kazoo | ||
py-magic | ||
py-notify | ||
py-notify-python | ||
py-pathtools | ||
py-pefile | ||
py-psutil | ||
py-setconf | ||
py-setproctitle | ||
py-structlog | ||
py-syslog-ng | ||
py-watchdog | ||
py-xattr | ||
qlogtools | ||
radeontool | ||
radmind | ||
rconfig | ||
rdfind | ||
rdiff-backup | ||
rename | ||
rfstool | ||
rkflashtool | ||
rmtrash | ||
roller | ||
rox | ||
rsnapshot | ||
rsyslog | ||
rsyslog-dbi | ||
rsyslog-elasticsearch | ||
rsyslog-gnutls | ||
rsyslog-gssapi | ||
rsyslog-libgcrypt | ||
rsyslog-mysql | ||
rsyslog-pgsql | ||
rsyslog-rabbitmq | ||
rsyslog-snmp | ||
rtty | ||
ruby-activesambaldap | ||
ruby-capistrano-stats | ||
ruby-chef | ||
ruby-chef-config | ||
ruby-chef-zero | ||
ruby-childprocess | ||
ruby-directory-watcher | ||
ruby-facter | ||
ruby-fssm | ||
ruby-listen | ||
ruby-notify | ||
ruby-quota | ||
ruby-rb-appscript | ||
ruby-rb-inotify | ||
safetynet | ||
salt | ||
salt-docs | ||
same | ||
sarah | ||
screenbrightness | ||
screentest | ||
scsiinfo | ||
service-config | ||
setquota | ||
sformat | ||
shc | ||
shelldap | ||
shmux | ||
skill | ||
slay | ||
slocate | ||
smartmontools | ||
smbldap-tools | ||
socket | ||
spice-protocol | ||
sredird | ||
sshsh | ||
stow | ||
strace | ||
strigi | ||
su2 | ||
sunxi-tools | ||
sux | ||
swapd | ||
swatch | ||
sysbuild | ||
sysbuild-user | ||
sysgen | ||
sysinfo | ||
syslog-ng | ||
syslog-ng-geoip | ||
syslog-ng-json | ||
syslog-ng-mongodb | ||
syslog-ng-redis | ||
syslog-ng-smtp | ||
syslog-ng-sql | ||
system-tools-backends | ||
systester | ||
sysupgrade | ||
tarsnap | ||
tarsnap-gui | ||
tcx | ||
tdir | ||
tegra-firmware | ||
tenshi | ||
testdisk | ||
tits | ||
tkcron | ||
tkdesk | ||
tload | ||
tob | ||
top | ||
torsmo | ||
toshutils | ||
tpb | ||
tphdisk | ||
tree | ||
ts | ||
upower | ||
ups-nut | ||
ups-nut-cgi | ||
ups-nut-snmp | ||
ups-nut-usb | ||
usbutil | ||
user_cygwin | ||
user_darwin | ||
user_interix | ||
user_irix | ||
vbetool | ||
vcdimager | ||
vcdimager-devel | ||
vidc-tools | ||
vifm | ||
vip | ||
virt-manager | ||
virtinst | ||
vobcopy | ||
vxargs | ||
watchman | ||
wbm-apache | ||
wbm-at | ||
wbm-bandwidth | ||
wbm-bind8 | ||
wbm-change-user | ||
wbm-cluster-copy | ||
wbm-cluster-cron | ||
wbm-cluster-passwd | ||
wbm-cluster-shell | ||
wbm-cluster-useradmin | ||
wbm-cluster-webmin | ||
wbm-custom | ||
wbm-cyrus-imapd | ||
wbm-dhcpd | ||
wbm-dovecot | ||
wbm-fetchmail | ||
wbm-file | ||
wbm-htaccess-htpasswd | ||
wbm-inetd | ||
wbm-ipfilter | ||
wbm-ldap-useradmin | ||
wbm-lpadmin | ||
wbm-mailboxes | ||
wbm-mount | ||
wbm-mysql | ||
wbm-net | ||
wbm-openslp | ||
wbm-passwd | ||
wbm-postfix | ||
wbm-postgresql | ||
wbm-qmailadmin | ||
wbm-quota | ||
wbm-sendmail | ||
wbm-shell | ||
wbm-sshd | ||
wbm-status | ||
wbm-syslog | ||
wbm-telnet | ||
wbm-time | ||
wbm-tunnel | ||
wbm-useradmin | ||
wbm-virtual-server | ||
WCMCommander | ||
webmin | ||
whowatch | ||
wipe | ||
wmcpuload | ||
wmmemmon | ||
wmSMPmon | ||
wpi-firmware | ||
wpi-firmware2 | ||
wtail | ||
xapply | ||
xbatt | ||
xbattbar | ||
xc5k-firmware | ||
xc3028l-firmware | ||
xcdroast | ||
xdu | ||
xe-guest-utilities | ||
xenkernel3 | ||
xenkernel33 | ||
xenkernel41 | ||
xenkernel42 | ||
xenkernel45 | ||
xenstoretools | ||
xentools3 | ||
xentools3-hvm | ||
xentools33 | ||
xentools41 | ||
xentools42 | ||
xentools45 | ||
xenvstat | ||
xfburn | ||
xfce4-appfinder | ||
xfce4-battery-plugin | ||
xfce4-cpugraph-plugin | ||
xfce4-diskperf-plugin | ||
xfce4-fsguard-plugin | ||
xfce4-genmon-plugin | ||
xfce4-gvfs-mount-plugin | ||
xfce4-mount-plugin | ||
xfce4-netload-plugin | ||
xfce4-quicklauncher-plugin | ||
xfce4-systemload-plugin | ||
xfce4-taskmanager | ||
xfce4-thunar | ||
xfce4-thunar-vcs | ||
xfce4-verve-plugin | ||
xfce4-xarchiver | ||
xfce4-xkb-plugin | ||
xfe | ||
xfm | ||
xfsprogs | ||
xhfs | ||
xhyve | ||
xmbmon | ||
xmeter | ||
xnc | ||
xosview | ||
xps | ||
xuvmstat | ||
zidrav | ||
znapzend | ||
Makefile |