Subject | Hash | Author | Date (UTC) |
---|---|---|---|
* vidir: Force numbers to normalised integers. * vidir: Abort on unknown item numbers rather than deleting them. Closes: #442440 | 4a0cb2806a75ca4a36472835fcbe0f41085902b2 | joeyh | 2007-09-16 17:06:14 |
releasing version 0.23 | cade3b932e3fc6f2fdc576a6ef0e061cf49a6653 | joeyh | 2007-09-06 01:54:45 |
reformat | 6512dfbce4cf15b27db1849b02493776aa07941e | joeyh | 2007-09-06 01:45:04 |
* Don't strip binaries for debian package if built with DEB_BUILD_OPTIONS=nostrip. Closes: #437577 * Include Michael Tokarev's lckdo program and replace / conflict with the current lckdo package. (Robert Edmonds) Closes: #432906 * lckdo: Don't clear other flags when setting close on exec. | 70564cb95575300bd77dd8035f2d010e9030de4c | joeyh | 2007-09-06 01:28:28 |
fix repo path | 2025c9c518e7165da3d08b28bb7d62682d2f3b1f | joeyh | 2007-08-13 04:30:10 |
* Add pointer to join from combine's man page. Closes: #435516 | 8773c86ce7fc4dd09a47dcae4edc2c95a3f90cef | joeyh | 2007-08-01 17:45:57 |
releasing version 0.22 | 20f02556ba24e70151d51cd82b68a74f876ddedf | joeyh | 2007-06-25 20:14:11 |
* vidir, zrun: Don't put temp files in the current directory. Closes: #429367 | 1d7165266b9f24feeabf1480dc68e7ea6114a718 | joeyh | 2007-06-25 20:10:35 |
releasing version 0.21 | 058c192993796e007353506873611d110bf613d0 | joeyh | 2007-06-25 17:08:46 |
* Patch from Sergej Pupykin fixing ifdata -pN. | 63b55e43fde7f4ee84a6432c98ef0fad932f468e | joeyh | 2007-06-25 17:06:51 |
sort | f9c026a0b72eb7161c612ee62fabea5edbaec419 | joeyh | 2006-12-24 04:55:17 |
reorder | 72ccd64efd4b63a28c7ee0f907a6565c302c08d3 | joeyh | 2006-12-24 02:55:50 |
releasing version 0.20 | b6547b684543ce4dca051366714065d6482e7bd5 | joeyh | 2006-12-23 20:58:47 |
* Typo fixes from Ralf Wildenhues. | 7b0da07eeeb8007494f92391b03f5128ed3e5cd7 | joeyh | 2006-11-26 19:49:18 |
releasing version 0.19 | 0a72631e595507348b6a5518eb7b586b3a5c2bf6 | joeyh | 2006-11-12 03:03:46 |
add XS-Vcs-Svn field | a7cc6680fb9f2ce1f4f785d09d23e1274c3972b9 | joeyh | 2006-10-04 17:26:48 |
releasing version 0.18 | 978f10e76bee0b53e4b6f578de0371a73e09cadc | joeyh | 2006-09-14 19:15:29 |
* spongs: Output to stdout if no file is specified, useful in a pipeline such as: cvs diff | sponge | patch -R -p0 Closes: #387501 | 08be7808b13547b5632f9a98470ca62b1f55aeee | joeyh | 2006-09-14 19:13:26 |
* mispipe.docbook: Typo. Closes: #386756 | 14f2f08540f4bb1490ef532619ccb3d948a0d5f9 | joeyh | 2006-09-09 22:47:07 |
releasing version 0.17 | 03924314a9abd0dd135f5fbc99197050b9abd15c | joeyh | 2006-09-08 00:49:51 |
File | Lines added | Lines deleted |
---|---|---|
debian/changelog | 8 | 0 |
vidir | 2 | 3 |
File debian/changelog changed (mode: 100644) (index 9e6e07c..eb0e554) | |||
1 | moreutils (0.24) unstable; urgency=low | ||
2 | |||
3 | * vidir: Force numbers to normalised integers. | ||
4 | * vidir: Abort on unknown item numbers rather than deleting them. | ||
5 | Closes: #442440 | ||
6 | |||
7 | -- Joey Hess <joeyh@debian.org> Sun, 16 Sep 2007 13:05:54 -0400 | ||
8 | |||
1 | 9 | moreutils (0.23) unstable; urgency=low | moreutils (0.23) unstable; urgency=low |
2 | 10 | ||
3 | 11 | * Add pointer to join from combine's man page. Closes: #435516 | * Add pointer to join from combine's man page. Closes: #435516 |
File vidir changed (mode: 100755) (index 6df58bd..ebc946d) | |||
... | ... | open (IN, $tmp->filename) || die "$0: cannot read ".$tmp->filename.": $!\n"; | |
123 | 123 | while (<IN>) { | while (<IN>) { |
124 | 124 | chomp; | chomp; |
125 | 125 | if (/^(\d+)\t{0,1}(.*)/) { | if (/^(\d+)\t{0,1}(.*)/) { |
126 | my $num=$1; | ||
126 | my $num=int($1); | ||
127 | 127 | my $name=$2; | my $name=$2; |
128 | 128 | if (! exists $item{$num}) { | if (! exists $item{$num}) { |
129 | print STDERR "$0: unknown item number $num\n"; | ||
130 | $error=1; | ||
129 | die "$0: unknown item number $num\n"; | ||
131 | 130 | } | } |
132 | 131 | elsif ($name ne $item{$num}) { | elsif ($name ne $item{$num}) { |
133 | 132 | next unless length $name; | next unless length $name; |