[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:43:33 UTC 2017


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=00e7138

The following commit has been merged in the master branch:
commit 00e7138f1dac97a459271b349c81aa80628ad4ed
Author: Robin Mills <robin at clanmills.com>
Date:   Thu Nov 22 22:44:32 2012 +0000

    build-test.py: linux fixes.
---
 test/build-test.py | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/test/build-test.py b/test/build-test.py
index c992922..f856a28 100755
--- a/test/build-test.py
+++ b/test/build-test.py
@@ -206,9 +206,12 @@ def main(args):
                     dict[k]=dict[k][0]
                     
         # convert numeric strings to ints
-        dict['dll'  ] = int(dict['dll'])
-        dict['debug'] = int(dict['debug'])
-        dict['bits' ] = int(dict['bits'])
+        debug='debug'
+        dll='dll'
+        bits='bits'
+        dict[dll  ] = int(dict[dll])
+        dict[debug] = int(dict[debug])
+        dict[bits ] = int(dict[bits])
 
         ##
         # analyse the version dictionary
@@ -217,11 +220,9 @@ def main(args):
 
         ##
         # report
-        debug='debug'
-        dll='dll'
         v='Release' if dict[debug]==0 else 'Debug'
         d='DLL'     if dict[dll  ]==0 else ''
-        print "build %dbit %-8s  %-12s looks good" % (dict['bits'],dict['platform'],v+d)
+        print "build %dbit %-8s  %-12s looks good" % (dict[bits],dict['platform'],v+d)
     else:
         error("exiv2 not found!")
 
@@ -229,4 +230,4 @@ if __name__ == '__main__':
     main(sys.argv)
 
 # That's all Folks!
-##
+##
\ No newline at end of file

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list