Date: Mon, 16 May 2016 01:45:37 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415294 - in head/devel: . py-pyhashxx Message-ID: <201605160145.u4G1jb8Y073151@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= pyhashxx +PORTVERSION= 0.1.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= feld@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605160145.u4G1jb8Y073151>