Sun Aug 9 17:43:41 2015 UTC ()
Update to 1.32

Changelog:
1.32: 2015-06-10
    Emit a source type declaration reposurgeon can use.
    Project now has a logo.

1.31: 2015-04-28
    Improve OSX portability.


(ryoon)
diff -r1.8 -r1.9 pkgsrc/devel/cvs-fast-export/Makefile
diff -r1.7 -r1.8 pkgsrc/devel/cvs-fast-export/distinfo
diff -r1.7 -r1.8 pkgsrc/devel/cvs-fast-export/patches/patch-Makefile

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

--- pkgsrc/devel/cvs-fast-export/Makefile 2015/04/16 23:05:06 1.8
+++ pkgsrc/devel/cvs-fast-export/Makefile 2015/08/09 17:43:41 1.9
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1# $NetBSD: Makefile,v 1.8 2015/04/16 23:05:06 ryoon Exp $ 1# $NetBSD: Makefile,v 1.9 2015/08/09 17:43:41 ryoon Exp $
2# 2#
3 3
4DISTNAME= cvs-fast-export-1.30 4DISTNAME= cvs-fast-export-1.32
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 gmake yacc 13USE_TOOLS+= flex gmake yacc
14BUILD_DEPENDS+= asciidoc-[0-9]*:../../textproc/asciidoc 14BUILD_DEPENDS+= asciidoc-[0-9]*:../../textproc/asciidoc
15 15
16REPLACE_PYTHON+= cvsconvert cvssync 16REPLACE_PYTHON+= cvsconvert cvssync
17 17

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

--- pkgsrc/devel/cvs-fast-export/distinfo 2015/04/16 23:05:06 1.7
+++ pkgsrc/devel/cvs-fast-export/distinfo 2015/08/09 17:43:41 1.8
@@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
1$NetBSD: distinfo,v 1.7 2015/04/16 23:05:06 ryoon Exp $ 1$NetBSD: distinfo,v 1.8 2015/08/09 17:43:41 ryoon Exp $
2 2
3SHA1 (cvs-fast-export-1.30.tar.gz) = 63a39e0cf1a7c4823326b6178c650f2b3400eae8 3SHA1 (cvs-fast-export-1.32.tar.gz) = 1c2ce347d07ac1607ce8102a3c90d9f35b7b86ad
4RMD160 (cvs-fast-export-1.30.tar.gz) = 56dd5ccc0e0c9b08d469b496fe2dd817e205d2ac 4RMD160 (cvs-fast-export-1.32.tar.gz) = 4f9c28e0c070bbf7ee6b515177d090ee45d2a010
5Size (cvs-fast-export-1.30.tar.gz) = 359519 bytes 5Size (cvs-fast-export-1.32.tar.gz) = 368320 bytes
6SHA1 (patch-Makefile) = b279525576c4b5f087f152454d9c0dd96f19d45f 6SHA1 (patch-Makefile) = 2f448ceaa008dd8903cb89960abbf0dbfe061f7b
7SHA1 (patch-lex.l) = b266670431711088f6d86b258304b37b0f91e744 7SHA1 (patch-lex.l) = b266670431711088f6d86b258304b37b0f91e744

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

--- pkgsrc/devel/cvs-fast-export/patches/patch-Makefile 2015/04/16 23:05:07 1.7
+++ pkgsrc/devel/cvs-fast-export/patches/patch-Makefile 2015/08/09 17:43:41 1.8
@@ -1,23 +1,23 @@ @@ -1,23 +1,23 @@
1$NetBSD: patch-Makefile,v 1.7 2015/04/16 23:05:07 ryoon Exp $ 1$NetBSD: patch-Makefile,v 1.8 2015/08/09 17:43:41 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 2015-04-02 12:54:25.000000000 +0000 7--- Makefile.orig 2015-06-10 19:37:47.000000000 +0000
8+++ Makefile 8+++ Makefile
9@@ -9,11 +9,12 @@ 9@@ -9,11 +9,12 @@
10 VERSION=1.30 10 VERSION=1.32
11  11
12 .PATH: $(.PARSEDIR) 12 .PATH: $(.PARSEDIR)
13-prefix?=/usr/local 13-prefix?=/usr/local
14+prefix?=$(PREFIX) 14+prefix?=$(PREFIX)
15 target=$(DESTDIR)$(prefix) 15 target=$(DESTDIR)$(prefix)
16 parsedir:=$(.PARSEDIR) 16 parsedir:=$(.PARSEDIR)
17 srcdir=$(dir $(abspath $(firstword $(MAKEFILE_LIST))))$(parsedir) 17 srcdir=$(dir $(abspath $(firstword $(MAKEFILE_LIST))))$(parsedir)
18 VPATH=$(srcdir) 18 VPATH=$(srcdir)
19+mandir=$(PKGMANDIR) 19+mandir=$(PKGMANDIR)
20  20
21 INSTALL = install 21 INSTALL = install
22  22
23@@ -31,7 +32,7 @@ CFLAGS += -pthread 23@@ -31,7 +32,7 @@ CFLAGS += -pthread