<feed xmlns='http://www.w3.org/2005/Atom'>
<title>coreutils, branch v9.0</title>
<subtitle>Mirror of https://https.git.savannah.gnu.org/git/coreutils.git/
</subtitle>
<id>https://git.shady.money/coreutils/atom?h=v9.0</id>
<link rel='self' href='https://git.shady.money/coreutils/atom?h=v9.0'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/'/>
<updated>2021-09-24T12:35:26Z</updated>
<entry>
<title>version 9.0</title>
<updated>2021-09-24T12:35:26Z</updated>
<author>
<name>Pádraig Brady</name>
<email>P@draigBrady.com</email>
</author>
<published>2021-09-24T12:35:26Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=725bb111bda62d8446a0beed366bd9d2c06c8eff'/>
<id>urn:sha1:725bb111bda62d8446a0beed366bd9d2c06c8eff</id>
<content type='text'>
* NEWS: Record release date.
</content>
</entry>
<entry>
<title>tests: sparse-perf: avoid false failure</title>
<updated>2021-09-24T11:17:58Z</updated>
<author>
<name>Pádraig Brady</name>
<email>P@draigBrady.com</email>
</author>
<published>2021-09-23T15:19:35Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=bfedefd872e6d2b0ce5c451e9d40048f09c3f692'/>
<id>urn:sha1:bfedefd872e6d2b0ce5c451e9d40048f09c3f692</id>
<content type='text'>
* tests/cp/sparse-perf.sh: Avoid the case where
we saw SEEK_DATA take 35s to return a result
against a 1TB sparse file.  This happened on
a FreeBSD 9.1 VM at least.
Reported by Nelson H. F. Beebe.
</content>
</entry>
<entry>
<title>cksum: fix -a crc on 64 bit big endian systems</title>
<updated>2021-09-23T23:39:05Z</updated>
<author>
<name>Pádraig Brady</name>
<email>P@draigBrady.com</email>
</author>
<published>2021-09-23T21:45:53Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=56bff500c5e48ab9c6fc62b9d457b1f283288417'/>
<id>urn:sha1:56bff500c5e48ab9c6fc62b9d457b1f283288417</id>
<content type='text'>
* src/cksum.c (crc_sum_stream): On sparc64 for example,
a crc of 0 was printed due to mismatch in size of
variable copied between generator and output functions.
uint_fast32_t is generally 64 bits on 64 bit systems,
so we copy through an int to ensure we don't use the wrong
end of a 64 bit variable.
Reported by Nelson H. F. Beebe
</content>
</entry>
<entry>
<title>tail: fix detection of closed stdout on macOS</title>
<updated>2021-09-21T16:50:54Z</updated>
<author>
<name>Pádraig Brady</name>
<email>P@draigBrady.com</email>
</author>
<published>2021-09-21T13:01:34Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=a656db664daca129dba9c481e73eb4e76b9d0009'/>
<id>urn:sha1:a656db664daca129dba9c481e73eb4e76b9d0009</id>
<content type='text'>
* bootstrap.conf: We only need poll on Linux and AIX
where poll is not replaced.  Also resinstate dependence
on select so we can use it unconditionally.
* src/tail.c (check_output_alive): Reinstate use of select()
by default as poll was seen to be ineffective for this
application on macOS.
Fixes https://bugs.gnu.org/50714
</content>
</entry>
<entry>
<title>maint: clean up c++ style comments</title>
<updated>2021-09-21T15:22:18Z</updated>
<author>
<name>Pádraig Brady</name>
<email>P@draigBrady.com</email>
</author>
<published>2021-09-21T15:18:05Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=f8819b657f6a15249b5758c7b1160be97f8805cd'/>
<id>urn:sha1:f8819b657f6a15249b5758c7b1160be97f8805cd</id>
<content type='text'>
* src/expand-common.h: Remove commented variables.
* src/remove.h: Change to C style comment.
* src/tail.c: Likewise.
</content>
</entry>
<entry>
<title>tests: date-debug: avoid a false failure on solaris</title>
<updated>2021-09-20T22:42:03Z</updated>
<author>
<name>Pádraig Brady</name>
<email>P@draigBrady.com</email>
</author>
<published>2021-09-20T22:35:23Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=23953cecf9c1fce96c9b94bce74aa5f8e3494424'/>
<id>urn:sha1:23953cecf9c1fce96c9b94bce74aa5f8e3494424</id>
<content type='text'>
* tests/misc/date-debug.sh: Use a dynamic time format,
as the C locale on solaris uses %T rather than %H:%M:%S
for the time component.
</content>
</entry>
<entry>
<title>doc: drop extraneous single quotes in help</title>
<updated>2021-09-20T20:42:28Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@fb.com</email>
</author>
<published>2021-09-18T16:27:27Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=f6fc52a828c0778ff5d7c5ad794c2b2216229e88'/>
<id>urn:sha1:f6fc52a828c0778ff5d7c5ad794c2b2216229e88</id>
<content type='text'>
* src/digest.c (usage) [cksum --help]: Drop single quotes
around each checksum name.
* src/tee.c (usage) [tee --help]: Likewise.
</content>
</entry>
<entry>
<title>cksum: list Pádraig as coauthor</title>
<updated>2021-09-20T20:42:26Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@fb.com</email>
</author>
<published>2021-09-18T16:30:53Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=971aebfacc6d8f95207ce359235df63c0720537d'/>
<id>urn:sha1:971aebfacc6d8f95207ce359235df63c0720537d</id>
<content type='text'>
* src/digest.c (AUTHORS) [HASH_ALGO_CKSUM]: Add Pádraig as
cksum coauthor.
* AUTHORS: Likewise.
</content>
</entry>
<entry>
<title>tests: env-s.pl: avoid spurious failure on OS X</title>
<updated>2021-09-20T17:01:53Z</updated>
<author>
<name>Jim Meyering</name>
<email>meyering@fb.com</email>
</author>
<published>2021-09-20T05:44:25Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=7b0db3c69c2171e352b219d473cb5469ba635d8d'/>
<id>urn:sha1:7b0db3c69c2171e352b219d473cb5469ba635d8d</id>
<content type='text'>
* tests/misc/env-S.pl: The __CF_USER_TEXT_ENCODING envvar
would cause many of these sub-tests to fail. Ignore it.
</content>
</entry>
<entry>
<title>build: update gnulib submodule to latest</title>
<updated>2021-09-20T15:31:48Z</updated>
<author>
<name>Pádraig Brady</name>
<email>P@draigBrady.com</email>
</author>
<published>2021-09-20T15:31:48Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/coreutils/commit/?id=4382207c1d7b95e21f12d5cdce678e52560b5466'/>
<id>urn:sha1:4382207c1d7b95e21f12d5cdce678e52560b5466</id>
<content type='text'>
* gnulib: Update to latest.
Fixes "extern inline" and "rpl_free" issues.
</content>
</entry>
</feed>
