Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Nov 2018 07:52:01 +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: r485986 - in head/devel: . py-datrie py-datrie/files
Message-ID:  <201811270752.wAR7q1LA061349@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Tue Nov 27 07:52:00 2018
New Revision: 485986
URL: https://svnweb.freebsd.org/changeset/ports/485986

Log:
  New port: devel/py-datrie: Super-fast, efficiently stored Trie for Python

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Nov 27 06:49:25 2018	(r485985)
+++ head/devel/Makefile	Tue Nov 27 07:52:00 2018	(r485986)
@@ -4511,6 +4511,7 @@
     SUBDIR += py-darts.util.lru
     SUBDIR += py-dateutil
     SUBDIR += py-dateutils
+    SUBDIR += py-datrie
     SUBDIR += py-dbus
     SUBDIR += py-ddt
     SUBDIR += py-debtcollector

Added: head/devel/py-datrie/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-datrie/Makefile	Tue Nov 27 07:52:00 2018	(r485986)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	datrie
+PORTVERSION=	0.7.1
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Super-fast, efficiently stored Trie for Python
+
+LICENSE=	GPLv2
+
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}hypothesis>0:devel/py-hypothesis@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+do-test:
+	@cd ${WRKSRC} && ${PYTHON_CMD} -m pytest
+
+.include <bsd.port.mk>

Added: head/devel/py-datrie/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-datrie/distinfo	Tue Nov 27 07:52:00 2018	(r485986)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1543304504
+SHA256 (datrie-0.7.1.tar.gz) = 7a11371cc2dbbad71d6dfef57ced6e8b384bb377eeb847c63d58f8dc8e8b2023
+SIZE (datrie-0.7.1.tar.gz) = 193464

Added: head/devel/py-datrie/files/patch-setup.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-datrie/files/patch-setup.py	Tue Nov 27 07:52:00 2018	(r485986)
@@ -0,0 +1,9 @@
+--- setup.py.orig	2018-11-27 07:47:36 UTC
++++ setup.py
+@@ -54,5 +54,5 @@ setup(name="datrie",
+           ], include_dirs=[LIBDATRIE_DIR])
+       ],
+ 
+-      setup_requires=["pytest-runner"],
++      setup_requires=[],
+       tests_require=["pytest", "hypothesis"])

Added: head/devel/py-datrie/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-datrie/pkg-descr	Tue Nov 27 07:52:00 2018	(r485986)
@@ -0,0 +1,6 @@
+Python binding for libdatrie, a kind of digital search tree.
+
+Trie is an efficient indexing method. It is also a kind of deterministic finite
+automaton (DFA).
+
+WWW: https://github.com/pytries/datrie



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