svn commit: r415294 - in head/devel: . py-pyhashxx

Mark Felder feld at FreeBSD.org
Mon May 16 01:45:38 UTC 2016


Author: feld
Date: Mon May 16 01:45:37 2016
New Revision: 415294
URL: https://svnweb.freebsd.org/changeset/ports/415294

Log:
  Python wrapper of xxhash that supports concurrency
  
  WWW: https://github.com/ewencp/pyhashxx

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon May 16 01:40:50 2016	(r415293)
+++ head/devel/Makefile	Mon May 16 01:45:37 2016	(r415294)
@@ -4299,6 +4299,7 @@
     SUBDIR += py-pygit2
     SUBDIR += py-pygithub
     SUBDIR += py-pygpx
+    SUBDIR += py-pyhashxx
     SUBDIR += py-pyicu
     SUBDIR += py-pyinotify
     SUBDIR += py-pyinstaller

Added: head/devel/py-pyhashxx/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyhashxx/Makefile	Mon May 16 01:45:37 2016	(r415294)
@@ -0,0 +1,18 @@
+# Created by: Mark Felder <feld at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pyhashxx
+PORTVERSION=	0.1.3
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	feld at FreeBSD.org
+COMMENT=	Python wrapper for xxHash algorithm
+
+LICENSE=	BSD2CLAUSE
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/devel/py-pyhashxx/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyhashxx/distinfo	Mon May 16 01:45:37 2016	(r415294)
@@ -0,0 +1,2 @@
+SHA256 (pyhashxx-0.1.3.tar.gz) = f071922506d5e8654562a508701d7963b381a996af057dfe4090a2535620f490
+SIZE (pyhashxx-0.1.3.tar.gz) = 9631

Added: head/devel/py-pyhashxx/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyhashxx/pkg-descr	Mon May 16 01:45:37 2016	(r415294)
@@ -0,0 +1,3 @@
+Python wrapper of xxhash that supports concurrency
+
+WWW: https://github.com/ewencp/pyhashxx


More information about the svn-ports-head mailing list