Gentoo Archives: gentoo-commits

From: Dennis Lamm <expeditioneer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: gnome-extra/gnome-shell-extensions/
Date: Fri, 12 Jan 2018 13:31:20
Message-Id: 1515763861.79cc069f5596c42d02da23562466cbf8a0a23d79.expeditioneer@gentoo
1 commit: 79cc069f5596c42d02da23562466cbf8a0a23d79
2 Author: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 12 13:31:01 2018 +0000
4 Commit: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 12 13:31:01 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=79cc069f
7
8 gnome-extra/gnome-shell-extensions: drop old
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.3
11 RepoMan-Options: --force
12
13 .../gnome-shell-extensions-3.20.1.ebuild | 79 ----------------------
14 1 file changed, 79 deletions(-)
15
16 diff --git a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.20.1.ebuild b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.20.1.ebuild
17 deleted file mode 100644
18 index dd09336e..00000000
19 --- a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.20.1.ebuild
20 +++ /dev/null
21 @@ -1,79 +0,0 @@
22 -# Copyright 1999-2016 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -EAPI="5"
27 -GCONF_DEBUG="no"
28 -
29 -inherit gnome2 readme.gentoo
30 -
31 -DESCRIPTION="JavaScript extensions for GNOME Shell"
32 -HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell/Extensions"
33 -
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -IUSE="examples"
37 -KEYWORDS="~amd64 ~x86"
38 -
39 -COMMON_DEPEND="
40 - >=dev-libs/glib-2.26:2
41 - >=gnome-base/libgtop-2.28.3[introspection]
42 - >=app-eselect/eselect-gnome-shell-extensions-20111211
43 -"
44 -RDEPEND="${COMMON_DEPEND}
45 - >=dev-libs/gjs-1.29
46 - dev-libs/gobject-introspection:=
47 - dev-libs/atk[introspection]
48 - gnome-base/gnome-menus:3[introspection]
49 - >=gnome-base/gnome-shell-3.14.2
50 - media-libs/clutter:1.0[introspection]
51 - net-libs/telepathy-glib[introspection]
52 - x11-libs/gdk-pixbuf:2[introspection]
53 - x11-libs/gtk+:3[introspection]
54 - x11-libs/pango[introspection]
55 - x11-themes/adwaita-icon-theme
56 -"
57 -DEPEND="${COMMON_DEPEND}
58 - >=dev-util/intltool-0.50
59 - sys-devel/gettext
60 - virtual/pkgconfig
61 -"
62 -# eautoreconf needs gnome-base/gnome-common
63 -
64 -DISABLE_AUTOFORMATTING="yes"
65 -DOC_CONTENTS="Installed extensions installed are initially disabled by default.
66 -To change the system default and enable some extensions, you can use
67 -# eselect gnome-shell-extensions
68 -
69 -Alternatively, to enable/disable extensions on a per-user basis,
70 -you can use the https://extensions.gnome.org/ web interface, the
71 -gnome-extra/gnome-tweak-tool GUI, or modify the org.gnome.shell
72 -enabled-extensions gsettings key from the command line or a script."
73 -
74 -src_configure() {
75 - gnome2_src_configure --enable-extensions=all
76 -}
77 -
78 -src_install() {
79 - gnome2_src_install
80 -
81 - local example="example@×××××××××××××××××××××××××××××××××××××.com"
82 - if use examples; then
83 - mv "${ED}usr/share/gnome-shell/extensions/${example}" \
84 - "${ED}usr/share/doc/${PF}/" || die
85 - else
86 - rm -r "${ED}usr/share/gnome-shell/extensions/${example}" || die
87 - fi
88 -
89 - readme.gentoo_create_doc
90 -}
91 -
92 -pkg_postinst() {
93 - gnome2_pkg_postinst
94 -
95 - ebegin "Updating list of installed extensions"
96 - eselect gnome-shell-extensions update
97 - eend $?
98 -
99 - readme.gentoo_print_elog
100 -}