Balló György pushed to branch main at Arch Linux / Packaging / Packages /
gnome-shell-extension-dash-to-panel
Commits:
68066642 by Balló György at 2024-07-12T14:30:36+02:00
Use git apply instead of patch
- - - - -
3 changed files:
- .SRCINFO
- PKGBUILD
- gnome-shell-extension-dash-to-panel-system-install-paths.patch
Changes:
=====================================
.SRCINFO
=====================================
@@ -12,7 +12,7 @@ pkgbase = gnome-shell-extension-dash-to-panel
source = gnome-shell-extension-dash-to-panel-fix-crash-on-close.patch
source = gnome-shell-extension-dash-to-panel-fix-crash-on-shutdown.patch
b2sums =
6ff7ed4d7a1c4b15458a00b81835f0e901af921be155b8245fad29189ccf6768671d96710e4db1ae5fb72fb55c183f8ad0c17edd2018c1ac6ef60e3f70f36349
- b2sums =
002f42ce10ee78d9feadfed965036600ba4d12904e7ca2d67fda5dbc2c623544fab5c8df644ea371b65dccee1a676d4841ca20e7d0bf04a9ef3e5926feef96f6
+ b2sums =
710fc53e3f8a8f783261707ec2d9281ab2f8544f4def5fd373738999195c9a76f810cdce1b57711e5f76540d29bd115412ccfb15c072cb11c63d95ee3e9efe69
b2sums =
d899985e4a704196463e33808880dccb1227cfb6a5ef0ec3ca1dc8d392299d13842338f7e90ad1f3a89670cacbb7083c7b3b5c429ea245ac6545853c574a6e4d
b2sums =
4cdf88aa2a67d6ef86d9311fab2f26b52d53fa92c53562c93cb7633b7803b9e9fdff5c5ea2a1958f91390f184ee3501c56ac4576b517149dae5324e54e4e248e
=====================================
PKGBUILD
=====================================
@@ -17,7 +17,7 @@
source=("git+https://github.com/home-sweet-gnome/dash-to-panel.git#tag=v$pkgver"
'gnome-shell-extension-dash-to-panel-fix-crash-on-close.patch'
'gnome-shell-extension-dash-to-panel-fix-crash-on-shutdown.patch')
b2sums=('6ff7ed4d7a1c4b15458a00b81835f0e901af921be155b8245fad29189ccf6768671d96710e4db1ae5fb72fb55c183f8ad0c17edd2018c1ac6ef60e3f70f36349'
-
'002f42ce10ee78d9feadfed965036600ba4d12904e7ca2d67fda5dbc2c623544fab5c8df644ea371b65dccee1a676d4841ca20e7d0bf04a9ef3e5926feef96f6'
+
'710fc53e3f8a8f783261707ec2d9281ab2f8544f4def5fd373738999195c9a76f810cdce1b57711e5f76540d29bd115412ccfb15c072cb11c63d95ee3e9efe69'
'd899985e4a704196463e33808880dccb1227cfb6a5ef0ec3ca1dc8d392299d13842338f7e90ad1f3a89670cacbb7083c7b3b5c429ea245ac6545853c574a6e4d'
'4cdf88aa2a67d6ef86d9311fab2f26b52d53fa92c53562c93cb7633b7803b9e9fdff5c5ea2a1958f91390f184ee3501c56ac4576b517149dae5324e54e4e248e')
@@ -28,13 +28,13 @@ prepare() {
git cherry-pick -n -m 1 v62..9d0d870b89fbbaba369b59e81ec0e6015f9ce6f2
# https://github.com/home-sweet-gnome/dash-to-panel/pull/1948
- patch -Np1 -i
../gnome-shell-extension-dash-to-panel-system-install-paths.patch
+ git apply -3
../gnome-shell-extension-dash-to-panel-system-install-paths.patch
# https://github.com/home-sweet-gnome/dash-to-panel/pull/1969
- patch -Np1 -i ../gnome-shell-extension-dash-to-panel-fix-crash-on-close.patch
+ git apply -3 ../gnome-shell-extension-dash-to-panel-fix-crash-on-close.patch
# https://github.com/home-sweet-gnome/dash-to-panel/pull/2134
- patch -Np1 -i
../gnome-shell-extension-dash-to-panel-fix-crash-on-shutdown.patch
+ git apply -3
../gnome-shell-extension-dash-to-panel-fix-crash-on-shutdown.patch
}
build() {
=====================================
gnome-shell-extension-dash-to-panel-system-install-paths.patch
=====================================
@@ -1,7 +1,22 @@
-diff -up dash-to-panel-55/Makefile.orig dash-to-panel-55/Makefile
---- dash-to-panel-55/Makefile.orig 2023-03-09 16:32:54.000000000 +0100
-+++ dash-to-panel-55/Makefile 2023-03-15 13:42:54.227368912 +0100
-@@ -10,9 +10,12 @@ EXTRA_IMAGES = highlight_stacked_bg.svg
+From 47be063acebb5646853508a045092ddaa7776498 Mon Sep 17 00:00:00 2001
+From: Dominik 'Rathann' Mierzejewski <[email protected]>
+Date: Thu, 16 Mar 2023 11:57:13 +0100
+Subject: [PATCH] Makefile: support system-wide installation.
+
+System-wide installation should install locale/ and gsettings schema in
+system directory. This enables override supports, locale stripping and
+not shipping pre-compiled schema file.
+
+Cherry-picked-from:
micheleg/dash-to-dock@4dd565dad920ce44303635b550a39bbdbe34fb70
+---
+ Makefile | 9 +++++++++
+ 1 file changed, 9 insertions(+)
+
+diff --git a/Makefile b/Makefile
+index 52bbefae..7275095f 100644
+--- a/Makefile
++++ b/Makefile
+@@ -10,9 +10,12 @@ EXTRA_IMAGES = highlight_stacked_bg.svg
highlight_stacked_bg_2.svg highlight_sta
TOLOCALIZE = prefs.js appIcons.js
MSGSRC = $(wildcard po/*.po)
ifeq ($(strip $(DESTDIR)),)
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/gnome-shell-extension-dash-to-panel/-/commit/680666429d8ed3aa7219bebf25dd0f86e1e7a3d5
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/gnome-shell-extension-dash-to-panel/-/commit/680666429d8ed3aa7219bebf25dd0f86e1e7a3d5
You're receiving this email because of your account on gitlab.archlinux.org.