Hello community, here is the log from the commit of package wireless-regdb for openSUSE:Factory checked in at 2018-09-04 22:47:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/wireless-regdb (Old) and /work/SRC/openSUSE:Factory/.wireless-regdb.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "wireless-regdb" Tue Sep 4 22:47:34 2018 rev:36 rq:632250 version:2018.05.31 Changes: -------- --- /work/SRC/openSUSE:Factory/wireless-regdb/wireless-regdb.changes 2018-06-05 12:49:15.193678811 +0200 +++ /work/SRC/openSUSE:Factory/.wireless-regdb.new/wireless-regdb.changes 2018-09-04 22:47:38.271245391 +0200 @@ -1,0 +2,6 @@ +Thu Aug 30 06:58:56 UTC 2018 - Martin Pluskal <[email protected]> + +- Update to version 2018.05.31 (boo#1106528): + * Fix power limit in 5725-5785 GHz rule for France + +------------------------------------------------------------------- Old: ---- wireless-regdb-2018.05.09.tar.xz New: ---- wireless-regdb-2018.05.31.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ wireless-regdb.spec ++++++ --- /var/tmp/diff_new_pack.TFV5ZP/_old 2018-09-04 22:47:39.063248118 +0200 +++ /var/tmp/diff_new_pack.TFV5ZP/_new 2018-09-04 22:47:39.063248118 +0200 @@ -12,12 +12,12 @@ # 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/ # Name: wireless-regdb -Version: 2018.05.09 +Version: 2018.05.31 Release: 0 Summary: 802.11 regulatory domain database License: ISC ++++++ wireless-regdb-2018.05.09.tar.xz -> wireless-regdb-2018.05.31.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wireless-regdb-2018.05.09/db.txt new/wireless-regdb-2018.05.31/db.txt --- old/wireless-regdb-2018.05.09/db.txt 2018-05-09 15:12:21.000000000 +0200 +++ new/wireless-regdb-2018.05.31/db.txt 2018-05-31 16:53:30.000000000 +0200 @@ -475,6 +475,8 @@ (5170 - 5250 @ 80), (20), AUTO-BW, wmmrule=ETSI (5250 - 5330 @ 80), (20), DFS, AUTO-BW, wmmrule=ETSI (5490 - 5710 @ 160), (27), DFS, wmmrule=ETSI + # short range devices (ETSI EN 300 440) + (5725 - 5875 @ 80), (25 mW) # 60 GHz band channels 1-4, ref: Etsi En 302 567 (57000 - 66000 @ 2160), (40) @@ -961,11 +963,15 @@ (5250 - 5330 @ 80), (20), DFS, AUTO-BW (5490 - 5710 @ 160), (27), DFS +# Source: +# http://www.asep.gob.pa/images/telecomunicaciones/Anexos/PNAF-dic2015.pdf country PA: DFS-FCC - (2402 - 2472 @ 40), (30) - (5170 - 5250 @ 80), (17), AUTO-BW - (5250 - 5330 @ 80), (23), DFS, AUTO-BW - (5735 - 5835 @ 80), (30) + (2400 - 2483.5 @ 40), (36) + (5150 - 5250 @ 80), (36), AUTO-BW + (5250 - 5350 @ 80), (30), AUTO-BW + (5470 - 5725 @ 160), (30) + (5725 - 5850 @ 80), (36) + (57000 - 64000 @ 2160), (43) country PE: DFS-FCC (2402 - 2482 @ 40), (20) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wireless-regdb-2018.05.09/db2fw.py new/wireless-regdb-2018.05.31/db2fw.py --- old/wireless-regdb-2018.05.09/db2fw.py 2018-05-09 15:12:21.000000000 +0200 +++ new/wireless-regdb-2018.05.31/db2fw.py 2018-05-31 16:53:30.000000000 +0200 @@ -29,7 +29,7 @@ def create_wmms(countries): result = {} - for c in countries.itervalues(): + for c in countries.values(): for rule in c.permissions: if rule.wmmrule is not None: result[rule.wmmrule] = 1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wireless-regdb-2018.05.09/dbparse.py new/wireless-regdb-2018.05.31/dbparse.py --- old/wireless-regdb-2018.05.09/dbparse.py 2018-05-09 15:12:21.000000000 +0200 +++ new/wireless-regdb-2018.05.31/dbparse.py 2018-05-31 16:53:30.000000000 +0200 @@ -32,7 +32,7 @@ @total_ordering [email protected](frozen=True) [email protected](frozen=True, cmp=False) class WmmRule(object): vo_c = attr.ib() vi_c = attr.ib() @@ -47,6 +47,22 @@ return (self.vo_c, self.vi_c, self.be_c, self.bk_c, self.vo_ap, self.vi_ap, self.be_ap, self.bk_ap) + def __eq__(self, other): + if other is None: + return False + return (self._as_tuple() == other._as_tuple()) + + def __ne__(self, other): + return not (self == other) + + def __lt__(self, other): + if other is None: + return False + return (self._as_tuple() < other._as_tuple()) + + def __hash__(self): + return hash(self._as_tuple()) + class FreqBand(object): def __init__(self, start, end, bw, comments=None): self.start = start Binary files old/wireless-regdb-2018.05.09/regulatory.bin and new/wireless-regdb-2018.05.31/regulatory.bin differ Binary files old/wireless-regdb-2018.05.09/regulatory.db and new/wireless-regdb-2018.05.31/regulatory.db differ Binary files old/wireless-regdb-2018.05.09/regulatory.db.p7s and new/wireless-regdb-2018.05.31/regulatory.db.p7s differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wireless-regdb-2018.05.09/sha1sum.txt new/wireless-regdb-2018.05.31/sha1sum.txt --- old/wireless-regdb-2018.05.09/sha1sum.txt 2018-05-09 15:12:21.000000000 +0200 +++ new/wireless-regdb-2018.05.31/sha1sum.txt 2018-05-31 16:53:30.000000000 +0200 @@ -1 +1 @@ -6f2a26095237c64654fad1ca6c18db9de4c28842 db.txt +5b30976883d682d348419047f56be9ec5309f15e db.txt
