<feed xmlns='http://www.w3.org/2005/Atom'>
<title>coreutils/THANKS, branch v8.7</title>
<subtitle>Mirror of https://https.git.savannah.gnu.org/git/coreutils.git/
</subtitle>
<id>https://git.shady.money/coreutils/atom?h=v8.7</id>
<link rel='self' href='https://git.shady.money/coreutils/atom?h=v8.7'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/'/>
<updated>2010-10-25T17:51:45Z</updated>
<entry>
<title>maint: update THANKS</title>
<updated>2010-10-25T17:51:45Z</updated>
<author>
<name>Eric Blake</name>
<email>eblake@redhat.com</email>
</author>
<published>2010-10-25T17:51:45Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=3e1905baf409e6ec56f065fed23819201ba82a66'/>
<id>urn:sha1:3e1905baf409e6ec56f065fed23819201ba82a66</id>
<content type='text'>
* THANKS: Update.
</content>
</entry>
<entry>
<title>stat: add %m to output the mount point for a file</title>
<updated>2010-08-27T21:16:10Z</updated>
<author>
<name>Aaron Burgemeister</name>
<email>dajoker@gmail.com</email>
</author>
<published>2010-07-16T01:54:49Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=ddf6fb8686b1ed6a26d5f1c76a642d0fb5fe7ba7'/>
<id>urn:sha1:ddf6fb8686b1ed6a26d5f1c76a642d0fb5fe7ba7</id>
<content type='text'>
* src/find-mount-point.c: A new file refactoring
find_mount_point() out from df.c
* src/find-mount-point.h: Likewise.
* src/df.c: Use the new find-mount-point module.
* src/stat.c (print_stat): Handle the new %m format.
(find_bind_mount): A new function to
return the bind mount for a file if any.
(out_mount_mount): Print the bind mount for a file, or else
the standard mount point given by the find-mount-point module.
(usage): Document the %m format directive.
* src/Makefile.am: Reference the refactored find-mount-point.c
* po/POTFILES.in: Add find_mount_point.c to the translation list
* doc/coreutils.texi (stat invocation): Document %m,
and how it may differ from the mount point that df outputs.
* test/misc/stat-mount: A new test to correlate mount points
output from df and stat.
* tests/Makefile.am: Reference the new test.
* NEWS: Mention the new feature
* THANKS: Add the author

Signed-off-by: Pádraig Brady &lt;P@draigBrady.com&gt;
</content>
</entry>
<entry>
<title>ls: fix a test failure that should have been skipped</title>
<updated>2010-08-09T14:52:12Z</updated>
<author>
<name>Dan Hipschman</name>
<email>dsh@linux.ucla.edu</email>
</author>
<published>2010-07-31T01:49:02Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=24f1af88c79de353fb51ab4eecad99143c4e16fd'/>
<id>urn:sha1:24f1af88c79de353fb51ab4eecad99143c4e16fd</id>
<content type='text'>
* tests/ls/readdir-mountpoint-inode: Check to see if skip_test_ is
called in a helper function via $() instead of mistakenly failing.
* THANKS: Update.
</content>
</entry>
<entry>
<title>cat: improve documentation</title>
<updated>2010-06-14T21:42:24Z</updated>
<author>
<name>Eric Blake</name>
<email>eblake@redhat.com</email>
</author>
<published>2010-06-09T17:13:13Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=879e8261bbc7cc42f620778155b1e1c9e5ae3ef2'/>
<id>urn:sha1:879e8261bbc7cc42f620778155b1e1c9e5ae3ef2</id>
<content type='text'>
* src/cat.c (usage): Clarify that -b overrides -n.
* doc/coreutils.texi (cat invocation): Likewise.
* THANKS: Update.
Suggested by Chas. Owens, in bug 6383.
</content>
</entry>
<entry>
<title>dirname: tweak summary wording</title>
<updated>2010-06-08T10:28:19Z</updated>
<author>
<name>Eric Blake</name>
<email>eblake@redhat.com</email>
</author>
<published>2010-06-07T15:42:09Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=04bed02096fc574476886d6494a6a147b5208f6b'/>
<id>urn:sha1:04bed02096fc574476886d6494a6a147b5208f6b</id>
<content type='text'>
* doc/coreutils.texi (dirname invocation): Reword to be more
precise.
* src/dirname.c (usage): Likewise.
* THANKS: Update.
Reported by Filipus Klutiero, bug 6175.
</content>
</entry>
<entry>
<title>touch: remove support for --file=REF_FILE option</title>
<updated>2010-06-02T15:14:10Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@redhat.com</email>
</author>
<published>2010-06-02T14:23:41Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=d5a5d8309433e8393bce62c3c5e100919cb505eb'/>
<id>urn:sha1:d5a5d8309433e8393bce62c3c5e100919cb505eb</id>
<content type='text'>
* src/touch.c (main): Remove support for the deprecated, long-named
--file option, which is an alternate name for --reference (-r).
That option was undocumented with the arrival of --reference, in
the 1995-10-29 commit, 8b92864e1d.  Since the 2009-02-09 commit,
ed85df444a, use of --file has elicited a warning.  Not only was
this code due for removal, but the long-name-use-detecting code
was buggy in that it would use a stale or uninitialized "long_idx",
as reported by Robin H. Johnson in http://bugs.gentoo.org/322421.
* NEWS (Changes in behavior): Mention it.
</content>
</entry>
<entry>
<title>base64: always treat input in binary mode</title>
<updated>2010-04-22T14:42:54Z</updated>
<author>
<name>Eric Blake</name>
<email>eblake@redhat.com</email>
</author>
<published>2010-04-21T14:17:59Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=c9e4ea6ee2007462554568f156838b0fb6d55c9a'/>
<id>urn:sha1:c9e4ea6ee2007462554568f156838b0fb6d55c9a</id>
<content type='text'>
Necessary for cygwin.  Technically, this patch is not correct,
in that it clobbers O_APPEND, but it is no different than any
other use of xfreopen to force binary mode, so all such uses
should be fixed at once in a later patch.

* src/base64.c (main): Open input in binary mode.
* THANKS: Update.
Reported by Yutaka Amanai.
</content>
</entry>
<entry>
<title>sort: fix parsing of end field in obsolescent key formats</title>
<updated>2010-04-20T21:37:18Z</updated>
<author>
<name>Pádraig Brady</name>
<email>P@draigBrady.com</email>
</author>
<published>2010-04-20T15:25:55Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=8fc12909f649fbe75eb84c48ace554ae3e4e6c06'/>
<id>urn:sha1:8fc12909f649fbe75eb84c48ace554ae3e4e6c06</id>
<content type='text'>
This regression was introduced in commit 224a69b5, 2009-02-24,
"sort: Fix two bugs with determining the end of field".
The specific regression being that we include 1 field too many when
an end field is specified using obsolescent key syntax (+POS -POS).

* src/sort.c (struct keyfield): Clarify the description of the eword
member, as suggested by Alan Curry.
(main): When processing obsolescent format key specifications,
normalize eword to a zero based count when no specific end char is given
for an end field. This matches what's done when keys are specified with -k.
* tests/misc/sort: Add a few more tests for the obsolescent key formats,
with test 07i being the particular failure addressed by this change.
* THANKS: Add Alan Curry who precisely identified the issue.
* NEWS: Mention the fix.
Reported by Santiago Rodríguez
</content>
</entry>
<entry>
<title>timeout: use more standard option parsing</title>
<updated>2010-03-26T14:27:54Z</updated>
<author>
<name>Kim Hansen</name>
<email>kim@i9.dk</email>
</author>
<published>2010-03-25T17:43:10Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=88d4b3461e3eeb69e1d09e89f38050abd6b81402'/>
<id>urn:sha1:88d4b3461e3eeb69e1d09e89f38050abd6b81402</id>
<content type='text'>
* src/timeout.c (main): Don't use parse_long_options()
which is a helper for commands that don't have any
long options specific to them.
* tests/misc/timeout-parameters: Remove a case that now
passes due to us accepting multiple instances of the
--help and --version options.
* THANKS: Add the author.

Signed-off-by: Pádraig Brady &lt;P@draigBrady.com&gt;
</content>
</entry>
<entry>
<title>doc: improve ls --help's description of --escape (-b)</title>
<updated>2010-03-18T16:41:12Z</updated>
<author>
<name>Eric Blake</name>
<email>eblake@redhat.com</email>
</author>
<published>2010-03-18T15:19:08Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=b44d4b6b0e2e5a422bd39be19f397142c3632b5a'/>
<id>urn:sha1:b44d4b6b0e2e5a422bd39be19f397142c3632b5a</id>
<content type='text'>
* src/ls.c (usage): Be more precise about how --escape (-b) works:
say "C-style escapes", not "octal escapes".  Reported by Jacky Fong.
</content>
</entry>
</feed>
