Hello community,
here is the log from the commit of package obs-service-extract_file for
openSUSE:Factory checked in at 2016-06-29 15:10:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/obs-service-extract_file (Old)
and /work/SRC/openSUSE:Factory/.obs-service-extract_file.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "obs-service-extract_file"
Changes:
--------
---
/work/SRC/openSUSE:Factory/obs-service-extract_file/obs-service-extract_file.changes
2016-03-17 16:48:01.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.obs-service-extract_file.new/obs-service-extract_file.changes
2016-06-29 15:10:50.000000000 +0200
@@ -1,0 +2,7 @@
+Thu Jun 16 08:45:31 UTC 2016 - [email protected]
+
+- Update to version 0.3:
+ * Fix 001_unzip.t to not hardcode pathname
+ * Add build dependencies for make check
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.vGcY6H/_old 2016-06-29 15:10:51.000000000 +0200
+++ /var/tmp/diff_new_pack.vGcY6H/_new 2016-06-29 15:10:51.000000000 +0200
@@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param
name="url">[email protected]:openSUSE/obs-service-extract_file.git</param>
- <param
name="changesrevision">acb33c06fc882cee6aee7bceb34d65123320841e</param></service></servicedata>
\ No newline at end of file
+ <param
name="changesrevision">100e10d49c52e072d2e2b4edc5d7f8d81e22ae96</param></service></servicedata>
\ No newline at end of file
++++++ debian.dsc ++++++
--- /var/tmp/diff_new_pack.vGcY6H/_old 2016-06-29 15:10:51.000000000 +0200
+++ /var/tmp/diff_new_pack.vGcY6H/_new 2016-06-29 15:10:51.000000000 +0200
@@ -1,8 +1,9 @@
-Format: 1.0
+Format: 3.0 (native)
Source: obs-service-extract-file
-Version: 0.3
Binary: obs-service-extract-file
-Maintainer: Adrian Schroeter <[email protected]>
Architecture: all
-Standards-Version: 3.7.2
-Build-Depends: debhelper (>= 7)
+Version: 0.3
+Maintainer: Adrian Schroeter <[email protected]>
+Homepage:
https://build.opensuse.org/package/show/openSUSE:Tools/obs-service-extract_file
+Standards-Version: 3.9.3
+Build-Depends: debhelper (>= 8.0.0), tar, zip, unzip
++++++ obs-service-extract_file-0.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/obs-service-extract_file-0.3/debian/control
new/obs-service-extract_file-0.3/debian/control
--- old/obs-service-extract_file-0.3/debian/control 2016-02-18
17:36:23.000000000 +0100
+++ new/obs-service-extract_file-0.3/debian/control 2016-06-16
10:45:31.000000000 +0200
@@ -2,7 +2,7 @@
Section: devel
Priority: extra
Maintainer: Daniel Gollub <[email protected]>
-Build-Depends: debhelper (>= 8.0.0)
+Build-Depends: debhelper (>= 8.0.0), tar, zip, unzip
Standards-Version: 3.9.3
Homepage:
https://build.opensuse.org/package/show/openSUSE:Tools/obs-service-extract_file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/obs-service-extract_file-0.3/t/001_unzip.t
new/obs-service-extract_file-0.3/t/001_unzip.t
--- old/obs-service-extract_file-0.3/t/001_unzip.t 2016-02-18
17:36:23.000000000 +0100
+++ new/obs-service-extract_file-0.3/t/001_unzip.t 2016-06-16
10:45:31.000000000 +0200
@@ -2,9 +2,9 @@
#
#
-use strict;
+use strict;
use warnings;
-use Test::More tests => 3;
+use Test::More tests => 4;
use Cwd;
use Data::Dumper;
@@ -38,16 +38,15 @@
my $cmd = "$FindBin::Bin/../extract_file --archive test.zip --files
'--illegal-option' --outdir $tmp_dir";
my @out = `$cmd`;
+like(shift(@out), qr/Extracting from .*test.zip:/);
my $VAR1 = [
- 'Extracting from
/home/fschreiner/gh/obs-service-extract_file/t/tmp/test.zip:
-',
' --illegal-option
',
'illegal --file option: --illegal-option
'
];
-is_deeply($VAR1,\@out,"Checking with illegal option");
+is_deeply(\@out,$VAR1,"Checking with illegal option");
clean_dir($tmp_dir);