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 592941384C0 for ; Mon, 31 Aug 2015 03:49:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ACA5C1412D; Mon, 31 Aug 2015 03:49:46 +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 533F01412D for ; Mon, 31 Aug 2015 03:49:46 +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 3805B3408BC for ; Mon, 31 Aug 2015 03:49:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 56F01164 for ; Mon, 31 Aug 2015 03:49:43 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1440992956.8e965db2ca17c2f2fe2f50f410fa0d283a78a10e.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/semantic_version/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/semantic_version/Manifest dev-python/semantic_version/semantic_version-2.4.2.ebuild X-VCS-Directories: dev-python/semantic_version/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 8e965db2ca17c2f2fe2f50f410fa0d283a78a10e X-VCS-Branch: master Date: Mon, 31 Aug 2015 03:49:43 +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: 6e56ac47-cb21-411a-b2eb-0bd504ffcdb7 X-Archives-Hash: cdc69bb7be3940e0dea0e057e1e83f69 commit: 8e965db2ca17c2f2fe2f50f410fa0d283a78a10e Author: Ian Delaney gentoo org> AuthorDate: Mon Aug 31 03:49:16 2015 +0000 Commit: Ian Delaney gentoo org> CommitDate: Mon Aug 31 03:49:16 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e965db2 dev-python/semantic_version: bump; add python3 pypy support Package-Manager: portage-2.2.20 dev-python/semantic_version/Manifest | 1 + .../semantic_version/semantic_version-2.4.2.ebuild | 24 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-python/semantic_version/Manifest b/dev-python/semantic_version/Manifest index dfcefcb..0901470 100644 --- a/dev-python/semantic_version/Manifest +++ b/dev-python/semantic_version/Manifest @@ -1 +1,2 @@ DIST semantic_version-2.4.1.tar.gz 32260 SHA256 33018ab2807ba395c418b4633993a7572b8a4b3e924823f5828788023b3c9b30 SHA512 b7a2a7d6e3fe19bc79f1545c1de2f44909e65286e8ff91f856b76db255b205da06657d519d64435c3d0a6dfe3d2f86ee1d3be1a19eccefdc313fbc7e5a09031d WHIRLPOOL a4623125bf662fb4a337a7c98258b6a829ff917293fc45b621adbc28afd406dd08c64fbc6c7f3cfa64da4bc9b5ebdcb996ab758fcc6ffc0c22712e71486f8dbe +DIST semantic_version-2.4.2.tar.gz 30711 SHA256 7e8b7fa74a3bc9b6e90b15b83b9bc2377c78eaeae3447516425f475d5d6932d2 SHA512 485eb478645141999f9f4f807b7c001c7a9a11d46cc100d897df6f5cb1e7653faca4aca32c7c248bc8bcc543d233ae2a3897af11d8a05a2c5881cc7d267bc356 WHIRLPOOL 9721b86e5d6cc378a2ceaa0cca600e329bf1cdd14cfc524f730712effea6862d01de76dcce4d607eb19b99067f04fb07f73004637860c0324371caa57190f898 diff --git a/dev-python/semantic_version/semantic_version-2.4.2.ebuild b/dev-python/semantic_version/semantic_version-2.4.2.ebuild new file mode 100644 index 0000000..e3e871e --- /dev/null +++ b/dev-python/semantic_version/semantic_version-2.4.2.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Python library providing a few tools handling SemVer in Python." +HOMEPAGE="https://pypi.python.org/pypi/semantic_version" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="" + +python_test() { + esetup.py test +}