svn commit: r532213 - in head/devel: . py-hglib

Xin LI delphij at FreeBSD.org
Mon Apr 20 17:21:26 UTC 2020


Author: delphij
Date: Mon Apr 20 17:21:25 2020
New Revision: 532213
URL: https://svnweb.freebsd.org/changeset/ports/532213

Log:
  python-hglib is a library with a fast, convenient interface to
  Mercurial. It uses Mercurial's command server for communication
  with hg.
  
  PR:		245756

Added:
  head/devel/py-hglib/
  head/devel/py-hglib/Makefile   (contents, props changed)
  head/devel/py-hglib/distinfo   (contents, props changed)
  head/devel/py-hglib/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Apr 20 17:08:27 2020	(r532212)
+++ head/devel/Makefile	Mon Apr 20 17:21:25 2020	(r532213)
@@ -4455,6 +4455,7 @@
     SUBDIR += py-hash_ring
     SUBDIR += py-heapdict
     SUBDIR += py-hghooks
+    SUBDIR += py-hglib
     SUBDIR += py-hgtools
     SUBDIR += py-holidays
     SUBDIR += py-http-prompt

Added: head/devel/py-hglib/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-hglib/Makefile	Mon Apr 20 17:21:25 2020	(r532213)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	hglib
+PORTVERSION=	2.6.1
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	python-${PORTNAME}-${PORTVERSION}
+
+MAINTAINER=	delphij at FreeBSD.org
+COMMENT=	Library with a fast, convenient interface to Mercurial
+
+LICENSE=	MIT
+
+RUN_DEPENDS+=	hg:devel/mercurial
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-hglib/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-hglib/distinfo	Mon Apr 20 17:21:25 2020	(r532213)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1587365513
+SHA256 (python-hglib-2.6.1.tar.gz) = 7c1fa0cb4d332dd6ec8409b04787ceba4623e97fb378656f7cab0b996c6ca3b2
+SIZE (python-hglib-2.6.1.tar.gz) = 34630

Added: head/devel/py-hglib/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-hglib/pkg-descr	Mon Apr 20 17:21:25 2020	(r532213)
@@ -0,0 +1,5 @@
+python-hglib is a library with a fast, convenient interface to
+Mercurial. It uses Mercurial's command server for communication
+with hg.
+
+WWW: https://www.mercurial-scm.org/wiki/PythonHglib


More information about the svn-ports-all mailing list