Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Sep 2018 07:08:38 +0000 (UTC)
From:      Matthew Seaman <matthew@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r480353 - in head/devel: . py-pathspec
Message-ID:  <201809220708.w8M78cuS010102@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: matthew
Date: Sat Sep 22 07:08:37 2018
New Revision: 480353
URL: https://svnweb.freebsd.org/changeset/ports/480353

Log:
  Add py-pathspec 0.5.9, utility library for pattern matching of file
  paths.

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Sep 22 07:07:41 2018	(r480352)
+++ head/devel/Makefile	Sat Sep 22 07:08:37 2018	(r480353)
@@ -4823,6 +4823,7 @@
     SUBDIR += py-path.py
     SUBDIR += py-pathlib
     SUBDIR += py-pathlib2
+    SUBDIR += py-pathspec
     SUBDIR += py-pathtools
     SUBDIR += py-paver
     SUBDIR += py-pbr

Added: head/devel/py-pathspec/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pathspec/Makefile	Sat Sep 22 07:08:37 2018	(r480353)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	pathspec
+PORTVERSION=	0.5.9
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	matthew@FreeBSD.org
+COMMENT=	Utility library for pattern matching of file paths
+
+LICENSE=	MPL20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+do-test:
+	@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
+
+.include <bsd.port.mk>

Added: head/devel/py-pathspec/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pathspec/distinfo	Sat Sep 22 07:08:37 2018	(r480353)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1537599636
+SHA256 (pathspec-0.5.9.tar.gz) = 54a5eab895d89f342b52ba2bffe70930ef9f8d96e398cccf530d21fa0516a873
+SIZE (pathspec-0.5.9.tar.gz) = 25473

Added: head/devel/py-pathspec/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pathspec/pkg-descr	Sat Sep 22 07:08:37 2018	(r480353)
@@ -0,0 +1,6 @@
+pathspec is a utility library for pattern matching of file paths. So
+far this only includes Git's wildmatch pattern matching which itself
+is derived from Rsync's wildmatch. Git uses wildmatch for its
+gitignore files.
+
+WWW: https://pypi.org/project/pathspec/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809220708.w8M78cuS010102>