diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-08-22 23:38:14 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-08-22 23:40:30 +0200 |
commit | e453aaa94e7f45554af9dae13afb69043affa92a (patch) | |
tree | 1a8f53f9d6dcd4a73cf2da50359736c864c87bde /dev-python/pydyf | |
parent | dev-python/django-mptt: Bump to 0.13.1 (diff) | |
download | gentoo-e453aaa94e7f45554af9dae13afb69043affa92a.tar.gz gentoo-e453aaa94e7f45554af9dae13afb69043affa92a.tar.bz2 gentoo-e453aaa94e7f45554af9dae13afb69043affa92a.zip |
dev-python/pydyf: Bump to 0.1.1
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.1.1.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/dev-python/pydyf/Manifest b/dev-python/pydyf/Manifest index 1136c900d882..2fa3136e98eb 100644 --- a/dev-python/pydyf/Manifest +++ b/dev-python/pydyf/Manifest @@ -1,2 +1,3 @@ DIST pydyf-0.0.3.gh.tar.gz 25610 BLAKE2B c236896e56163bb64267e28106a2058f0c6e85e918bd441537df9a494bd7b75c39dda247a0c4b99a918bb439f88a412763975d2d64ab4d8d7cfd0dab2d142f8e SHA512 bc72d5bf93bd4aff653b6496a07278c5ef8b22629f137f9a3dc8713dce4851d2772d4b1ae13d59fa0203c962405f93842e7d5159be1b276632419d6642add149 DIST pydyf-0.1.0.gh.tar.gz 13906 BLAKE2B c0bedd82e363ee3ebef16151ce48da2dc7a7a26ba0c8e92f2ba1b6f2d33833e648fce008eeca4b748e682eeaa8626486eb7a22ac1ecc22714efe046436447857 SHA512 942d786a8091c8a57516c104a17b3089cbe814767c330a352e5f1601d9673e37392aa6679ca0d3eae8e0c5053c1418cac1ccde2a8b886e09577a18c4482f39d6 +DIST pydyf-0.1.1.gh.tar.gz 14014 BLAKE2B ca95861914d34df1f3e6b805550d9ec620633036ed4413d3e1598a463270ad59d79781923b79b00d36c863452f9726b7f05d39e17362cc75ab6667b6826179e6 SHA512 65b4c6a05bcdc7ed356d4936e2972348508446e3481feb3a736b7353f652edad177ed0c9f88e27c981d593067e1aa46795c3b3d2e857af06eaf0dcde23f4c236 diff --git a/dev-python/pydyf/pydyf-0.1.1.ebuild b/dev-python/pydyf/pydyf-0.1.1.ebuild new file mode 100644 index 000000000000..0ecfdfd4412d --- /dev/null +++ b/dev-python/pydyf/pydyf-0.1.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_SETUPTOOLS=pyproject.toml +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 +} |