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, 31 Oct 2021 07:12:38
Message-Id: 1635664349.714204e4d687aacf10ad00eaa93f83b8ef17d110.mgorny@gentoo
1 commit: 714204e4d687aacf10ad00eaa93f83b8ef17d110
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 31 06:50:45 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 31 07:12:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=714204e4
7
8 dev-python/pydyf: Bump to 0.1.2
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.2.ebuild | 33 +++++++++++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/dev-python/pydyf/Manifest b/dev-python/pydyf/Manifest
17 index 9c7ecabbb48..d42d448827c 100644
18 --- a/dev-python/pydyf/Manifest
19 +++ b/dev-python/pydyf/Manifest
20 @@ -1 +1,2 @@
21 DIST pydyf-0.1.1.gh.tar.gz 14014 BLAKE2B ca95861914d34df1f3e6b805550d9ec620633036ed4413d3e1598a463270ad59d79781923b79b00d36c863452f9726b7f05d39e17362cc75ab6667b6826179e6 SHA512 65b4c6a05bcdc7ed356d4936e2972348508446e3481feb3a736b7353f652edad177ed0c9f88e27c981d593067e1aa46795c3b3d2e857af06eaf0dcde23f4c236
22 +DIST pydyf-0.1.2.gh.tar.gz 14272 BLAKE2B 66e3a9ff2297994f61573fd033a43e1af5bf6b27335b87abdb9b42e469d954cb518faed3707a246c4bb59fd93a769970a0be9dede5c6858b5ce90f264ff4d289 SHA512 d3d9ebc5daed3e1d09de788505888120c907427c44afcb80ebe1e807e25ca95e8f3a76aebc30a33e915667827e396621e1af67216a2e88db3e75fe81c1d933f2
23
24 diff --git a/dev-python/pydyf/pydyf-0.1.2.ebuild b/dev-python/pydyf/pydyf-0.1.2.ebuild
25 new file mode 100644
26 index 00000000000..0ecfdfd4412
27 --- /dev/null
28 +++ b/dev-python/pydyf/pydyf-0.1.2.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 +}