diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-08-10 04:36:27 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-08-10 04:53:03 +0200 |
commit | ddf21af022440a3e4315cdcaeb507908784a0f90 (patch) | |
tree | 66d2b4856dd7979c0c575aabdbfe0b70c6ccd9f1 /dev-python/cerberus | |
parent | dev-python/dnspython: Bump to 2.4.2 (diff) | |
download | gentoo-ddf21af022440a3e4315cdcaeb507908784a0f90.tar.gz gentoo-ddf21af022440a3e4315cdcaeb507908784a0f90.tar.bz2 gentoo-ddf21af022440a3e4315cdcaeb507908784a0f90.zip |
dev-python/cerberus: Bump to 1.3.5
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/cerberus')
-rw-r--r-- | dev-python/cerberus/Manifest | 1 | ||||
-rw-r--r-- | dev-python/cerberus/cerberus-1.3.5.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/cerberus/Manifest b/dev-python/cerberus/Manifest index a098b2541909..3dcc684d2b2e 100644 --- a/dev-python/cerberus/Manifest +++ b/dev-python/cerberus/Manifest @@ -1 +1,2 @@ DIST cerberus-1.3.4.gh.tar.gz 926258 BLAKE2B 6fabfcf32e26ee7f4881b64ce9c3098a27949d95fd0998e09b7adcc3b834033f904a07b6e9b2cadea218b952142f6c2bc6051d8c208a14d6e8172a0c3823c38b SHA512 c816b426ed1b32367d1e8f1c26d6ddd4b49c6578540e688baf693e3094a05800f645cfe879be6378c1e9be9899cad7bc2ad1ed9844d6762d2ef6e0cc54a7476a +DIST cerberus-1.3.5.gh.tar.gz 921848 BLAKE2B 1f7f1c6804702dea6ab31c3e278a4d769c80c898e786aa7c7f7df0bc212edf07c4026c5dd6adf7ecdcacfd596ec33c3493ec26c3de68bd8254fce56e6532fff7 SHA512 eaa91f229a009770a1750a51e82c34f06dffeebca7af7cafd5ba3a8529502326dd20af1ed7a60fd5e5ed28edb4b974712b1493aa1e330097a8e36ad70c5e4f23 diff --git a/dev-python/cerberus/cerberus-1.3.5.ebuild b/dev-python/cerberus/cerberus-1.3.5.ebuild new file mode 100644 index 000000000000..7bb1dad39937 --- /dev/null +++ b/dev-python/cerberus/cerberus-1.3.5.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2023 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 + +DESCRIPTION="A lightweight and extensible data-validation library for Python" +HOMEPAGE=" + https://docs.python-cerberus.org/ + https://github.com/pyeve/cerberus/ + https://pypi.org/project/Cerberus/ +" +SRC_URI=" + https://github.com/pyeve/cerberus/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +PATCHES=( + "${FILESDIR}"/${PN}-1.3.4-raw_docstrings.patch +) + +EPYTEST_DESELECT=( + # Require currently unpackaged pytest-benchmark, more useful + # to developers than to end users. + cerberus/benchmarks/ +) + +distutils_enable_tests pytest |