pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/reposurgeon



Module Name:    pkgsrc
Committed By:   kim
Date:           Sat Jan 21 12:07:28 UTC 2017

Modified Files:
        pkgsrc/devel/reposurgeon: Makefile PLIST distinfo

Log Message:
Update to 3.40:

3.40: 2016-09-20
     In repocutter, repair fatal bugs in log and setlog commands.
     In repocutter, added "see" command for reporting repository structure.
     In repocutter, added "sift" command inverting "expunge".

3.39: 2016-09-01
     Make repocutter pathrename and expunge preserve Node-copyfrom-* headers.
     Make pathrename hack Node-copyfrom-path headers as well as Node-path.
     Enable repocutter to handle binary content in blobs.
     Improved documentation for the unite command.

3.38: 2016-08-27
     Fix handling of second argument of timeoffset.
     Allow full find/replace with UTF-8.
     Make the syntax of the 'split' command consistent with the manual.
     Fix buggy 'authors write' command, and add a regression test for it.

3.37: 2016-03-14
     Prevent two potential crash bug introduced by Python 3 porting.

3.36: 2016-03-13
     The repocutter and repomapper utilities are now 8-bit clean under Python 3.
     Reorder 'done' stream terminator after tag and commit creates.
     Fix for GitLab issue #52, crash on a weird unite case.

3.35: 2016-02-25
     Reposurgeon now runs under either Python 2 or 3.
     CVS repos are recognized by CVSROOT, not a (possibly missing) Attic.

3.34: 2016-02-16
     Make repocutter DTRT when copyfrom roots are removed by expunge.

3.33: 2016-02-01
     More work on header-order independence for both reposurgeon and repocutter.

3.32: 2016-01-31
     Handle Subversion dumps as produced by svndumpfilter with Node-kind first.

3.31: 2016-01-23
     repocutter, a tool for preprocessing Subversion repos, is now included.
     In repotool, a new 'branches' command lists branches (not tags).
     Fix repotool, 'tags' for CVS repo so it lists only tags, not branches.
     In repotool, a new 'compare-branches' command compares all branches.
     In repotool, a new 'compare-all' compares tip, tags, and branches.
     repotool no longer needs to run within a module directory for CVS.
     Move from BSD-3-clause to BSD-2-clause, apply SPDX tag.

3.30: 2016-01-10
     Added "when" command for timestamp conversions.
     Fix GitHub issue #42: Repository.split_commit() produces invalid marks.
     Commands now tab-complete name arguments wherever that makes sense.
     Handle format 7 Subversion dumps with sporadic empty nodes.
     Selection sets now remain ordered rather than being sorted.
     There is a new @srt() function to explicitly sort selection sets.
     The reparent command can now specify multiple ancestors.
     In SVN repositories, a tag's subdirectory is now part of its name.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 pkgsrc/devel/reposurgeon/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/reposurgeon/PLIST
cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/reposurgeon/distinfo

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

Modified files:

Index: pkgsrc/devel/reposurgeon/Makefile
diff -u pkgsrc/devel/reposurgeon/Makefile:1.24 pkgsrc/devel/reposurgeon/Makefile:1.25
--- pkgsrc/devel/reposurgeon/Makefile:1.24      Sun Jan  1 14:43:36 2017
+++ pkgsrc/devel/reposurgeon/Makefile   Sat Jan 21 12:07:28 2017
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.24 2017/01/01 14:43:36 wiz Exp $
+# $NetBSD: Makefile,v 1.25 2017/01/21 12:07:28 kim Exp $
 
-DISTNAME=      reposurgeon-3.29
+DISTNAME=      reposurgeon-3.40
 CATEGORIES=    devel scm
 MASTER_SITES=  http://www.catb.org/~esr/reposurgeon/
 EXTRACT_SUFX=  .tar.xz
@@ -18,7 +18,7 @@ USE_LANGUAGES=        # none
 MAKE_FLAGS+=   prefix=${PREFIX}
 MAKE_FLAGS+=   mandir=${PKGMANDIR}
 
-REPLACE_PYTHON=        repodiffer reposurgeon
+REPLACE_PYTHON=        repocutter repodiffer repomapper reposurgeon
 REPLACE_SH=    repotool
 
 PYTHON_VERSIONS_INCOMPATIBLE=  34 35 36 # 3.26 uses commands module, which is deprecated in python-3.x

Index: pkgsrc/devel/reposurgeon/PLIST
diff -u pkgsrc/devel/reposurgeon/PLIST:1.4 pkgsrc/devel/reposurgeon/PLIST:1.5
--- pkgsrc/devel/reposurgeon/PLIST:1.4  Wed Sep 16 16:13:16 2015
+++ pkgsrc/devel/reposurgeon/PLIST      Sat Jan 21 12:07:28 2017
@@ -1,7 +1,10 @@
-@comment $NetBSD: PLIST,v 1.4 2015/09/16 16:13:16 wiz Exp $
+@comment $NetBSD: PLIST,v 1.5 2017/01/21 12:07:28 kim Exp $
+bin/repocutter
 bin/repodiffer
+bin/repomapper
 bin/reposurgeon
 bin/repotool
+man/man1/repocutter.1
 man/man1/repodiffer.1
 man/man1/repomapper.1
 man/man1/reposurgeon.1
@@ -11,6 +14,7 @@ share/doc/reposurgeon/README.md
 share/doc/reposurgeon/TODO
 share/doc/reposurgeon/dvcs-migration-guide.html
 share/doc/reposurgeon/features.html
+share/doc/reposurgeon/repocutter.html
 share/doc/reposurgeon/repodiffer.html
 share/doc/reposurgeon/repomapper.html
 share/doc/reposurgeon/reporting-bugs.html

Index: pkgsrc/devel/reposurgeon/distinfo
diff -u pkgsrc/devel/reposurgeon/distinfo:1.18 pkgsrc/devel/reposurgeon/distinfo:1.19
--- pkgsrc/devel/reposurgeon/distinfo:1.18      Tue Nov  3 03:29:19 2015
+++ pkgsrc/devel/reposurgeon/distinfo   Sat Jan 21 12:07:28 2017
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.18 2015/11/03 03:29:19 agc Exp $
+$NetBSD: distinfo,v 1.19 2017/01/21 12:07:28 kim Exp $
 
-SHA1 (reposurgeon-3.29.tar.xz) = 980855a019b18b717ecc328259e9e3ca52f3700a
-RMD160 (reposurgeon-3.29.tar.xz) = f9f9f259d5db981e8a6f605642ce45d37a8dc575
-SHA512 (reposurgeon-3.29.tar.xz) = 5598d7c4a055c92b0d1f37dc4c9e2e1504862830a105633b2f264c8e0fb266ca13ac1e854df971ba0d037ca5773ec2b6d7fcdf6028d385ec68168c2fcc3c8733
-Size (reposurgeon-3.29.tar.xz) = 168360 bytes
+SHA1 (reposurgeon-3.40.tar.xz) = 94ba2f37c0210d5a5faa4b2a6c4844c994136f45
+RMD160 (reposurgeon-3.40.tar.xz) = 7e404fff44e392ac87d00beb7410f3cad4f47577
+SHA512 (reposurgeon-3.40.tar.xz) = 037e2cce94a4553f8ce4663ecaa376dd5da3ea127cad11686213510cc3d67e1cb0c64b4b9dbe1930a35a2753e88925a0b5fab4253b7f964da30c487e47020c38
+Size (reposurgeon-3.40.tar.xz) = 502804 bytes



Home | Main Index | Thread Index | Old Index