From owner-svn-ports-head@freebsd.org Wed Feb 8 17:59:31 2017 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 142EDCD662A; Wed, 8 Feb 2017 17:59:31 +0000 (UTC) (envelope-from rezny@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 BB426F2E; Wed, 8 Feb 2017 17:59:30 +0000 (UTC) (envelope-from rezny@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v18HxTlL085310; Wed, 8 Feb 2017 17:59:29 GMT (envelope-from rezny@FreeBSD.org) Received: (from rezny@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v18HxTa4085301; Wed, 8 Feb 2017 17:59:29 GMT (envelope-from rezny@FreeBSD.org) Message-Id: <201702081759.v18HxTa4085301@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rezny set sender to rezny@FreeBSD.org using -f From: Matthew Rezny Date: Wed, 8 Feb 2017 17:59:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433660 - in head/devel: . py-xxhash 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.23 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: Wed, 08 Feb 2017 17:59:31 -0000 Author: rezny Date: Wed Feb 8 17:59:29 2017 New Revision: 433660 URL: https://svnweb.freebsd.org/changeset/ports/433660 Log: devel/py-xxhash: new port py-xxhash is a Python binding for the xxHash library by Yann Collet. WWW: https://pypi.python.org/pypi/xxhash/ Approved by: feld (mentor) Differential Revision: https://reviews.freebsd.org/D9468 Added: head/devel/py-xxhash/ head/devel/py-xxhash/Makefile (contents, props changed) head/devel/py-xxhash/distinfo (contents, props changed) head/devel/py-xxhash/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Feb 8 17:56:23 2017 (r433659) +++ head/devel/Makefile Wed Feb 8 17:59:29 2017 (r433660) @@ -4779,6 +4779,7 @@ SUBDIR += py-xerox SUBDIR += py-xmltodict SUBDIR += py-xoltar-toolkit + SUBDIR += py-xxhash SUBDIR += py-yaml SUBDIR += py-yandex-money-sdk SUBDIR += py-yappi Added: head/devel/py-xxhash/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-xxhash/Makefile Wed Feb 8 17:59:29 2017 (r433660) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= xxhash +PORTVERSION= 0.6.1 +CATEGORIES= devel +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rezny@FreeBSD.org +COMMENT= Python bindings for the xxHash library + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>1:devel/py-nose + +USES= python +USE_PYTHON= distutils autoplist + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/xxhash.so + +.include Added: head/devel/py-xxhash/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-xxhash/distinfo Wed Feb 8 17:59:29 2017 (r433660) @@ -0,0 +1,3 @@ +TIMESTAMP = 1486324569 +SHA256 (xxhash-0.6.1.tar.gz) = 829848ba7575802d99ab5d7e39277eeea85f85b199bc5487661faa350d983611 +SIZE (xxhash-0.6.1.tar.gz) = 19257 Added: head/devel/py-xxhash/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-xxhash/pkg-descr Wed Feb 8 17:59:29 2017 (r433660) @@ -0,0 +1,3 @@ +py-xxhash is a Python binding for the xxHash library by Yann Collet. + +WWW: https://pypi.python.org/pypi/xxhash/