Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pydyf/
Date: Sun, 22 Aug 2021 08:01:48
Message-Id: 1629619295.dfdf35278b51a5c8f707bc8d0031b13ebfa71cf8.mgorny@gentoo
1 commit: dfdf35278b51a5c8f707bc8d0031b13ebfa71cf8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 22 07:12:38 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 22 08:01:35 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfdf3527
7
8 dev-python/pydyf: Bump to 0.1.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pydyf/Manifest | 1 +
13 dev-python/pydyf/pydyf-0.1.0.ebuild | 33 +++++++++++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/dev-python/pydyf/Manifest b/dev-python/pydyf/Manifest
17 index 7cd4ce00520..1136c900d88 100644
18 --- a/dev-python/pydyf/Manifest
19 +++ b/dev-python/pydyf/Manifest
20 @@ -1 +1,2 @@
21 DIST pydyf-0.0.3.gh.tar.gz 25610 BLAKE2B c236896e56163bb64267e28106a2058f0c6e85e918bd441537df9a494bd7b75c39dda247a0c4b99a918bb439f88a412763975d2d64ab4d8d7cfd0dab2d142f8e SHA512 bc72d5bf93bd4aff653b6496a07278c5ef8b22629f137f9a3dc8713dce4851d2772d4b1ae13d59fa0203c962405f93842e7d5159be1b276632419d6642add149
22 +DIST pydyf-0.1.0.gh.tar.gz 13906 BLAKE2B c0bedd82e363ee3ebef16151ce48da2dc7a7a26ba0c8e92f2ba1b6f2d33833e648fce008eeca4b748e682eeaa8626486eb7a22ac1ecc22714efe046436447857 SHA512 942d786a8091c8a57516c104a17b3089cbe814767c330a352e5f1601d9673e37392aa6679ca0d3eae8e0c5053c1418cac1ccde2a8b886e09577a18c4482f39d6
23
24 diff --git a/dev-python/pydyf/pydyf-0.1.0.ebuild b/dev-python/pydyf/pydyf-0.1.0.ebuild
25 new file mode 100644
26 index 00000000000..0ecfdfd4412
27 --- /dev/null
28 +++ b/dev-python/pydyf/pydyf-0.1.0.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_SETUPTOOLS=pyproject.toml
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="A low-level PDF generator"
40 +HOMEPAGE="
41 + https://pypi.org/project/pydyf/
42 + https://github.com/CourtBouillon/pydyf/"
43 +SRC_URI="
44 + https://github.com/CourtBouillon/pydyf/archive/v${PV}.tar.gz
45 + -> ${P}.gh.tar.gz"
46 +
47 +LICENSE="BSD"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +
51 +BDEPEND="
52 + test? (
53 + app-text/ghostscript-gpl
54 + dev-python/pillow[${PYTHON_USEDEP}]
55 + )"
56 +
57 +distutils_enable_tests pytest
58 +
59 +src_prepare() {
60 + sed -i -e '/addopts/d' pyproject.toml || die
61 + distutils-r1_src_prepare
62 +}