diff options
author | schmonz <schmonz@pkgsrc.org> | 2002-08-02 15:29:49 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2002-08-02 15:29:49 +0000 |
commit | b4ce2a42fe79068420d25e634b16284a38ba8998 (patch) | |
tree | a73ba51d57263ccbbdc1bfad93c4745db9a41547 /devel/cvsps | |
parent | 066bf70de3735e5821726490b005d341ae3c2f23 (diff) | |
download | pkgsrc-b4ce2a42fe79068420d25e634b16284a38ba8998.tar.gz |
Update to 1.3.2. Changes:
1.3.2 (small feature release)
- added the 'multi-patchset' feature to the -s option, provided in its
entirety by Daiki Ueno <ueno@unixuser.org>
1.3.1 (bugfix release mostly)
- fix bug with updating cache (-u) having to do with matching new and old
revisions
- fix timestamp_fuzz_factor bug where the fuzz was applied to loading
from cache by mistake.
- add a spec file (from Jan IVEN <Jan.Iven@cern.ch>)
- improve the parameterization of Makefile, and make things relocatable
(from many people, esp. Amitai Schlair <schmonz@schmonz.com>)
- fix strip_path_len calculation (again - I had munged the prior fix)
Jeffrey Ebert <ebert@sonicsinc.com>
Diffstat (limited to 'devel/cvsps')
-rw-r--r-- | devel/cvsps/Makefile | 6 | ||||
-rw-r--r-- | devel/cvsps/distinfo | 8 | ||||
-rw-r--r-- | devel/cvsps/patches/patch-aa | 35 |
3 files changed, 15 insertions, 34 deletions
diff --git a/devel/cvsps/Makefile b/devel/cvsps/Makefile index c7e6d2838eb..189c3b189d5 100644 --- a/devel/cvsps/Makefile +++ b/devel/cvsps/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.2 2002/07/22 00:13:14 schmonz Exp $ +# $NetBSD: Makefile,v 1.3 2002/08/02 15:29:49 schmonz Exp $ # -DISTNAME= cvsps-1.3 +DISTNAME= cvsps-1.3.2 CATEGORIES= devel -MASTER_SITES= http://www.cobite.com/cvsps/ +MASTER_SITES= ${HOMEPAGE} MAINTAINER= schmonz@netbsd.org HOMEPAGE= http://www.cobite.com/cvsps/ diff --git a/devel/cvsps/distinfo b/devel/cvsps/distinfo index 2e7934508fc..4486d954fc6 100644 --- a/devel/cvsps/distinfo +++ b/devel/cvsps/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.1.1.1 2001/12/10 18:24:10 martti Exp $ +$NetBSD: distinfo,v 1.2 2002/08/02 15:29:49 schmonz Exp $ -SHA1 (cvsps-1.3.tar.gz) = 065edfc3d4a4c3f1a877a30889f498baa1a8f9fe -Size (cvsps-1.3.tar.gz) = 25082 bytes -SHA1 (patch-aa) = 4b712246eaab4fa13b7e6fa1419dfe35486a3598 +SHA1 (cvsps-1.3.2.tar.gz) = ddc7e28855026b903e10a0d0836921e4bd186e7a +Size (cvsps-1.3.2.tar.gz) = 26551 bytes +SHA1 (patch-aa) = 0bd050fb7052a48292bf535b246d0c48ca8d701c diff --git a/devel/cvsps/patches/patch-aa b/devel/cvsps/patches/patch-aa index 1002494ca35..d0b3907b38b 100644 --- a/devel/cvsps/patches/patch-aa +++ b/devel/cvsps/patches/patch-aa @@ -1,32 +1,13 @@ -$NetBSD: patch-aa,v 1.1.1.1 2001/12/10 18:24:10 martti Exp $ +$NetBSD: patch-aa,v 1.2 2002/08/02 15:29:51 schmonz Exp $ ---- Makefile.orig Wed Dec 5 17:07:47 2001 +--- Makefile.orig Tue Jul 2 10:20:03 2002 +++ Makefile -@@ -1,7 +1,6 @@ - MAJOR=1 - MINOR=3 --CC=gcc --CFLAGS=-g -O2 -Wall -I. -DVERSION=\"$(MAJOR).$(MINOR)\" -+CFLAGS+=-I. -DVERSION=\"$(MAJOR).$(MINOR)\" +@@ -3,7 +3,7 @@ MINOR=3.2 + CC?=gcc + CFLAGS?=-g -O2 -Wall + CFLAGS+=-I. -DVERSION=\"$(MAJOR).$(MINOR)\" +-prefix?=/usr/local ++prefix?=${PREFIX} OBJS=\ cbtcommon/debug.o\ cbtcommon/hash.o\ -@@ -9,13 +8,13 @@ - cvsps.o - - cvsps: $(OBJS) -- gcc -o cvsps $(OBJS) -+ ${CC} -o cvsps $(OBJS) - - install: -- [ -d /usr/local/bin ] || mkdir -p /usr/local/bin -- [ -d /usr/local/man/man1 ] || mkdir -p /usr/local/man/man1 -- install cvsps /usr/local/bin -- install -m 644 cvsps.1 /usr/local/man/man1 -+ [ -d ${PREFIX}/bin ] || mkdir -p ${PREFIX}/bin -+ [ -d ${PREFIX}/man/man1 ] || mkdir -p ${PREFIX}/man/man1 -+ install cvsps ${PREFIX}/bin -+ install -m 644 cvsps.1 ${PREFIX}/man/man1 - - clean: - rm -f cvsps *.o cbtcommon/*.o core |