summaryrefslogtreecommitdiff
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 Pashev2-0/+6
2013-12-31include <signal.h> for raise() in ifne.cIgor Pashev2-0/+3
2013-12-31Fixed ifdata for illumos/Solaris. Thanks to Gabriele GiaconeIgor Pashev2-2/+13
2013-11-21Make vipe manpage a little clearerMarian Sigler1-1/+1
2013-11-05changelogJoey Hess1-0/+3
2013-11-05Use docbook-xsl to build man pagesPeter Eisentraut11-2/+20
Use the style sheets from docbook-xsl to build man pages from DocBook, instead of the obsolete docbook2x package. Adjust Debian build dependencies accordingly. Add some man page metadata required by the new tool chain to the sources.
2013-11-05Run xmllint as part of DocBook buildPeter Eisentraut2-1/+2
This will verify that the DocBook markup is valid before building anything from it. The actual build tools don't do that and might produce garbage if the markup is not valid.
2013-11-05Use pattern rule for building man pages from DocBookPeter Eisentraut1-22/+1
This eliminates some duplicate code.
2013-11-05Fix invalid DocBook markupPeter Eisentraut2-4/+4
2013-11-05Use http system identifiersPeter Eisentraut9-9/+9
This makes the DocBook files independent of particular file-system layout. On system with proper XML catalog setups, there should be no difference. (No actual HTTP calls will be made.)
2013-11-04Fix ifdata to build on OS X. Thanks, Peter Eisentraut Closes: #575294Joey Hess2-0/+12
2013-08-26releasing version 0.50debian/0.500.50Joey Hess1-2/+2
2013-08-26Merge remote-tracking branch 'refs/remotes/dgit/dgit/sid'Joey Hess0-0/+0
2013-07-11Fix build on Hurd. Closes: #716653 (Thanks, Pino Toscano)Joey Hess3-1/+12
2013-07-10releasing version 0.490.49Joey Hess1-2/+2
2013-07-10moreutils (0.49) unstable; urgency=lowJoey Hess35-0/+5670
* ts: Fix timezone used with -i * errno, isutf8: Fix zero-termination of option list, which could lead to getopt crash. Closes: #715867 (Thanks, Mayhem Team) # imported from the archive
2013-07-10errno, isutf8: Fix zero-termination of option list, which could lead to ↵Joey Hess3-0/+5
getopt crash. Closes: #715867 (Thanks, Mayhem Team)
2013-05-05ts: Fix timezone used with -iJoey Hess2-6/+9
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 Hess2-2/+9
2013-03-27ts: Support single-digit day dates. Thanks, Peter LunicksJoey Hess1-0/+2
2013-03-27fix for syslog-style single-digit day dates, e.g. 'Feb 3'Peter Lunicks1-1/+1
2013-01-25ts: -i enables incremental timestamping. Thanks, Thomas Vander SticheleJoey Hess1-0/+2
2013-01-25add support for incremental timestampingThomas Vander Stichele1-4/+46
2013-01-01Typo. Closes: #697113Joey Hess2-1/+2
2012-07-25Allow overriding PREFIX and CFLAGS to make the build more flexible (Thanks, ↵Joey Hess1-0/+7
Ben Walton)
2012-07-25Allow overriding PREFIX and CFLAGS to make the build more flexibleBen Walton1-2/+2
This patch allows the package to be more easily portable to other systems, such as OpenCSW where we install to /opt/csw and don't always use gcc. Signed-off-by: Ben Walton <bwalton@artsci.utoronto.ca>
2012-06-25releasing version 0.470.47Joey Hess1-2/+2
2012-06-05Update errno manual page with new optionLars Wirzenius1-0/+15
2012-06-05Add errno --search-all-locale optionLars Wirzenius1-3/+45
2012-06-05Merge remote-tracking branch 'liw/errno-hurd-patch'Joey Hess1-1/+1
2012-06-05Change how errno values are printed, for portabilityLars Wirzenius1-1/+1
Reported and suggested by Pino Toscano: The Hurd does not #define the EFOO constants as simple integers, but as expressions. This made the code that generates errnos.h to misinterpret the value, and always print 0 for every error code. We fix this by instead using the EFOO macro in errnos.h, so that the preprocessor evaluates it correctly. This is the right thing to do anyway, for every platform. Thus the table changes from {"EFOO",42} to {"EFOO",EFOO} for each entry.
2012-06-05Merge commit '67f22bd1b6c2acfa5d23fa1821a0c9e895d085eb'Joey Hess2-11/+137
2012-06-05Make errno obey localeLars Wirzenius1-0/+3
2012-06-05Fix errno manpage to include --search in synopsisLars Wirzenius1-2/+8
2012-06-05Add --search option to errnoLars Wirzenius2-4/+49
2012-06-05Add --help and add --list to manpageLars Wirzenius2-0/+27
2012-06-05Add --list option to errnoLars Wirzenius2-10/+55
2012-06-04errno: New utility that looks up errno numbers or names.Joey Hess3-0/+11
2012-06-04let's inline the awkJoey Hess2-7/+1
it's not *too* ugly (or my ugly tolerance for Makefiles is high)
2012-06-04Add errno manpageLars Wirzenius2-1/+90
2012-06-04Add copyright statementLars Wirzenius1-0/+20
2012-06-04Add errno to READMELars Wirzenius1-0/+1
2012-06-04Add errno programLars Wirzenius3-2/+88
2012-05-22fix cleanup on errorJoey Hess1-2/+2
2012-04-10releasing version 0.460.46Joey Hess1-2/+2
2012-04-09cleanupJoey Hess1-12/+12
2012-04-09combine: Avoid reading files twice, to support data coming from pipes. ↵Joey Hess2-3/+28
Closes: #667960 Thanks, Carsten Hey
2012-02-25updated debian copyright format urlJoey Hess1-1/+1