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 C11251382C5 for ; Sat, 2 Jan 2021 09:16:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E669EE0833; Sat, 2 Jan 2021 09:16:51 +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 CE341E0833 for ; Sat, 2 Jan 2021 09:16:51 +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 D5C8234097F for ; Sat, 2 Jan 2021 09:16:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 47C2DCC for ; Sat, 2 Jan 2021 09:16:49 +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: <1609578586.5364835e5158f644c9beba71945dba7af7aecae5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/atpublic/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/atpublic/Manifest dev-python/atpublic/atpublic-2.1.2.ebuild X-VCS-Directories: dev-python/atpublic/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5364835e5158f644c9beba71945dba7af7aecae5 X-VCS-Branch: master Date: Sat, 2 Jan 2021 09:16:49 +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: f13ae928-1b64-4510-95df-920c0bc7a854 X-Archives-Hash: 8ac903b09ae0a850a9beecb9ad45b1d6 commit: 5364835e5158f644c9beba71945dba7af7aecae5 Author: Michał Górny gentoo org> AuthorDate: Sat Jan 2 08:52:53 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jan 2 09:09:46 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5364835e dev-python/atpublic: Bump to 2.1.2 Signed-off-by: Michał Górny gentoo.org> dev-python/atpublic/Manifest | 1 + dev-python/atpublic/atpublic-2.1.2.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/dev-python/atpublic/Manifest b/dev-python/atpublic/Manifest index a613070f15a..33894b1b4cb 100644 --- a/dev-python/atpublic/Manifest +++ b/dev-python/atpublic/Manifest @@ -1 +1,2 @@ DIST atpublic-1.0.tar.gz 13611 BLAKE2B b5ce4cbbe950943c001e25c3f0c1fe6c25a99a96e4c630844a409cb0ae9a2e7d8fae8d010864364bb2bc948ce78ed17bef5c1f1ca1435faca439f62521bcc719 SHA512 f9e6f7bbbe12d86df5bc849c432e789fb55c6d19b9d6b3fb2462ea38aa8ad6602504a30a95ec14e001f62709ae5e11ae29258b9cb7a71eaa48879f9cb0cb19d8 +DIST atpublic-2.1.2.tar.gz 16298 BLAKE2B c388743e2348b9143926f4c3a5e7908382799b6728d1768fcc5779eae93d45b5741ec080b5255de39be14a2a3a9e2fecc657802f91df1df8e626910582785a9b SHA512 cfde028756f56c7ca83b91e7d8653cee4575fb581669ee02c56a08c92ae2a6c1e51db76b6def1959354d3e931418a4dd09b78236268170d8c79620477836fe08 diff --git a/dev-python/atpublic/atpublic-2.1.2.ebuild b/dev-python/atpublic/atpublic-2.1.2.ebuild new file mode 100644 index 00000000000..81e2361f4d0 --- /dev/null +++ b/dev-python/atpublic/atpublic-2.1.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +inherit distutils-r1 + +DESCRIPTION="A decorator to populate __all__ and the module globals" +HOMEPAGE="https://gitlab.com/warsaw/public" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/typing-extensions[${PYTHON_USEDEP}] + ' python3_7)" +BDEPEND=" + test? ( dev-python/sybil[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest + +src_prepare() { + sed -i -e 's:--cov=public::' setup.cfg || die + distutils-r1_src_prepare +}