commit: 333e0119e5e3bb1f0b3512304426c3cc9cd57433
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Feb 16 15:21:11 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Feb 17 21:11:16 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=333e0119
dev-python/decopatch: add 1.4.9
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-python/decopatch/Manifest | 1 +
dev-python/decopatch/decopatch-1.4.9.ebuild | 38 +++++++++++++++++++++++++++++
2 files changed, 39 insertions(+)
diff --git a/dev-python/decopatch/Manifest b/dev-python/decopatch/Manifest
index 43090fcf8..b49ed0fc9 100644
--- a/dev-python/decopatch/Manifest
+++ b/dev-python/decopatch/Manifest
@@ -1 +1,2 @@
DIST decopatch-1.4.8.tar.gz 63175 BLAKE2B
41350ad88fe2c77f2e8e698763cb4834afb944cb21ad5b79db7e738d0868d0f4c4075534641429bdf611fab6a651ccb48e1cf3d8b38d1fa3e2849bd60daf9586
SHA512
6ebbfef482bea6c2d7d53c420f685561e1818095277c42bf7252d7e06415ddb50c3a7c255d3d5ad69e8d963a66b0e63821ef7019b94d9a0ea918f757fafa0314
+DIST decopatch-1.4.9.tar.gz 68419 BLAKE2B
bb49ffd093aead65373f6c56955d2dfcdf73f5654acb12ddfbfc0b5c94f9db8e10c70493489cc06a569bef312f04c3e5cb94bbc9e64ba2f75866777fa7721aff
SHA512
2f131bbc485ab177c86abb782cdd0b66b7370a7fb97b62e27da5fb62f3c115ae540eae22a346d8ecb0946216661c111f952d8e22e60b40de21371cd38b93264a
diff --git a/dev-python/decopatch/decopatch-1.4.9.ebuild
b/dev-python/decopatch/decopatch-1.4.9.ebuild
new file mode 100644
index 000000000..99aef5e05
--- /dev/null
+++ b/dev-python/decopatch/decopatch-1.4.9.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+DISTUTILS_USE_PEP517=setuptools
+
+DOCS_BUILDER="mkdocs"
+DOCS_DEPEND="dev-python/mkdocs-material"
+DOCS_DIR="docs"
+
+inherit distutils-r1 docs
+
+DESCRIPTION="Create decorators easily in python"
+HOMEPAGE="https://pypi.org/project/decopatch/
https://github.com/smarie/python-decopatch"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="dev-python/makefun[${PYTHON_USEDEP}]"
+BDEPEND="
+ dev-python/setuptools_scm[${PYTHON_USEDEP}]
+ test? ( dev-python/pytest-cases[${PYTHON_USEDEP}] )
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+ sed "/pytest-runner/d" -i setup.cfg || die
+ distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+ docs_compile
+}