Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 13 Feb 2015 12:13:02 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r378925 - in head/devel: . py-pytrie
Message-ID:  <201502131213.t1DCD2PQ037495@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Fri Feb 13 12:13:02 2015
New Revision: 378925
URL: https://svnweb.freebsd.org/changeset/ports/378925
QAT: https://qat.redports.org/buildarchive/r378925/

Log:
  [NEW] devel/py-pytrie: Pure Python implementation of the trie data structure
  
  A trie is an ordered tree data structure that is used to store a mapping
  where the keys are sequences, usually strings over an alphabet. In
  addition to implementing the mapping interface, tries allow finding the
  items for a given prefix, and vice versa, finding the items whose keys
  are prefixes of a given key.
  
  WWW: https://bitbucket.org/gsakkis/pytrie

Added:
  head/devel/py-pytrie/
  head/devel/py-pytrie/Makefile   (contents, props changed)
  head/devel/py-pytrie/distinfo   (contents, props changed)
  head/devel/py-pytrie/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Feb 13 12:02:53 2015	(r378924)
+++ head/devel/Makefile	Fri Feb 13 12:13:02 2015	(r378925)
@@ -3952,6 +3952,7 @@
     SUBDIR += py-pytest-runner
     SUBDIR += py-python-statsd
     SUBDIR += py-pythonbrew
+    SUBDIR += py-pytrie
     SUBDIR += py-pytz
     SUBDIR += py-pyutil
     SUBDIR += py-pyxml2obj

Added: head/devel/py-pytrie/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pytrie/Makefile	Fri Feb 13 12:13:02 2015	(r378925)
@@ -0,0 +1,20 @@
+# Created by: Kubilay Kocak <koobs@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pytrie
+PORTVERSION=	0.2
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	PyTrie-${PORTVERSION}
+
+MAINTAINER=	koobs@FreeBSD.org
+COMMENT=	Pure Python implementation of the trie data structure
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/devel/py-pytrie/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pytrie/distinfo	Fri Feb 13 12:13:02 2015	(r378925)
@@ -0,0 +1,2 @@
+SHA256 (PyTrie-0.2.tar.gz) = b272021351efadc6757591aac03ed4794bdfd091122204a4673e94bfb66cc500
+SIZE (PyTrie-0.2.tar.gz) = 96378

Added: head/devel/py-pytrie/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pytrie/pkg-descr	Fri Feb 13 12:13:02 2015	(r378925)
@@ -0,0 +1,7 @@
+A trie is an ordered tree data structure that is used to store a mapping
+where the keys are sequences, usually strings over an alphabet. In
+addition to implementing the mapping interface, tries allow finding the
+items for a given prefix, and vice versa, finding the items whose keys
+are prefixes of a given key.
+
+WWW: https://bitbucket.org/gsakkis/pytrie



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