Hello community,

here is the log from the commit of package wireless-tools for openSUSE:Factory
checked in at Wed Aug 24 13:48:14 CEST 2011.



--------
--- wireless-tools/wireless-tools.changes       2011-02-08 13:48:49.000000000 
+0100
+++ /mounts/work_src_done/STABLE/wireless-tools/wireless-tools.changes  
2011-08-23 21:05:49.000000000 +0200
@@ -1,0 +2,12 @@
+Tue Aug 23 19:04:04 CEST 2011 - dmuel...@suse.de
+
+- update to 30.pre9:
+  o Create iwlib-private.h to minimise namespace pollution [iwlib]
+  o More fix to the 64->32bit band-aid for encode [iwlib]
+  o Update udev rule to remove a warning [19-udev-ifrename.rules]
+    (from Ritesh Raj Sarraf <r...@researchut.com> and Guus Sliepen)
+  o Propagate error codes out of main for get [iwconfig/iwlist/iwspy]
+   (From Guus Sliepen <g...@debian.org>)
+  o Remove spurious commands from Czech iwconfig manpage.
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
  wireless_tools.30.pre8.tar.bz2

New:
----
  wireless_tools.30.pre9.tar.gz

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

Other differences:
------------------
++++++ wireless-tools.spec ++++++
--- /var/tmp/diff_new_pack.qmkeio/_old  2011-08-24 13:46:55.000000000 +0200
+++ /var/tmp/diff_new_pack.qmkeio/_new  2011-08-24 13:46:55.000000000 +0200
@@ -22,14 +22,14 @@
 BuildRequires:  openssl-devel udev
 Summary:        Tools for a wireless LAN
 %define major_version 30
-Version:        %{major_version}.pre8
-Release:        19
+Version:        %{major_version}.pre9
+Release:        1
 Group:          Hardware/Wifi
 License:        GPLv2+
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Url:            http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html
 AutoReqProv:    on
-Source:         wireless_tools.%{version}.tar.bz2
+Source:         wireless_tools.%{version}.tar.gz
 Patch:          wireless_tools.dif
 Patch1:         lwepgen-as-needed.patch
 Source2:        suse-files.tar.gz
@@ -55,7 +55,7 @@
 Requires:       libiw30 = %{version} glibc-devel
 
 %description
-This package contain the wireless tools, used to manipulate the
+This package contains the wireless tools, used to manipulate the
 wireless extensions. The wireless extension is an interface that allows
 you to set wireless LAN specific parameters and get specific stats.
 
@@ -66,7 +66,7 @@
     Jean Tourrilhes <j...@hpl.hp.com>
 
 %description -n libiw30
-This package contain the wireless tools, used to manipulate the
+This package contains the wireless tools, used to manipulate the
 wireless extensions. The wireless extension is an interface that allows
 you to set wireless LAN specific parameters and get specific stats.
 
@@ -77,7 +77,7 @@
     Jean Tourrilhes <j...@hpl.hp.com>
 
 %description -n libiw-devel
-This package contain the wireless tools, used to manipulate the
+This package contains the wireless tools, used to manipulate the
 wireless extensions. The wireless extension is an interface that allows
 you to set wireless LAN specific parameters and get specific stats.
 
@@ -153,6 +153,7 @@
 %files -n libiw-devel
 %defattr(-,root,root)
 %{_libdir}/libiw.so
-%{_includedir}/*
+%{_includedir}/iwlib.h
+%{_includedir}/wireless.h
 
 %changelog

++++++ wireless_tools.dif ++++++
--- /var/tmp/diff_new_pack.qmkeio/_old  2011-08-24 13:46:55.000000000 +0200
+++ /var/tmp/diff_new_pack.qmkeio/_new  2011-08-24 13:46:55.000000000 +0200
@@ -1,8 +1,6 @@
-Index: Makefile
-===================================================================
---- Makefile.orig
+--- Makefile
 +++ Makefile
-@@ -19,7 +19,7 @@ RANLIB = ranlib
+@@ -19,7 +19,7 @@
  ## a local version (non-root).
  ## Standard distros should comment that option to save space and to
  ## build libiw.so used by third parties...
@@ -11,7 +9,7 @@
  
  ## Uncomment this to build without using libm (less efficient).
  ## This is mostly useful for embedded platforms without maths.
-@@ -105,7 +105,7 @@ endif
+@@ -105,7 +105,7 @@
  
  # Other flags
  CFLAGS=-Os -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow \
@@ -20,7 +18,7 @@
  #CFLAGS=-O2 -W -Wall -Wstrict-prototypes -I.
  DEPFLAGS=-MMD
  XCFLAGS=$(CFLAGS) $(DEPFLAGS) $(WARN) $(HEADERS) $(WELIB_FLAG) $(WEDEF_FLAG)
-@@ -121,6 +121,9 @@ all:: $(IWLIB) $(PROGS)
+@@ -121,6 +121,9 @@
  %.so: %.c wireless.h
        $(CC) $(XCFLAGS) $(PICFLAG) -c -o $@ $<
  
@@ -30,44 +28,3 @@
  iwconfig: iwconfig.o $(IWLIB)
  
  iwlist: iwlist.o $(IWLIB)
-Index: iwlib.h
-===================================================================
---- iwlib.h.orig
-+++ iwlib.h
-@@ -60,36 +60,6 @@
- /* Private copy of Wireless extensions (in this directoty) */
- #include "wireless.h"
- 
--/* Make gcc understant that when we say inline, we mean it.
-- * I really hate when the compiler is trying to be more clever than me,
-- * because in this case gcc is not able to figure out functions with a
-- * single call site, so not only I have to tag those functions inline
-- * by hand, but then it refuse to inline them properly.
-- * Total saving for iwevent : 150B = 0.7%.
-- * Fortunately, in gcc 3.4, they now automatically inline static functions
-- * with a single call site. Hurrah !
-- * Jean II */
--#undef IW_GCC_HAS_BROKEN_INLINE
--#if __GNUC__ == 3
--#if __GNUC_MINOR__ >= 1 && __GNUC_MINOR__ < 4
--#define IW_GCC_HAS_BROKEN_INLINE      1
--#endif        /* __GNUC_MINOR__ */
--#endif        /* __GNUC__ */
--/* However, gcc 4.0 has introduce a new "feature", when compiling with
-- * '-Os', it does not want to inline iw_ether_cmp() and friends.
-- * So, we need to fix inline again !
-- * Jean II */
--#if __GNUC__ == 4
--#define IW_GCC_HAS_BROKEN_INLINE      1
--#endif        /* __GNUC__ */
--/* Now, really fix the inline */
--#ifdef IW_GCC_HAS_BROKEN_INLINE
--#ifdef inline
--#undef inline
--#endif        /* inline */
--#define inline                inline          __attribute__((always_inline))
--#endif        /* IW_GCC_HAS_BROKEN_INLINE */
--
- #ifdef __cplusplus
- extern "C" {
- #endif


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



Remember to have fun...

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

Reply via email to