From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3634B139A83 for ; Wed, 9 Sep 2015 09:49:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F3A8E089A; Wed, 9 Sep 2015 09:49:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 60F79E0894 for ; Wed, 9 Sep 2015 09:49:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 739A03409B9 for ; Wed, 9 Sep 2015 09:49:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 351C618A for ; Wed, 9 Sep 2015 09:49:40 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1441792170.54aca4048fd0f870b57d442f864b351d96df87b0.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/globre/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/globre/Manifest dev-python/globre/globre-0.1.3.ebuild X-VCS-Directories: dev-python/globre/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 54aca4048fd0f870b57d442f864b351d96df87b0 X-VCS-Branch: master Date: Wed, 9 Sep 2015 09:49:40 +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: 70d56d23-b768-490f-9d2d-ea4ed838dae8 X-Archives-Hash: f4a843e71585b062337ae935a5425c63 commit: 54aca4048fd0f870b57d442f864b351d96df87b0 Author: Justin Lecher gentoo org> AuthorDate: Wed Sep 9 07:23:56 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Sep 9 09:49:30 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54aca404 dev-python/globre: Version Bump Package-Manager: portage-2.2.20.1 Signed-off-by: Justin Lecher gentoo.org> dev-python/globre/Manifest | 1 + dev-python/globre/globre-0.1.3.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/dev-python/globre/Manifest b/dev-python/globre/Manifest index c4a7692..54dd30a 100644 --- a/dev-python/globre/Manifest +++ b/dev-python/globre/Manifest @@ -1 +1,2 @@ DIST globre-0.1.2.tar.gz 18465 SHA256 64203a0caca50cf2048cc4cc18b8abf452dfb7822b79ea9950f7c0ee03f51d9b SHA512 1e1a406b2a07ae551ba9b1b18dc92fc0728d2e0ad01c63a2108736430d893c427011b74883f5c84040426603ac8f46346a672e50a96502b315c02f81e6dff82c WHIRLPOOL eb4d5017438a946577d19ec2e2a2208a0edd5b4dd6136ce4aa71f73bd866b893396cc4b6cc4b9f592307d1116e2c04d54c83f3a47bc42e4738c29bbf915256dc +DIST globre-0.1.3.tar.gz 19205 SHA256 482527dc342a88945edfbfe4d78b0c546b163b2a6579863ebfd6b3b5df222e5a SHA512 430c09cd459a9131da4ae086cff608c269445219fce5c86fa344e038eb3fa0cac1bbdf3d153d099083fc3ea1b45135a800420c230d44f5503beaf910d494cb37 WHIRLPOOL 35735832cad2bd4c00ddb211cb80a0f99b37a32d5914a1f87c9c32117f34a81e2b079a9e9bd052eee8c134c83eedefd4a3c9c446796ee2933050e241d7e774a7 diff --git a/dev-python/globre/globre-0.1.3.ebuild b/dev-python/globre/globre-0.1.3.ebuild new file mode 100644 index 0000000..ad75c8f --- /dev/null +++ b/dev-python/globre/globre-0.1.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4} ) + +inherit distutils-r1 + +DESCRIPTION="A glob matching library, providing an interface similar to the 're' module" +HOMEPAGE="https://pypi.python.org/pypi/globre https://github.com/metagriffin/globre" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-3+" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND="" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + >=dev-python/nose-1.3.0[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die +}