Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/chrome-gnome-shell/
Date: Fri, 01 Jan 2021 01:00:00
Message-Id: 1609462707.104a6d1435452e35dc2c63959999613bff8d21ca.mgorny@gentoo
1 commit: 104a6d1435452e35dc2c63959999613bff8d21ca
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 1 00:58:27 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 00:58:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=104a6d14
7
8 gnome-extra/chrome-gnome-shell: Remove old (py3.6)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../chrome-gnome-shell-10-r3.ebuild | 53 ----------------------
13 1 file changed, 53 deletions(-)
14
15 diff --git a/gnome-extra/chrome-gnome-shell/chrome-gnome-shell-10-r3.ebuild b/gnome-extra/chrome-gnome-shell/chrome-gnome-shell-10-r3.ebuild
16 deleted file mode 100644
17 index 1db1d00076b..00000000000
18 --- a/gnome-extra/chrome-gnome-shell/chrome-gnome-shell-10-r3.ebuild
19 +++ /dev/null
20 @@ -1,53 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -PYTHON_COMPAT=( python3_6 )
27 -
28 -inherit cmake-utils python-single-r1
29 -
30 -DESCRIPTION="GNOME Shell integration for Chrome/Chromium, Firefox, Vivaldi, Opera browsers"
31 -HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome"
32 -SRC_URI="mirror://gnome/sources/${PN}/${PV}/${P}.tar.xz"
33 -
34 -LICENSE="GPL-3+"
35 -SLOT="0"
36 -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
37 -IUSE=""
38 -
39 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
40 -
41 -DEPEND="${PYTHON_DEPS}
42 - app-misc/jq
43 - sys-apps/coreutils
44 -"
45 -RDEPEND="${PYTHON_DEPS}
46 - $(python_gen_cond_dep '
47 - dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
48 - dev-python/requests[${PYTHON_MULTI_USEDEP}]
49 - ')
50 - gnome-base/gnome-shell
51 -"
52 -
53 -src_configure() {
54 - local mycmakeargs=( -DBUILD_EXTENSION=OFF )
55 - cmake-utils_src_configure
56 -}
57 -
58 -src_install() {
59 - cmake-utils_src_install
60 -
61 - if [[ $(get_libdir) != "lib" && "${SYMLINK_LIB}" != yes ]]; then
62 - # Workaround www-client/firefox-bin manifests location
63 - # Bug: https://bugs.gentoo.org/643522
64 - insinto /usr/lib/mozilla/native-messaging-hosts
65 - doins "${ED}"/usr/$(get_libdir)/mozilla/native-messaging-hosts/org.gnome.chrome_gnome_shell.json
66 - fi
67 -}
68 -
69 -pkg_postinst() {
70 - elog "Please note that this package provides native messaging connector only."
71 - elog "You can install browser extension using link provided at"
72 - elog "https://extensions.gnome.org website."
73 -}