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 3503E139894 for ; Mon, 24 Aug 2015 10:12:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 261A3141E9; Mon, 24 Aug 2015 10:12:27 +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 16B2D141EA for ; Mon, 24 Aug 2015 10:12:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 66B593406AA for ; Mon, 24 Aug 2015 10:12:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C08B0182 for ; Mon, 24 Aug 2015 10:12:21 +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: <1440411132.14b78d29deb6378aaee9120bd6087e4e9d8de6ab.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/packaging/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/packaging/Manifest dev-python/packaging/metadata.xml dev-python/packaging/packaging-15.3.ebuild X-VCS-Directories: dev-python/packaging/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 14b78d29deb6378aaee9120bd6087e4e9d8de6ab X-VCS-Branch: master Date: Mon, 24 Aug 2015 10:12:21 +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: c67f1101-022b-4a9e-90bb-f6f68095a671 X-Archives-Hash: 3d8b95f9b99574927e08727a1d0aea86 commit: 14b78d29deb6378aaee9120bd6087e4e9d8de6ab Author: Justin Lecher gentoo org> AuthorDate: Mon Aug 24 07:15:07 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Aug 24 10:12:12 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14b78d29 dev-python/packaging: New package, ebuild written by me Package-Manager: portage-2.2.20.1 Signed-off-by: Justin Lecher gentoo.org> dev-python/packaging/Manifest | 1 + dev-python/packaging/metadata.xml | 5 +++++ dev-python/packaging/packaging-15.3.ebuild | 30 ++++++++++++++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/dev-python/packaging/Manifest b/dev-python/packaging/Manifest new file mode 100644 index 0000000..738714c --- /dev/null +++ b/dev-python/packaging/Manifest @@ -0,0 +1 @@ +DIST packaging-15.3.tar.gz 34359 SHA256 1e9a6b9ad621bc1dbd3aa8dfff52abc4b44f5c14fbb406731c25cba250a5f61e SHA512 bd59408dc6ea2a4f8cb3a84b4d1e4284148a0f6fb2d3203f90885f608871f1f2315201427d08d2ca7b2d706bc5457c8a521b5edda9187e794522dbb8e46a663c WHIRLPOOL 197e9f26022383bf5962efbd562f1502bd5f0972a782c94f3188961d8d14167c25febee459ad5b3a731bafaf3f7e53e5b051d383382c169b58aff1cb521442f3 diff --git a/dev-python/packaging/metadata.xml b/dev-python/packaging/metadata.xml new file mode 100644 index 0000000..301d220 --- /dev/null +++ b/dev-python/packaging/metadata.xml @@ -0,0 +1,5 @@ + + + + python + diff --git a/dev-python/packaging/packaging-15.3.ebuild b/dev-python/packaging/packaging-15.3.ebuild new file mode 100644 index 0000000..45ee1b8 --- /dev/null +++ b/dev-python/packaging/packaging-15.3.ebuild @@ -0,0 +1,30 @@ +# 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} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Core utilities for Python packages" +HOMEPAGE="https://github.com/pypa/packaging https://pypi.python.org/pypi/packaging" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="Apache-2.0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND="" +DEPEND="${RDEPEND} + test? ( + dev-python/pretend[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + ) +" + +python_test() { + py.test --capture=no --strict -v || die +}