Hello community,

here is the log from the commit of package subversion for openSUSE:Factory 
checked in at 2014-11-24 11:08:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/subversion (Old)
 and      /work/SRC/openSUSE:Factory/.subversion.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "subversion"

Changes:
--------
--- /work/SRC/openSUSE:Factory/subversion/subversion.changes    2014-11-04 
17:29:18.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.subversion.new/subversion.changes       
2014-11-24 11:09:07.000000000 +0100
@@ -1,0 +2,7 @@
+Thu Nov 20 00:20:00 UTC 2014 - Led <[email protected]>
+
+- fix bashisms in mailer-init.sh script
+- add patches:
+  * subversion-1.8.10-fix-bashisms.patch
+
+-------------------------------------------------------------------

New:
----
  subversion-1.8.10-fix-bashisms.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ subversion.spec ++++++
--- /var/tmp/diff_new_pack.kAOUkX/_old  2014-11-24 11:09:08.000000000 +0100
+++ /var/tmp/diff_new_pack.kAOUkX/_new  2014-11-24 11:09:08.000000000 +0100
@@ -66,6 +66,7 @@
 Patch38:        subversion-1.8.9-allow-httpd-2.4.6.patch
 Patch39:        subversion-fix-parallel-build-support-for-perl-bindings.patch
 Patch40:        subversion-perl-underlinking.patch
+Patch41:        subversion-1.8.10-fix-bashisms.patch
 BuildRequires:  apache2-devel
 BuildRequires:  apache2-prefork
 BuildRequires:  cyrus-sasl-devel
@@ -232,6 +233,7 @@
 %patch38 -p1
 %patch39
 %patch40 -p1
+%patch41 -p1
 
 %build
 # Re-boot strap, needed for patch37


++++++ subversion-1.8.10-fix-bashisms.patch ++++++
From: Oleksandr Chumachenko <[email protected]>
Date: Thu Nov 20 19:44:10 2014 UTC
Subject: [PATCH] Remove bashism in mailer.py test suite
References: http://svn.apache.org/viewvc?view=revision&revision=r1640795
Upstream: committed

* mailer/tests/mailer-init.sh
  Change echo -e to more portable printf

---
 tools/hook-scripts/mailer/tests/mailer-init.sh |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Index: subversion-1.8.10/tools/hook-scripts/mailer/tests/mailer-init.sh
===================================================================
--- subversion-1.8.10.orig/tools/hook-scripts/mailer/tests/mailer-init.sh       
2013-02-25 03:30:54.000000000 +0000
+++ subversion-1.8.10/tools/hook-scripts/mailer/tests/mailer-init.sh    
2014-11-20 19:00:52.000000000 +0000
@@ -101,14 +101,14 @@ echo change C6 >> dir6/file4
 svn commit -m "copy dir, then make a change"
 
 # add a binary file and set property to binary value
-echo -e "\x00\x01\x02\x03\x04" > file11
+printf "\x00\x01\x02\x03\x04\n" > file11
 svn add file11
 svn ps svn:mime-type application/octect-stream file11
 svn ps prop2 -F file11 file9 
 svn commit -m "add binary file"
 
 # change the binary file and set property to non binary value
-echo -e "\x20\x01\x02\x20" > file11
+printf "\x20\x01\x02\x20\n" > file11
 svn ps prop2 propval2 file9 
 svn commit -m "change binary file"
 

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to