Hello community,

here is the log from the commit of package publicsuffix for openSUSE:Factory 
checked in at 2019-01-11 14:01:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/publicsuffix (Old)
 and      /work/SRC/openSUSE:Factory/.publicsuffix.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "publicsuffix"

Fri Jan 11 14:01:13 2019 rev:44 rq:663040 version:20181227

Changes:
--------
--- /work/SRC/openSUSE:Factory/publicsuffix/publicsuffix.changes        
2018-11-06 15:21:34.864856538 +0100
+++ /work/SRC/openSUSE:Factory/.publicsuffix.new.28833/publicsuffix.changes     
2019-01-11 14:01:15.228055826 +0100
@@ -1,0 +2,14 @@
+Sat Jan 05 14:35:14 UTC 2019 - astie...@suse.com
+
+- Update to version 20181227:
+  * Add run.app and a.run.app to the psl (#681)
+  * Add telebit.io .app .xyz (#726)
+  * Add Leadpages domains (#731)
+  * Add public suffix entries for dapps.earth (#708)
+  * Add Bytemark Hosting domains (#620)
+  * Remove .STATOIL
+  * linter: Expect rules to be in NFKC (#725)
+  * Convert list data from NFKD to NFKC (#720)
+  * Update LS (#718)
+
+-------------------------------------------------------------------

Old:
----
  publicsuffix-20181030.tar.xz

New:
----
  publicsuffix-20181227.tar.xz

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

Other differences:
------------------
++++++ publicsuffix.spec ++++++
--- /var/tmp/diff_new_pack.pr4epq/_old  2019-01-11 14:01:16.344054702 +0100
+++ /var/tmp/diff_new_pack.pr4epq/_new  2019-01-11 14:01:16.380054666 +0100
@@ -18,7 +18,7 @@
 
 
 Name:           publicsuffix
-Version:        20181030
+Version:        20181227
 Release:        0
 Summary:        Cross-vendor public domain suffix database
 License:        MPL-2.0

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.pr4epq/_old  2019-01-11 14:01:16.508054537 +0100
+++ /var/tmp/diff_new_pack.pr4epq/_new  2019-01-11 14:01:16.508054537 +0100
@@ -1,4 +1,4 @@
 <servicedata>
 <service name="tar_scm">
             <param name="url">https://github.com/publicsuffix/list.git</param>
-          <param 
name="changesrevision">7f2ae66b0cd6ca54769ce65bdc43fa725c4951e0</param></service></servicedata>
\ No newline at end of file
+          <param 
name="changesrevision">921a6f225aa00f557388998865ad11dfbbc2f704</param></service></servicedata>
\ No newline at end of file

++++++ publicsuffix-20181030.tar.xz -> publicsuffix-20181227.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/publicsuffix-20181030/linter/pslint.py 
new/publicsuffix-20181227/linter/pslint.py
--- old/publicsuffix-20181030/linter/pslint.py  2018-10-30 11:07:30.000000000 
+0100
+++ new/publicsuffix-20181227/linter/pslint.py  2018-12-27 17:30:12.000000000 
+0100
@@ -25,6 +25,7 @@
 
 import sys
 import codecs
+import unicodedata
 
 nline = 0
 line = ""
@@ -104,7 +105,7 @@
        for line in lines:
                nline += 1
 
-               # check for leadind/trailing whitespace
+               # check for leading/trailing whitespace
                stripped = line.strip()
                if stripped != line:
                        line = line.replace('\t','\\t')
@@ -168,6 +169,10 @@
                        error('Invalid UTF-8 character')
                        continue
 
+               # rules must be NFC coded (Unicode's Normal Form Kanonical 
Composition)
+               if unicodedata.normalize("NFKC", line) != line:
+                       error('Rule must be NFKC')
+
                # each rule must be lowercase (or more exactly: not uppercase 
and not titlecase)
                if line != line.lower():
                        error('Rule must be lowercase')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/publicsuffix-20181030/linter/test_NFKC.expected 
new/publicsuffix-20181227/linter/test_NFKC.expected
--- old/publicsuffix-20181030/linter/test_NFKC.expected 1970-01-01 
01:00:00.000000000 +0100
+++ new/publicsuffix-20181227/linter/test_NFKC.expected 2018-12-27 
17:30:12.000000000 +0100
@@ -0,0 +1,2 @@
+9: error: Rule must be NFKC: 'südtirol.it'
+11: warning: No PRIVATE section found
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/publicsuffix-20181030/linter/test_NFKC.input 
new/publicsuffix-20181227/linter/test_NFKC.input
--- old/publicsuffix-20181030/linter/test_NFKC.input    1970-01-01 
01:00:00.000000000 +0100
+++ new/publicsuffix-20181227/linter/test_NFKC.input    2018-12-27 
17:30:12.000000000 +0100
@@ -0,0 +1,11 @@
+// test:
+// - label contains non-NFKC character(s)
+//
+// best viewed with 'LC_ALL=C.UTF-8 vi <filename>' (or any other UTF-8 locale)
+
+// ===BEGIN ICANN DOMAINS===
+
+südtirol.it
+südtirol.it
+
+// ===END ICANN DOMAINS===
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/publicsuffix-20181030/public_suffix_list.dat 
new/publicsuffix-20181227/public_suffix_list.dat
--- old/publicsuffix-20181030/public_suffix_list.dat    2018-10-30 
11:07:30.000000000 +0100
+++ new/publicsuffix-20181227/public_suffix_list.dat    2018-12-27 
17:30:12.000000000 +0100
@@ -1414,9 +1414,9 @@
 tos.it
 toscana.it
 trentin-sud-tirol.it
-trentin-süd-tirol.it
+trentin-süd-tirol.it
 trentin-sudtirol.it
-trentin-südtirol.it
+trentin-südtirol.it
 trentin-sued-tirol.it
 trentin-suedtirol.it
 trentino-a-adige.it
@@ -1426,9 +1426,9 @@
 trentino-s-tirol.it
 trentino-stirol.it
 trentino-sud-tirol.it
-trentino-süd-tirol.it
+trentino-süd-tirol.it
 trentino-sudtirol.it
-trentino-südtirol.it
+trentino-südtirol.it
 trentino-sued-tirol.it
 trentino-suedtirol.it
 trentino.it
@@ -1439,15 +1439,15 @@
 trentinos-tirol.it
 trentinostirol.it
 trentinosud-tirol.it
-trentinosüd-tirol.it
+trentinosüd-tirol.it
 trentinosudtirol.it
-trentinosüdtirol.it
+trentinosüdtirol.it
 trentinosued-tirol.it
 trentinosuedtirol.it
 trentinsud-tirol.it
-trentinsüd-tirol.it
+trentinsüd-tirol.it
 trentinsudtirol.it
-trentinsüdtirol.it
+trentinsüdtirol.it
 trentinsued-tirol.it
 trentinsuedtirol.it
 tuscany.it
@@ -1464,13 +1464,13 @@
 valled-aosta.it
 valledaosta.it
 vallee-aoste.it
-vallée-aoste.it
+vallée-aoste.it
 vallee-d-aoste.it
-vallée-d-aoste.it
+vallée-d-aoste.it
 valleeaoste.it
-valléeaoste.it
+valléeaoste.it
 valleedaoste.it
-valléedaoste.it
+valléedaoste.it
 vao.it
 vda.it
 ven.it
@@ -1504,7 +1504,7 @@
 avellino.it
 ba.it
 balsan-sudtirol.it
-balsan-südtirol.it
+balsan-südtirol.it
 balsan-suedtirol.it
 balsan.it
 bari.it
@@ -1523,7 +1523,7 @@
 bolzano-altoadige.it
 bolzano.it
 bozen-sudtirol.it
-bozen-südtirol.it
+bozen-südtirol.it
 bozen-suedtirol.it
 bozen.it
 br.it
@@ -1532,7 +1532,7 @@
 bs.it
 bt.it
 bulsan-sudtirol.it
-bulsan-südtirol.it
+bulsan-südtirol.it
 bulsan-suedtirol.it
 bulsan.it
 bz.it
@@ -1552,9 +1552,9 @@
 cb.it
 ce.it
 cesena-forli.it
-cesena-forlì.it
+cesena-forlì.it
 cesenaforli.it
-cesenaforlì.it
+cesenaforlì.it
 ch.it
 chieti.it
 ci.it
@@ -1585,9 +1585,9 @@
 fm.it
 foggia.it
 forli-cesena.it
-forlì-cesena.it
+forlì-cesena.it
 forlicesena.it
-forlìcesena.it
+forlìcesena.it
 fr.it
 frosinone.it
 ge.it
@@ -1718,7 +1718,7 @@
 sr.it
 ss.it
 suedtirol.it
-südtirol.it
+südtirol.it
 sv.it
 ta.it
 taranto.it
@@ -3790,10 +3790,18 @@
 org.lr
 net.lr
 
-// ls : https://en.wikipedia.org/wiki/.ls
+// ls : http://www.nic.ls/
+// Confirmed by registry <lsad...@nic.ls>
 ls
+ac.ls
+biz.ls
 co.ls
+edu.ls
+gov.ls
+info.ls
+net.ls
 org.ls
+sc.ls
 
 // lt : https://en.wikipedia.org/wiki/.lt
 lt
@@ -9874,9 +9882,6 @@
 // statefarm : 2015-07-30 State Farm Mutual Automobile Insurance Company
 statefarm
 
-// statoil : 2014-12-04 Statoil ASA
-statoil
-
 // stc : 2014-10-09 Saudi Telecom Company
 stc
 
@@ -10886,6 +10891,11 @@
 // Submitted by Dave Tharp <browsersafetymark...@quicinc.com>
 browsersafetymark.io
 
+// Bytemark Hosting : https://www.bytemark.co.uk
+// Submitted by Paul Cammish <paul.camm...@bytemark.co.uk>
+dh.bytemark.co.uk
+vm.bytemark.co.uk
+
 // callidomus : https://www.callidomus.com/
 // Submitted by Marcus Popp <ad...@callidomus.com>
 mycd.eu
@@ -11078,6 +11088,11 @@
 reg.dk
 store.dk
 
+// dapps.earth : https://dapps.earth/
+// Submitted by Daniil Burdakov <icqk...@gmail.com>
+*.dapps.earth
+*.bzz.dapps.earth
+
 // Debian : https://www.debian.org/
 // Submitted by Peter Palfrader / Debian Sysadmin Team 
<dsa-publicsuffixl...@debian.org>
 debian.net
@@ -11720,6 +11735,8 @@
 
 // Google, Inc.
 // Submitted by Eduardo Vela <e...@google.com>
+run.app
+a.run.app
 *.0emm.com
 appspot.com
 blogspot.ae
@@ -11925,6 +11942,12 @@
 lcube-server.de
 svn-repos.de
 
+// Leadpages : https://www.leadpages.net
+// Submitted by Greg Dallavalle <doma...@leadpages.net>
+leadpages.co
+lpages.co
+lpusercontent.com
+
 // Lightmaker Property Manager, Inc. : https://app.lmpm.com/
 // Submitted by Greg Holland <greg.holl...@lmpm.com>
 app.lmpm.com
@@ -12519,6 +12542,12 @@
 med.pl
 sopot.pl
 
+// Telebit : https://telebit.cloud
+// Submitted by AJ ONeal <aj@telebit.cloud>
+telebit.app
+telebit.io
+*.telebit.xyz
+
 // The Gwiddle Foundation : https://gwiddlefoundation.org.uk
 // Submitted by Joshua Bayfield <joshua.bayfi...@gwiddlefoundation.org.uk>
 gwiddle.co.uk


Reply via email to