Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libodfgen/
Date: Thu, 15 Nov 2018 23:13:01
Message-Id: 1542323535.a4068631af7a7b5c8af218a564e5f1b9a764c035.asturm@gentoo
1 commit: a4068631af7a7b5c8af218a564e5f1b9a764c035
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 15 22:30:20 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 15 23:12:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4068631
7
8 app-text/libodfgen: EAPI-7 bump, fix HOMEPAGE, use https for git
9
10 Sync KEYWORDS from 0.1.6
11 Drop obsolete build options
12
13 Package-Manager: Portage-2.3.51, Repoman-2.3.12
14 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
15
16 app-text/libodfgen/libodfgen-9999.ebuild | 29 +++++++++++++----------------
17 1 file changed, 13 insertions(+), 16 deletions(-)
18
19 diff --git a/app-text/libodfgen/libodfgen-9999.ebuild b/app-text/libodfgen/libodfgen-9999.ebuild
20 index 3e7137661d2..03f14c4c702 100644
21 --- a/app-text/libodfgen/libodfgen-9999.ebuild
22 +++ b/app-text/libodfgen/libodfgen-9999.ebuild
23 @@ -1,27 +1,26 @@
24 -# Copyright 1999-2016 Gentoo Foundation
25 +# Copyright 1999-2018 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 -EAPI=6
29 +EAPI=7
30
31 -EGIT_REPO_URI="git://git.code.sf.net/p/libwpd/libodfgen"
32 -[[ ${PV} == 9999 ]] && inherit autotools git-r3
33 +if [[ ${PV} == 9999 ]]; then
34 + EGIT_REPO_URI="https://git.code.sf.net/p/libwpd/libodfgen"
35 + inherit autotools git-r3
36 +else
37 + SRC_URI="mirror://sourceforge/libwpd/${P}.tar.xz"
38 + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
39 +fi
40
41 DESCRIPTION="Library to generate ODF documents from libwpd and libwpg"
42 -HOMEPAGE="http://libwpd.sf.net"
43 -[[ ${PV} == 9999 ]] || SRC_URI="mirror://sourceforge/libwpd/${P}.tar.xz"
44 -
45 +HOMEPAGE="http://libwpd.sourceforge.net/"
46 LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
47 SLOT="0"
48
49 -[[ ${PV} == 9999 ]] || \
50 -KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
51 -
52 IUSE="doc"
53
54 -RDEPEND="
55 - dev-libs/librevenge
56 -"
57 -DEPEND="${RDEPEND}
58 +RDEPEND="dev-libs/librevenge"
59 +DEPEND="${RDEPEND}"
60 +BDEPEND="
61 virtual/pkgconfig
62 doc? ( app-doc/doxygen )
63 "
64 @@ -34,8 +33,6 @@ src_prepare() {
65 src_configure() {
66 econf \
67 --disable-static \
68 - --disable-werror \
69 - --with-sharedptr=c++11 \
70 $(use_with doc docs)
71 }