diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-05-24 06:06:59 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-05-24 08:01:02 +0200 |
commit | 440f1dba68b67b1fd1a713eee6ab7415af4046fd (patch) | |
tree | 1a1cb056f41ef010498f2a85aec2d89421d60d94 /dev-python/pydyf | |
parent | dev-python/httpx: Bump to 0.23.0 (diff) | |
download | gentoo-440f1dba68b67b1fd1a713eee6ab7415af4046fd.tar.gz gentoo-440f1dba68b67b1fd1a713eee6ab7415af4046fd.tar.bz2 gentoo-440f1dba68b67b1fd1a713eee6ab7415af4046fd.zip |
dev-python/pydyf: Bump to 0.2.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pydyf')
-rw-r--r-- | dev-python/pydyf/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pydyf/pydyf-0.2.0.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/dev-python/pydyf/Manifest b/dev-python/pydyf/Manifest index 81572c26d3b0..f5a2268bffc3 100644 --- a/dev-python/pydyf/Manifest +++ b/dev-python/pydyf/Manifest @@ -1 +1,2 @@ DIST pydyf-0.1.2.gh.tar.gz 14272 BLAKE2B 66e3a9ff2297994f61573fd033a43e1af5bf6b27335b87abdb9b42e469d954cb518faed3707a246c4bb59fd93a769970a0be9dede5c6858b5ce90f264ff4d289 SHA512 d3d9ebc5daed3e1d09de788505888120c907427c44afcb80ebe1e807e25ca95e8f3a76aebc30a33e915667827e396621e1af67216a2e88db3e75fe81c1d933f2 +DIST pydyf-0.2.0.gh.tar.gz 14530 BLAKE2B 00c696ea191abe111bf0ef098507f34ebaaaee516dc1afc46a194f3e051171ad1854292f5a3fcf1b559945990647ef8cbb308b3afe0dbc05120f15aa74dc8a63 SHA512 276083d8082c5ccc945144b7d2e3ba29f160d5159aa8d27726079dcc09a44a95d5b0f790874425cb41a00b1c22890b435b756b0bbe14ab43e9ad04a8ae2dad0e diff --git a/dev-python/pydyf/pydyf-0.2.0.ebuild b/dev-python/pydyf/pydyf-0.2.0.ebuild new file mode 100644 index 000000000000..dc4dff10ac6b --- /dev/null +++ b/dev-python/pydyf/pydyf-0.2.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 2021-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="A low-level PDF generator" +HOMEPAGE=" + https://pypi.org/project/pydyf/ + https://github.com/CourtBouillon/pydyf/ +" +SRC_URI=" + https://github.com/CourtBouillon/pydyf/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND=" + test? ( + app-text/ghostscript-gpl + dev-python/pillow[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_prepare() { + sed -i -e '/addopts/d' pyproject.toml || die + distutils-r1_src_prepare +} |