diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-03-30 06:31:19 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-03-30 06:31:19 +0100 |
commit | f0e3102441039c0515927184f156ff133e90e4d5 (patch) | |
tree | 8907d79a484d14b4039d352a339cc3b24d174755 /dev-python/atpublic | |
parent | app-admin/awscli: Bump to 1.32.74 (diff) | |
download | gentoo-f0e3102441039c0515927184f156ff133e90e4d5.tar.gz gentoo-f0e3102441039c0515927184f156ff133e90e4d5.tar.bz2 gentoo-f0e3102441039c0515927184f156ff133e90e4d5.zip |
dev-python/atpublic: Bump to 4.1.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/atpublic')
-rw-r--r-- | dev-python/atpublic/Manifest | 1 | ||||
-rw-r--r-- | dev-python/atpublic/atpublic-4.1.0.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/atpublic/Manifest b/dev-python/atpublic/Manifest index 2471dfb83b70..0d74e1c5d070 100644 --- a/dev-python/atpublic/Manifest +++ b/dev-python/atpublic/Manifest @@ -1 +1,2 @@ DIST atpublic-4.0.tar.gz 14684 BLAKE2B d8cecb083ca467d2856c0d7ae01dc4e161c31179f08c79d7b0b4650d9a3e32e15673d80d53d6851d70a4605eda8e41ba23d60be452209f96e995d632acfe5b29 SHA512 2f338d3ae11d15e9ffe26881fab1c183154b9a0a7a66532a5eb39d1d48d41548078826875247c94f3853925bc1df2b8f86f4ed94533a8e58aa98de148cf5639c +DIST atpublic-4.1.0.tar.gz 14426 BLAKE2B c535d36b8c4723fa0c36ed543461f8364445c52893e8a5cd6a6bfdec0a387308a74d9f6a9d4c204ac753fcc847a105f6f4a5dc7afa5848d08f0a269af8b01397 SHA512 bd840a44f3f9d8f7099c22d67866744ef43ed4bfa00e0fd8a6a7516e8e995287b234fb97eaf30be494f06a8ff1020c0479533bfe33adc56ae62bd976bd997b4b diff --git a/dev-python/atpublic/atpublic-4.1.0.ebuild b/dev-python/atpublic/atpublic-4.1.0.ebuild new file mode 100644 index 000000000000..2ef8be7fd9b8 --- /dev/null +++ b/dev-python/atpublic/atpublic-4.1.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="A decorator to populate __all__ and the module globals" +HOMEPAGE=" + https://gitlab.com/warsaw/public/ + https://pypi.org/project/atpublic/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~riscv ~x86" + +BDEPEND=" + test? ( + dev-python/sybil[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_prepare() { + sed -i -e '/addopts/d' pyproject.toml || die + distutils-r1_src_prepare +} |