Fri Apr 4 20:20:42 2014 UTC ()
Update to 1.10

Changelog:
1.10 @ 2014-03-28
    Prepends CVS default ignores to converted .cvsignores.
    Generates a .gitignore containing default CVS ignores when necessary.


(ryoon)
diff -r1.5 -r1.6 pkgsrc/devel/cvs-fast-export/Makefile
diff -r1.5 -r1.6 pkgsrc/devel/cvs-fast-export/distinfo
diff -r1.5 -r1.6 pkgsrc/devel/cvs-fast-export/patches/patch-Makefile

cvs diff -r1.5 -r1.6 pkgsrc/devel/cvs-fast-export/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/cvs-fast-export/Makefile 2014/03/10 19:47:34 1.5
+++ pkgsrc/devel/cvs-fast-export/Makefile 2014/04/04 20:20:42 1.6
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1# $NetBSD: Makefile,v 1.5 2014/03/10 19:47:34 ryoon Exp $ 1# $NetBSD: Makefile,v 1.6 2014/04/04 20:20:42 ryoon Exp $
2# 2#
3 3
4DISTNAME= cvs-fast-export-1.9 4DISTNAME= cvs-fast-export-1.10
5CATEGORIES= devel 5CATEGORIES= devel
6MASTER_SITES= http://www.catb.org/~esr/cvs-fast-export/ 6MASTER_SITES= http://www.catb.org/~esr/cvs-fast-export/
7 7
8MAINTAINER= apb@NetBSD.org 8MAINTAINER= apb@NetBSD.org
9HOMEPAGE= http://www.catb.org/~esr/cvs-fast-export/ 9HOMEPAGE= http://www.catb.org/~esr/cvs-fast-export/
10COMMENT= Export an RCS or CVS history as a fast-import stream 10COMMENT= Export an RCS or CVS history as a fast-import stream
11LICENSE= gnu-gpl-v2 11LICENSE= gnu-gpl-v2
12 12
13USE_TOOLS+= flex yacc 13USE_TOOLS+= flex yacc
14BUILD_DEPENDS+= asciidoc-[0-9]*:../../textproc/asciidoc 14BUILD_DEPENDS+= asciidoc-[0-9]*:../../textproc/asciidoc
15 15
16REPLACE_PYTHON+= cvssync 16REPLACE_PYTHON+= cvssync
17 17

cvs diff -r1.5 -r1.6 pkgsrc/devel/cvs-fast-export/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/cvs-fast-export/distinfo 2014/03/10 19:47:34 1.5
+++ pkgsrc/devel/cvs-fast-export/distinfo 2014/04/04 20:20:42 1.6
@@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
1$NetBSD: distinfo,v 1.5 2014/03/10 19:47:34 ryoon Exp $ 1$NetBSD: distinfo,v 1.6 2014/04/04 20:20:42 ryoon Exp $
2 2
3SHA1 (cvs-fast-export-1.9.tar.gz) = 2ba9556748cc2fb926653848112b59c7703f2a8f 3SHA1 (cvs-fast-export-1.10.tar.gz) = 6346acb029ec371ef59cf49712a8e888e55fc363
4RMD160 (cvs-fast-export-1.9.tar.gz) = 51973239a26a5c6a60294d0bb1df0fbdca08ad18 4RMD160 (cvs-fast-export-1.10.tar.gz) = 2e68c64ce89bd745a6496e8f81607c9f08fe5eff
5Size (cvs-fast-export-1.9.tar.gz) = 102109 bytes 5Size (cvs-fast-export-1.10.tar.gz) = 102589 bytes
6SHA1 (patch-Makefile) = ec882a931805d0d84716ed613425f8ef8438259d 6SHA1 (patch-Makefile) = efc14b3e194f8e0749b41bf888913d2781b546c0
7SHA1 (patch-lex.l) = f28661386041b3ef8308bf3da4323f61a73ff515 7SHA1 (patch-lex.l) = f28661386041b3ef8308bf3da4323f61a73ff515

cvs diff -r1.5 -r1.6 pkgsrc/devel/cvs-fast-export/patches/patch-Makefile (expand / switch to unified diff)

--- pkgsrc/devel/cvs-fast-export/patches/patch-Makefile 2014/03/10 19:47:34 1.5
+++ pkgsrc/devel/cvs-fast-export/patches/patch-Makefile 2014/04/04 20:20:42 1.6
@@ -1,24 +1,24 @@ @@ -1,24 +1,24 @@
1$NetBSD: patch-Makefile,v 1.5 2014/03/10 19:47:34 ryoon Exp $ 1$NetBSD: patch-Makefile,v 1.6 2014/04/04 20:20:42 ryoon Exp $
2 2
3* Add "all" target. 3* Add "all" target.
4* Use ${PREFIX} variable. 4* Use ${PREFIX} variable.
5* Install man pages in ${PREFIX}/${PKGMANDIR}, not ${PREFIX}/share/man. 5* Install man pages in ${PREFIX}/${PKGMANDIR}, not ${PREFIX}/share/man.
6 6
7--- Makefile.orig 2014-03-08 06:09:53.000000000 +0000 7--- Makefile.orig 2014-03-28 09:49:47.000000000 +0000
8+++ Makefile 8+++ Makefile
9@@ -6,12 +6,12 @@ 9@@ -6,12 +6,12 @@
10  10
11 VERSION=1.9 11 VERSION=1.10
12  12
13-prefix?=/usr/local 13-prefix?=/usr/local
14+prefix?=$(PREFIX) 14+prefix?=$(PREFIX)
15 target=$(DESTDIR)$(prefix) 15 target=$(DESTDIR)$(prefix)
16  16
17 INSTALL = install 17 INSTALL = install
18 YACC = bison -y 18 YACC = bison -y
19-LEX = flex 19-LEX = flex
20+mandir=$(PKGMANDIR) 20+mandir=$(PKGMANDIR)
21  21
22 GCC_WARNINGS1=-Wall -Wpointer-arith -Wstrict-prototypes 22 GCC_WARNINGS1=-Wall -Wpointer-arith -Wstrict-prototypes
23 GCC_WARNINGS2=-Wmissing-prototypes -Wmissing-declarations 23 GCC_WARNINGS2=-Wmissing-prototypes -Wmissing-declarations
24@@ -38,6 +38,8 @@ OBJS=gram.o lex.o rbtree.o main.o cvsuti 24@@ -38,6 +38,8 @@ OBJS=gram.o lex.o rbtree.o main.o cvsuti