commit:     8969ab969139d9d097f1f30aa487be0bcc0cab2b
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun May 30 20:40:36 2021 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun May 30 20:40:36 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8969ab96

gnome-extra/gnome-shell-extension-dash-to-panel: Add snapshot for Gnome 40

Add snapshot with preliminar support for Gnome 40

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 .../gnome-shell-extension-dash-to-panel/Manifest   |  1 +
 ...l-extension-dash-to-panel-43_pre20210510.ebuild | 75 ++++++++++++++++++++++
 2 files changed, 76 insertions(+)

diff --git a/gnome-extra/gnome-shell-extension-dash-to-panel/Manifest 
b/gnome-extra/gnome-shell-extension-dash-to-panel/Manifest
index a471ca98414..8d50a0882e9 100644
--- a/gnome-extra/gnome-shell-extension-dash-to-panel/Manifest
+++ b/gnome-extra/gnome-shell-extension-dash-to-panel/Manifest
@@ -1,2 +1,3 @@
 DIST gnome-shell-extension-dash-to-panel-42.tar.gz 21140972 BLAKE2B 
a4f6dc7a3770753f37cabb6c165f51a455a34456de5fe15cbfde1b3018f4aee32cdc6876286bb6e6671430f18f14f7fb370d2059fe6032d85d93b0adacdb9f48
 SHA512 
7746098395513cd2b94166358d2315e581248a2ad35dfa0ee685386633a95aed0897cea17335e73c22cdd81a68900de7718ed34e262614358706e560bbdc3bf8
+DIST gnome-shell-extension-dash-to-panel-43_pre20210510.tar.gz 21139555 
BLAKE2B 
2edd8dc8e16be6186791f7915f75f50abf355455ae54eadf0c9c45bca7b39f035b427027fa06485a004efc07dae37089268e244a911d39d42914619c36e13ced
 SHA512 
db41b1d714a339b24c956805b14484c3be3572b1077c5b5b2f7a91d880a8784e1f02a024d515d40dcc1e65fa2ef60682d029ff6e6891aa2db687382b2b92dfbf
 DIST tango-gentoo-v1.1.tar.gz 29322 BLAKE2B 
83fa2bf37727e60851dd679054fe1b153ebfea58c9a9a40f891f7d68d3b047b02e8effa1d1b4e08d64500a2072ce7200f159c92a352da7124de27e1b05bb6027
 SHA512 
87d47ddab68361db6d99866c51705dcb3e198f8345a1096859acf2c6cca5099dd23c7fb30d124f52c4933ea38fd45fadffbbe6ecbdfa84f5b60938a4824f9045

diff --git 
a/gnome-extra/gnome-shell-extension-dash-to-panel/gnome-shell-extension-dash-to-panel-43_pre20210510.ebuild
 
b/gnome-extra/gnome-shell-extension-dash-to-panel/gnome-shell-extension-dash-to-panel-43_pre20210510.ebuild
new file mode 100644
index 00000000000..b2b8dcec5a8
--- /dev/null
+++ 
b/gnome-extra/gnome-shell-extension-dash-to-panel/gnome-shell-extension-dash-to-panel-43_pre20210510.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit gnome2-utils
+
+MY_PN="${PN/gnome-shell-extension-/}"
+MY_P="${MY_PN}-${PV}"
+DESCRIPTION="An icon taskbar for the Gnome Shell"
+HOMEPAGE="https://github.com/home-sweet-gnome/dash-to-panel";
+COMMIT="3fb7bdb83b69478341ec1568b31ef6829d004715"
+SRC_URI="
+       https://github.com/home-sweet-gnome/${MY_PN}/archive/${COMMIT}.tar.gz 
-> ${P}.tar.gz
+       branding? ( 
https://www.mail-archive.com/tango-artists@lists.freedesktop.org/msg00043/tango-gentoo-v1.1.tar.gz
 )
+"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="branding"
+
+COMMON_DEPEND="dev-libs/glib:2"
+RDEPEND="${COMMON_DEPEND}
+       app-eselect/eselect-gnome-shell-extensions
+       >=gnome-base/gnome-shell-40
+"
+DEPEND="${COMMON_DEPEND}"
+BDEPEND="
+       dev-util/intltool
+       sys-devel/gettext
+"
+
+S="${WORKDIR}/${MY_PN}-${COMMIT}"
+extension_uuid="dash-to-pa...@jderose9.github.com"
+
+src_prepare() {
+       default
+
+       # Set correct version
+       export VERSION="\"${PV}\""
+
+       # Don't install README and COPYING in unwanted locations
+       sed -i -e 's/COPYING//g' -e 's/README.md//g' Makefile || die
+
+       # Provide fancy Gentoo icon when requested
+       use branding && eapply "${FILESDIR}"/${PN}-26-branding.patch
+}
+
+src_install() {
+       default
+       if use branding; then
+               insinto 
/usr/share/gnome-shell/extensions/"${extension_uuid}"/img
+               doins "${WORKDIR}/tango-gentoo-v1.1/scalable/gentoo.svg"
+       fi
+
+       # Install schemas system-wide
+       dodir /usr/share/glib-2.0/schemas
+       mv "${ED}/usr/share/gnome-shell/extensions/${extension_uuid}"/schemas/ 
"${ED}/usr/share/glib-2.0" || die
+       rm "${ED}/usr/share/glib-2.0/schemas/gschemas.compiled" || die
+}
+
+pkg_preinst() {
+       gnome2_schemas_savelist
+}
+
+pkg_postinst() {
+       gnome2_schemas_update
+       ebegin "Updating list of installed extensions"
+       eselect gnome-shell-extensions update
+       eend $?
+}
+
+pkg_postrm() {
+       gnome2_schemas_update
+}

Reply via email to