pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/cvs-fast-export



Module Name:    pkgsrc
Committed By:   schmonz
Date:           Wed Sep 26 23:19:05 UTC 2018

Modified Files:
        pkgsrc/devel/cvs-fast-export: Makefile distinfo
        pkgsrc/devel/cvs-fast-export/patches: patch-Makefile

Log Message:
Update to 1.44. From the changelog:

- Fix slightly incorrect generation of default .gitignore file.
- Make cvsreduce work under Python 3, and test for that.
- Revert <2014-11-19T18:11:22Z%flower.powernet.co.uk@localhost>, optimization was wrong.
- Fix a typo in a property name that affects interoperability with reposurgeon.
- Savannah changed how you need to interpret pseudo-URLs.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/cvs-fast-export/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/cvs-fast-export/distinfo
cvs rdiff -u -r1.10 -r1.11 \
    pkgsrc/devel/cvs-fast-export/patches/patch-Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/cvs-fast-export/Makefile
diff -u pkgsrc/devel/cvs-fast-export/Makefile:1.13 pkgsrc/devel/cvs-fast-export/Makefile:1.14
--- pkgsrc/devel/cvs-fast-export/Makefile:1.13  Tue Feb 14 21:32:04 2017
+++ pkgsrc/devel/cvs-fast-export/Makefile       Wed Sep 26 23:19:05 2018
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2017/02/14 21:32:04 joerg Exp $
+# $NetBSD: Makefile,v 1.14 2018/09/26 23:19:05 schmonz Exp $
 
-DISTNAME=      cvs-fast-export-1.40
+DISTNAME=      cvs-fast-export-1.44
 CATEGORIES=    devel
 MASTER_SITES=  http://www.catb.org/~esr/cvs-fast-export/
 

Index: pkgsrc/devel/cvs-fast-export/distinfo
diff -u pkgsrc/devel/cvs-fast-export/distinfo:1.11 pkgsrc/devel/cvs-fast-export/distinfo:1.12
--- pkgsrc/devel/cvs-fast-export/distinfo:1.11  Sun Jan 29 12:19:08 2017
+++ pkgsrc/devel/cvs-fast-export/distinfo       Wed Sep 26 23:19:05 2018
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.11 2017/01/29 12:19:08 kim Exp $
+$NetBSD: distinfo,v 1.12 2018/09/26 23:19:05 schmonz Exp $
 
-SHA1 (cvs-fast-export-1.40.tar.gz) = 1afaef7935e27e563bf5dff6e51b967620cde649
-RMD160 (cvs-fast-export-1.40.tar.gz) = 373b61d8dd7caf87431bb5e362e3adbed92b1255
-SHA512 (cvs-fast-export-1.40.tar.gz) = bc89286ebce7d8086f889df83c15a998329d1253db91cc086f25b8d3bc11868058e11e8e055f5e8584f8cdccce6ff85fa2b1298777336fb74ce8822ab9f2196f
-Size (cvs-fast-export-1.40.tar.gz) = 414259 bytes
-SHA1 (patch-Makefile) = de01ed457a22d5d6aae3abff0a97af2b07b1da1d
+SHA1 (cvs-fast-export-1.44.tar.gz) = 2ad8d31ac3023ea92dbd7ec8e16b4d5a540690d9
+RMD160 (cvs-fast-export-1.44.tar.gz) = d4e66e102b852c11ced1eb35d7b1f439fe3225db
+SHA512 (cvs-fast-export-1.44.tar.gz) = 66209589c692d2b0b2e60494386cb4dbae04f5f6676c89733d3ad6e5ce8b76d3cb70d7b03430be643e44eaff5848fdb7413795e10716a9ed8b4f2a4043f822a5
+Size (cvs-fast-export-1.44.tar.gz) = 512435 bytes
+SHA1 (patch-Makefile) = 9dae05ef78bfc1c3a5e3b2ea9b01144413b9b66e

Index: pkgsrc/devel/cvs-fast-export/patches/patch-Makefile
diff -u pkgsrc/devel/cvs-fast-export/patches/patch-Makefile:1.10 pkgsrc/devel/cvs-fast-export/patches/patch-Makefile:1.11
--- pkgsrc/devel/cvs-fast-export/patches/patch-Makefile:1.10    Sun Jan 29 12:19:08 2017
+++ pkgsrc/devel/cvs-fast-export/patches/patch-Makefile Wed Sep 26 23:19:05 2018
@@ -1,14 +1,14 @@
-$NetBSD: patch-Makefile,v 1.10 2017/01/29 12:19:08 kim Exp $
+$NetBSD: patch-Makefile,v 1.11 2018/09/26 23:19:05 schmonz Exp $
 
 * Use ${PREFIX} variable.
 * Comment out "-march=native"
 * Add "all" target.
 * Install man pages in ${PREFIX}/${PKGMANDIR}, not ${PREFIX}/share/man.
 
---- Makefile.orig      2016-09-08 01:16:05.000000000 +0000
-+++ Makefile   2017-01-24 02:22:09.000000000 +0000
+--- Makefile.orig      2018-07-06 02:37:10.000000000 +0000
++++ Makefile
 @@ -17,11 +17,12 @@
- VERSION=1.40
+ VERSION=1.44
  
  .PATH: $(.PARSEDIR)
 -prefix?=/usr/local
@@ -21,7 +21,7 @@ $NetBSD: patch-Makefile,v 1.10 2017/01/2
  
  INSTALL = install
  TAR = tar
-@@ -40,7 +41,7 @@
+@@ -40,7 +41,7 @@ CFLAGS += -pthread
  CPPFLAGS += -DTHREADS
  
  # Optimizing for speed. Comment this out for distribution builds
@@ -30,7 +30,7 @@ $NetBSD: patch-Makefile,v 1.10 2017/01/2
  
  # To enable debugging of the Yacc grammar, uncomment the following line
  #CPPFLAGS += -DYYDEBUG=1
-@@ -100,6 +101,8 @@
+@@ -100,6 +101,8 @@ dump.o export.o graph.o main.o collate.o
  
  BISON ?= bison
  
@@ -39,7 +39,7 @@ $NetBSD: patch-Makefile,v 1.10 2017/01/2
  gram.h gram.c: gram.y
        $(BISON)  $(YFLAGS) --defines=gram.h --output-file=gram.c $(srcdir)/gram.y
  lex.h lex.c: lex.l
-@@ -143,10 +146,10 @@
+@@ -143,10 +146,10 @@ install-bin: cvs-fast-export cvssync cvs
        $(INSTALL) -d "$(target)/bin"
        $(INSTALL) $^ "$(target)/bin"
  install-man: man



Home | Main Index | Thread Index | Old Index