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

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:46:28 UTC 2017


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

The following commit has been merged in the master branch:
commit b86773e3df50a3e0ca090445b4ec928f0da06a72
Author: Robin Mills <robin at clanmills.com>
Date:   Fri May 20 15:23:20 2016 +0000

    Code polishing contrib/buildRevisions/buildRevisions.sh
---
 contrib/buildRevisions/buildRevisions.sh | 29 +++++++++++++----------------
 1 file changed, 13 insertions(+), 16 deletions(-)

diff --git a/contrib/buildRevisions/buildRevisions.sh b/contrib/buildRevisions/buildRevisions.sh
index 2c95b2c..c483382 100755
--- a/contrib/buildRevisions/buildRevisions.sh
+++ b/contrib/buildRevisions/buildRevisions.sh
@@ -5,38 +5,35 @@
 # is appropriate for your revision investigation
 
 ##
-# test a sequence of builds
-# to list a list of revisions, use for "r in 3800 3820 3877; do"
-for r in $(seq 3800 100 3899); do
+# test a sequence of build revisions
+# to use a list of revisions, use for "r in 3800 3820 3877; do"
+for r in $(seq 3800 50 3900); do
 	echo ------------- $r begin --------------
 	##
 	# get the code
 	R="../../../$r"
 	if [ -e $R ]; then rm -rf $R ; fi
-	svn export svn://dev.exiv2.org/svn/trunk --revision $r $R | wc
+	svn checkout svn://dev.exiv2.org/svn/trunk --revision $r $R | wc
 	pushd $R
 		##
 		# build and install it
 		echo $PWD
-		make config 2>/dev/null | wc
-		./configure             | wc
-		make -j  2>&1           | wc
-		sudo make install       | wc
-		make -j samples         | wc
+		make config 2>/dev/null  | wc
+		./configure              | wc
+		make -j  2>&1            | wc
+		sudo make install        | wc
+		make -j samples 2>&1     | wc
 		echo build = $(exiv2 -vV | grep -e svn -e dll) $(ls -alt $(which exiv2))
 
 		##
 		# test the build
 		T=tst.tiff
-		curl --silent -O http://dev.exiv2.org/attachments/download/1004/$T
-		exiv2 -v -M"set Exif.Image.Software revision $r" $T
-		exiv2 -pa --grep Software $T
-
+		curl  --silent        -O http://dev.exiv2.org/attachments/download/1004/$T
+		exiv2 --verbose       -M"set Exif.Image.Software revision $r"           $T
+		exiv2 --grep Software -pa                                               $T
 	popd > /dev/null
-	echo ------------- $r end --------------
-	echo ''
+	echo ------------- $r end -------------- $'
'
 done
 
 # That's all Folks!
 ##
-

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list