diff options
author | christos <christos> | 2006-01-05 19:38:40 +0000 |
---|---|---|
committer | christos <christos> | 2006-01-05 19:38:40 +0000 |
commit | 984343a00c168272cbbf1108fa9662c560e28e23 (patch) | |
tree | 7b1241da19ec3e1d498dffea4b99d4e636dffb46 /net | |
parent | d45bd6d7fc4be6806ccaeecbf5c2d6cd8b7b362c (diff) | |
download | pkgsrc-984343a00c168272cbbf1108fa9662c560e28e23.tar.gz |
Apply my logging patch until kim updates his package.
Diffstat (limited to 'net')
-rw-r--r-- | net/sdist/Makefile | 3 | ||||
-rw-r--r-- | net/sdist/distinfo | 3 | ||||
-rw-r--r-- | net/sdist/patches/patch-aa | 33 |
3 files changed, 37 insertions, 2 deletions
diff --git a/net/sdist/Makefile b/net/sdist/Makefile index c9facae395c..c5f3f7e125e 100644 --- a/net/sdist/Makefile +++ b/net/sdist/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.10 2004/12/03 15:15:06 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2006/01/05 19:38:40 christos Exp $ # DISTNAME= sdist-1.6 +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= ftp://ftp.gw.com/pub/people/kim/ diff --git a/net/sdist/distinfo b/net/sdist/distinfo index 1c319fdb156..598bb131f4a 100644 --- a/net/sdist/distinfo +++ b/net/sdist/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2005/02/24 12:14:03 agc Exp $ +$NetBSD: distinfo,v 1.4 2006/01/05 19:38:40 christos Exp $ SHA1 (sdist-1.6.tar.gz) = 5de04da4a637f10328ca1772bc01211173710c2a RMD160 (sdist-1.6.tar.gz) = 4ab4fd11a6af2835fc0df8c8c83014ff8783966d Size (sdist-1.6.tar.gz) = 2848 bytes +SHA1 (patch-aa) = 30e790d7a955ef77a5476015f9c4ea0e26ee27b0 diff --git a/net/sdist/patches/patch-aa b/net/sdist/patches/patch-aa new file mode 100644 index 00000000000..94647cd8ca3 --- /dev/null +++ b/net/sdist/patches/patch-aa @@ -0,0 +1,33 @@ +$NetBSD: patch-aa,v 1.1 2006/01/05 19:38:40 christos Exp $ + +--- sdist.sh.orig 2001-03-29 17:00:37.000000000 -0500 ++++ sdist.sh 2006-01-05 14:37:14.000000000 -0500 +@@ -26,6 +26,7 @@ + OPTS= + # default timeout for rdist -- 2 minutes instead of 15 + timeout=120 ++logopts="stdout=nerror,ferror,warning" + + + while [ "$1" != "" ]; do +@@ -48,6 +49,11 @@ + maxkids="$2" + shift + ;; ++ -l) ++ OPTS="$OPTS $1 $2" ++ logopts="$2" ++ shift ++ ;; + -f) OPTS="$OPTS $1 $2" + if [ "$any_servers" = "false" ]; then + any_servers="true" +@@ -152,7 +158,7 @@ + done + + # Use an rdist file for multiple directories and parallel updates. +-@RDIST@ -t $timeout -M $maxkids $rdistopts -f - << __EOF || exit $? ++@RDIST@ -t $timeout -M $maxkids -l $logopts $rdistopts -f - << __EOF || exit $? + ($dirs) -> ($servers $allmasters) + $extras + install $destdir ; |