commit crda for openSUSE:Factory

2020-03-26 Thread root
Hello community,

here is the log from the commit of package crda for openSUSE:Factory checked in 
at 2020-03-27 00:22:02

Comparing /work/SRC/openSUSE:Factory/crda (Old)
 and  /work/SRC/openSUSE:Factory/.crda.new.3160 (New)


Package is "crda"

Fri Mar 27 00:22:02 2020 rev:28 rq:784306 version:3.18

Changes:

--- /work/SRC/openSUSE:Factory/crda/crda.changes2017-06-17 
10:19:37.076286037 +0200
+++ /work/SRC/openSUSE:Factory/.crda.new.3160/crda.changes  2020-03-27 
00:22:03.992158609 +0100
@@ -1,0 +2,7 @@
+Thu Mar 12 11:34:19 CET 2020 - r...@suse.de
+
+- add patch crda-python3.patch to build using python3
+  it is actually only used for a small helper script splitting
+  pem files to individual keys 
+
+---

New:

  crda-python3.patch



Other differences:
--
++ crda.spec ++
--- /var/tmp/diff_new_pack.DsffBV/_old  2020-03-27 00:22:04.924159081 +0100
+++ /var/tmp/diff_new_pack.DsffBV/_new  2020-03-27 00:22:04.928159083 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package crda
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,26 +12,26 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %{!?_udevrulesdir: %global _udevrulesdir %(pkg-config --variable=udevdir 
udev)/rules.d }
-
-Url:http://linuxwireless.org/en/developers/Regulatory/CRDA
+%define skip_python2 1
 
 Name:   crda
 Summary:802.11 central regulatory domain agent
 License:SUSE-Copyleft-Next-0.3.0
 Group:  Hardware/Wifi
+URL:http://linuxwireless.org/en/developers/Regulatory/CRDA
 Version:3.18
 Release:0
 Source: 
http://kernel.org/pub/software/network/crda/crda-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libgcrypt-devel
 BuildRequires:  pkg-config
-BuildRequires:  python
-BuildRequires:  python-m2crypto
+BuildRequires:  python3
+BuildRequires:  python3-pycrypto
 BuildRequires:  wireless-regdb
 BuildRequires:  pkgconfig(libnl-3.0)
 BuildRequires:  pkgconfig(udev)
@@ -39,6 +39,7 @@
 Supplements:kernel >= 2.6.29
 # PATCH-FIX-OPENSUSE gcc6-fix-errors.patch -- Fix errors seen by GCC6.
 Patch0: gcc6-fix-errors.patch
+Patch1: crda-python3.patch
 
 %description
 The crda binary provides access to the wireless-regdb to the kernel
@@ -47,6 +48,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 # make install calls 'ldconfig' and fails if it cannot run it...
 ln -s /bin/true ldconfig
 

++ crda-python3.patch ++
From: Taahir Ahmed 

utils/key2pub.py can now be run under either python 2.7 or python 3.x.
This required some minor syntactical changes as well as switching from
M2Crypto to pycrypto, since M2Crypto doesn't support python 3.x.

In addition, some errors in the generated source file keys-ssl.h are
fixed:

  * The correct OpenSSL header for BN_ULONG is included.

  * The generated constants are given the 'ull' suffix to prevent
warnings about constants that are too large.
---
 Makefile |   2 +-
 utils/key2pub.py | 146 ---
 2 files changed, 75 insertions(+), 73 deletions(-)

diff --git a/Makefile b/Makefile
index a3ead30..65fc780 100644
--- a/Makefile
+++ b/Makefile
@@ -112,7 +112,7 @@ $(REG_BIN):
 keys-%.c: utils/key2pub.py $(wildcard $(PUBKEY_DIR)/*.pem)
$(NQ) '  GEN ' $@
$(NQ) '  Trusted pubkeys:' $(wildcard $(PUBKEY_DIR)/*.pem)
-   $(Q)./utils/key2pub.py --$* $(wildcard $(PUBKEY_DIR)/*.pem) $@
+   $(Q) python3 ./utils/key2pub.py --$* $(wildcard $(PUBKEY_DIR)/*.pem) $@
 
 $(LIBREG): regdb.h reglib.h reglib.c
$(NQ) '  CC  ' $@
diff --git a/utils/key2pub.py b/utils/key2pub.py
index 3e84cd2..ff92748 100755
--- a/utils/key2pub.py
+++ b/utils/key2pub.py
@@ -1,126 +1,128 @@
 #!/usr/bin/env python
 
+import io
 import sys
 try:
-   from M2Crypto import RSA
-except ImportError, e:
-   sys.stderr.write('ERROR: Failed to import the "M2Crypto" module: %s\n' 
% e.message)
-   sys.stderr.write('Please install the "M2Crypto" Python module.\n')
-   sys.stderr.write('On Debian GNU/Linux the package is called 
"python-m2crypto".\n')
-   sys.exit(1)
+from Crypto.PublicKey import RSA
+except ImportError as e:
+sys.stderr.write('ERROR: Failed to import the "Crypto.PublicKey" 

commit crda for openSUSE:Factory

2017-06-17 Thread root
Hello community,

here is the log from the commit of package crda for openSUSE:Factory checked in 
at 2017-06-17 10:19:35

Comparing /work/SRC/openSUSE:Factory/crda (Old)
 and  /work/SRC/openSUSE:Factory/.crda.new (New)


Package is "crda"

Sat Jun 17 10:19:35 2017 rev:27 rq:501355 version:3.18

Changes:

--- /work/SRC/openSUSE:Factory/crda/crda.changes2016-05-31 
12:10:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.crda.new/crda.changes   2017-06-17 
10:19:37.076286037 +0200
@@ -1,0 +2,6 @@
+Sat Jun  3 09:30:42 UTC 2017 - meiss...@suse.com
+
+- adjust Makefile patch to not include CFLAGS on linker line,
+  this indirectly enables PIE support.
+
+---



Other differences:
--
++ crda.spec ++
--- /var/tmp/diff_new_pack.ND90vc/_old  2017-06-17 10:19:37.676201411 +0200
+++ /var/tmp/diff_new_pack.ND90vc/_new  2017-06-17 10:19:37.676201411 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package crda
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed

++ gcc6-fix-errors.patch ++
--- /var/tmp/diff_new_pack.ND90vc/_old  2017-06-17 10:19:37.720195205 +0200
+++ /var/tmp/diff_new_pack.ND90vc/_new  2017-06-17 10:19:37.724194641 +0200
@@ -1,6 +1,8 @@
 crda-3.18/Makefile 2016-05-25 11:21:57.462831428 +0200
-+++ crda-3.18/Makefile 2014-12-11 00:51:29.0 +0100
-@@ -26,7 +26,7 @@
+Index: crda-3.18/Makefile
+===
+--- crda-3.18.orig/Makefile
 crda-3.18/Makefile
+@@ -26,7 +26,7 @@ PUBKEY_DIR?=pubkeys
  RUNTIME_PUBKEY_DIR?=/etc/wireless-regdb/pubkeys
  
  CFLAGS += -O2 -fpic
@@ -9,3 +11,32 @@
  CFLAGS += -Wall -g
  LDLIBREG += -lreg
  LDLIBS += $(LDLIBREG)
+@@ -135,23 +135,23 @@ install-libreg:
+ 
+ crda: crda.o
+   $(NQ) '  LD  ' $@
+-  $(Q)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS) $(NLLIBS)
++  $(Q)$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS) $(NLLIBS)
+ 
+ regdbdump: regdbdump.o
+   $(NQ) '  LD  ' $@
+-  $(Q)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)
++  $(Q)$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
+ 
+ intersect: intersect.o
+   $(NQ) '  LD  ' $@
+-  $(Q)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)
++  $(Q)$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
+ 
+ db2rd: db2rd.o
+   $(NQ) '  LD  ' $@
+-  $(Q)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)
++  $(Q)$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
+ 
+ optimize: optimize.o
+   $(NQ) '  LD  ' $@
+-  $(Q)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)
++  $(Q)$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
+ 
+ verify: $(REG_BIN) regdbdump
+   $(NQ) '  CHK  $(REG_BIN)'




commit crda for openSUSE:Factory

2016-05-31 Thread h_root
Hello community,

here is the log from the commit of package crda for openSUSE:Factory checked in 
at 2016-05-31 12:10:41

Comparing /work/SRC/openSUSE:Factory/crda (Old)
 and  /work/SRC/openSUSE:Factory/.crda.new (New)


Package is "crda"

Changes:

--- /work/SRC/openSUSE:Factory/crda/crda.changes2015-07-18 
14:38:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.crda.new/crda.changes   2016-05-31 
12:10:42.0 +0200
@@ -1,0 +2,5 @@
+Wed May 25 09:27:14 UTC 2016 - martin.li...@suse.com
+
+- Add gcc6-fix-errors.patch to remove errors seen by GCC6.
+
+---

New:

  gcc6-fix-errors.patch



Other differences:
--
++ crda.spec ++
--- /var/tmp/diff_new_pack.JWRCJ9/_old  2016-05-31 12:10:43.0 +0200
+++ /var/tmp/diff_new_pack.JWRCJ9/_new  2016-05-31 12:10:43.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package crda
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -37,6 +37,8 @@
 BuildRequires:  pkgconfig(udev)
 Requires:   wireless-regdb
 Supplements:kernel >= 2.6.29
+# PATCH-FIX-OPENSUSE gcc6-fix-errors.patch -- Fix errors seen by GCC6.
+Patch0: gcc6-fix-errors.patch
 
 %description
 The crda binary provides access to the wireless-regdb to the kernel
@@ -44,6 +46,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 # make install calls 'ldconfig' and fails if it cannot run it...
 ln -s /bin/true ldconfig
 

++ gcc6-fix-errors.patch ++
--- crda-3.18/Makefile  2016-05-25 11:21:57.462831428 +0200
+++ crda-3.18/Makefile  2014-12-11 00:51:29.0 +0100
@@ -26,7 +26,7 @@
 RUNTIME_PUBKEY_DIR?=/etc/wireless-regdb/pubkeys
 
 CFLAGS += -O2 -fpic
-CFLAGS += -std=gnu99 -Wall -Werror -pedantic
+CFLAGS += -std=gnu99 -Wall -Werror -Wno-unused-const-variable -pedantic
 CFLAGS += -Wall -g
 LDLIBREG += -lreg
 LDLIBS += $(LDLIBREG)



commit crda for openSUSE:Factory

2015-07-18 Thread h_root
Hello community,

here is the log from the commit of package crda for openSUSE:Factory checked in 
at 2015-07-18 14:38:35

Comparing /work/SRC/openSUSE:Factory/crda (Old)
 and  /work/SRC/openSUSE:Factory/.crda.new (New)


Package is crda

Changes:

--- /work/SRC/openSUSE:Factory/crda/crda.changes2013-11-30 
14:20:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.crda.new/crda.changes   2015-07-18 
14:38:36.0 +0200
@@ -1,0 +2,16 @@
+Sun Jun 28 10:57:08 UTC 2015 - seife+...@b1-systems.com
+
+- update to version 3.18:
+  * user visible: add pubkey of new wireless-regdb maintainer to
+make crda work at all with newer wireless-regdb
+  * synchronize code with latest kernel changes
+  * crda: add AUTO-BW rule flag support
+  * crda: parse/print CAC time
+  * code restructuring and bug fixes
+  *** License is now copyleft-next-0.3.0 ***
+- packaging:
+  * add V=1 to make calls for rpmlint happiness
+  * use %%optflags for compilation
+  * shared library libreg.so is now used by the tools
+
+---

Old:

  crda-1.1.3.tar.bz2

New:

  crda-3.18.tar.xz



Other differences:
--
++ crda.spec ++
--- /var/tmp/diff_new_pack.KsJ7T4/_old  2015-07-18 14:38:38.0 +0200
+++ /var/tmp/diff_new_pack.KsJ7T4/_new  2015-07-18 14:38:38.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package crda
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX 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,11 @@
 
 Name:   crda
 Summary:802.11 central regulatory domain agent
-License:ISC
+License:SUSE-Copyleft-Next-0.3.0
 Group:  Hardware/Wifi
-Version:1.1.3
+Version:3.18
 Release:0
-Source: 
http://linuxwireless.org/download/%{name}/%{name}-%{version}.tar.bz2
+Source: 
http://kernel.org/pub/software/network/crda/crda-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libgcrypt-devel
 BuildRequires:  pkg-config
@@ -44,21 +44,30 @@
 
 %prep
 %setup -q
+# make install calls 'ldconfig' and fails if it cannot run it...
+ln -s /bin/true ldconfig
 
 %build
-make all_noverify %{?_smp_mflags}
+export CFLAGS=%{optflags}
+make all_noverify %{?_smp_mflags} V=1
 
 %install
-make DESTDIR=$RPM_BUILD_ROOT SBINDIR=%{_sbindir}/ 
UDEV_RULE_DIR=%{_udevrulesdir} install
+# to find ldconfig...
+export PATH=.:$PATH
+make DESTDIR=$RPM_BUILD_ROOT SBINDIR=%{_sbindir}/ 
UDEV_RULE_DIR=%{_udevrulesdir} LIBDIR=%{_libdir} install
 #UsrMerge
 mkdir $RPM_BUILD_ROOT/sbin
 ln -sf %{_sbindir}/{crda,regdbdump} $RPM_BUILD_ROOT/sbin
 #EndUserMerge
 
+# clean up unneeded stuff...
+rm -r %{buildroot}/usr/include/reglib
+
 %files
 %defattr(-,root,root)
 %_sbindir/crda
 %_sbindir/regdbdump
+%_libdir/libreg.so
 #UsrMerge
 /sbin/crda
 /sbin/regdbdump




commit crda for openSUSE:Factory

2013-11-30 Thread h_root
Hello community,

here is the log from the commit of package crda for openSUSE:Factory checked in 
at 2013-11-30 14:20:08

Comparing /work/SRC/openSUSE:Factory/crda (Old)
 and  /work/SRC/openSUSE:Factory/.crda.new (New)


Package is crda

Changes:

--- /work/SRC/openSUSE:Factory/crda/crda.changes2013-03-22 
13:12:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.crda.new/crda.changes   2013-11-30 
14:20:11.0 +0100
@@ -1,0 +2,12 @@
+Sun Nov 24 20:21:37 UTC 2013 - crrodrig...@opensuse.org
+
+- use libnl3 which is now supported 
+
+---
+Sat Nov 23 05:17:29 UTC 2013 - crrodrig...@opensuse.org
+
+- update to 1.1.3 release (no changelog)
+- run %udev_rules_update in %post if defined
+- Correct _udevrulesdir definition for old distros
+
+---

Old:

  crda-1.1.2.tar.bz2

New:

  crda-1.1.3.tar.bz2



Other differences:
--
++ crda.spec ++
--- /var/tmp/diff_new_pack.PZKfgy/_old  2013-11-30 14:20:11.0 +0100
+++ /var/tmp/diff_new_pack.PZKfgy/_new  2013-11-30 14:20:11.0 +0100
@@ -16,12 +16,7 @@
 #
 
 
-%if %( echo `rpm -q --queryformat %%{version} udev` )  190
-%define _udevrulesdir /usr/lib/udev/rules.d
-%else
-%define _udevrulesdir /lib/udev/rules.d
-
-%endif
+%{!?_udevrulesdir: %global _udevrulesdir %(pkg-config --variable=udevdir 
udev)/rules.d }
 
 Url:http://linuxwireless.org/en/developers/Regulatory/CRDA
 
@@ -29,17 +24,17 @@
 Summary:802.11 central regulatory domain agent
 License:ISC
 Group:  Hardware/Wifi
-Version:1.1.2
+Version:1.1.3
 Release:0
 Source: 
http://linuxwireless.org/download/%{name}/%{name}-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libgcrypt-devel
-BuildRequires:  libnl-1_1-devel
 BuildRequires:  pkg-config
 BuildRequires:  python
 BuildRequires:  python-m2crypto
-BuildRequires:  udev
 BuildRequires:  wireless-regdb
+BuildRequires:  pkgconfig(libnl-3.0)
+BuildRequires:  pkgconfig(udev)
 Requires:   wireless-regdb
 Supplements:kernel = 2.6.29
 
@@ -72,4 +67,7 @@
 %{_mandir}/man8/crda.8.gz
 %{_mandir}/man8/regdbdump.8.gz
 
+%post
+%{?udev_rules_update:%udev_rules_update}
+
 %changelog

++ crda-1.1.2.tar.bz2 - crda-1.1.3.tar.bz2 ++
 3428 lines of diff (skipped)

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



commit crda for openSUSE:Factory

2013-03-22 Thread h_root
Hello community,

here is the log from the commit of package crda for openSUSE:Factory checked in 
at 2013-03-22 13:12:36

Comparing /work/SRC/openSUSE:Factory/crda (Old)
 and  /work/SRC/openSUSE:Factory/.crda.new (New)


Package is crda, Maintainer is mac...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/crda/crda.changes2012-10-18 
22:10:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.crda.new/crda.changes   2013-03-22 
13:12:37.0 +0100
@@ -1,0 +2,6 @@
+Fri Mar 22 08:29:25 UTC 2013 - mmeis...@suse.com
+
+- Added url as source.
+  Please see http://en.opensuse.org/SourceUrls
+
+---



Other differences:
--
++ crda.spec ++
--- /var/tmp/diff_new_pack.bh1X4Q/_old  2013-03-22 13:12:38.0 +0100
+++ /var/tmp/diff_new_pack.bh1X4Q/_new  2013-03-22 13:12:38.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package crda
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -31,7 +31,7 @@
 Group:  Hardware/Wifi
 Version:1.1.2
 Release:0
-Source: %{name}-%{version}.tar.bz2
+Source: 
http://linuxwireless.org/download/%{name}/%{name}-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libgcrypt-devel
 BuildRequires:  libnl-1_1-devel

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



commit crda for openSUSE:Factory

2012-10-18 Thread h_root
Hello community,

here is the log from the commit of package crda for openSUSE:Factory checked in 
at 2012-10-18 22:10:36

Comparing /work/SRC/openSUSE:Factory/crda (Old)
 and  /work/SRC/openSUSE:Factory/.crda.new (New)


Package is crda, Maintainer is mac...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/crda/crda.changes2012-09-14 
12:15:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.crda.new/crda.changes   2012-10-18 
22:10:40.0 +0200
@@ -1,0 +2,5 @@
+Wed Oct 17 11:19:13 UTC 2012 - fcro...@suse.com
+
+- Fix build with udev rules directory new location.
+
+---



Other differences:
--
++ crda.spec ++
--- /var/tmp/diff_new_pack.7hTdWh/_old  2012-10-18 22:10:44.0 +0200
+++ /var/tmp/diff_new_pack.7hTdWh/_new  2012-10-18 22:10:44.0 +0200
@@ -16,6 +16,13 @@
 #
 
 
+%if %( echo `rpm -q --queryformat %%{version} udev` )  190
+%define _udevrulesdir /usr/lib/udev/rules.d
+%else
+%define _udevrulesdir /lib/udev/rules.d
+
+%endif
+
 Url:http://linuxwireless.org/en/developers/Regulatory/CRDA
 
 Name:   crda
@@ -47,7 +54,7 @@
 make all_noverify %{?_smp_mflags}
 
 %install
-make DESTDIR=$RPM_BUILD_ROOT SBINDIR=%{_sbindir}/ install
+make DESTDIR=$RPM_BUILD_ROOT SBINDIR=%{_sbindir}/ 
UDEV_RULE_DIR=%{_udevrulesdir} install
 #UsrMerge
 mkdir $RPM_BUILD_ROOT/sbin
 ln -sf %{_sbindir}/{crda,regdbdump} $RPM_BUILD_ROOT/sbin
@@ -61,7 +68,7 @@
 /sbin/crda
 /sbin/regdbdump
 #EndUserMerge
-/lib/udev/rules.d/85-regulatory.rules
+%{_udevrulesdir}/85-regulatory.rules
 %{_mandir}/man8/crda.8.gz
 %{_mandir}/man8/regdbdump.8.gz
 

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



commit crda for openSUSE:Factory

2012-09-14 Thread h_root
Hello community,

here is the log from the commit of package crda for openSUSE:Factory checked in 
at 2012-09-14 12:15:37

Comparing /work/SRC/openSUSE:Factory/crda (Old)
 and  /work/SRC/openSUSE:Factory/.crda.new (New)


Package is crda, Maintainer is mac...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/crda/crda.changes2012-09-13 
00:01:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.crda.new/crda.changes   2012-09-14 
12:15:38.0 +0200
@@ -1,0 +2,6 @@
+Thu Sep 13 11:11:28 UTC 2012 - cfarr...@suse.com
+
+- license update: ISC
+  License is ISC, not BSD-3-Clause
+
+---



Other differences:
--
++ crda.spec ++
--- /var/tmp/diff_new_pack.6vSXcC/_old  2012-09-14 12:15:39.0 +0200
+++ /var/tmp/diff_new_pack.6vSXcC/_new  2012-09-14 12:15:39.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   crda
 Summary:802.11 central regulatory domain agent
-License:BSD-3-Clause
+License:ISC
 Group:  Hardware/Wifi
 Version:1.1.2
 Release:0

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



commit crda for openSUSE:Factory

2012-09-12 Thread h_root
Hello community,

here is the log from the commit of package crda for openSUSE:Factory checked in 
at 2012-09-13 00:01:34

Comparing /work/SRC/openSUSE:Factory/crda (Old)
 and  /work/SRC/openSUSE:Factory/.crda.new (New)


Package is crda, Maintainer is mac...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/crda/crda.changes2012-02-29 
14:06:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.crda.new/crda.changes   2012-09-13 
00:01:35.0 +0200
@@ -1,0 +2,5 @@
+Sun Sep  9 18:28:40 UTC 2012 - p.drou...@gmail.com
+
+- update to 1.1.2 release
+
+---

Old:

  crda-1.1.1.tar.bz2

New:

  crda-1.1.2.tar.bz2



Other differences:
--
++ crda.spec ++
--- /var/tmp/diff_new_pack.fV3EDm/_old  2012-09-13 00:01:41.0 +0200
+++ /var/tmp/diff_new_pack.fV3EDm/_new  2012-09-13 00:01:41.0 +0200
@@ -22,7 +22,7 @@
 Summary:802.11 central regulatory domain agent
 License:BSD-3-Clause
 Group:  Hardware/Wifi
-Version:1.1.1
+Version:1.1.2
 Release:0
 Source: %{name}-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -62,7 +62,7 @@
 /sbin/regdbdump
 #EndUserMerge
 /lib/udev/rules.d/85-regulatory.rules
-/usr/share/man/man8/crda.8.gz
-/usr/share/man/man8/regdbdump.8.gz
+%{_mandir}/man8/crda.8.gz
+%{_mandir}/man8/regdbdump.8.gz
 
 %changelog

++ crda-1.1.1.tar.bz2 - crda-1.1.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crda-1.1.1/Makefile new/crda-1.1.2/Makefile
--- old/crda-1.1.1/Makefile 2010-01-25 18:43:20.0 +0100
+++ new/crda-1.1.2/Makefile 2011-08-10 01:36:19.0 +0200
@@ -47,15 +47,22 @@
 
 NL1FOUND := $(shell pkg-config --atleast-version=1 libnl-1  echo Y)
 NL2FOUND := $(shell pkg-config --atleast-version=2 libnl-2.0  echo Y)
+NL3FOUND := $(shell pkg-config --atleast-version=3 libnl-3.0  echo Y)
 
-ifeq ($(NL1FOUND),Y)
-NLLIBNAME = libnl-1
-endif
-
-ifeq ($(NL2FOUND),Y)
-CFLAGS += -DCONFIG_LIBNL20
+ifeq ($(NL3FOUND),Y)
+CFLAGS += -DCONFIG_LIBNL30
 NLLIBS += -lnl-genl
-NLLIBNAME = libnl-2.0
+NLLIBNAME = libnl-3.0
+else
+   ifeq ($(NL2FOUND),Y)
+   CFLAGS += -DCONFIG_LIBNL20
+   NLLIBS += -lnl-genl
+   NLLIBNAME = libnl-2.0
+   else
+   ifeq ($(NL1FOUND),Y)
+   NLLIBNAME = libnl-1
+   endif
+   endif
 endif
 
 ifeq ($(NLLIBNAME),)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crda-1.1.1/crda.c new/crda-1.1.2/crda.c
--- old/crda-1.1.1/crda.c   2010-01-25 18:43:20.0 +0100
+++ new/crda-1.1.2/crda.c   2011-08-10 01:36:19.0 +0200
@@ -21,7 +21,7 @@
 #include regdb.h
 #include reglib.h
 
-#ifndef CONFIG_LIBNL20
+#if !defined(CONFIG_LIBNL20)  !defined(CONFIG_LIBNL30)
 /* libnl 2.0 compatibility code */
 static inline struct nl_handle *nl_socket_alloc(void)
 {
@@ -44,7 +44,7 @@
 
 #define genl_ctrl_alloc_cache __genl_ctrl_alloc_cache
 #define nl_sock nl_handle
-#endif /* CONFIG_LIBNL20 */
+#endif /* CONFIG_LIBNL20  CONFIG_LIBNL30 */
 
 struct nl80211_state {
struct nl_sock *nl_sock;

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



commit crda for openSUSE:Factory

2012-02-29 Thread h_root
Hello community,

here is the log from the commit of package crda for openSUSE:Factory checked in 
at 2012-02-29 14:06:01

Comparing /work/SRC/openSUSE:Factory/crda (Old)
 and  /work/SRC/openSUSE:Factory/.crda.new (New)


Package is crda, Maintainer is mac...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/crda/crda.changes2012-02-07 
14:45:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.crda.new/crda.changes   2012-02-29 
14:06:03.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 28 14:39:33 UTC 2012 - pce...@suse.com
+
+- use correct filepath in udev rule
+
+---



Other differences:
--
++ crda.spec ++
--- /var/tmp/diff_new_pack.XyUY2h/_old  2012-02-29 14:06:04.0 +0100
+++ /var/tmp/diff_new_pack.XyUY2h/_new  2012-02-29 14:06:04.0 +0100
@@ -47,7 +47,7 @@
 make all_noverify %{?_smp_mflags}
 
 %install
-make DESTDIR=$RPM_BUILD_ROOT SBINDIR=%{_sbindir} install
+make DESTDIR=$RPM_BUILD_ROOT SBINDIR=%{_sbindir}/ install
 #UsrMerge
 mkdir $RPM_BUILD_ROOT/sbin
 ln -sf %{_sbindir}/{crda,regdbdump} $RPM_BUILD_ROOT/sbin

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



commit crda for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package crda for openSUSE:Factory checked in 
at 2011-12-06 18:04:31

Comparing /work/SRC/openSUSE:Factory/crda (Old)
 and  /work/SRC/openSUSE:Factory/.crda.new (New)


Package is crda, Maintainer is mac...@suse.com

Changes:




Other differences:
--
++ crda.spec ++
--- /var/tmp/diff_new_pack.Ly4cer/_old  2011-12-06 18:07:05.0 +0100
+++ /var/tmp/diff_new_pack.Ly4cer/_new  2011-12-06 18:07:05.0 +0100
@@ -23,7 +23,7 @@
 Version:1.1.1
 Release:1
 Group:  Hardware/Wifi
-License:BSD3c(or similar)
+License:BSD-3-Clause
 Source: %{name}-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libgcrypt-devel libnl-1_1-devel pkg-config python 
python-m2crypto udev wireless-regdb

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



commit crda for openSUSE:Factory

2011-09-19 Thread h_root

Hello community,

here is the log from the commit of package crda for openSUSE:Factory
checked in at Mon Sep 19 15:57:19 CEST 2011.




--- crda/crda.changes   2010-03-05 01:36:07.0 +0100
+++ /mounts/work_src_done/STABLE/crda/crda.changes  2011-09-18 
01:59:11.0 +0200
@@ -1,0 +2,11 @@
+Sat Sep 17 23:59:07 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant tags/sections from specfile
+- Use %_smp_mflags for parallel build
+
+---
+Fri Sep 16 12:02:37 UTC 2011 - jeng...@medozas.de
+
+- Select libnl-1_1-devel
+
+---

calling whatdependson for head-i586




Other differences:
--
++ crda.spec ++
--- /var/tmp/diff_new_pack.5dh8Cg/_old  2011-09-19 15:57:15.0 +0200
+++ /var/tmp/diff_new_pack.5dh8Cg/_new  2011-09-19 15:57:15.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package crda (Version 1.1.1)
+# spec file for package crda
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 Url:http://linuxwireless.org/en/developers/Regulatory/CRDA
 
@@ -27,7 +26,7 @@
 License:BSD3c(or similar)
 Source: %{name}-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  libgcrypt-devel libnl-devel pkg-config python python-m2crypto 
udev wireless-regdb
+BuildRequires:  libgcrypt-devel libnl-1_1-devel pkg-config python 
python-m2crypto udev wireless-regdb
 Requires:   wireless-regdb
 Supplements:kernel = 2.6.29
 
@@ -35,19 +34,11 @@
 The crda binary provides access to the wireless-regdb to the kernel
 through udev.
 
-
-
-Authors:
-
-Luis R. Rodriguez mcg...@gmail.com
-Johannes Berg johan...@sipsolutions.net
-Michael Green michael.gr...@atheros.com
-
 %prep
 %setup -q
 
 %build
-make all_noverify
+make all_noverify %{?_smp_mflags}
 
 %install
 make DESTDIR=$RPM_BUILD_ROOT install
@@ -60,7 +51,4 @@
 /usr/share/man/man8/crda.8.gz
 /usr/share/man/man8/regdbdump.8.gz
 
-%clean
-rm -rf %{buildroot}
-
 %changelog






Remember to have fun...

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