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 3932D138350 for ; Mon, 20 Apr 2020 16:21:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80DD9E0B50; Mon, 20 Apr 2020 16:21:31 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 6C02EE0B50 for ; Mon, 20 Apr 2020 16:21:31 +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 8DB4934F117 for ; Mon, 20 Apr 2020 16:21:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 482412B for ; Mon, 20 Apr 2020 16:21:29 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1587399671.bf479502d643be430d4e7fbffdaa33da893a75cc.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/configclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/configclass/configclass-0.1.0-r1.ebuild X-VCS-Directories: dev-python/configclass/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: bf479502d643be430d4e7fbffdaa33da893a75cc X-VCS-Branch: master Date: Mon, 20 Apr 2020 16:21:29 +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: bc5ee932-5beb-489f-9093-8657befddcef X-Archives-Hash: 123f35ad8983ab6b53ce7ad9767290b8 commit: bf479502d643be430d4e7fbffdaa33da893a75cc Author: Sebastian Pipping gentoo org> AuthorDate: Mon Apr 20 16:20:30 2020 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Mon Apr 20 16:21:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf479502 dev-python/configclass: EAPI 7 + py3[78] Bug: https://bugs.gentoo.org/718636 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-2.3.99, Repoman-2.3.22 dev-python/configclass/configclass-0.1.0-r1.ebuild | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/dev-python/configclass/configclass-0.1.0-r1.ebuild b/dev-python/configclass/configclass-0.1.0-r1.ebuild new file mode 100644 index 00000000000..566b0d4c9a8 --- /dev/null +++ b/dev-python/configclass/configclass-0.1.0-r1.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="A Python to class to hold configuration values" +HOMEPAGE="https://github.com/schettino72/configclass/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-python/mergedict-0.2.0[${PYTHON_USEDEP}]"