diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-03-27 04:20:24 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-03-27 04:37:00 +0100 |
commit | 68e0cc1bda3211a0d422729c6cd3d57bf9b502b8 (patch) | |
tree | 9fa0085a2522e82ac7aaf1f6f317484d5f2fe4b6 /dev-python/pyasn1-modules | |
parent | dev-python/pyasn1: Bump to 0.6.0 (diff) | |
download | gentoo-68e0cc1bda3211a0d422729c6cd3d57bf9b502b8.tar.gz gentoo-68e0cc1bda3211a0d422729c6cd3d57bf9b502b8.tar.bz2 gentoo-68e0cc1bda3211a0d422729c6cd3d57bf9b502b8.zip |
dev-python/pyasn1-modules: Bump to 0.4.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pyasn1-modules')
-rw-r--r-- | dev-python/pyasn1-modules/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pyasn1-modules/pyasn1-modules-0.4.0.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/pyasn1-modules/Manifest b/dev-python/pyasn1-modules/Manifest index 8c1f986ed2e2..aad6bda511fa 100644 --- a/dev-python/pyasn1-modules/Manifest +++ b/dev-python/pyasn1-modules/Manifest @@ -1 +1,2 @@ DIST pyasn1_modules-0.3.0.tar.gz 307901 BLAKE2B bfcfd1442b3e9cd542d4f47160b54308ff5ab0373394f55007a1a3963342b8217bd89b5b71dba9e4a69071e805610c3060a28df40249c9b8a1898f941d40e35a SHA512 fedcf95e0452e133fc0735a1be29fb5e7df563243203463c66b85d9af6194a550c78a96fec2d915be1aa6b98428f51b6ed4feb7ed3838c515d044fbafeb2cb46 +DIST pyasn1_modules-0.4.0.tar.gz 307859 BLAKE2B 7808c3ad72cda2292fa358a066cb401884a785281c5ba3c28ec5cbf1a7c7408031ff1018f4e0c4e53ac227a6b7082bb5572216ab12074c90f0a3159330ec3f35 SHA512 d28cbb44788b3a33b9da807d273a6afab38ff420e8ce1264a9ebc68beb003f9ac9673210a5eb829d17ed1ae01798f856a0409dcbcd1a17b489c767d4b11467d3 diff --git a/dev-python/pyasn1-modules/pyasn1-modules-0.4.0.ebuild b/dev-python/pyasn1-modules/pyasn1-modules-0.4.0.ebuild new file mode 100644 index 000000000000..f89c4bf10a78 --- /dev/null +++ b/dev-python/pyasn1-modules/pyasn1-modules-0.4.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=setuptools +PYTHON_COMPAT=( python3_{10..12} pypy3 ) + +inherit distutils-r1 pypi + +DESCRIPTION="pyasn1 modules" +HOMEPAGE=" + https://pypi.org/project/pyasn1-modules/ + https://github.com/etingof/pyasn1-modules/ +" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" + +RDEPEND=" + <dev-python/pyasn1-0.7.0[${PYTHON_USEDEP}] + >=dev-python/pyasn1-0.4.6[${PYTHON_USEDEP}] +" + +distutils_enable_tests unittest + +python_install_all() { + distutils-r1_python_install_all + insinto /usr/share/${P} + doins -r tools +} |