diff options
author | ohauer <ohauer@FreeBSD.org> | 2013-09-16 01:17:43 +0800 |
---|---|---|
committer | ohauer <ohauer@FreeBSD.org> | 2013-09-16 01:17:43 +0800 |
commit | ac0a56e548cc3a899f79a5a31ea5251b2b7d1b24 (patch) | |
tree | 3b685a91e6945ce4da284e077e1a6a77936eed0c /devel/cvs2svn | |
parent | 220e8a07ebdf631bb688c680baa08c69d2b1c890 (diff) | |
download | freebsd-ports-gnome-ac0a56e548cc3a899f79a5a31ea5251b2b7d1b24.tar.gz freebsd-ports-gnome-ac0a56e548cc3a899f79a5a31ea5251b2b7d1b24.tar.zst freebsd-ports-gnome-ac0a56e548cc3a899f79a5a31ea5251b2b7d1b24.zip |
- update patch from r5406 to r5433
- fix PORTEXAMPLES and PORTDOCS
- depend on devel/cvs for ${OSVERSION} > 1000000
Bugs fixed:
- Handle non-ASCII, non-UTF8 filenames in .cvsignore files.
- ExternalBlobGenerator: Don't fail if no revisions are needed for a file.
From the commit log:
- Write all progress information to stderr rather than stdout. (r5419)
- Make sure to close CVS repository files after parsing them. (r5421)
- Choose garbage collection policy a bit more intelligently. (r5431)
- cvs2git: Emit some more information in OutputPass. (rr5432)
- Allow paths under Attic directories to be excluded, too. (r5433)
Diffstat (limited to 'devel/cvs2svn')
-rw-r--r-- | devel/cvs2svn/Makefile | 71 | ||||
-rw-r--r-- | devel/cvs2svn/distinfo | 4 | ||||
-rw-r--r-- | devel/cvs2svn/pkg-plist | 5 |
3 files changed, 41 insertions, 39 deletions
diff --git a/devel/cvs2svn/Makefile b/devel/cvs2svn/Makefile index 858529cb618e..d5d8ebcdaf96 100644 --- a/devel/cvs2svn/Makefile +++ b/devel/cvs2svn/Makefile @@ -3,16 +3,14 @@ PORTNAME= cvs2svn PORTVERSION= 2.4.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= http://cvs2svn.tigris.org/files/documents/1462/49237/ \ LOCAL/ohauer -# 2.4.0 -> svn r5392 +PATCHFILES= ${PORTNAME}-${PORTVERSION}-r${PATCHREV}.diff.bz2 PATCH_SITES= ${MASTER_SITE_LOCAL} PATCH_SITE_SUBDIR= ohauer -PATCHREV= 5406 -PATCHFILES= ${PORTNAME}-${PORTVERSION}-r${PATCHREV}.diff.bz2 MAINTAINER= ohauer@FreeBSD.org COMMENT= CVS to Subversion Repository Converter @@ -20,8 +18,10 @@ COMMENT= CVS to Subversion Repository Converter BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gdbm>0:${PORTSDIR}/databases/py-gdbm RUN_DEPENDS:= ${BUILD_DEPENDS} +# 2.4.0 -> svn r5392 +PATCHREV= 5433 -USE_PYTHON= 2.5+ +USE_PYTHON= 2.6+ USE_PYDISTUTILS= yes OPTIONS_MULTI= SCM @@ -29,11 +29,15 @@ OPTIONS_MULTI_SCM= SUBVERSION GIT BAZAAR OPTIONS_DEFAULT= SUBVERSION SUBVERSION_DESC= Build with subversion support -GIT_DESC= Build with git support -BAZAAR_DESC= Build with Bazaar support +GIT_DESC= Build with git support +BAZAAR_DESC= Build with Bazaar support .include <bsd.port.options.mk> +.if ${OSVERSION} > 1000000 +RUN_DEPENDS+= cvs:${PORTSDIR}/devel/cvs +.endif + .if ${PORT_OPTIONS:MSUBVERSION} RUN_DEPENDS+= ${LOCALBASE}/bin/svn:${PORTSDIR}/devel/py-subversion .endif @@ -50,10 +54,25 @@ MAN1= cvs2svn.1 \ cvs2git.1 \ cvs2bzr.1 -PORTDOCS= design-notes.txt making-releases.txt revision-reader.txt \ - symbol-notes.txt cvs2bzr.html cvs2git.html cvs2svn.html \ - faq.html features.html index.html issue_tracker.html \ - project_license.html project_tools.html +# documents from ${WRKSRC}/doc +DOCS1= design-notes.txt making-releases.txt \ + revision-reader.txt symbol-notes.txt + +# documents from ${WRKSRC}/www +DOCS2= cvs2bzr.html cvs2git.html cvs2svn.html \ + faq.html features.html index.html issue_tracker.html \ + project_license.html project_tools.html + +PORTDOCS:= ${DOCS1} ${DOCS2} + +PORTEXAMPLES= cvs2bzr-example.options cvs2git-example.options \ + cvs2hg-example.options cvs2svn-example.options + +post-patch: +# be consistent with PORTVERSION + @${REINPLACE_CMD} -e 's|2.5.0-dev|2.4.0|' \ + ${WRKSRC}/PKG-INFO \ + ${WRKSRC}/cvs2svn_lib/version.py # The only thing different in this target vs. the one found in bsd.port.mk # is that the extract command exit code is ignored. tar exits with status @@ -69,32 +88,20 @@ do-extract: done post-build: - cd ${WRKSRC} && make man + ${MAKE} man -C ${WRKSRC} post-install: - @${INSTALL_MAN} ${WRKSRC}/cvs2svn.1 ${PREFIX}/man/man1/ - @${INSTALL_MAN} ${WRKSRC}/cvs2git.1 ${PREFIX}/man/man1/ - @${INSTALL_MAN} ${WRKSRC}/cvs2bzr.1 ${PREFIX}/man/man1/ + @${INSTALL_MAN} ${MAN1:S|^|${WRKSRC}/|} ${PREFIX}/man/man1/ + .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/doc/design-notes.txt ${DOCSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/doc/making-releases.txt ${DOCSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/doc/revision-reader.txt ${DOCSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/doc/symbol-notes.txt ${DOCSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/www/cvs2bzr.html ${DOCSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/www/cvs2git.html ${DOCSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/www/cvs2svn.html ${DOCSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/www/faq.html ${DOCSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/www/features.html ${DOCSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/www/index.html ${DOCSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/www/issue_tracker.html ${DOCSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/www/project_license.html ${DOCSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/www/project_tools.html ${DOCSDIR}/ + @${INSTALL_DATA} ${DOCS1:S|^|${WRKSRC}/doc/|} ${DOCSDIR}/ + @${INSTALL_DATA} ${DOCS2:S|^|${WRKSRC}/www/|} ${DOCSDIR}/ +.endif + +.if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/cvs2bzr-example.options ${EXAMPLESDIR}/ - @${INSTALL_DATA} ${WRKSRC}/cvs2git-example.options ${EXAMPLESDIR}/ - @${INSTALL_DATA} ${WRKSRC}/cvs2hg-example.options ${EXAMPLESDIR}/ - @${INSTALL_DATA} ${WRKSRC}/cvs2svn-example.options ${EXAMPLESDIR}/ + @${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/|} ${EXAMPLESDIR}/ .endif .include <bsd.port.mk> diff --git a/devel/cvs2svn/distinfo b/devel/cvs2svn/distinfo index 0ae754d6bafe..f28c00808294 100644 --- a/devel/cvs2svn/distinfo +++ b/devel/cvs2svn/distinfo @@ -1,4 +1,4 @@ SHA256 (cvs2svn-2.4.0.tar.gz) = a6677fc3e7b4374020185c61c998209d691de0c1b01b53e59341057459f6f116 SIZE (cvs2svn-2.4.0.tar.gz) = 514891 -SHA256 (cvs2svn-2.4.0-r5406.diff.bz2) = 29701df569560cdd51a56c1d1af7b70bc6dd6951751495b3f899a916193cc611 -SIZE (cvs2svn-2.4.0-r5406.diff.bz2) = 43844 +SHA256 (cvs2svn-2.4.0-r5433.diff.bz2) = a20d854df3c3cbd6a554e99fd7f9bf33dab7520e577ca04dacd20b08a40a7c9f +SIZE (cvs2svn-2.4.0-r5433.diff.bz2) = 57278 diff --git a/devel/cvs2svn/pkg-plist b/devel/cvs2svn/pkg-plist index f840b2ff09a9..03c95e62968a 100644 --- a/devel/cvs2svn/pkg-plist +++ b/devel/cvs2svn/pkg-plist @@ -244,10 +244,5 @@ bin/cvs2svn %%PYTHON_SITELIBDIR%%/cvs2svn_rcsparse/texttools.py %%PYTHON_SITELIBDIR%%/cvs2svn_rcsparse/texttools.pyc %%PYTHON_SITELIBDIR%%/cvs2svn_rcsparse/texttools.pyo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cvs2bzr-example.options -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cvs2git-example.options -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cvs2hg-example.options -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cvs2svn-example.options -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% @dirrm %%PYTHON_SITELIBDIR%%/cvs2svn_rcsparse @dirrm %%PYTHON_SITELIBDIR%%/cvs2svn_lib |