From c80c4f0761386f3472c40b8addcee3d42ce0f8f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Fri, 30 Nov 2012 00:01:47 -0200 Subject: clementine-libre-1.1.1-1.1: fixing issues related to schema-30.sql --- libre/clementine-libre/remove-and-disable-spotify.patch | 8 -------- 1 file changed, 8 deletions(-) (limited to 'libre/clementine-libre/remove-and-disable-spotify.patch') diff --git a/libre/clementine-libre/remove-and-disable-spotify.patch b/libre/clementine-libre/remove-and-disable-spotify.patch index e006e14c5..a9352b275 100755 --- a/libre/clementine-libre/remove-and-disable-spotify.patch +++ b/libre/clementine-libre/remove-and-disable-spotify.patch @@ -121,14 +121,6 @@ diff -rauN clementine-1.1.0/data/data.qrc clementine-libre-1.1.0/data/data.qrc icons/48x48/view-choose.png icons/48x48/view-fullscreen.png icons/48x48/view-media-equalizer.png -@@ -318,7 +314,6 @@ - schema/schema-28.sql - schema/schema-29.sql - schema/schema-2.sql -- schema/schema-30.sql - schema/schema-31.sql - schema/schema-32.sql - schema/schema-33.sql @@ -339,7 +334,6 @@ smartplaylistsearchterm.css songinfo.css -- cgit v1.2.3-2-g168b From 084d0a37c8d0f1a991ce22ccc6d8c3dd8ca12a33 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 26 Dec 2012 22:14:47 -0500 Subject: (scripted) fix file permission breakage introduced in commit d62bd1 I did this with this command: git diff d62bd1^..d62bd1 | egrep '^old mode ' -C1 \ | tr '\n' ' ' | sed 's/diff --git/\n&/g' \ | sed -r 's|^diff --git a/([^ ]*) b/([^ ]*) old mode 100([0-9]*) new mode 100([0-9]*)|chmod \3 ./\1|' \ | bash The first line finds all of the file-permission changes in the commit. The second line squashes some newlines to get one line per file. This line is in the format: diff --git a/FILE b/FILE old mode OLDMODE new mode NEWMODE The third line extracts the values from those lines and transforms the line into: chmod FILE ./OLDMODE The fourth line (obviously) just executes the output. --- libre/clementine-libre/remove-and-disable-spotify.patch | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 libre/clementine-libre/remove-and-disable-spotify.patch (limited to 'libre/clementine-libre/remove-and-disable-spotify.patch') diff --git a/libre/clementine-libre/remove-and-disable-spotify.patch b/libre/clementine-libre/remove-and-disable-spotify.patch old mode 100755 new mode 100644 -- cgit v1.2.3-2-g168b