pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/shells/rc upgrade to rc-1.7; rc-1.6 is gone from the o...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7bfddbd9a55e
branches:  trunk
changeset: 540665:7bfddbd9a55e
user:      christos <christos%pkgsrc.org@localhost>
date:      Sun Apr 06 00:14:28 2008 +0000

description:
upgrade to rc-1.7; rc-1.6 is gone from the original ftp site.

diffstat:

 shells/rc/Makefile         |   9 ++++-----
 shells/rc/distinfo         |  10 ++++------
 shells/rc/patches/patch-aa |  36 ------------------------------------
 shells/rc/patches/patch-ab |  13 -------------
 4 files changed, 8 insertions(+), 60 deletions(-)

diffs (92 lines):

diff -r 5fae986ec06b -r 7bfddbd9a55e shells/rc/Makefile
--- a/shells/rc/Makefile        Sat Apr 05 21:44:36 2008 +0000
+++ b/shells/rc/Makefile        Sun Apr 06 00:14:28 2008 +0000
@@ -1,12 +1,11 @@
-# $NetBSD: Makefile,v 1.22 2006/03/04 21:30:39 jlam Exp $
+# $NetBSD: Makefile,v 1.23 2008/04/06 00:14:28 christos Exp $
 
-DISTNAME=       rc-1.6
-PKGREVISION=   1
+DISTNAME=       rc-1.7
 CATEGORIES=    shells plan9
-MASTER_SITES=   http://www.star.le.ac.uk/%7Etjg/rc/release/
+MASTER_SITES=   http://www-ftp.lip6.fr/pub/unix/shells/rc/
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=      http://www.star.le.ac.uk/%7Etjg/rc/
+HOMEPAGE=      http://plan9.bell-labs.com/sys/doc/rc.html
 COMMENT=       Unix incarnation of the plan9 shell
 
 GNU_CONFIGURE=         yes
diff -r 5fae986ec06b -r 7bfddbd9a55e shells/rc/distinfo
--- a/shells/rc/distinfo        Sat Apr 05 21:44:36 2008 +0000
+++ b/shells/rc/distinfo        Sun Apr 06 00:14:28 2008 +0000
@@ -1,7 +1,5 @@
-$NetBSD: distinfo,v 1.4 2006/01/08 20:55:46 joerg Exp $
+$NetBSD: distinfo,v 1.5 2008/04/06 00:14:28 christos Exp $
 
-SHA1 (rc-1.6.tar.gz) = e223c5f3a34aa836034cc033751c276ff05fcc8e
-RMD160 (rc-1.6.tar.gz) = 766453e1d55f44de94c690959aee1dc8d8a77365
-Size (rc-1.6.tar.gz) = 139914 bytes
-SHA1 (patch-aa) = ec47fa81ba6061318ddb1c2f59ba9495b7f906ae
-SHA1 (patch-ab) = 44d1f2e7addf8047ee37d1ac0c045e087c93e7c2
+SHA1 (rc-1.7.tar.gz) = 7a7511f7ef54f1883aa73e572b0a66e476421829
+RMD160 (rc-1.7.tar.gz) = e8a657db93136dfd40062b45b4e4ea73cbfe8fc3
+Size (rc-1.7.tar.gz) = 158449 bytes
diff -r 5fae986ec06b -r 7bfddbd9a55e shells/rc/patches/patch-aa
--- a/shells/rc/patches/patch-aa        Sat Apr 05 21:44:36 2008 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,36 +0,0 @@
-$NetBSD: patch-aa,v 1.9 1999/08/03 15:00:58 agc Exp $
-
-Use the strerror(3) function - it's much better at this than we are,
-and hides the internals of the error list.
-
---- utils.c.orig       Thu Oct 29 08:26:08 1998
-+++ utils.c    Sun Jun 20 16:35:35 1999
-@@ -2,6 +2,7 @@
- 
- #include <errno.h>
- #include <setjmp.h>
-+#include <string.h>
- #include "rc.h"
- #include "jbwrap.h"
- 
-@@ -19,6 +20,7 @@
- /* our perror */
- 
- extern void uerror(char *s) {
-+#if 0
-       extern int sys_nerr;
-       extern char *sys_errlist[];
-       if (errno > sys_nerr)
-@@ -27,6 +29,12 @@
-               fprint(2, "%s: %s\n", s, sys_errlist[errno]);
-       else
-               fprint(2, "%s\n", sys_errlist[errno]);
-+#else
-+      if (s != (char *) NULL) {
-+              fprint(2, "%s: ", s);
-+      }
-+      fprint(2, "%s\n", strerror(errno));
-+#endif
- }
- 
- /* Die horribly. This should never get called. Please let me know if it does. */
diff -r 5fae986ec06b -r 7bfddbd9a55e shells/rc/patches/patch-ab
--- a/shells/rc/patches/patch-ab        Sat Apr 05 21:44:36 2008 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.3 2006/01/08 20:56:07 joerg Exp $
-
---- print.c.orig       2006-01-08 20:54:47.000000000 +0000
-+++ print.c
-@@ -104,7 +104,7 @@ static void intconv(Format *format, unsi
-       if (flags & FMT_long)
-               n = va_arg(format->args, long);
-       else if (flags & FMT_short)
--              n = va_arg(format->args, short);
-+              n = va_arg(format->args, int);
-       else
-               n = va_arg(format->args, int);
- 



Home | Main Index | Thread Index | Old Index