summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-12-01 16:09:13 +0100
committerBernard Cafarelli <voyageur@gentoo.org>2023-12-01 22:51:34 +0100
commitd888a8a21589cdd5e1a1aa2a1327ba747e135384 (patch)
tree1527085514733d6f5f71b6eb83dbe1cb14626b9a /app-mobilephone
parentdev-util/shtool: drop 2.0.8-r1 (diff)
downloadgentoo-d888a8a21589cdd5e1a1aa2a1327ba747e135384.tar.gz
gentoo-d888a8a21589cdd5e1a1aa2a1327ba747e135384.tar.bz2
gentoo-d888a8a21589cdd5e1a1aa2a1327ba747e135384.zip
app-mobilephone/scrcpy: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/34078 Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'app-mobilephone')
-rw-r--r--app-mobilephone/scrcpy/files/scrcpy-2.0-desktop.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/app-mobilephone/scrcpy/files/scrcpy-2.0-desktop.patch b/app-mobilephone/scrcpy/files/scrcpy-2.0-desktop.patch
deleted file mode 100644
index 531a4101a53c..000000000000
--- a/app-mobilephone/scrcpy/files/scrcpy-2.0-desktop.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 6706f3ce7f70a3ba5d09279be9c78d358af31e88 Mon Sep 17 00:00:00 2001
-From: Bernard Cafarelli <bernard.cafarelli@gmail.com>
-Date: Tue, 14 Mar 2023 21:48:23 +0100
-Subject: [PATCH] Fix linux desktop files validation
-
-Follow quoting rules from:
-https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html#exec-variables
-Also use /bin/sh for scrpy-console
-
-Fixes #3633 <https://github.com/Genymobile/scrcpy/issues/3633>
----
- app/data/scrcpy-console.desktop | 2 +-
- app/data/scrcpy.desktop | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/app/data/scrcpy-console.desktop b/app/data/scrcpy-console.desktop
-index 47a63ec99..db3d9014c 100644
---- a/app/data/scrcpy-console.desktop
-+++ b/app/data/scrcpy-console.desktop
-@@ -5,7 +5,7 @@ Comment=Display and control your Android device
- # For some users, the PATH or ADB environment variables are set from the shell
- # startup file, like .bashrc or .zshrc… Run an interactive shell to get
- # environment correctly initialized.
--Exec=/bin/bash --norc --noprofile -i -c '"$SHELL" -i -c scrcpy || read -p "Press any key to quit..."'
-+Exec=/bin/sh --norc --noprofile -i -c "\"\\$SHELL\" -i -c scrcpy || read -p 'Press any key to quit...'"
- Icon=scrcpy
- Terminal=true
- Type=Application
-diff --git a/app/data/scrcpy.desktop b/app/data/scrcpy.desktop
-index 082b75e0f..1be86a2ba 100644
---- a/app/data/scrcpy.desktop
-+++ b/app/data/scrcpy.desktop
-@@ -5,7 +5,7 @@ Comment=Display and control your Android device
- # For some users, the PATH or ADB environment variables are set from the shell
- # startup file, like .bashrc or .zshrc… Run an interactive shell to get
- # environment correctly initialized.
--Exec=/bin/sh -c '"$SHELL" -i -c scrcpy'
-+Exec=/bin/sh -c "\"\\$SHELL\" -i -c scrcpy"
- Icon=scrcpy
- Terminal=false
- Type=Application