summaryrefslogtreecommitdiff
path: root/debian/changelog
AgeCommit message (Collapse)AuthorFilesLines
2013-12-31Package for DysonHEADdyson/0.51-dyson1masterIgor Pashev1-2/+2
2013-12-31include <sys/loadavg.h> for getloadavg() in parallel.c on illumos/solarisIgor Pashev1-0/+2
2013-12-31include <signal.h> for raise() in ifne.cIgor Pashev1-0/+1
2013-12-31Fixed ifdata for illumos/Solaris. Thanks to Gabriele GiaconeIgor Pashev1-2/+6
2013-11-05changelogJoey Hess1-0/+3
2013-11-04Fix ifdata to build on OS X. Thanks, Peter Eisentraut Closes: #575294Joey Hess1-0/+7
2013-08-26releasing version 0.50debian/0.500.50Joey Hess1-2/+2
2013-07-11Fix build on Hurd. Closes: #716653 (Thanks, Pino Toscano)Joey Hess1-0/+7
2013-07-10releasing version 0.490.49Joey Hess1-2/+2
2013-07-10errno, isutf8: Fix zero-termination of option list, which could lead to ↵Joey Hess1-0/+3
getopt crash. Closes: #715867 (Thanks, Mayhem Team)
2013-05-05ts: Fix timezone used with -iJoey Hess1-0/+6
Before, -i %.s would print an offset from GMT in seconds, which is wrong. Setting the timezone to GMT internally fixes this, and means it doesn't need to special case use of gmtime to make the default time format work with -i.
2013-05-05releasing version 0.480.48Joey Hess1-2/+2
2013-04-02sponge: Check fclose to detect certian short reads. Closes: #704453Joey Hess1-0/+1
2013-03-27ts: Support single-digit day dates. Thanks, Peter LunicksJoey Hess1-0/+2
2013-01-25ts: -i enables incremental timestamping. Thanks, Thomas Vander SticheleJoey Hess1-0/+2
2013-01-01Typo. Closes: #697113Joey Hess1-0/+1
2012-07-25Allow overriding PREFIX and CFLAGS to make the build more flexible (Thanks, ↵Joey Hess1-0/+7
Ben Walton)
2012-06-25releasing version 0.470.47Joey Hess1-2/+2
2012-06-04errno: New utility that looks up errno numbers or names.Joey Hess1-0/+6
2012-04-10releasing version 0.460.46Joey Hess1-2/+2
2012-04-09combine: Avoid reading files twice, to support data coming from pipes. ↵Joey Hess1-0/+2
Closes: #667960 Thanks, Carsten Hey
2011-11-18Typo. Closes: #649158Joey Hess1-0/+6
2011-06-19releasing version 0.450.45Joey Hess1-2/+2
2011-04-01ts: Support %.s for seconds sinch epoch with subsecond resolution. Closes: ↵Joey Hess1-0/+7
#619764
2011-03-10releasing version 0.440.44Joey Hess1-2/+2
2011-02-19pee: Propigate exit status of commands run.Joey Hess1-0/+6
2010-10-30releasing version 0.430.43Joey Hess1-2/+2
2010-10-29chronic: New command, runs a command quietly, unless it fails.Joey Hess1-0/+7
2010-10-06releasing version 0.420.42Joey Hess1-3/+3
2010-09-13sponge: Ensure that output file permissions are always preserved if it ↵Joey Hess1-0/+2
already exists.
2010-09-13sponge: Guarantee that output file is always updated atomically, by renaming ↵Joey Hess1-0/+2
a temp file into place. Closes: #592144
2010-09-08Typo. Closes: #596032Joey Hess1-0/+6
2010-09-02releasing version 0.410.41Joey Hess1-2/+2
2010-09-02sponge: Correct bad use of fread that caused a trailing quantity of soaked ↵Joey Hess1-0/+3
data to be silently discarded when a temp file was used and sponge output to stdout. Closes: #595220 This bug was sorta introduced by 6f31909ff74c064ea0b5126219b3e8f7b8826bee. Actually, the buggy fread was there before also, and would have happened on quantities of data not evenly divisible by 8.
2010-07-12Add missing AUTHOR section to docbook man pages.Joey Hess1-0/+1
2010-07-08ifdata.docbook: Mark interface as required in synopsis. Closes: #588397Joey Hess1-0/+6
2010-07-06releasing version 0.400.40Joey Hess1-2/+2
2010-07-06parallel: -i will now replace {} inside parameters, before the {} had to be ↵Joey Hess1-0/+2
a separate parameter.
2010-06-18lckdo: Now deprecated, since util-linux's flock(1) can do the same thing.Joey Hess1-0/+7
2010-02-23zrun: Add support for .xz files.0.39Joey Hess1-3/+4
2010-02-23parallel: Allow a decimal load value to be specified with -lJoey Hess1-0/+1
2010-02-23parallel: Fix logic error in code handling -l that could make parallel ↵Joey Hess1-0/+2
return a bogus 255 exit code when all jobs succeeded. Closes: #569617
2010-02-23parallel: Fix to really avoid running new jobs when load is too high.Joey Hess1-0/+1
The conditions were ORed before, which typically made the load limit be ignored since the jobs limit was satisfied. Also, -l 0 makes little sense, so don't really wait for the load to become lower than 0 in that case.
2010-02-23parallel: Make -j 0 do something reasonable (start all jobs at once).Joey Hess1-0/+1
2010-02-23parallel: Fix exit code handling when commands are specified after --Joey Hess1-0/+1
2010-02-21Cap sillyness. Closes: #570815Joey Hess1-0/+6
2010-02-09releasing version 0.380.38Joey Hess1-3/+2
2010-02-09changelogJoey Hess1-0/+2
2010-02-09parallel: Define WEXITED to allow building on FreeBSD kernel. (This is ↵Joey Hess1-0/+2
somewhat experimental.)
2010-02-09freebsd patch from Enrico TassiJoey Hess1-0/+2
* ifdata: - Use unsigned long for ioctl command. On both Linux and FreeBSD ioctl expects an unsigned long command. FreeBSD kernel was complaining about the (by chance) signedness of the ioctl command (then probably ignored, since it worked both on Linux and FreeBSD). WARNING pid 799 (ifdata): ioctl sign-extension ioctl ffffffffc0206933 - put #if defined(__linux__) around ioctls that are not supported by FreeBSD - Mention in the manpage that some options are Linux specific.