diff options
author | wiz <wiz@pkgsrc.org> | 2013-11-29 18:23:45 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2013-11-29 18:23:45 +0000 |
commit | 48b8fc14419fe28fb1995125cd38f549f2feee2f (patch) | |
tree | b5a2037295402d5212efd85f68ea40acdc25d00c /devel | |
parent | 320654f4b52a1a4a205df5cdad0e72ebf8229d7f (diff) | |
download | pkgsrc-48b8fc14419fe28fb1995125cd38f549f2feee2f.tar.gz |
Update to 5.9.2:
- 5.9.2 | 2013-11-28
- bugfixes
- avoid possibly failing command in backticks
Some versions of Solaris /bin/sh would cause the extract-help
build script to exit failurefully when the grep command in the
backticks failed (in the presence of "set -e"). Sigh.
- handle low-memory situations like RCS 5.7 (mostly)
For reading comma-v files, RCS 5.7 tries mmap(2), in-core
snarfing, and stdio access, falling back to slower methods
on failure of the faster method. RCS 5.8 maintained the order,
but did not fall back; on failure, it gave up immediately.
This change was originally viewed as a feature, but lately it
seemed more like a bug.
Now, RCS 5.7 behavior is for the most part restored. The
exception is when env var ‘RCS_MEM_LIMIT’ is set; in that case,
failure of a fast method does not fall back to the slower one.
- default for env var ‘RCS_MEM_LIMIT’ relaxed
This used to be 256 kilobytes, a reasonable value a long time
ago, but ridiculously low nowadays. Now, it is "unlimited",
which is more in line w/ the GNU philosophy, anyway:
(info "(standards) Semantics")
Since the env var is mostly intended for testing RCS, you can
normally leave it unset. (Probably it will be removed in a
future release.)
- maintenance tools updated
- automake (GNU automake) 1.14
- gnulib-tool (GNU gnulib 2013-11-28 08:46:06) 0.1.21-37f8a
Diffstat (limited to 'devel')
-rw-r--r-- | devel/rcs/Makefile | 4 | ||||
-rw-r--r-- | devel/rcs/distinfo | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/devel/rcs/Makefile b/devel/rcs/Makefile index ad3af6e1c34..950cc06e9b3 100644 --- a/devel/rcs/Makefile +++ b/devel/rcs/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.36 2013/10/22 12:21:03 obache Exp $ +# $NetBSD: Makefile,v 1.37 2013/11/29 18:23:45 wiz Exp $ -DISTNAME= rcs-5.9.1 +DISTNAME= rcs-5.9.2 CATEGORIES= devel scm MASTER_SITES= ${MASTER_SITE_GNU:=rcs/} EXTRACT_SUFX= .tar.xz diff --git a/devel/rcs/distinfo b/devel/rcs/distinfo index 3c13954f3c8..a1db0651267 100644 --- a/devel/rcs/distinfo +++ b/devel/rcs/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.13 2013/10/04 21:26:31 wiz Exp $ +$NetBSD: distinfo,v 1.14 2013/11/29 18:23:45 wiz Exp $ -SHA1 (rcs-5.9.1.tar.xz) = 2e1017c24cd79ed434fa80e384ba844738c2cbfe -RMD160 (rcs-5.9.1.tar.xz) = 94c226b96d6a4e686590b088d6c51750c260b062 -Size (rcs-5.9.1.tar.xz) = 793340 bytes +SHA1 (rcs-5.9.2.tar.xz) = cb053f6ba87ab6ea03306d6241e1cde67182100b +RMD160 (rcs-5.9.2.tar.xz) = 7f78faebd941581a8b5f2d8daef1cb3d6b20d999 +Size (rcs-5.9.2.tar.xz) = 795096 bytes |