Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/appstream-glib: appstream-glib-0.4.0.ebuild ChangeLog
Date: Sat, 04 Jul 2015 19:06:02
Message-Id: 20150704190551.D402274B@oystercatcher.gentoo.org
1 pacho 15/07/04 19:05:51
2
3 Modified: ChangeLog
4 Added: appstream-glib-0.4.0.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.23 dev-libs/appstream-glib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/appstream-glib/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/appstream-glib/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/appstream-glib/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/appstream-glib/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 20 Jun 2015 19:18:11 -0000 1.22
24 +++ ChangeLog 4 Jul 2015 19:05:51 -0000 1.23
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/appstream-glib
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/appstream-glib/ChangeLog,v 1.22 2015/06/20 19:18:11 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/appstream-glib/ChangeLog,v 1.23 2015/07/04 19:05:51 pacho Exp $
30 +
31 +*appstream-glib-0.4.0 (04 Jul 2015)
32 +
33 + 04 Jul 2015; Pacho Ramos <pacho@g.o> +appstream-glib-0.4.0.ebuild:
34 + Version bump
35
36 20 Jun 2015; Pacho Ramos <pacho@g.o> appstream-glib-0.3.4.ebuild:
37 sparc keyword, bug #523924
38
39
40
41 1.1 dev-libs/appstream-glib/appstream-glib-0.4.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/appstream-glib/appstream-glib-0.4.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/appstream-glib/appstream-glib-0.4.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: appstream-glib-0.4.0.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/appstream-glib/appstream-glib-0.4.0.ebuild,v 1.1 2015/07/04 19:05:51 pacho Exp $
51
52 EAPI=5
53 GCONF_DEBUG="no"
54 GNOME2_LA_PUNT="yes"
55
56 inherit bash-completion-r1 gnome2
57
58 DESCRIPTION="Provides GObjects and helper methods to read and write AppStream metadata"
59 HOMEPAGE="http://people.freedesktop.org/~hughsient/appstream-glib/"
60 SRC_URI="http://people.freedesktop.org/~hughsient/${PN}/releases/${P}.tar.xz"
61
62 LICENSE="LGPL-2.1"
63 SLOT="0/7"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="+introspection nls"
66
67 # FIXME: yaml is optional with --enable-dep11 but not
68 # properly handled in autofoo bug#????
69 RDEPEND="
70 app-arch/gcab
71 app-arch/libarchive
72 dev-db/sqlite:3
73 >=dev-libs/glib-2.16.1:2
74 >=media-libs/fontconfig-2.11
75 >=media-libs/freetype-2.4:2
76 >=net-libs/libsoup-2.24:2.4
77 >=x11-libs/gdk-pixbuf-2.14:2
78 x11-libs/gtk+:3
79 x11-libs/pango
80 dev-libs/libyaml
81 introspection? ( >=dev-libs/gobject-introspection-0.9.8:= )
82 "
83 DEPEND="${RDEPEND}
84 app-text/docbook-xml-dtd:4.3
85 dev-libs/libxslt
86 >=dev-util/gtk-doc-am-1.9
87 >=dev-util/intltool-0.40
88 >=sys-devel/gettext-0.17
89 "
90 # ${PN} superseeds appdata-tools, require dummy package until all ebuilds
91 # are migrated to appstream-glib
92 RDEPEND="${RDEPEND}
93 !<dev-util/appdata-tools-0.1.8-r1
94 "
95 PDEPEND=">=dev-util/appdata-tools-0.1.8-r1"
96
97 src_configure() {
98 gnome2_src_configure \
99 --enable-builder \
100 --disable-ostree \
101 --disable-rpm \
102 --disable-static \
103 --enable-dep11 \
104 --enable-man \
105 $(use_enable nls) \
106 $(use_enable introspection) \
107 --with-bashcompletiondir="$(get_bashcompdir)"
108 }