mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
gnome-extra/gnome-browser-connector: Version bump to 42.0
Closes: https://github.com/gentoo/gentoo/pull/26537 Signed-off-by: Yuri Konotopov <ykonotopov@gnome.org> Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
committed by
Matt Turner
parent
03c42903c3
commit
7b0ec8a96d
@@ -1 +1,2 @@
|
||||
DIST chrome-gnome-shell-10.tar.xz 158972 BLAKE2B fe4df942f885aee40d5c5e01dcd127a9deb46aeb57765336c91a7a9c56f7c953eb36d822ffa821300b99e3d765c1b162767fc5debc24e42a16bddb1404796c9c SHA512 cf0d108c3fb57deb4926a4cf043dd64d776eda4c01ec595a1472c6c45726b8460381b9bd7cb1b43d7a5bd8a585be0d1b648c720a2f0a7a377c133b8750e76cd6
|
||||
DIST gnome-browser-connector-v42.0.tar.gz 29652 BLAKE2B 59dde83ea62c7eb8c71f2ea23b4ef0bc0a2178de2236e35b1d6abf7ec0671ef69e923656a9e6c8cecb239a34c0d3b147433e5fec92aeb2d28f7a30387fc91482 SHA512 8679349245bd8f5a29367316fb3cdbd13b4d5f3ed7c8adfc4d83973f86e15de8a1155dda1b155e20ed1a5dccdc7fbbbe22e0c454fcb15fd6cc073ce63ec4c59e
|
||||
|
||||
@@ -0,0 +1,49 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit meson python-single-r1 xdg
|
||||
|
||||
DESCRIPTION="OS-native connector counterpart for GNOME Shell browser extension"
|
||||
HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShellIntegration"
|
||||
SRC_URI="https://gitlab.gnome.org/nE0sIghT/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
|
||||
LICENSE="GPL-3+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
DEPEND="${PYTHON_DEPS}
|
||||
$(python_gen_cond_dep 'dev-python/pygobject:3[${PYTHON_USEDEP}]')
|
||||
"
|
||||
RDEPEND="${DEPEND}
|
||||
gnome-base/gnome-shell
|
||||
"
|
||||
|
||||
src_install() {
|
||||
meson_src_install
|
||||
python_fix_shebang "${D}/usr/bin/${PN}"
|
||||
python_fix_shebang "${D}/usr/bin/${PN}-host"
|
||||
python_optimize
|
||||
|
||||
if [[ $(get_libdir) != "lib" && "${SYMLINK_LIB}" != yes ]]; then
|
||||
# Workaround www-client/firefox-bin manifests location
|
||||
# Bug: https://bugs.gentoo.org/643522
|
||||
insinto /usr/lib/mozilla/native-messaging-hosts
|
||||
for id in chrome_gnome_shell browser_connector; do
|
||||
doins "${ED}/usr/$(get_libdir)/mozilla/native-messaging-hosts/org.gnome.${id}.json"
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_pkg_postinst
|
||||
|
||||
elog "Please note that this package provides OS-native connector only."
|
||||
elog "You can install browser extension using link provided at"
|
||||
elog "https://extensions.gnome.org website."
|
||||
}
|
||||
Reference in New Issue
Block a user