dev-python/decopatch: add 1.4.9

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2022-02-16 20:21:11 +05:00
parent bb877d15ee
commit 333e0119e5
2 changed files with 39 additions and 0 deletions

View File

@@ -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

View File

@@ -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
}