[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:06 UTC 2017


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

The following commit has been merged in the master branch:
commit 2e8b0dbb900a60cc4516c70b999dff7ce0bde476
Author: Robin Mills <robin at clanmills.com>
Date:   Sun May 6 05:56:19 2012 +0000

    Adding helper script for test suite on MSVC builds.
---
 test/testMSVC.sh | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/test/testMSVC.sh b/test/testMSVC.sh
new file mode 100755
index 0000000..a121774
--- /dev/null
+++ b/test/testMSVC.sh
@@ -0,0 +1,30 @@
+#!/bin/bash
+
+msvc=$1
+dryrun=$2
+
+if [ -z $msvc ]; then
+	echo usage: $0 \<path-to-msvc-bin\> [dryrun]
+	exit
+fi
+
+if [ ! -z $dryrun ]; then
+	dryrun=echo
+fi
+
+for d in $(find "$msvc" -name exiv2.exe -exec dirname {} ";"); do
+    export EXIV2_BINDIR=$d
+    bar='-----'
+    Bar=$bar
+    for i in $(seq 0 $((${#d}+1))); do Bar+=-; done
+    Bar+=$bar
+    echo $Bar
+    echo $bar $d $bar
+    echo $bar $(cygpath -aw "$msvc") $bar
+    echo $Bar
+    $dryrun make test
+done
+
+# That's all Folks!
+##
+

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list