Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libgfbgraph/
Date: Mon, 24 Jan 2022 22:43:40
Message-Id: 1643064174.953681db1540cc5bfa6707cd75e888558dfb9b2a.mattst88@gentoo
1 commit: 953681db1540cc5bfa6707cd75e888558dfb9b2a
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 24 21:09:37 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 24 22:42:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=953681db
7
8 net-libs/libgfbgraph: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 net-libs/libgfbgraph/Manifest | 1 -
13 net-libs/libgfbgraph/libgfbgraph-0.2.4.ebuild | 54 ---------------------------
14 2 files changed, 55 deletions(-)
15
16 diff --git a/net-libs/libgfbgraph/Manifest b/net-libs/libgfbgraph/Manifest
17 index d1d22499dfad..ead3b0e1861b 100644
18 --- a/net-libs/libgfbgraph/Manifest
19 +++ b/net-libs/libgfbgraph/Manifest
20 @@ -1,2 +1 @@
21 -DIST gfbgraph-0.2.4.tar.xz 39520 BLAKE2B 71ce5a091b5ab7d27b7b5353ff76cb67c90a358371f1afe41a561bab195c7e01353854fbd28c3970c3179ded24daf41f7150f70b5efcb1c81aac89de9fed2c88 SHA512 e6d63e56f4d67b59b0abbfb9dfe3aad8b142023413246015a84078c76f631eaa6e9fa7eb5771f64156ea01e160eb07b17783059e449036b372b4bcb26751ff68
22 DIST gfbgraph-0.2.5.tar.xz 283632 BLAKE2B 7a229e098623613c3c758dd7d9d4802cf82a6b8c7f6c81ad8de2392597d13b6db9978ef1794321aa6915f9065dca030e58ef1569d64f956a7048846e996cea23 SHA512 c3a1168935272377c211d95e4efcb8ed56d129589bcaa6e0d7b5dff7ca916f0c63dc30eb1a903aea3de51cb109ae787e985bdd9485fb97cd1b5b6971bea01a1e
23
24 diff --git a/net-libs/libgfbgraph/libgfbgraph-0.2.4.ebuild b/net-libs/libgfbgraph/libgfbgraph-0.2.4.ebuild
25 deleted file mode 100644
26 index f3649d47e702..000000000000
27 --- a/net-libs/libgfbgraph/libgfbgraph-0.2.4.ebuild
28 +++ /dev/null
29 @@ -1,54 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -GNOME_ORG_MODULE="gfbgraph"
35 -GNOME2_EAUTORECONF="yes"
36 -
37 -inherit gnome2
38 -
39 -DESCRIPTION="A GObject library for Facebook Graph API"
40 -HOMEPAGE="https://gitlab.gnome.org/GNOME/libgfbgraph/"
41 -
42 -LICENSE="LGPL-2.1+"
43 -SLOT="0.2"
44 -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
45 -IUSE="+introspection"
46 -
47 -DEPEND="
48 - dev-libs/glib:2
49 - dev-libs/json-glib[introspection?]
50 - net-libs/libsoup:2.4[introspection?]
51 - net-libs/gnome-online-accounts
52 - net-libs/rest:0.7[introspection?]
53 - introspection? ( >=dev-libs/gobject-introspection-1.30:= )
54 -"
55 -RDEPEND="${DEPEND}"
56 -BDEPEND="
57 - dev-util/gtk-doc
58 - >=dev-util/gtk-doc-am-1.14
59 - virtual/pkgconfig
60 -"
61 -# gtk-doc needed for autoreconf
62 -
63 -src_prepare() {
64 - # Test requires a credentials.ini file.
65 - # https://gitlab.gnome.org/GNOME/libgfbgraph/-/issues/7#note_802926
66 - sed -i -e 's:TESTS = gtestutils:TESTS =:' tests/Makefile.am || die
67 -
68 - gnome2_src_prepare
69 -}
70 -
71 -src_configure() {
72 - gnome2_src_configure \
73 - --disable-static \
74 - $(use_enable introspection)
75 -}
76 -
77 -src_install() {
78 - gnome2_src_install
79 - # Remove files installed in the wrong place
80 - # Also, already done by portage
81 - # https://bugzilla.gnome.org/show_bug.cgi?id=752581
82 - rm -rf "${ED}"/usr/doc
83 -}