[SCM] qtdeclarative packaging branch, experimental, updated. debian/5.2.1-5-19-gb91c243

Lisandro Damián Nicanor Pérez lisandro at moszumanska.debian.org
Thu May 22 02:15:02 UTC 2014


Gitweb-URL: http://git.debian.org/?p=pkg-kde/qt/qtdeclarative.git;a=commitdiff;h=426d089

The following commit has been merged in the experimental branch:
commit 426d0899928ebe45a74d997464e37dabe6b95f35
Author: Lisandro Damián Nicanor Pérez Meyer <perezmeyer at gmail.com>
Date:   Wed May 21 23:12:08 2014 -0300

    Mark private symbols on temporary files.
    
    Donot overwrite the files we ship. We get a diff for that.
---
 debian/mark_private_symbols.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/debian/mark_private_symbols.sh b/debian/mark_private_symbols.sh
index 975f412..14eeecd 100755
--- a/debian/mark_private_symbols.sh
+++ b/debian/mark_private_symbols.sh
@@ -39,7 +39,7 @@ fi
 # Create a backup copy of the original symbols file.
 for symbols_file in `ls debian/*.symbols`
 do
-	cp $symbols_file $symbols_file.orig
+	cp $symbols_file $symbols_file.mps
 done
 
 grep -rh class ${PRIVATE_HEADERS} |
@@ -51,11 +51,11 @@ grep -rh class ${PRIVATE_HEADERS} |
 	while read privateclass 
 	do
 		debug marking ${privateclass} as private
-		sed -i "s/\(.*${privateclass}[^ ]* *[^ ]*\)$/ 1/" debian/*.symbols 
+		sed -i "s/\(.*${privateclass}[^ ]* *[^ ]*\)$/ 1/" debian/*.symbols.mps
 	done 
 
 # Diff the symbols files and output it's differences.
 for symbols_file in `ls debian/*.symbols`
 do
-	diff -Nau $symbols_file.orig $symbols_file
+	diff -Nau $symbols_file $symbols_file.mps
 done

-- 
qtdeclarative packaging



More information about the pkg-kde-commits mailing list