Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/grilo/
Date: Fri, 15 Feb 2019 14:52:26
Message-Id: 1550242183.cb2f074f5f64e89c57ba3290b2232c15781b8c95.leio@gentoo
1 commit: cb2f074f5f64e89c57ba3290b2232c15781b8c95
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 15 14:49:43 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 15 14:49:43 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb2f074f
7
8 media-libs/grilo: remove old SLOT=0.2
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 media-libs/grilo/Manifest | 1 -
14 media-libs/grilo/grilo-0.2.15.ebuild | 86 ------------------------------------
15 2 files changed, 87 deletions(-)
16
17 diff --git a/media-libs/grilo/Manifest b/media-libs/grilo/Manifest
18 index c83f9fe1c4c..72c3a6a0463 100644
19 --- a/media-libs/grilo/Manifest
20 +++ b/media-libs/grilo/Manifest
21 @@ -1,2 +1 @@
22 -DIST grilo-0.2.15.tar.xz 627196 BLAKE2B 3277f2588413e364835954f971c986451837b6992858d48273280d511a4d1ef4a8075924aaa3d4426818952e9f4d65c1b2dff7d3e255b2cbf30a8f73f740f91a SHA512 ac0a76d9075e5383fe1a56277b23986a8ec8e86f01f3f782ac7dc79539904712c22295c679243604b619f24088a1210622e0699b5601678264bd7651012ded3e
23 DIST grilo-0.3.6.tar.xz 653864 BLAKE2B 58570975b2c4623b2a43b441c60d88146080327a86018bfd1a37967d35b6389e5102915296ceba1a8ebf23d27a3e4f8d23eeb59555a6c5cd0ca596b5ab674878 SHA512 175cf61a43aea8456a41f4dce7694fac50e854cf6340ed0671f233e6188fa34347c1e7308aac99bc49d081c36747776b9a8c1c5cc7c0be00a1df2c9d015d8849
24
25 diff --git a/media-libs/grilo/grilo-0.2.15.ebuild b/media-libs/grilo/grilo-0.2.15.ebuild
26 deleted file mode 100644
27 index 46a92486b6d..00000000000
28 --- a/media-libs/grilo/grilo-0.2.15.ebuild
29 +++ /dev/null
30 @@ -1,86 +0,0 @@
31 -# Copyright 1999-2015 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="5"
35 -GCONF_DEBUG="no" # --enable-debug only changes CFLAGS
36 -GNOME2_LA_PUNT="yes"
37 -PYTHON_COMPAT=( python2_7 )
38 -VALA_MIN_API_VERSION="0.28"
39 -VALA_USE_DEPEND="vapigen"
40 -
41 -inherit gnome2 python-any-r1 vala
42 -
43 -DESCRIPTION="A framework for easy media discovery and browsing"
44 -HOMEPAGE="https://wiki.gnome.org/Projects/Grilo"
45 -
46 -LICENSE="LGPL-2.1+"
47 -SLOT="0.2/1" # subslot is libgrilo-0.2 soname suffix
48 -KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
49 -
50 -IUSE="gtk examples +introspection +network playlist test vala"
51 -REQUIRED_USE="test? ( introspection )"
52 -
53 -RDEPEND="
54 - >=dev-libs/glib-2.44:2
55 - dev-libs/libxml2:2
56 - net-libs/liboauth
57 - gtk? ( >=x11-libs/gtk+-3:3 )
58 - introspection? ( >=dev-libs/gobject-introspection-0.9:= )
59 - network? ( >=net-libs/libsoup-2.41.3:2.4 )
60 - playlist? ( >=dev-libs/totem-pl-parser-3.4.1 )
61 -"
62 -DEPEND="${RDEPEND}
63 - >=dev-util/gtk-doc-am-1.10
64 - >=dev-util/intltool-0.40
65 - virtual/pkgconfig
66 - vala? ( $(vala_depend) )
67 - test? (
68 - $(python_gen_any_dep '
69 - dev-python/pygobject:2[${PYTHON_USEDEP}]
70 - dev-python/pygobject:3[${PYTHON_USEDEP}]')
71 - media-plugins/grilo-plugins:0.2 )
72 -"
73 -# eautoreconf requires gnome-common
74 -
75 -python_check_deps() {
76 - has_version "dev-python/pygobject:2[${PYTHON_USEDEP}]" && \
77 - has_version "dev-python/pygobject:3[${PYTHON_USEDEP}]"
78 -}
79 -
80 -pkg_setup() {
81 - use test && python-any-r1_pkg_setup
82 -}
83 -
84 -src_prepare() {
85 - # Don't build examples
86 - sed -e '/SUBDIRS/s/examples//' \
87 - -i Makefile.am -i Makefile.in || die
88 -
89 - use vala && vala_src_prepare
90 - gnome2_src_prepare
91 -}
92 -
93 -src_configure() {
94 - # --enable-debug only changes CFLAGS, useless for us
95 - gnome2_src_configure \
96 - --disable-static \
97 - --disable-debug \
98 - $(use_enable gtk test-ui) \
99 - $(use_enable introspection) \
100 - $(use_enable network grl-net) \
101 - $(use_enable playlist grl-pls) \
102 - $(use_enable test tests) \
103 - $(use_enable vala)
104 -}
105 -
106 -src_install() {
107 - gnome2_src_install
108 - # Upstream made this conditional on gtk-doc build...
109 - emake -C doc install DESTDIR="${ED}"
110 -
111 - if use examples; then
112 - # Install example code
113 - insinto /usr/share/doc/${PF}/examples
114 - doins "${S}"/examples/*.c
115 - fi
116 -}