Hello community,

here is the log from the commit of package FirmwareUpdateKit for 
openSUSE:Factory checked in at 2012-06-25 11:45:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/FirmwareUpdateKit (Old)
 and      /work/SRC/openSUSE:Factory/.FirmwareUpdateKit.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "FirmwareUpdateKit", Maintainer is "snw...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/FirmwareUpdateKit/FirmwareUpdateKit.changes      
2012-03-27 08:56:34.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.FirmwareUpdateKit.new/FirmwareUpdateKit.changes 
2012-06-25 11:45:27.000000000 +0200
@@ -1,0 +2,5 @@
+Wed Jun 20 11:12:26 CEST 2012 - snw...@suse.de
+
+- work around bigint strangeness in perl 5.16 (bnc#766339)
+
+-------------------------------------------------------------------

Old:
----
  FirmwareUpdateKit-1.5.tar.bz2

New:
----
  FirmwareUpdateKit-1.6.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ FirmwareUpdateKit.spec ++++++
--- /var/tmp/diff_new_pack.201BZ9/_old  2012-06-25 11:45:30.000000000 +0200
+++ /var/tmp/diff_new_pack.201BZ9/_new  2012-06-25 11:45:30.000000000 +0200
@@ -22,11 +22,11 @@
 Summary:        Assist with DOS-based firmware updates
 License:        GPL-3.0+
 Group:          System/Boot
-Version:        1.5
+Version:        1.6
 Release:        0
 Obsoletes:      dosbootdisk
 Provides:       dosbootdisk
-Source:         FirmwareUpdateKit-1.5.tar.bz2
+Source:         FirmwareUpdateKit-1.6.tar.bz2
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 ExclusiveArch:  %ix86 x86_64
 

++++++ FirmwareUpdateKit-1.5.tar.bz2 -> FirmwareUpdateKit-1.6.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/FirmwareUpdateKit-1.5/VERSION 
new/FirmwareUpdateKit-1.6/VERSION
--- old/FirmwareUpdateKit-1.5/VERSION   2012-03-26 15:28:41.000000000 +0200
+++ new/FirmwareUpdateKit-1.6/VERSION   2012-06-20 11:12:24.000000000 +0200
@@ -1 +1 @@
-1.5
+1.6
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/FirmwareUpdateKit-1.5/changelog 
new/FirmwareUpdateKit-1.6/changelog
--- old/FirmwareUpdateKit-1.5/changelog 2012-03-26 15:28:41.000000000 +0200
+++ new/FirmwareUpdateKit-1.6/changelog 2012-06-20 11:12:24.000000000 +0200
@@ -1,4 +1,7 @@
-2012-03-06:    HEAD
+2012-06-20:    HEAD
+       - work around bigint strangeness in perl 5.16 (bnc #766339)
+
+2012-03-06:    1.5
        - added himem driver
        - updated to freedos 1.1
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/FirmwareUpdateKit-1.5/fuk 
new/FirmwareUpdateKit-1.6/fuk
--- old/FirmwareUpdateKit-1.5/fuk       2012-03-06 16:03:51.000000000 +0100
+++ new/FirmwareUpdateKit-1.6/fuk       2012-06-20 11:10:58.000000000 +0200
@@ -238,7 +238,8 @@
 
     $self->size($self->{size} + $self->{fit_size_acc}) if 
$self->{fit_size_acc};
 
-    my $p_size = $self->{size} - $self->partition_ofs -  $self->{extra_size};
+    # using '+-' to work around bigint strangeness in perl 5.16 (bnc #766339)
+    my $p_size = $self->{size} - $self->partition_ofs + -$self->{extra_size};
     return undef if $p_size < 0;
 
     my $c = $self->{c};

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to