Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/subversion/files: subversion-1.6.2-local_library_preloading.patch
Date: Wed, 04 Nov 2009 11:56:36
Message-Id: E1N5eTa-0003Hq-Od@stork.gentoo.org
1 arfrever 09/11/04 11:56:34
2
3 Modified: subversion-1.6.2-local_library_preloading.patch
4 Log:
5 Backport updates from trunk.
6
7 Revision Changes Path
8 1.3 dev-util/subversion/files/subversion-1.6.2-local_library_preloading.patch
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/subversion/files/subversion-1.6.2-local_library_preloading.patch?rev=1.3&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/subversion/files/subversion-1.6.2-local_library_preloading.patch?rev=1.3&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/subversion/files/subversion-1.6.2-local_library_preloading.patch?r1=1.2&r2=1.3
13
14 Index: subversion-1.6.2-local_library_preloading.patch
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/dev-util/subversion/files/subversion-1.6.2-local_library_preloading.patch,v
17 retrieving revision 1.2
18 retrieving revision 1.3
19 diff -u -r1.2 -r1.3
20 --- subversion-1.6.2-local_library_preloading.patch 22 Jun 2009 21:55:30 -0000 1.2
21 +++ subversion-1.6.2-local_library_preloading.patch 4 Nov 2009 11:56:34 -0000 1.3
22 @@ -97,7 +97,7 @@
23 + eval "$executable=\$executable_dependencies"
24 +done
25 +
26 -+test_paths="$(find subversion/tests -name '*-test' ! -path '*/.libs/*' | sort)"
27 ++test_paths="$(find subversion/tests -mindepth 2 -maxdepth 2 -name '*-test' ! -path '*/.libs/*' | sort)"
28 +for test in $test_paths; do
29 + test_path="$test"
30 + # Dependencies of tests are based on names of directories containing tests
31 @@ -118,7 +118,7 @@
32 +# Usage: sed_append LINE_NUMBER TEXT FILE
33 +sed_append()
34 +{
35 -+ sed -e "$1a\
36 ++ sed -e "$1a\\
37 +$2" "$3" > "$3.new"
38 + mv -f "$3.new" "$3"
39 +}