Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/krop/
Date: Thu, 01 Sep 2016 13:18:48
Message-Id: 1472735906.609ec6733e7c10b6d2a1afee00fa6999bf89ce91.mrueg@gentoo
1 commit: 609ec6733e7c10b6d2a1afee00fa6999bf89ce91
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 1 13:17:51 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 1 13:18:26 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=609ec673
7
8 app-text/krop: Version bump to 0.4.11, add python3 support
9
10 Package-Manager: portage-2.3.0
11
12 app-text/krop/Manifest | 1 +
13 app-text/krop/krop-0.4.11.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/app-text/krop/Manifest b/app-text/krop/Manifest
17 index 7520a52..1103fa1 100644
18 --- a/app-text/krop/Manifest
19 +++ b/app-text/krop/Manifest
20 @@ -1,3 +1,4 @@
21 +DIST krop-0.4.11.tar.gz 35450 SHA256 5dc069afdad722e030037f7cc54bfd8b4ff3990c5600947722303053d2519d0f SHA512 785ac432f7e906ebee167791751b164a0ec30087caef0916bcd95494d7db310949aa4e44569ddaa181daca9c5834b743d3fdc64183093a41e23bb58cbe0d6cae WHIRLPOOL 5c09ddfb50055dc5a5a27e3f21bff1d1a8d7759e60cd488c54538438f83d43cb8254bf4fe0c633a9d7852a27906f3049e5a15c1d6e6ca025d161ac6de7fee778
22 DIST krop-0.4.7.tar.gz 34559 SHA256 fd44f83437ef6a1cb2933ab94e78385f9d7dd7b271d24549eadea700d93b84af SHA512 b38973b2084d1ac05d71e842137793d3569a1d46668e506e8a58eac4f7bd366db177d9f8af8243ed13cfe6f73885e0998ad91a1ded4c02f6d0d0102809476d10 WHIRLPOOL ecdf833981b922de9acee9ddc1467cfc056b91766ef8f4dcfc4b98b5b63fb55924f9df3d6aa3ac99a82ef86f2f8ef608ce7b2d62c52930d059a53b0121932d52
23 DIST krop-0.4.8.tar.gz 34948 SHA256 71668fe54820ad11dc47f8caddc56e0d2553975e768bd724f26fa5f5389b0aab SHA512 440a3dff6c13eb83dc9ccbbcf672a297d66d66fbf9508e3c6ceda3b043868102afb1df3401fcf06adbea1baea92444ad0dfa2fd8e74b2d993c9fe4903c9327a1 WHIRLPOOL 65aa1d73dca26d3522d1bdf75501f25340487529057bdbbaeb90472d0d518e6e54a31e2b9f1f08c6037636cd83c4ef128444c519cafae3346c8e80489d7564dd
24 DIST krop-0.4.9.tar.gz 35149 SHA256 725d42358cc367e6ca4ad82d50fd9bd0bb8ad1e24094ff68880d06f675d59b0f SHA512 39e1d269fb59bbbba45e820ead482a6ac049e47e7d06459a2c63826dc134ada12e49e77468bfb6870f31747084bc8dea1653109232fe6e6808726a8903124565 WHIRLPOOL d4fbada0020ef08381f300faf470e9b1d239c7386999e3a6688c22cbb747f2a721445f7469c6a12918dd3c7711fc45bc00a8792011369f656a44806b1eaa508c
25
26 diff --git a/app-text/krop/krop-0.4.11.ebuild b/app-text/krop/krop-0.4.11.ebuild
27 new file mode 100644
28 index 00000000..04d593f
29 --- /dev/null
30 +++ b/app-text/krop/krop-0.4.11.ebuild
31 @@ -0,0 +1,26 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +PYTHON_COMPAT=( python{2_7,3_4} )
38 +
39 +inherit eutils distutils-r1
40 +
41 +DESCRIPTION="A tool to crop PDF files"
42 +HOMEPAGE="http://arminstraub.com/software/krop"
43 +SRC_URI="http://arminstraub.com/downloads/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="GPL-3"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE=""
49 +
50 +RDEPEND="dev-python/python-poppler-qt4[${PYTHON_USEDEP}]
51 + dev-python/PyPDF2[${PYTHON_USEDEP}]
52 + dev-python/PyQt4[${PYTHON_USEDEP}]"
53 +
54 +src_install() {
55 + distutils-r1_src_install
56 + domenu "${WORKDIR}/${P}/${PN}.desktop"
57 +}