Your message dated Mon, 25 Feb 2013 14:49:49 +0000
with message-id <e1u9znf-0000oj...@franck.debian.org>
and subject line Bug#699785: fixed in virtuoso-opensource 6.1.4+dfsg1-6
has caused the Debian Bug report #699785,
regarding virtuoso-opensource: may FTBFS depending on time of day
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
699785: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=699785
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:virtuoso-opensource
Version: 6.1.4+dfsg1-5
Control: found -1 6.1.4+dfsg1-1
Control: tags -1 + patch
User: debian-...@lists.debian.org
Usertags: kfreebsd
X-Debbugs-Cc: debian-...@lists.debian.org
Severity: serious
Justification: fails to build from source (but built successfully in the
past)

Hi,

The testsuite may hang forever during build depending on the time of
day.  Some infinite 'while true' loops rely on an incorrectly calculated
timeout, which fails if the current minute wraps around past 59 at the
start of a new hour.

The mistake is repeated in many parts of the test suite, and is more
likely to happen on arches where the test suite runs slowly.  On
kfreebsd-* it has caused some serious issues for the buildds.

Please see the attached patch, which replaces the timeouts (based on a
clock 'MM:SS' calculation), with simple loops limited by the number of
iterations (since each iteration sleeps for a fixed duration already).

I have tested it on kfreebsd-amd64.

Thank you.

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing'), (1, 'experimental')
Architecture: kfreebsd-amd64 (x86_64)

Kernel: kFreeBSD 9.0-2-amd64-xenhvm
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Author: Steven Chamberlain <ste...@pyro.eu.org>
Description: This patch avoids FTBFS due to wrong calculation of timeout
 If the current minute or second wraps around past 59, the timeout
 calculation is wrong, and may get stuck forever.  Since this happens
 in many parts of the testsuite it meant considerable risk of FTBFS.

Index: virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Addressbook/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/appsrc/ODS-Addressbook/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Addressbook/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -102,7 +102,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting $SERVER start on port $PORT..."
@@ -113,17 +113,9 @@
       LOG "PASSED: $SERVER successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start $SERVER within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Blog/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/appsrc/ODS-Blog/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Blog/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -121,7 +121,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting $SERVER start on port $PORT..."
@@ -132,17 +132,9 @@
       LOG "PASSED: $SERVER successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start $SERVER within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Bookmark/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/appsrc/ODS-Bookmark/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Bookmark/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -106,7 +106,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting $SERVER start on port $PORT..."
@@ -117,17 +117,9 @@
       LOG "PASSED: $SERVER successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start $SERVER within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Briefcase/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/appsrc/ODS-Briefcase/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Briefcase/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -122,7 +122,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting $SERVER start on port $PORT..."
@@ -133,17 +133,9 @@
       LOG "PASSED: $SERVER successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start $SERVER within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Calendar/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/appsrc/ODS-Calendar/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Calendar/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -105,7 +105,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting $SERVER start on port $PORT..."
@@ -116,17 +116,9 @@
       LOG "PASSED: $SERVER successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start $SERVER within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Community/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/appsrc/ODS-Community/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Community/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -109,7 +109,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting $SERVER start on port $PORT..."
@@ -120,17 +120,9 @@
       LOG "PASSED: $SERVER successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start $SERVER within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Discussion/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/appsrc/ODS-Discussion/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Discussion/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -119,7 +119,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting Virtuoso Server start on port $PORT..."
@@ -130,17 +130,9 @@
       LOG "PASSED: Virtuoso Server successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start Virtuoso Server within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-FeedManager/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/appsrc/ODS-FeedManager/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-FeedManager/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -105,7 +105,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting $SERVER start on port $PORT..."
@@ -116,17 +116,9 @@
       LOG "PASSED: $SERVER successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start $SERVER within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Framework/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/appsrc/ODS-Framework/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Framework/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -147,7 +147,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting $SERVER start on port $PORT..."
@@ -158,17 +158,9 @@
       LOG "PASSED: $SERVER successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start $SERVER within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Framework/oauth/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/appsrc/ODS-Framework/oauth/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Framework/oauth/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -197,7 +197,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting Virtuoso Server start on port $PORT..."
@@ -208,17 +208,9 @@
       LOG "PASSED: Virtuoso Server successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start Virtuoso Server within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 virtuoso_shutdown() {
Index: virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Gallery/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/appsrc/ODS-Gallery/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Gallery/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -109,7 +109,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting $SERVER start on port $PORT..."
@@ -120,17 +120,9 @@
       LOG "PASSED: $SERVER successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start $SERVER within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Polls/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/appsrc/ODS-Polls/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Polls/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -104,7 +104,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting $SERVER start on port $PORT..."
@@ -115,17 +115,9 @@
       LOG "PASSED: $SERVER successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start $SERVER within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-WebMail/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/appsrc/ODS-WebMail/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-WebMail/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -105,7 +105,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting $SERVER start on port $PORT..."
@@ -116,17 +116,9 @@
       LOG "PASSED: $SERVER successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start $SERVER within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Wiki/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/appsrc/ODS-Wiki/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/appsrc/ODS-Wiki/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -140,7 +140,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true 
+  for i in $(seq 1 15) 
   do
     sleep 4
     echo "Waiting Virtuoso Server start on port $PORT..."
@@ -151,17 +151,9 @@
       LOG "PASSED: Virtuoso Server successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start Virtuoso Server within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/b3s/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/b3s/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/b3s/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -213,7 +213,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting Virtuoso Server start on port $PORT..."
@@ -224,17 +224,9 @@
       LOG "PASSED: Virtuoso Server successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start Virtuoso Server within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 virtuoso_shutdown() {
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/bpel/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/bpel/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/bpel/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -263,7 +263,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting Virtuoso Server start on port $PORT..."
@@ -274,17 +274,9 @@
       LOG "PASSED: Virtuoso Server successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start Virtuoso Server within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 virtuoso_shutdown() {
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/hosting/mono/tests/tclrsrv.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/hosting/mono/tests/tclrsrv.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/hosting/mono/tests/tclrsrv.sh	2013-02-05 00:24:53.000000000 +0000
@@ -221,7 +221,7 @@
       rm -f *.lck
       $SERVER +foreground -c tclr.ini $* 1>/dev/null & 
       stat="true"
-      while true 
+      for i in $(seq 1 15) 
 	do
 	  sleep 4
 	      stat=`netstat -an | grep "[\.\:]$PORT " | grep LISTEN` 
@@ -231,20 +231,9 @@
 		    LOG "PASSED: Virtuoso Server successfully started on port $port"
 		    return 0
 	      fi
-		
-	  nowh=`date | cut -f 2 -d :`
-          nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    
-          nowh=`expr $nowh - $starth`
-          nows=`expr $nows - $starts`
-    
-          nows=`expr $nows + $nowh \*  60`
-          if test $nows -ge $timeout
-          then
+        done
               LOG "***WARNING: Could not start Virtuoso Server within $timeout seconds"
               return 1
-          fi
-        done
 }
 
 WAITALL ()
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/isparql/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/isparql/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/isparql/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -126,7 +126,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting $SERVER start on port $PORT..."
@@ -137,17 +137,9 @@
       LOG "PASSED: $SERVER successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start $SERVER within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/rdf_mappers/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/rdf_mappers/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/rdf_mappers/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -258,7 +258,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting Virtuoso Server start on port $PORT..."
@@ -269,17 +269,9 @@
       LOG "PASSED: Virtuoso Server successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start Virtuoso Server within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 virtuoso_shutdown() {
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/samples/demo/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/samples/demo/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/samples/demo/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -124,7 +124,7 @@
       "$SERVER" +wait
   fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting $SERVER start on port $PORT..."
@@ -135,17 +135,9 @@
       LOG "PASSED: $SERVER successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start $SERVER within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/samples/demo/mkdemo.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/samples/demo/mkdemo.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/samples/demo/mkdemo.sh	2013-02-05 00:24:53.000000000 +0000
@@ -153,7 +153,7 @@
   starth=`date | cut -f 2 -d :`
   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
 
-  while true
+  for i in $(seq 1 10)
     do
       sleep 6
       if (netstat -an | grep "$PORT" | grep LISTEN > /dev/null)
@@ -161,19 +161,9 @@
 	  ECHO "Virtuoso server started"
 	  return 0
 	fi
-      nowh=`date | cut -f 2 -d :`
-      nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-
-      nowh=`expr $nowh - $starth`
-      nows=`expr $nows - $starts`
-
-      nows=`expr $nows + $nowh \*  60`
-      if test $nows -ge $timeout
-        then
+  done
 	  ECHO "***WARNING: Could not start Virtuoso DEMO Server within $timeout seconds"
 	  return 1
-	fi
-  done
 }
 
 STOP_SERVER()
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/samples/demo/mkdoc.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/samples/demo/mkdoc.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/samples/demo/mkdoc.sh	2013-02-05 00:24:53.000000000 +0000
@@ -174,7 +174,7 @@
        starth=`date | cut -f 2 -d :`
        starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
 
-       while true
+       for i in $(seq 1 10)
        do
            sleep 6
            if (netstat -an | grep "$PORT" | grep LISTEN > /dev/null)
@@ -182,19 +182,9 @@
        	ECHO "Virtuoso server started"
        	return 0
            fi
-           nowh=`date | cut -f 2 -d :`
-           nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-
-           nowh=`expr $nowh - $starth`
-           nows=`expr $nows - $starts`
-
-           nows=`expr $nows + $nowh \*  60`
-           if test $nows -ge $timeout
-           then
+       done
        	ECHO "***WARNING: Could not start Virtuoso DOC Server within $timeout seconds"
        	return 1
-           fi
-       done
    fi
 }
 
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/samples/sparql_demo/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/samples/sparql_demo/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/samples/sparql_demo/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -123,7 +123,7 @@
     fi
 
     stat="true"
-    while true
+    for i in $(seq 1 15)
     do
 	sleep 4
 	echo "Waiting $SERVER start on port $PORT..."
@@ -134,17 +134,9 @@
 	    LOG "PASSED: $SERVER successfully started on port $PORT"
 	    return 0
 	fi
-	nowh=`date | cut -f 2 -d :`
-	nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-	nowh=`expr $nowh - $starth`
-	nows=`expr $nows - $starts`
-	nows=`expr $nows + $nowh \*  60`
-	if test $nows -ge $timeout
-	then
+    done
 	    LOG "***WARNING: Could not start $SERVER within $timeout seconds"
 	    return 1
-	fi
-    done
 }
 
 
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/samples/xpath/files2dav.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/samples/xpath/files2dav.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/samples/xpath/files2dav.sh	2013-02-05 00:24:53.000000000 +0000
@@ -104,7 +104,7 @@
   starth=`date | cut -f 2 -d :`
   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
 
-  while true 
+  for i in $(seq 1 10) 
     do
       sleep 6
       if (netstat -an | grep "$PORT" | grep LISTEN > /dev/null) 
@@ -112,19 +112,9 @@
 	  ECHO "Virtuoso server started"     
 	  return 0
 	fi
-      nowh=`date | cut -f 2 -d :`
-      nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-
-      nowh=`expr $nowh - $starth`
-      nows=`expr $nows - $starts`
-
-      nows=`expr $nows + $nowh \*  60`
-      if test $nows -ge $timeout 
-        then
+  done
 	  ECHO "***WARNING: Could not start Virtuoso DEMO Server within $timeout seconds"
 	  return 1
-	fi
-  done
 }
 
 STOP_SERVER()
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/samples/xquery/files2dav.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/samples/xquery/files2dav.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/samples/xquery/files2dav.sh	2013-02-05 00:24:53.000000000 +0000
@@ -104,7 +104,7 @@
   starth=`date | cut -f 2 -d :`
   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
 
-  while true 
+  for i in $(seq 1 10) 
     do
       sleep 6
       if (netstat -an | grep "$PORT" | grep LISTEN > /dev/null) 
@@ -112,19 +112,9 @@
 	  ECHO "Virtuoso server started"     
 	  return 0
 	fi
-      nowh=`date | cut -f 2 -d :`
-      nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-
-      nowh=`expr $nowh - $starth`
-      nows=`expr $nows - $starts`
-
-      nows=`expr $nows + $nowh \*  60`
-      if test $nows -ge $timeout 
-        then
+  done
 	  ECHO "***WARNING: Could not start Virtuoso DEMO Server within $timeout seconds"
 	  return 1
-	fi
-  done
 }
 
 STOP_SERVER()
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/sync/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/sync/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/sync/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -113,7 +113,7 @@
       virtuoso +wait
   fi
   stat="true"
-  while true 
+  for i in $(seq 1 15) 
   do
     sleep 4
     echo "Waiting Virtuoso Server start on port $PORT..."
@@ -124,17 +124,9 @@
       LOG "PASSED: Virtuoso Server successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start Virtuoso Server within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/tests/biftest/thook.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/tests/biftest/thook.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/tests/biftest/thook.sh	2013-02-05 00:24:53.000000000 +0000
@@ -136,7 +136,7 @@
 	      rm $LOCKFILE
           fi
 	RUN $SERVER +foreground $* &
-	while true
+	for i in $(seq 1 12)
 	do
             sleep 5
 	    stat=`netstat -an | grep "[\.\:]$port " | grep LISTEN`
@@ -145,19 +145,9 @@
 		LOG "PASSED: Virtuoso Server successfully started on port $port"
 		return 0
 	    fi
-	    nowh=`date | cut -f 2 -d :`
-	    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-
-	    nowh=`expr $nowh - $starth`
-	    nows=`expr $nows - $starts`
-
-	    nows=`expr $nows + $nowh \*  60`
-	    if test $nows -ge $timeout
-	    then
+	done
 		LOG "***WARNING: Could not start Virtuoso Server within $timeout seconds"
 		return 1
-	    fi
-	done
 }
 echo "STARTED : thook.sh"
 echo "STARTED : thook.sh" > $OUTPUT
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/tests/suite/test_fn.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/tests/suite/test_fn.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/tests/suite/test_fn.sh	2013-02-05 00:24:53.000000000 +0000
@@ -315,7 +315,7 @@
 	then
 	    return
 	fi
-	while true
+	for i in $(seq 1 60)
 	do
 	    stat=`netstat -an | grep "[\.\:]$port " | grep LISTEN`
 	    if [ "z$stat" != "z" ]
@@ -324,25 +324,15 @@
 		return 0
 	    fi
             sleep 1
-	    nowh=`date | cut -f 2 -d :`
-	    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-
-	    nowh=`expr $nowh - $starth`
-	    nows=`expr $nows - $starts`
-
-	    nows=`expr $nows + $nowh \*  60`
-	    if test $nows -ge $timeout
-	    then
+	done
 		LOG "***WARNING: Could not start Virtuoso Server within $timeout seconds"
 		return 1
-	    fi
-	done
 }
 
 CHECK_PORT()
 {
   port=$1
-  while true
+  for i in $(seq 1 60)
   do
     stat=`netstat -an | grep "[\.\:]$port " | grep LISTEN`
     if [ "z$stat" = "z" ]
@@ -351,19 +341,9 @@
 	return 0
     fi
     sleep 1
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done  
 	LOG "***FAILED: Port $port is not freed during $timeout seconds"
 	exit 1
-    fi
-  done  
 }
 
 STOP_SERVER()
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/tests/suite/tpc-d/tpcd.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/tests/suite/tpc-d/tpcd.sh	2009-04-16 21:15:22.000000000 +0100
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/tests/suite/tpc-d/tpcd.sh	2013-02-05 00:24:53.000000000 +0000
@@ -207,7 +207,7 @@
       rm -f *.lck
       $SERVER +foreground -c tpcd.ini $* 1>/dev/null & 
       stat="true"
-      while true 
+      for i in $(seq 1 15) 
 	do
 	  sleep 4
 	      stat=`netstat -an | grep "[\.\:]$PORT " | grep LISTEN` 
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/tutorial/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/tutorial/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/tutorial/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -113,7 +113,7 @@
       "$SERVER" +wait
       fi
   stat="true"
-  while true
+  for i in $(seq 1 15)
   do
     sleep 4
     echo "Waiting $SERVER start on port $PORT..."
@@ -124,17 +124,9 @@
       LOG "PASSED: $SERVER successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start $SERVER within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/vsp/admin/debug/make_vad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/vsp/admin/debug/make_vad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/vsp/admin/debug/make_vad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -79,7 +79,7 @@
 	  virtuoso +wait
   fi
   stat="true"
-  while true 
+  for i in $(seq 1 15) 
   do
     sleep 4
     echo "Waiting Virtuoso Server start on port $PORT..."
@@ -90,17 +90,9 @@
       LOG "PASSED: Virtuoso Server successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start Virtuoso Server within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command_safe () {
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/vspx/suite/vspx_suite.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/vspx/suite/vspx_suite.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/vspx/suite/vspx_suite.sh	2013-02-05 00:24:53.000000000 +0000
@@ -48,7 +48,7 @@
   rm -f *.lck
   $SERVER
   stat="true"
-  while true 
+  for i in $(seq 1 15) 
   do
     sleep 4
     LOG "CHECKING: Is Virtuoso Server successfully started on port $PORT?"
@@ -59,17 +59,9 @@
       LOG "PASSED: Virtuoso Server successfully started on port $PORT"
       return 0
     fi
-    nowh=`date | cut -f 2 -d :`
-    nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-    nowh=`expr $nowh - $starth`
-    nows=`expr $nows - $starts`
-    nows=`expr $nows + $nowh \*  60`
-    if test $nows -ge $timeout
-    then
+  done
       LOG "***WARNING: Could not start Virtuoso Server within $timeout seconds"
       return 1
-    fi
-  done
 }
 
 do_command() {
Index: virtuoso-opensource-6.1.4+dfsg1/binsrc/yacutia/mkvad.sh
===================================================================
--- virtuoso-opensource-6.1.4+dfsg1.orig/binsrc/yacutia/mkvad.sh	2013-02-05 00:24:04.000000000 +0000
+++ virtuoso-opensource-6.1.4+dfsg1/binsrc/yacutia/mkvad.sh	2013-02-05 00:24:53.000000000 +0000
@@ -161,7 +161,7 @@
   starth=`date | cut -f 2 -d :`
   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
 
-  while true
+  for i in $(seq 1 10)
     do
       sleep 6
       if (netstat -an | grep "$PORT" | grep LISTEN > /dev/null)
@@ -169,19 +169,9 @@
     ECHO "Virtuoso server started"
     return 0
   fi
-      nowh=`date | cut -f 2 -d :`
-      nows=`date | cut -f 3 -d : | cut -f 1 -d " "`
-
-      nowh=`expr $nowh - $starth`
-      nows=`expr $nows - $starts`
-
-      nows=`expr $nows + $nowh \*  60`
-      if test $nows -ge $timeout
-        then
+  done
     ECHO "***WARNING: Could not start Virtuoso Server within $timeout seconds"
     return 1
-  fi
-  done
 }
 
 STOP_SERVER()

--- End Message ---
--- Begin Message ---
Source: virtuoso-opensource
Source-Version: 6.1.4+dfsg1-6

We believe that the bug you reported is fixed in the latest version of
virtuoso-opensource, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 699...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
José Manuel Santamaría Lema <panfa...@gmail.com> (supplier of updated 
virtuoso-opensource package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Mon, 25 Feb 2013 13:49:33 +0100
Source: virtuoso-opensource
Binary: virtuoso-opensource virtuoso-server virtuoso-minimal 
virtuoso-opensource-6.1 virtuoso-opensource-6.1-common 
virtuoso-opensource-6.1-bin virtuoso-vsp-startpage virtuoso-vad-conductor 
virtuoso-vad-doc virtuoso-vad-demo virtuoso-vad-tutorial 
virtuoso-vad-rdfmappers virtuoso-vad-sparqldemo virtuoso-vad-syncml 
virtuoso-vad-bpel virtuoso-vad-isparql virtuoso-vad-ods libvirtodbc0 
libvirtuoso5.5-cil
Architecture: source all amd64
Version: 6.1.4+dfsg1-6
Distribution: unstable
Urgency: low
Maintainer: José Manuel Santamaría Lema <panfa...@gmail.com>
Changed-By: José Manuel Santamaría Lema <panfa...@gmail.com>
Description: 
 libvirtodbc0 - high-performance database - ODBC libraries
 libvirtuoso5.5-cil - high-performance database - Mono assemblies
 virtuoso-minimal - high-performance database - core dependency package
 virtuoso-opensource - high-performance database
 virtuoso-opensource-6.1 - high-performance database - support files
 virtuoso-opensource-6.1-bin - high-performance database - binaries
 virtuoso-opensource-6.1-common - high-performance database - common files
 virtuoso-server - high-performance database - server dependency package
 virtuoso-vad-bpel - high-performance database - BPEL module
 virtuoso-vad-conductor - high-performance database - conductor module
 virtuoso-vad-demo - high-performance database - demo module
 virtuoso-vad-doc - high-performance database - documentation module
 virtuoso-vad-isparql - high-performance database - iSPARQL module
 virtuoso-vad-ods - high-performance database - Open Data Spaces module
 virtuoso-vad-rdfmappers - high-performance database - RDF mappers module
 virtuoso-vad-sparqldemo - high-performance database - SPARQL demo module
 virtuoso-vad-syncml - high-performance database - SyncML module
 virtuoso-vad-tutorial - high-performance database - tutorial module
 virtuoso-vsp-startpage - high-performance database - web interface files
Closes: 699785
Changes: 
 virtuoso-opensource (6.1.4+dfsg1-6) unstable; urgency=low
 .
   * Add safer-timeout.patch, avoids random FTBFS'es. These random FTBFS'es
     depend on the time of the day and are more prone to happen on slow
     architectures. (Closes: #699785)
   * Remove build-short-timeout.patch, no longer needed because of
     safer-timeout.patch.
Checksums-Sha1: 
 b1f72cec3d75a1064ab4954bedda1cd604003b83 3823 
virtuoso-opensource_6.1.4+dfsg1-6.dsc
 36c4f58383ccfd19021008dcdaf9525540f99220 76346 
virtuoso-opensource_6.1.4+dfsg1-6.debian.tar.gz
 278b296e3ff35dd08d316c1984dea1e1d32a69e3 84828 
virtuoso-opensource_6.1.4+dfsg1-6_all.deb
 37b051197b2a8d4efbafe445d1e8136909220f0c 81726 
virtuoso-server_6.1.4+dfsg1-6_all.deb
 3a0f1ab008edfbcfce9f61645bf54b69f841b617 81754 
virtuoso-minimal_6.1.4+dfsg1-6_all.deb
 d5a49c625f66140f7e30a8bc881894ab05f82cf2 565442 
virtuoso-vsp-startpage_6.1.4+dfsg1-6_all.deb
 473cc3bd060981bba514a60d053b8eba791a0684 1345048 
virtuoso-vad-conductor_6.1.4+dfsg1-6_all.deb
 749abde2143c53f6436344d2b28ab169540b052a 63706058 
virtuoso-vad-doc_6.1.4+dfsg1-6_all.deb
 be21e017a66612c0ad06fc0f89bb121ee1a83e7a 12019902 
virtuoso-vad-demo_6.1.4+dfsg1-6_all.deb
 3a205aadf876e0167a198d61f2c070d36cec9c05 5249352 
virtuoso-vad-tutorial_6.1.4+dfsg1-6_all.deb
 d14fb3a23fa140d0b867e7eb7ff05045ccc130a8 2584422 
virtuoso-vad-rdfmappers_6.1.4+dfsg1-6_all.deb
 391d49db5b08f9e9bb2287d7653fc9bde655282f 643142 
virtuoso-vad-sparqldemo_6.1.4+dfsg1-6_all.deb
 52a3437b26af013f9a489740f5ca38137e02e5be 100286 
virtuoso-vad-syncml_6.1.4+dfsg1-6_all.deb
 11b0ebd407cda7b01a179c5f38614f9bd7b84fb0 367784 
virtuoso-vad-bpel_6.1.4+dfsg1-6_all.deb
 1fd5f6119fb1b6ccb08f1ec33010cd2e427b200e 801392 
virtuoso-vad-isparql_6.1.4+dfsg1-6_all.deb
 6b94cd5338c3ddd939b4c2be11fb92bd563bece0 5821986 
virtuoso-vad-ods_6.1.4+dfsg1-6_all.deb
 6ce980f58d4facbb4e4b4f411ab9201bed2631b8 316048 
virtuoso-opensource-6.1_6.1.4+dfsg1-6_amd64.deb
 d3efbcdffbcbd361b1ff4f587861b4f7b53567c5 99210 
virtuoso-opensource-6.1-common_6.1.4+dfsg1-6_amd64.deb
 453cd6b765529b7148f8a30483fd5bb6ef793be1 4126490 
virtuoso-opensource-6.1-bin_6.1.4+dfsg1-6_amd64.deb
 700ae69c78ec5ac3f8993774891008b19ae46ca6 881160 
libvirtodbc0_6.1.4+dfsg1-6_amd64.deb
 01a1023617e37cd552b43ff0162611f2a815568a 154250 
libvirtuoso5.5-cil_6.1.4+dfsg1-6_amd64.deb
Checksums-Sha256: 
 76496096c66d0825507d7345a5633f5c6d85093e03783612f785054ee97c0d74 3823 
virtuoso-opensource_6.1.4+dfsg1-6.dsc
 44c0fe11e48b5136829b14f82a76ca4136358f365e0ad1fcaa55b8f5fb941bfb 76346 
virtuoso-opensource_6.1.4+dfsg1-6.debian.tar.gz
 65d098ba76a3f82b96245fe033717d858a71dfd3fa5f98784ca27530cdeccb89 84828 
virtuoso-opensource_6.1.4+dfsg1-6_all.deb
 672fabdc4c4bfbc3abf89a61a1a6c7520b3fa2b2bb8cf6c529a08f04457f2df8 81726 
virtuoso-server_6.1.4+dfsg1-6_all.deb
 370bb3ac44c0ef620fd400f4c27380aad57aaf4a78d169840e2dae6c3c090895 81754 
virtuoso-minimal_6.1.4+dfsg1-6_all.deb
 3260c9b96411c9c86c42a639640d1a10b635ce579c120608c938f764e76c1d2c 565442 
virtuoso-vsp-startpage_6.1.4+dfsg1-6_all.deb
 27cbab78a651a21d91831175ba9808e463d9fd604df94aeca8c916b7c64c8096 1345048 
virtuoso-vad-conductor_6.1.4+dfsg1-6_all.deb
 a6acce5838fe9043e14ab4551e1bf2d053eb24c56917970df23d9a8e9c6179b9 63706058 
virtuoso-vad-doc_6.1.4+dfsg1-6_all.deb
 607de5d230fe640ffd87757373412c9de12f9cd34bf6c61a25f8dbb7d92e1af2 12019902 
virtuoso-vad-demo_6.1.4+dfsg1-6_all.deb
 a0a2d21e075ff674ff6f9e9fe2ce532466cfa153bd3f3b50cc9ba866dcc2b615 5249352 
virtuoso-vad-tutorial_6.1.4+dfsg1-6_all.deb
 ffc49f52ed1d49b0476dbdd884d93c269154d14a269cd36acc3927f3b6769147 2584422 
virtuoso-vad-rdfmappers_6.1.4+dfsg1-6_all.deb
 fc8edeb79d9a42414d9ae42ed172249913182d1a059b20c83df09a50771a43a2 643142 
virtuoso-vad-sparqldemo_6.1.4+dfsg1-6_all.deb
 f759f79e6cd9ee04d9c27af6e4a166bb34974a20470ff33153cd0622dfb02ee1 100286 
virtuoso-vad-syncml_6.1.4+dfsg1-6_all.deb
 a9e960f7b3dd240ffe23765996d92a385f4e8476074f6b69a43fd3e4592a1f27 367784 
virtuoso-vad-bpel_6.1.4+dfsg1-6_all.deb
 0b8e0736e8612550fbe3f74d9e974cf6d9c2c1f4e9b40dddc0b0ed1eac659374 801392 
virtuoso-vad-isparql_6.1.4+dfsg1-6_all.deb
 cc088cedec9388cf6f953c49c40b071d46803a8939b7d25d6133722c71dd9b2e 5821986 
virtuoso-vad-ods_6.1.4+dfsg1-6_all.deb
 821a3142b7f139ed8cff039ff27507075b6a53e916cf09ce4ffb085b776f758b 316048 
virtuoso-opensource-6.1_6.1.4+dfsg1-6_amd64.deb
 c5ab2b3af86a945bbe7e97ea87c1e9dfdc5f624a0656fdc297521d30b8817f22 99210 
virtuoso-opensource-6.1-common_6.1.4+dfsg1-6_amd64.deb
 1c49197b6dc662804c1a104ebbcdf5b37c4c2543d6c72f3c192a592ed20c75c4 4126490 
virtuoso-opensource-6.1-bin_6.1.4+dfsg1-6_amd64.deb
 48279ce7e841254e79a98f08bc1af9ddaa630be34d4ceee8bcdf63d2aa58bd43 881160 
libvirtodbc0_6.1.4+dfsg1-6_amd64.deb
 8d33d27bf639661752a4ec7baa9ce64dc9e2130701db0897de75727bfeea0b38 154250 
libvirtuoso5.5-cil_6.1.4+dfsg1-6_amd64.deb
Files: 
 f2155ef2593b361da540915923df75dc 3823 database optional 
virtuoso-opensource_6.1.4+dfsg1-6.dsc
 f6069fb1f89f0bce857a0f52273057db 76346 database optional 
virtuoso-opensource_6.1.4+dfsg1-6.debian.tar.gz
 7bbe4b894491982902169fb3b14028cc 84828 metapackages optional 
virtuoso-opensource_6.1.4+dfsg1-6_all.deb
 d4c301df8414bd88ab7ffdba75d73656 81726 metapackages optional 
virtuoso-server_6.1.4+dfsg1-6_all.deb
 3d9b888317be643b78fbcd7e2fcfcca3 81754 metapackages optional 
virtuoso-minimal_6.1.4+dfsg1-6_all.deb
 642dd42bf1173dc9e1dba0a285ba5ce9 565442 database optional 
virtuoso-vsp-startpage_6.1.4+dfsg1-6_all.deb
 a51d2ef15fc341451142e4e99512cb7a 1345048 database optional 
virtuoso-vad-conductor_6.1.4+dfsg1-6_all.deb
 1a66b6faee5ba4d1949741c534821eb7 63706058 doc optional 
virtuoso-vad-doc_6.1.4+dfsg1-6_all.deb
 cd7657567dcb222ccb3883c5d981d574 12019902 doc optional 
virtuoso-vad-demo_6.1.4+dfsg1-6_all.deb
 347e9709e27a2cfd83e5f05df2516213 5249352 doc optional 
virtuoso-vad-tutorial_6.1.4+dfsg1-6_all.deb
 30904b81b89ce71ee0ca4ca7ff0630d0 2584422 database optional 
virtuoso-vad-rdfmappers_6.1.4+dfsg1-6_all.deb
 d7b9649bc323214d55bd364d2b0e0d64 643142 database optional 
virtuoso-vad-sparqldemo_6.1.4+dfsg1-6_all.deb
 2351b6ec093380cc64ea1eae19f9ea04 100286 database optional 
virtuoso-vad-syncml_6.1.4+dfsg1-6_all.deb
 7a8d27b9bba421588c85026cf7f4ed0c 367784 database optional 
virtuoso-vad-bpel_6.1.4+dfsg1-6_all.deb
 766540a58c8fc526408d37c759702afa 801392 database optional 
virtuoso-vad-isparql_6.1.4+dfsg1-6_all.deb
 bde5814474ba5beabd4292827fd830d6 5821986 database optional 
virtuoso-vad-ods_6.1.4+dfsg1-6_all.deb
 1e1440c9d00608830a6986d1f71c12e9 316048 database optional 
virtuoso-opensource-6.1_6.1.4+dfsg1-6_amd64.deb
 739f5120d99a8ff068e1083fe4a488e5 99210 database optional 
virtuoso-opensource-6.1-common_6.1.4+dfsg1-6_amd64.deb
 16f75fece3803a8087730cf93dc739f1 4126490 database optional 
virtuoso-opensource-6.1-bin_6.1.4+dfsg1-6_amd64.deb
 8fba0fe183ba5fee658f341be794035c 881160 database optional 
libvirtodbc0_6.1.4+dfsg1-6_amd64.deb
 254201a950f02e54135bab0b50d9c7e8 154250 cli-mono optional 
libvirtuoso5.5-cil_6.1.4+dfsg1-6_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBAgAGBQJRK2mgAAoJEMhgx1pzqF8xmZAP/iGkGC+c7xtlgfhOUqsyup4l
NeKSWZwiDeOVINMaaXPHsbUclbn+omMPny7NtzttnvFqL0Xi0mF2+XMdGPBl3iF6
Nyml6ZflYQJbJMK2nUFHf0L2uPjahGwDs5YYe/1gFZoBG41jzlHRRq7U7p53zQba
ffRGS5sN9TVGRjoqZHoRSHmBl/W9TmO4FMSzYlpFbsJ267ay8EwCSQ7OPHc2lZxG
zpgaqr670yKWRh+G/ubMEa3CFk04zwOUUgqueIhmJzfcUfrjdWB/uBhY+O7MhJwu
cwqAmEs+tUjtJjW0aRSL9OSHC27wDq6YxFqDkvKcEQ4m/ltfpVSNVsi/z9FFXCnt
9pkhz52iXBKLqo4ANeBgfWs36RNbfy4w5/kTqat+S0KTZhkCJsaWxtAUEQTlX/dH
MZoMtyeBoAD1lvfDYdOsMOf18i65qGnaT4M2EWMUpw5lHtzZ131r+r3c/EG0Xjh0
Q14K1MQUyXHBj2MIOvZm74chk9QMAfKlZW+PFbLSC437sLsFoPdL0Q2F0VtUewu3
uqeJRmnwI00ciVFHfq67cagKEspuGBvfac0yI9JAsNEq3YIOapt4Twc32WZoDzHL
ddaVXiaHfIqmzCuhFo6DvOfKhKJNU0fSs4JzoyL5OAMqTALF5z5QBh4ukqZKxEjA
IGhy6zbh9nPBiHM+g42L
=wLwp
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to