Gentoo Archives: gentoo-commits

From: "Göktürk Yüksek" <gokturk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/sigil/
Date: Mon, 04 Jul 2016 00:05:47
Message-Id: 1467590625.c7710e95b3c238ca8509cfb845fc774392b54761.gokturk@gentoo
1 commit: c7710e95b3c238ca8509cfb845fc774392b54761
2 Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 3 23:41:49 2016 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 4 00:03:45 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7710e95
7
8 app-text/sigil: fix license, remove unused inherit, add missing dep
9
10 - The correct license is GPL-3+ according to [0]
11 - Inherit on eutils isn't required
12 - Missing dep on unzip
13
14 [0] https://github.com/Sigil-Ebook/Sigil/blob/master/src/main.cpp#L10
15
16 Package-Manager: portage-2.2.28
17
18 app-text/sigil/sigil-0.8.7-r1.ebuild | 6 +++---
19 app-text/sigil/sigil-0.9.5-r1.ebuild | 5 +++--
20 2 files changed, 6 insertions(+), 5 deletions(-)
21
22 diff --git a/app-text/sigil/sigil-0.8.7-r1.ebuild b/app-text/sigil/sigil-0.8.7-r1.ebuild
23 index 6b75376..134769c 100644
24 --- a/app-text/sigil/sigil-0.8.7-r1.ebuild
25 +++ b/app-text/sigil/sigil-0.8.7-r1.ebuild
26 @@ -1,4 +1,4 @@
27 -# Copyright 1999-2015 Gentoo Foundation
28 +# Copyright 1999-2016 Gentoo Foundation
29 # Distributed under the terms of the GNU General Public License v2
30 # $Id$
31
32 @@ -7,7 +7,7 @@ CMAKE_MIN_VERSION="3.0"
33
34 # This ebuild could use some python checks, as sigil contains python plugin architecture.
35
36 -inherit eutils cmake-utils
37 +inherit cmake-utils
38
39 MY_PN="Sigil"
40
41 @@ -15,7 +15,7 @@ DESCRIPTION="Sigil is a multi-platform WYSIWYG ebook editor for ePub format"
42 HOMEPAGE="http://sigil-ebook.com/"
43 SRC_URI="https://github.com/Sigil-Ebook/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
44
45 -LICENSE="GPL-3"
46 +LICENSE="GPL-3+"
47 SLOT="0"
48 KEYWORDS="~amd64 ~x86"
49 IUSE=""
50
51 diff --git a/app-text/sigil/sigil-0.9.5-r1.ebuild b/app-text/sigil/sigil-0.9.5-r1.ebuild
52 index 9a890d2..f07c613 100644
53 --- a/app-text/sigil/sigil-0.9.5-r1.ebuild
54 +++ b/app-text/sigil/sigil-0.9.5-r1.ebuild
55 @@ -7,7 +7,7 @@ CMAKE_MIN_VERSION="3.0"
56
57 PYTHON_COMPAT=( python3_4 python3_5 )
58
59 -inherit eutils cmake-utils python-single-r1
60 +inherit cmake-utils python-single-r1
61
62 my_pn="Sigil"
63
64 @@ -15,7 +15,7 @@ DESCRIPTION="Sigil is a multi-platform WYSIWYG ebook editor for ePub format"
65 HOMEPAGE="http://sigil-ebook.com/"
66 SRC_URI="https://github.com/Sigil-Ebook/${my_pn}/releases/download/${PV}/${my_pn}-${PV}-Code.zip"
67
68 -LICENSE="GPL-3"
69 +LICENSE="GPL-3+"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE=""
73 @@ -45,6 +45,7 @@ DEPEND="${RDEPEND}
74 >=sys-devel/gcc-4.8
75 virtual/pkgconfig
76 >=dev-qt/linguist-tools-5.4:5
77 + app-arch/unzip
78 "
79
80 S="${WORKDIR}"