[SCM] kde-dev-scripts packaging branch, master, updated. debian/4.14.1-1-2-gf8cd04b

Maximiliano Curia maxy at moszumanska.debian.org
Sat Dec 6 16:29:21 UTC 2014


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-sc/kde-dev-scripts.git;a=commitdiff;h=f8cd04b

The following commit has been merged in the master branch:
commit f8cd04b83804ec0ceb7dfb7c91bdbd126e19f16e
Author: Maximiliano Curia <maxy at debian.org>
Date:   Sat Dec 6 17:29:08 2014 +0100

    New patch: fix_bashism (Closes: #772315)  Thanks to Raphael Geissert.
---
 debian/changelog           |  2 +-
 debian/patches/fix_bashism | 13 +++++++++++++
 debian/patches/series      |  1 +
 3 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index faa234c..167a8ba 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,6 @@
 kde-dev-scripts (4:4.14.1-2~) UNRELEASED; urgency=medium
 
-  * 
+  * New patch: fix_bashism (Closes: #772315)  Thanks to Raphael Geissert.
 
  -- Maximiliano Curia <maxy at debian.org>  Sat, 06 Dec 2014 17:19:39 +0100
 
diff --git a/debian/patches/fix_bashism b/debian/patches/fix_bashism
new file mode 100644
index 0000000..46be4f6
--- /dev/null
+++ b/debian/patches/fix_bashism
@@ -0,0 +1,13 @@
+Index: kde-dev-scripts/cvsaddcurrentdir
+===================================================================
+--- kde-dev-scripts.orig/cvsaddcurrentdir	2014-12-06 17:20:14.388684410 +0100
++++ kde-dev-scripts/cvsaddcurrentdir	2014-12-06 17:21:52.080505302 +0100
+@@ -17,7 +17,7 @@
+ echo
+ read answer"?Add file $file to cvs ? (y/n) " rest
+ #if [ "$answer" != "y" ]; then echo $file; fi
+-if [ "$answer" == "y" ]; then cvs add $file; fi
++if [ "$answer" = "y" ]; then cvs add $file; fi
+ }
+ 
+ 
diff --git a/debian/patches/series b/debian/patches/series
index b164b13..9353a47 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 append_kde.diff
+fix_bashism

-- 
kde-dev-scripts packaging



More information about the pkg-kde-commits mailing list