diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-07-17 08:32:03 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-07-17 09:22:28 +0200 |
commit | 75b035b8b4d3ce41b09e0e6234d54f988a500c93 (patch) | |
tree | 1f619d62500339ed9a2569f79060da1fe8e9702a /dev-python/confuse | |
parent | dev-python/elementpath: Bump to 3.0.0 (diff) | |
download | gentoo-75b035b8b4d3ce41b09e0e6234d54f988a500c93.tar.gz gentoo-75b035b8b4d3ce41b09e0e6234d54f988a500c93.tar.bz2 gentoo-75b035b8b4d3ce41b09e0e6234d54f988a500c93.zip |
dev-python/confuse: Bump to 2.0.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/confuse')
-rw-r--r-- | dev-python/confuse/Manifest | 1 | ||||
-rw-r--r-- | dev-python/confuse/confuse-2.0.0.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/confuse/Manifest b/dev-python/confuse/Manifest index 0686ad0c9d98..a04cc49afb94 100644 --- a/dev-python/confuse/Manifest +++ b/dev-python/confuse/Manifest @@ -1 +1,2 @@ DIST confuse-1.7.0.tar.gz 49171 BLAKE2B f102ed445d4fc259739305f745fea6c1fef90fe4d8eb7b77bb6c370d37929807478df86ad78ffc8fc2fb1d4cd7033d76e34d880d6dab6721b5fd6cc0e7f5d02a SHA512 0da6cb237aa31f63cf6d2df2e90eb27e7b1a81bd126546a4314425b9dc1d9f993232b4787815abaf7ef4b54ef03ac3286c321e6654fdf18f05f92aa69c3da78e +DIST confuse-2.0.0.gh.tar.gz 48269 BLAKE2B 58b96ab65da7b48236b798ad5546a72f0f74934c42525b26b44c0aad08ba4de385dbc2dd6915a4b570b1c4e59003e23119f0da80cf84b1bbc88abb9f72d4d8b1 SHA512 53732ef24903bc464f4cda0c9a2728814ff286c2e2a2150b4703b61f925d5bf77d75b98469a4fb92267caeec736e51d33285264f3fd8daa4adaaf23fa9511733 diff --git a/dev-python/confuse/confuse-2.0.0.ebuild b/dev-python/confuse/confuse-2.0.0.ebuild new file mode 100644 index 000000000000..2a48b8b1241c --- /dev/null +++ b/dev-python/confuse/confuse-2.0.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} pypy3 ) +DISTUTILS_USE_PEP517=flit + +inherit distutils-r1 + +DESCRIPTION="Confuse is a configuration library for Python that uses YAML" +HOMEPAGE=" + https://github.com/beetbox/confuse/ + https://pypi.org/project/confuse/ +" +SRC_URI=" + https://github.com/beetbox/${PN}/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/pyyaml[${PYTHON_USEDEP}] +" + +distutils_enable_tests unittest +distutils_enable_sphinx docs \ + 'dev-python/sphinx_rtd_theme' |