Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Jun 2019 03:45:21 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r504277 - in head/devel: . py-murmurhash py-murmurhash/files
Message-ID:  <201906160345.x5G3jL33067748@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sun Jun 16 03:45:20 2019
New Revision: 504277
URL: https://svnweb.freebsd.org/changeset/ports/504277

Log:
  New port: devel/py-murmurhash: Cython bindings for MurmurHash2

Added:
  head/devel/py-murmurhash/
  head/devel/py-murmurhash/Makefile   (contents, props changed)
  head/devel/py-murmurhash/distinfo   (contents, props changed)
  head/devel/py-murmurhash/files/
  head/devel/py-murmurhash/files/patch-setup.py   (contents, props changed)
  head/devel/py-murmurhash/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Jun 16 03:31:37 2019	(r504276)
+++ head/devel/Makefile	Sun Jun 16 03:45:20 2019	(r504277)
@@ -4600,6 +4600,7 @@
     SUBDIR += py-multipledispatch
     SUBDIR += py-multiprocess
     SUBDIR += py-munch
+    SUBDIR += py-murmurhash
     SUBDIR += py-mwlib
     SUBDIR += py-mwlib.ext
     SUBDIR += py-mwlib.rl

Added: head/devel/py-murmurhash/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-murmurhash/Makefile	Sun Jun 16 03:45:20 2019	(r504277)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	murmurhash
+PORTVERSION=	1.0.2
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Cython bindings for MurmurHash2
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+post-install:
+	@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/murmurhash/mrmr.so
+
+.include <bsd.port.mk>

Added: head/devel/py-murmurhash/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-murmurhash/distinfo	Sun Jun 16 03:45:20 2019	(r504277)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1560656317
+SHA256 (murmurhash-1.0.2.tar.gz) = c7a646f6b07b033642b4f52ae2e45efd8b80780b3b90e8092a0cec935fbf81e2
+SIZE (murmurhash-1.0.2.tar.gz) = 35323

Added: head/devel/py-murmurhash/files/patch-setup.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-murmurhash/files/patch-setup.py	Sun Jun 16 03:45:20 2019	(r504277)
@@ -0,0 +1,11 @@
+--- setup.py.orig	2019-06-16 03:40:21 UTC
++++ setup.py
+@@ -126,7 +126,7 @@ def setup_package():
+             url=about['__uri__'],
+             license=about['__license__'],
+             ext_modules=ext_modules,
+-            setup_requires=['wheel>=0.32.0,<0.33.0'],
++            setup_requires=[],
+             classifiers=[
+                 'Development Status :: 5 - Production/Stable',
+                 'Environment :: Console',

Added: head/devel/py-murmurhash/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-murmurhash/pkg-descr	Sun Jun 16 03:45:20 2019	(r504277)
@@ -0,0 +1,3 @@
+Cython bindings for MurmurHash2.
+
+WWW: https://github.com/explosion/murmurhash



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