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 44A19138334 for ; Sun, 17 Nov 2019 22:41:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 95C91E0896; Sun, 17 Nov 2019 22:41:47 +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 7E21FE0896 for ; Sun, 17 Nov 2019 22:41:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 9A91B34CF2C for ; Sun, 17 Nov 2019 22:41:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 292EC8A2 for ; Sun, 17 Nov 2019 22:41:45 +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: <1574030501.e4b480a7830fd2aead8bf135fb53e2a89c0068ef.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.3.ebuild X-VCS-Directories: app-portage/gpyutils/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e4b480a7830fd2aead8bf135fb53e2a89c0068ef X-VCS-Branch: master Date: Sun, 17 Nov 2019 22:41:45 +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: 35d1c904-adb2-4384-8af9-df9be8adf1c1 X-Archives-Hash: dc32c90297cb6decdd7b883550e24190 commit: e4b480a7830fd2aead8bf135fb53e2a89c0068ef Author: Michał Górny gentoo org> AuthorDate: Sun Nov 17 22:38:25 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Nov 17 22:41:41 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4b480a7 app-portage/gpyutils: Bump to 0.3 Signed-off-by: Michał Górny gentoo.org> app-portage/gpyutils/Manifest | 1 + app-portage/gpyutils/gpyutils-0.3.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/app-portage/gpyutils/Manifest b/app-portage/gpyutils/Manifest index b1e5822808d..d25ab0be63d 100644 --- a/app-portage/gpyutils/Manifest +++ b/app-portage/gpyutils/Manifest @@ -1 +1,2 @@ DIST gpyutils-0.2.2.tar.gz 19646 BLAKE2B b5c24817b8a5ef3122d46330d2311a328ffa9c936878f494586ed62fd9fa9d54210c4edcbd9d07f61af7c27faf410e0abf60943188e8340ea52f06d95359c6b1 SHA512 28ca27b3688b593665037bd7a811014a11b3192bc0acc4568c3e70d13cf7a163b41ba3ffd9d8caaaaf4de2758e1cb68b7dcc255d9fb26ca8448a6bfd6416e66e +DIST gpyutils-0.3.tar.gz 19322 BLAKE2B 0b761139f803e1c36d2d9bc8c8e77a8606697a5f872f8eece4bc130657918e639ff82dd275d4553c92a2f1f8a9fe66687e6dce4de40450af435d52fd1ddb91a1 SHA512 2481ccca1390cf65f7a466c7742869977156eebb5d7ab6fe8a421c53dbe1e971e59fce8b4544396fd8682bf9ce73f245d611f2527725cae7253d68ebd2d9b1a2 diff --git a/app-portage/gpyutils/gpyutils-0.3.ebuild b/app-portage/gpyutils/gpyutils-0.3.ebuild new file mode 100644 index 00000000000..7eef1417fd8 --- /dev/null +++ b/app-portage/gpyutils/gpyutils-0.3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} pypy ) + +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 +}