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 DF5741382C5 for ; Mon, 1 Jun 2020 11:12:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED06CE08E5; Mon, 1 Jun 2020 11:12:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D050FE08E5 for ; Mon, 1 Jun 2020 11:12:20 +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 7CB6E34E5C3 for ; Mon, 1 Jun 2020 11:12:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 79327278 for ; Mon, 1 Jun 2020 11:12:16 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1591009933.d25317b58793908c797cbfd1635f15a2fc45845b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/gpyutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/gpyutils/Manifest app-portage/gpyutils/gpyutils-0.4.2.ebuild X-VCS-Directories: app-portage/gpyutils/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d25317b58793908c797cbfd1635f15a2fc45845b X-VCS-Branch: master Date: Mon, 1 Jun 2020 11:12:16 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 81a4377e-d709-4752-a71c-b6faab572dab X-Archives-Hash: dda0c93812810cecd26a3d9a4bf07656 commit: d25317b58793908c797cbfd1635f15a2fc45845b Author: Michał Górny gentoo org> AuthorDate: Mon Jun 1 11:11:52 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jun 1 11:12:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d25317b5 app-portage/gpyutils: Bump to 0.4.2 Signed-off-by: Michał Górny gentoo.org> app-portage/gpyutils/Manifest | 1 + app-portage/gpyutils/gpyutils-0.4.2.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/app-portage/gpyutils/Manifest b/app-portage/gpyutils/Manifest index 1dd49fa409c..a4d3b7b912f 100644 --- a/app-portage/gpyutils/Manifest +++ b/app-portage/gpyutils/Manifest @@ -1 +1,2 @@ DIST gpyutils-0.4.1.tar.gz 19444 BLAKE2B 20b9a3072337665a83e86994b4b0e5cc33673364320838ab3e56b87b06146d91d519f1b60023fa3e9be0bc6fc10a207a3fe87937158edb2c8607d8145022ee50 SHA512 c3420ec2c5fff39b32beb43b48eb06179534c359f755e5877d29ba4e3f393ce62c8ded48cd909bc69c20730d028e01c76375892ebb2a364017aa196c81865ecf +DIST gpyutils-0.4.2.tar.gz 19771 BLAKE2B a5b58efcaad803a3eeb4a04b51811c2832f5a61154ac60b67c31e1962efd5f1a801e06fd3245c2336e6440b03fae2c30642e99c7588af89b7a3d0173b93f0c87 SHA512 699132833ddbaffe26bec8b3cb8914a609cc98ee2d8b852b59162265ee3daf6a0a0bd8ccc4d693e319d4e413c441ca94bd6837f07f1a132bda383350593792c4 diff --git a/app-portage/gpyutils/gpyutils-0.4.2.ebuild b/app-portage/gpyutils/gpyutils-0.4.2.ebuild new file mode 100644 index 00000000000..a519e2a5c0f --- /dev/null +++ b/app-portage/gpyutils/gpyutils-0.4.2.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=no +PYTHON_COMPAT=( python3_{6..9} ) + +inherit distutils-r1 + +DESCRIPTION="Utitilies for maintaining Python packages" +HOMEPAGE="https://github.com/mgorny/gpyutils/" +SRC_URI="https://github.com/mgorny/gpyutils/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=app-portage/gentoopm-0.3.1[${PYTHON_USEDEP}]" + +python_test() { + esetup.py test +}