Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-user-docs/
Date: Sat, 25 Jun 2016 19:13:32
Message-Id: 1466881982.4d2afd6a59c6f64a64f7e97455d773c54af6a7e1.pacho@gentoo
1 commit: 4d2afd6a59c6f64a64f7e97455d773c54af6a7e1
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 25 18:47:09 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 25 19:13:02 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d2afd6a
7
8 gnome-extra/gnome-user-docs: Version bump
9
10 Package-Manager: portage-2.3.0_rc1
11
12 gnome-extra/gnome-user-docs/Manifest | 1 +
13 .../gnome-user-docs/gnome-user-docs-3.20.2.ebuild | 41 ++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/gnome-extra/gnome-user-docs/Manifest b/gnome-extra/gnome-user-docs/Manifest
17 index 074955e..283474e 100644
18 --- a/gnome-extra/gnome-user-docs/Manifest
19 +++ b/gnome-extra/gnome-user-docs/Manifest
20 @@ -1 +1,2 @@
21 DIST gnome-user-docs-3.18.1.tar.xz 14213948 SHA256 83e52528de6afe4412679d7fd8c7f8124b07770b4e291592f24e9e50657efae4 SHA512 161fd15f852d5cc2dbffec304d6ab09ae92cd7ff0d457194acd40e530ca34a3b49fa23a6b51542676b53045ea2c7726b2f328a11e295dbc0d13da60b1ff622e0 WHIRLPOOL 855ef6926c1ac89b59910d66a38afa48a6dcc34486bec1c441990e94e379a5d91b806c27ba58b5b116f840149c44fd8ab5743c20716f72422e2c2814d97cebcc
22 +DIST gnome-user-docs-3.20.2.tar.xz 14103132 SHA256 3e998ba05956582219b068e7f7abd9baebf8bc4067c9618d6d0be92c68a5bf32 SHA512 a10b4869922c3f459fb7b6580a845e108881a3083232097ce943ee5afea089667ddd77bf884a62355ab302a32c56fb5b437af1dff3705e44d04375405a79a1d5 WHIRLPOOL 7062dee27898b62d7b2eb61dbaa7698c9171e7c339f5a5a9cdb133d528f12f421e831fa6492548eaee9e984ac50d16552234f9de526f964e90dee077f7c9496a
23
24 diff --git a/gnome-extra/gnome-user-docs/gnome-user-docs-3.20.2.ebuild b/gnome-extra/gnome-user-docs/gnome-user-docs-3.20.2.ebuild
25 new file mode 100644
26 index 0000000..faa69e2
27 --- /dev/null
28 +++ b/gnome-extra/gnome-user-docs/gnome-user-docs-3.20.2.ebuild
29 @@ -0,0 +1,41 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +inherit gnome2
36 +
37 +DESCRIPTION="GNOME end user documentation"
38 +HOMEPAGE="https://git.gnome.org/browse/gnome-user-docs"
39 +
40 +LICENSE="CC-BY-3.0"
41 +SLOT="0"
42 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
43 +IUSE="test"
44 +
45 +RDEPEND=""
46 +DEPEND="
47 + test? ( dev-libs/libxml2 )
48 +"
49 +# eautoreconf requires:
50 +# app-text/yelp-tools
51 +# rebuilding translations requires:
52 +# app-text/yelp-tools
53 +# dev-util/gettext
54 +
55 +# This ebuild does not install any binaries
56 +RESTRICT="binchecks strip"
57 +
58 +src_configure() {
59 + # itstool is only needed for rebuilding translations
60 + # xmllint is only needed for tests
61 + gnome2_src_configure \
62 + $(usex test "" XMLLINT=$(type -P true)) \
63 + ITSTOOL=$(type -P true)
64 +}
65 +
66 +src_compile() {
67 + # Do not compile; "make all" with unset LINGUAS rebuilds all translations,
68 + # which can take > 2 hours on a Core i7.
69 + return
70 +}