Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/img2pdf/
Date: Sun, 03 Feb 2019 14:08:27
Message-Id: 1549202874.f47abe773d4a432e19357b92129d584dd66f7e60.asturm@gentoo
1 commit: f47abe773d4a432e19357b92129d584dd66f7e60
2 Author: Diogo Pereira <sir.suriv <AT> gmail <DOT> com>
3 AuthorDate: Mon Jan 28 00:41:03 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 3 14:07:54 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f47abe77
7
8 media-gfx/img2pdf: version bump to 0.3.3
9
10 Closes: https://bugs.gentoo.org/675834
11 Closes: https://bugs.gentoo.org/676100
12
13 Signed-off-by: Diogo Pereira <sir.suriv <AT> gmail.com>
14 Package-Manager: Portage-2.3.51, Repoman-2.3.11
15 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
16
17 media-gfx/img2pdf/Manifest | 1 +
18 media-gfx/img2pdf/img2pdf-0.3.3.ebuild | 28 ++++++++++++++++++++++++++++
19 2 files changed, 29 insertions(+)
20
21 diff --git a/media-gfx/img2pdf/Manifest b/media-gfx/img2pdf/Manifest
22 index fe7314c8992..84eb6ab0054 100644
23 --- a/media-gfx/img2pdf/Manifest
24 +++ b/media-gfx/img2pdf/Manifest
25 @@ -1 +1,2 @@
26 DIST img2pdf-0.3.1.tar.gz 67954 BLAKE2B d0d6a9927e9b3e7087e562a108157677a46a17a896beddcc424dd2c234fd7c4f1376b824dbf814b42d9a314a8495b149bc9df65ab2864405b9dde0054e7bafdf SHA512 25f788f78e93ed336ed8e31e88350d89263b82477c8d9c36103dfa522a5e661922fc09b59e1d5104161fe1be15114f843172555efa942722d8b093900d38bae1
27 +DIST img2pdf-0.3.3.tar.gz 80523 BLAKE2B 39e372f1ab82d9f521cf2c512b173680afe6463dd041283b336af49c41b12d12261fe5947ad9f03d489b7898d3c8d161faedb2b3366cb75bd1bc0666f905f60c SHA512 234e0031d75727d2f5d2b82603bb447d9101ace81e604b6d5eb358d0b4681e209dbd737775b90b44096cf84239aac9e87e2369e0c6112a17f24ccbf10a20cdd5
28
29 diff --git a/media-gfx/img2pdf/img2pdf-0.3.3.ebuild b/media-gfx/img2pdf/img2pdf-0.3.3.ebuild
30 new file mode 100644
31 index 00000000000..9436b9466cc
32 --- /dev/null
33 +++ b/media-gfx/img2pdf/img2pdf-0.3.3.ebuild
34 @@ -0,0 +1,28 @@
35 +# Copyright 1999-2019 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=6
39 +
40 +PYTHON_COMPAT=( python3_{4,5,6} )
41 +
42 +inherit distutils-r1
43 +
44 +DESCRIPTION="Losslessly convert raster images to PDF"
45 +HOMEPAGE="https://gitlab.mister-muffin.de/josch/img2pdf"
46 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 +
48 +LICENSE="LGPL-3+"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +IUSE="test"
52 +
53 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
54 + test? (
55 + dev-python/pdfrw[${PYTHON_USEDEP}]
56 + dev-python/pillow[${PYTHON_USEDEP},tiff,zlib]
57 + )"
58 +RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
59 +
60 +python_test() {
61 + esetup.py test
62 +}