Received: by mail.netbsd.org (Postfix, from userid 605) id B4438850C5; Mon, 15 Feb 2021 14:39:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EF490850BD for ; Mon, 15 Feb 2021 14:39:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 54heKlw0iAVC for ; Mon, 15 Feb 2021 14:39:16 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 31F3784D24 for ; Mon, 15 Feb 2021 14:39:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2F652FA95; Mon, 15 Feb 2021 14:39:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1613399956249210" MIME-Version: 1.0 Date: Mon, 15 Feb 2021 14:39:16 +0000 From: "Roy Marples" Subject: CVS commit: pkgsrc/devel/py-hg-fastimport To: pkgsrc-changes@NetBSD.org Reply-To: roy@netbsd.org X-Mailer: log_accum Message-Id: <20210215143916.2F652FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1613399956249210 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: roy Date: Mon Feb 15 14:39:16 UTC 2021 Modified Files: pkgsrc/devel/py-hg-fastimport: Makefile PLIST distinfo Removed Files: pkgsrc/devel/py-hg-fastimport/patches: patch-hgfastimport_____init____.py patch-hgfastimport_hgimport.py Log Message: hg-fastimport: New upstream, update to version 0.1.1 * Supports Mercurial 5.6+ and Python 3.6+ * Keeps support for Python 2.7 * No external dependencies other than Mercurial and Python * Optionally uses SQLite database for faster blob imports To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/devel/py-hg-fastimport/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-hg-fastimport/PLIST cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-hg-fastimport/distinfo cvs rdiff -u -r1.2 -r0 \ pkgsrc/devel/py-hg-fastimport/patches/patch-hgfastimport_____init____.py \ pkgsrc/devel/py-hg-fastimport/patches/patch-hgfastimport_hgimport.py Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1613399956249210 Content-Disposition: inline Content-Length: 6146 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-hg-fastimport/Makefile diff -u pkgsrc/devel/py-hg-fastimport/Makefile:1.14 pkgsrc/devel/py-hg-fastimport/Makefile:1.15 --- pkgsrc/devel/py-hg-fastimport/Makefile:1.14 Sat Feb 6 08:01:18 2021 +++ pkgsrc/devel/py-hg-fastimport/Makefile Mon Feb 15 14:39:15 2021 @@ -1,33 +1,19 @@ -# $NetBSD: Makefile,v 1.14 2021/02/06 08:01:18 wiz Exp $ +# $NetBSD: Makefile,v 1.15 2021/02/15 14:39:15 roy Exp $ -DISTNAME= danielj7-hg-fastimport-d41a42894dfa -PKGNAME= ${PYPKGPREFIX}-hg-fastimport-20170211 -PKGREVISION= 2 +DISTNAME= hg-fastimport-0.1.1 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel -MASTER_SITES= -https://bitbucket.org/danielj7/hg-fastimport/get/v20170211.tar.bz2 -EXTRACT_SUFX= .tar.bz2 +MASTER_SITES= https://roy.marples.name/downloads/hg-fastimport/ +EXTRACT_SUFX= .tar.xz -MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= https://www.mercurial-scm.org/wiki/FastImportExtension +MAINTAINER= roy@NetBSD.org +HOMEPAGE= https://mercurial.selenic.com/wiki/FastImportExtension COMMENT= Mercurial extension for importing from a git fast-import stream LICENSE= gnu-gpl-v2 -DEPENDS+= ${PYPKGPREFIX}-fastimport>=0.9.6nb1:../../devel/py-fastimport -DEPENDS+= ${PYPKGPREFIX}-mercurial-[0-9]*:../../devel/py-mercurial +DEPENDS+= ${PYPKGPREFIX}-mercurial>=5.1:../../devel/py-mercurial -USE_LANGUAGES= # none - -INSTALLATION_DIRS+= ${PYSITELIB}/hgfastimport share/doc/py-hg-fastimport - -PYTHON_VERSIONS_ACCEPTED= 27 PY_PATCHPLIST= yes -do-build: - -do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/hgfastimport/*.py ${DESTDIR}${PREFIX}/${PYSITELIB}/hgfastimport - ${INSTALL_DATA} ${WRKSRC}/README.txt ${DESTDIR}${PREFIX}/share/doc/py-hg-fastimport - ${PY_COMPILE_ALL} ${DESTDIR}${PREFIX}/${PYSITELIB}/hgfastimport - -.include "../../lang/python/extension.mk" +.include "../../lang/python/distutils.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-hg-fastimport/PLIST diff -u pkgsrc/devel/py-hg-fastimport/PLIST:1.2 pkgsrc/devel/py-hg-fastimport/PLIST:1.3 --- pkgsrc/devel/py-hg-fastimport/PLIST:1.2 Sat Jul 22 16:16:25 2017 +++ pkgsrc/devel/py-hg-fastimport/PLIST Mon Feb 15 14:39:15 2021 @@ -1,8 +1,35 @@ -@comment $NetBSD: PLIST,v 1.2 2017/07/22 16:16:25 joerg Exp $ -${PYSITELIB}/hgfastimport/__init__.py -${PYSITELIB}/hgfastimport/__init__.pyc -${PYSITELIB}/hgfastimport/hgechoprocessor.py -${PYSITELIB}/hgfastimport/hgechoprocessor.pyc -${PYSITELIB}/hgfastimport/hgimport.py -${PYSITELIB}/hgfastimport/hgimport.pyc -share/doc/py-hg-fastimport/README.txt +@comment $NetBSD: PLIST,v 1.3 2021/02/15 14:39:15 roy Exp $ +${PYSITELIB}/${EGG_FILE} +${PYSITELIB}/hgext3rd/fastimport/__init__.py +${PYSITELIB}/hgext3rd/fastimport/__init__.pyc +${PYSITELIB}/hgext3rd/fastimport/__init__.pyo +${PYSITELIB}/hgext3rd/fastimport/hgechoprocessor.py +${PYSITELIB}/hgext3rd/fastimport/hgechoprocessor.pyc +${PYSITELIB}/hgext3rd/fastimport/hgechoprocessor.pyo +${PYSITELIB}/hgext3rd/fastimport/hgimport.py +${PYSITELIB}/hgext3rd/fastimport/hgimport.pyc +${PYSITELIB}/hgext3rd/fastimport/hgimport.pyo +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/__init__.py +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/__init__.pyc +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/__init__.pyo +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/commands.py +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/commands.pyc +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/commands.pyo +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/dates.py +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/dates.pyc +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/dates.pyo +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/errors.py +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/errors.pyc +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/errors.pyo +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/helpers.py +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/helpers.pyc +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/helpers.pyo +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/parser.py +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/parser.pyc +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/parser.pyo +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/processor.py +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/processor.pyc +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/processor.pyo +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/reftracker.py +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/reftracker.pyc +${PYSITELIB}/hgext3rd/fastimport/vendor/python_fastimport/reftracker.pyo Index: pkgsrc/devel/py-hg-fastimport/distinfo diff -u pkgsrc/devel/py-hg-fastimport/distinfo:1.5 pkgsrc/devel/py-hg-fastimport/distinfo:1.6 --- pkgsrc/devel/py-hg-fastimport/distinfo:1.5 Sat Jan 9 15:30:03 2021 +++ pkgsrc/devel/py-hg-fastimport/distinfo Mon Feb 15 14:39:15 2021 @@ -1,8 +1,6 @@ -$NetBSD: distinfo,v 1.5 2021/01/09 15:30:03 roy Exp $ +$NetBSD: distinfo,v 1.6 2021/02/15 14:39:15 roy Exp $ -SHA1 (danielj7-hg-fastimport-d41a42894dfa.tar.bz2) = 8820358107c9de776d6250052a3f15ecccfbcd44 -RMD160 (danielj7-hg-fastimport-d41a42894dfa.tar.bz2) = c6d0f6654509632f3b8266f7a4da519ff6789542 -SHA512 (danielj7-hg-fastimport-d41a42894dfa.tar.bz2) = fc207c90721dc5f32d477bfbd5c4d7634f9a16c28d6e21254bbd942cd4ad7053dbcfd3f0fed91ee797759203f4196985d5bc3132618c58331c06a8fa764124b3 -Size (danielj7-hg-fastimport-d41a42894dfa.tar.bz2) = 30701 bytes -SHA1 (patch-hgfastimport_____init____.py) = c3d9b92a1c609f1ee979b836c79a3759038c987b -SHA1 (patch-hgfastimport_hgimport.py) = cb630c9a8e19ea37fcbf8bae0beae485bfa96b0b +SHA1 (hg-fastimport-0.1.1.tar.xz) = f4d9cb4dfe47458314a3b449fdb824439430f727 +RMD160 (hg-fastimport-0.1.1.tar.xz) = 3b6b112023342374a1fd848c8d5df048eddcea26 +SHA512 (hg-fastimport-0.1.1.tar.xz) = 98d03f30630fcbbd607d34ef817433578315096c32ce7a6328e0e3d16107df2e01d622cff21aef0bd31e791a1e7fb806300ec347f94d9b2722b4aaede1a4a26d +Size (hg-fastimport-0.1.1.tar.xz) = 44836 bytes --_----------=_1613399956249210--