1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

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

This commit is contained in:
Yuri Victorovich 2019-06-16 03:45:20 +00:00
parent 4ad1fb75a0
commit 606c099c1e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=504277
5 changed files with 39 additions and 0 deletions

View File

@ -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

View File

@ -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>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1560656317
SHA256 (murmurhash-1.0.2.tar.gz) = c7a646f6b07b033642b4f52ae2e45efd8b80780b3b90e8092a0cec935fbf81e2
SIZE (murmurhash-1.0.2.tar.gz) = 35323

View File

@ -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',

View File

@ -0,0 +1,3 @@
Cython bindings for MurmurHash2.
WWW: https://github.com/explosion/murmurhash