From owner-svn-ports-all@FreeBSD.ORG Fri Feb 13 12:13:04 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EED34904; Fri, 13 Feb 2015 12:13:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 D07377E0; Fri, 13 Feb 2015 12:13:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1DCD3SW037501; Fri, 13 Feb 2015 12:13:03 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1DCD2PQ037495; Fri, 13 Feb 2015 12:13:02 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201502131213.t1DCD2PQ037495@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Fri, 13 Feb 2015 12:13:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378925 - in head/devel: . py-pytrie X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2015 12:13:04 -0000 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 +# $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 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