From owner-svn-ports-head@freebsd.org Mon May 16 01:45:38 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BC817B3C7CC; Mon, 16 May 2016 01:45:38 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 712FC1103; Mon, 16 May 2016 01:45:38 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4G1jbaT073155; Mon, 16 May 2016 01:45:37 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4G1jb8Y073151; Mon, 16 May 2016 01:45:37 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201605160145.u4G1jb8Y073151@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 16 May 2016 01:45:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415294 - in head/devel: . py-pyhashxx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2016 01:45:38 -0000 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 +# $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 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