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: media-gfx/img2pdf/
Date: Sat, 06 Oct 2018 21:23:10
Message-Id: 1538860982.9d70a99fd62de058f9f62aa4aa5acfdef505f6f5.mgorny@gentoo
1 commit: 9d70a99fd62de058f9f62aa4aa5acfdef505f6f5
2 Author: Diogo Pereira <sir.suriv <AT> gmail <DOT> com>
3 AuthorDate: Sat Oct 6 12:51:17 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 6 21:23:02 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d70a99f
7
8 media-gfx/img2pdf: version bump to 0.3.1
9
10 Signed-off-by: Diogo Pereira <sir.suriv <AT> gmail.com>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
13 Closes: https://github.com/gentoo/gentoo/pull/9941
14
15 media-gfx/img2pdf/Manifest | 1 +
16 media-gfx/img2pdf/img2pdf-0.3.1.ebuild | 25 +++++++++++++++++++++++++
17 2 files changed, 26 insertions(+)
18
19 diff --git a/media-gfx/img2pdf/Manifest b/media-gfx/img2pdf/Manifest
20 index 6da4aa1c4e7..7993869d21f 100644
21 --- a/media-gfx/img2pdf/Manifest
22 +++ b/media-gfx/img2pdf/Manifest
23 @@ -1 +1,2 @@
24 DIST img2pdf-0.2.4.tar.gz 54426 BLAKE2B c645d61ee8eb950bfb15337a2d2be724efe9fdf40ba7b211c9882ea14ec34aa977358e0550a732bf770d9539e7b8f8f0dfe045fa7fe8ce0cd0c1311be570cc23 SHA512 c2d99da7076411cf4acabe8929fc8af4005ef1f3e3d9edc953f2731b8d41159c9e4637a803765e1405c595daebfb3d519d4c7903003ce0118d8b0c6e88f11860
25 +DIST img2pdf-0.3.1.tar.gz 67954 BLAKE2B d0d6a9927e9b3e7087e562a108157677a46a17a896beddcc424dd2c234fd7c4f1376b824dbf814b42d9a314a8495b149bc9df65ab2864405b9dde0054e7bafdf SHA512 25f788f78e93ed336ed8e31e88350d89263b82477c8d9c36103dfa522a5e661922fc09b59e1d5104161fe1be15114f843172555efa942722d8b093900d38bae1
26
27 diff --git a/media-gfx/img2pdf/img2pdf-0.3.1.ebuild b/media-gfx/img2pdf/img2pdf-0.3.1.ebuild
28 new file mode 100644
29 index 00000000000..9e0dd786423
30 --- /dev/null
31 +++ b/media-gfx/img2pdf/img2pdf-0.3.1.ebuild
32 @@ -0,0 +1,25 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +PYTHON_COMPAT=( python3_{4,5,6} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Losslessly convert raster images to PDF"
43 +HOMEPAGE="https://gitlab.mister-muffin.de/josch/img2pdf"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="LGPL-3+"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +IUSE="test"
50 +
51 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
52 + test? ( dev-python/pdfrw[${PYTHON_USEDEP}] )"
53 +RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
54 +
55 +python_test() {
56 + esetup.py test
57 +}