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 A2001138239 for ; Sun, 23 May 2021 12:59:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13EC2E0863; Sun, 23 May 2021 12:59:13 +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 E9B12E0863 for ; Sun, 23 May 2021 12:59:12 +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 010ED3408F9 for ; Sun, 23 May 2021 12:59:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 832AD47 for ; Sun, 23 May 2021 12:59:10 +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: <1621774747.061c46cd73c555a15404b0c7c9c90cb51751c2da.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.5.ebuild X-VCS-Directories: app-portage/gpyutils/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 061c46cd73c555a15404b0c7c9c90cb51751c2da X-VCS-Branch: master Date: Sun, 23 May 2021 12:59:10 +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: d203ecd6-bf81-438c-9836-cb87f4971169 X-Archives-Hash: 2bce771625b481fe220ed4d9b9b89201 commit: 061c46cd73c555a15404b0c7c9c90cb51751c2da Author: Michał Górny gentoo org> AuthorDate: Sun May 23 12:54:20 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 23 12:59:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=061c46cd app-portage/gpyutils: Bump to 0.5 Signed-off-by: Michał Górny gentoo.org> app-portage/gpyutils/Manifest | 1 + app-portage/gpyutils/gpyutils-0.5.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/app-portage/gpyutils/Manifest b/app-portage/gpyutils/Manifest index 619ed92d89a..f80c5fe7803 100644 --- a/app-portage/gpyutils/Manifest +++ b/app-portage/gpyutils/Manifest @@ -1 +1,2 @@ DIST gpyutils-0.4.5.tar.gz 20037 BLAKE2B f628c11e0ae2c9bb02a024e1b7dcab7092e7b01c14078683c47a8ca00d71021b988c51d80ab8b322891f9ecd4bb11c7bfe7d300f3bcbe489a977b18244ead085 SHA512 f68c87b5a35aece182bf2f9f93fe89f061dd49b4b75fabb7637038aee1e5301797af1d889a75829048eeb05dda0233461a2f2600e185214600a282cea50d1d3c +DIST gpyutils-0.5.tar.gz 23472 BLAKE2B 7f13be342a28eb27beb530f5f98d1a096f0436c44abbfcc2a413673c2433261d61ba5ac0bd5afba8bd569d2f45f27fda0faf083ce2f00d1f8c0c0651f027cb33 SHA512 80bfe7754876b071fa8e4dcf5523564d7145715ab292c06a31296a344bc7ca298fee6171e2b39dfe5c0b762c1fb8c69ca9040744d39150c80e22fb35e3876808 diff --git a/app-portage/gpyutils/gpyutils-0.5.ebuild b/app-portage/gpyutils/gpyutils-0.5.ebuild new file mode 100644 index 00000000000..07c9616731d --- /dev/null +++ b/app-portage/gpyutils/gpyutils-0.5.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=no +PYTHON_COMPAT=( python3_{8..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.2[${PYTHON_USEDEP}]" + +python_test() { + esetup.py test +}