From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 102C5139694 for ; Wed, 29 Mar 2017 01:43:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5CC7A23400D; Wed, 29 Mar 2017 01:43:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3C24B23400D for ; Wed, 29 Mar 2017 01:43:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 66FEA340BEA for ; Wed, 29 Mar 2017 01:43:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B56A873E8 for ; Wed, 29 Mar 2017 01:43:17 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1490751787.4ff12d1d193f58779b4b331d7699f07e240fab0c.dolsen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytrie/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytrie/Manifest dev-python/pytrie/pytrie-0.3.ebuild X-VCS-Directories: dev-python/pytrie/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 4ff12d1d193f58779b4b331d7699f07e240fab0c X-VCS-Branch: master Date: Wed, 29 Mar 2017 01:43:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 368e65ec-9a81-4df6-97da-b17bdfb1a4ee X-Archives-Hash: df764d3cd9d9b170d8f0654bef0e63ae commit: 4ff12d1d193f58779b4b331d7699f07e240fab0c Author: Brian Dolbec gentoo org> AuthorDate: Wed Mar 29 01:34:52 2017 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Wed Mar 29 01:43:07 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ff12d1d dev-python/pytrie: Version bump Package-Manager: Portage-2.3.5, Repoman-2.3.2_p30 dev-python/pytrie/Manifest | 1 + dev-python/pytrie/pytrie-0.3.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-python/pytrie/Manifest b/dev-python/pytrie/Manifest index 02f1c0f4cde..2e3e8c6a5e7 100644 --- a/dev-python/pytrie/Manifest +++ b/dev-python/pytrie/Manifest @@ -1 +1,2 @@ DIST pytrie-0.2.tar.gz 96378 SHA256 b272021351efadc6757591aac03ed4794bdfd091122204a4673e94bfb66cc500 SHA512 92cc2ae94bb38e947166af810d5104f5660f1084706260a883f9b4d209a1179c40f43094e881fe26694d2efc850e1c48941b3b97d812476bc9b81ef139a5d349 WHIRLPOOL 90a077593fbc38f1f9574b6121a52da54e66b77e1f34872d9f9901a52e20a90137f8c65733026c1426201a56931479ae03d6eee17e0d98f602a0766fa5d3ade2 +DIST pytrie-0.3.tar.gz 228709 SHA256 0c1bd0cb7c301b193da4bcf31bdf68bbdbea88be4bea5f680caecc56d9b74020 SHA512 f1dc6f810e51385fa4dcf2cbec76cf7fe5c184208f8d6dccf6212d43260591580126095e68d28ab6c8b01a631e6e16b275fa088643ae81568493ca231dcc6161 WHIRLPOOL a88d6069cc0af607d475fa827dbb8eac847afca342a01dd224a6f253aa0537cba293c5b7c89aa8a2dd8e6682d5f000bef0f9d14dbf2dc07d6dbed3934ac8fccc diff --git a/dev-python/pytrie/pytrie-0.3.ebuild b/dev-python/pytrie/pytrie-0.3.ebuild new file mode 100644 index 00000000000..e52e4626847 --- /dev/null +++ b/dev-python/pytrie/pytrie-0.3.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit distutils-r1 + +MY_PN="PyTrie" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A pure Python implementation of the trie data structure." +HOMEPAGE="https://github.com/gsakkis/pytrie/ https://pypi.python.org/pypi/PyTrie" +SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="dev-python/sortedcontainers[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P}