Hello community,

here is the log from the commit of package firmwarekit for openSUSE:Factory 
checked in at 2012-03-20 11:26:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/firmwarekit (Old)
 and      /work/SRC/openSUSE:Factory/.firmwarekit.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "firmwarekit", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/firmwarekit/firmwarekit.changes  2011-09-23 
01:57:52.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.firmwarekit.new/firmwarekit.changes     
2012-03-20 11:26:57.000000000 +0100
@@ -1,0 +2,6 @@
+Fri Mar 16 09:14:03 UTC 2012 - [email protected]
+
+- It's nostdlib and not nostdlibs as command line option.
+- Remove obsolete version checks.
+
+-------------------------------------------------------------------

New:
----
  firmwarekit-gcc.patch

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

Other differences:
------------------
++++++ firmwarekit.spec ++++++
--- /var/tmp/diff_new_pack.jOAIsi/_old  2012-03-20 11:26:59.000000000 +0100
+++ /var/tmp/diff_new_pack.jOAIsi/_new  2012-03-20 11:26:59.000000000 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package firmwarekit (Version 3)
+# spec file for package firmwarekit
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,11 +22,7 @@
 BuildRequires:  bash coreutils dhcp-client findutils gawk gdb glib2-devel
 BuildRequires:  grep iproute2 module-init-tools ncurses-devel newt newt-devel
 BuildRequires:  perl pkgconfig sed sharutils slang-devel sysvinit
-%if %suse_version > 1110
 BuildRequires:  acpica dmidecode
-%else
-BuildRequires:  pmtools
-%endif
 BuildRequires:  termcap util-linux wget xorg-x11-util-devel
 Url:            http://www.linuxfirmwarekit.org
 Summary:        BIOS checker that validates ACPI and other parts for x86 and 
x86_64 machines
@@ -36,11 +32,7 @@
 Group:          System/Boot
 AutoReqProv:    on
 PreReq:         gzip
-%if %suse_version > 1110
 Requires:       acpica dmidecode
-%else
-Requires:       pmtools
-%endif
 Requires:       hwinfo util-linux powertop
 Summary:        BIOS checker that validates ACPI and other parts for x86 and 
x86_64 machines
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -61,6 +53,7 @@
 Patch12:        %{name}-fix-rpmlint.patch
 Patch13:        %{name}-outputdir
 Patch14:        %{name}-dmidecode-detail
+Patch15:        %{name}-gcc.patch
 
 %description
 This tool, developed by Intel, is meant for vendors to validate and
@@ -91,6 +84,7 @@
 %patch12 -p1
 %patch13 -p1
 %patch14 -p1
+%patch15 -p1
 # This is arch specific stuff, put all in /usr/lib/firmwarekit
 %define location /usr/lib/%{name}
 

++++++ firmwarekit-gcc.patch ++++++
Index: linuxfirmwarekit/Makefile
===================================================================
--- linuxfirmwarekit.orig/Makefile
+++ linuxfirmwarekit/Makefile
@@ -1,7 +1,7 @@
 CFLAGS =  -Wall -W -Os -D_FORTIFY_SOURCE=2 -g
 override CFLAGS +=  `pkg-config --cflags glib-2.0` -I/usr/include/slang -fPIC 
-I.
 #LDFLAGS = -nodefaultlibs -Linitramfs/data/lib -Linitramfs/data/usr/lib  
-export-dynamic  -lc -ldl `pkg-config --libs glib-2.0`   -lnewt -lslang  
-LDFLAGS = -nostdlibs -Linitramfs/data/lib -Linitramfs/data/usr/lib  
-export-dynamic  -lc -ldl `pkg-config --libs glib-2.0`   -lnewt -lslang 
+LDFLAGS = -nostdlib -Linitramfs/data/lib -Linitramfs/data/usr/lib  
-export-dynamic  -lc -ldl `pkg-config --libs glib-2.0`   -lnewt -lslang 
 
 
 # Rip out lmbench, our package is in no good shape...
++++++ firmwarekit-outputdir ++++++
--- /var/tmp/diff_new_pack.jOAIsi/_old  2012-03-20 11:26:59.000000000 +0100
+++ /var/tmp/diff_new_pack.jOAIsi/_new  2012-03-20 11:26:59.000000000 +0100
@@ -15,8 +15,10 @@
  ssh.c         |   10 ++++++----
  6 files changed, 67 insertions(+), 9 deletions(-)
 
---- a/acpitable.c
-+++ b/acpitable.c
+Index: linuxfirmwarekit/acpitable.c
+===================================================================
+--- linuxfirmwarekit.orig/acpitable.c
++++ linuxfirmwarekit/acpitable.c
 @@ -180,6 +180,7 @@ void extract_acpi_tables(void)
           * are located (should exist after compiling "acpicompile" plugin).
           * Since we're standalone, we could be called from a few different
@@ -43,8 +45,10 @@
  }
  
  void load_acpi_tables(void) {
---- a/biostest.h
-+++ b/biostest.h
+Index: linuxfirmwarekit/biostest.h
+===================================================================
+--- linuxfirmwarekit.orig/biostest.h
++++ linuxfirmwarekit/biostest.h
 @@ -139,6 +139,7 @@ extern int locate_acpi_table(char *name,
  extern int e820_is_reserved(uint64_t memory);
  extern char *copy_acpi_table(void *address, char *name);
@@ -53,8 +57,10 @@
  
  /* lib.c */
  
---- a/firmwarekit.h
-+++ b/firmwarekit.h
+Index: linuxfirmwarekit/firmwarekit.h
+===================================================================
+--- linuxfirmwarekit.orig/firmwarekit.h
++++ linuxfirmwarekit/firmwarekit.h
 @@ -61,7 +61,9 @@ extern char *result_to_ascii(int res);
  extern char *get_relative_command(char *cmd, char *options);
  extern char *get_kernel_ver(void); 
@@ -66,9 +72,11 @@
  
  #endif
  
---- a/lib.c
-+++ b/lib.c
-@@ -332,3 +332,53 @@ char *get_lfdk_ver(void) {
+Index: linuxfirmwarekit/lib.c
+===================================================================
+--- linuxfirmwarekit.orig/lib.c
++++ linuxfirmwarekit/lib.c
+@@ -281,3 +281,53 @@ char *get_lfdk_ver(void) {
        chop_newline(lfdk_ver);
        return strdup(lfdk_ver);
  }
@@ -122,8 +130,10 @@
 +      return returnpath;
 +}
 +
---- a/plugins.c
-+++ b/plugins.c
+Index: linuxfirmwarekit/plugins.c
+===================================================================
+--- linuxfirmwarekit.orig/plugins.c
++++ linuxfirmwarekit/plugins.c
 @@ -261,15 +261,15 @@ void execute_plugins(char *directory)
                        do_plugin(buffer);
                }
@@ -143,8 +153,10 @@
                        do_exe_plugin(buffer);
                }
  
---- a/ssh.c
-+++ b/ssh.c
+Index: linuxfirmwarekit/ssh.c
+===================================================================
+--- linuxfirmwarekit.orig/ssh.c
++++ linuxfirmwarekit/ssh.c
 @@ -67,10 +67,12 @@ int copy_via_ssh(const char *dest)
        }
  

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to