Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-distutils-extra for 
openSUSE:Factory checked in at 2022-12-04 14:58:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-distutils-extra (Old)
 and      /work/SRC/openSUSE:Factory/.python-distutils-extra.new.1835 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-distutils-extra"

Sun Dec  4 14:58:54 2022 rev:31 rq:1039915 version:2.47

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-distutils-extra/python-distutils-extra.changes
    2022-05-03 21:19:22.345028788 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-distutils-extra.new.1835/python-distutils-extra.changes
  2022-12-04 14:59:24.072632134 +0100
@@ -1,0 +2,7 @@
+Sat Dec  3 22:38:27 UTC 2022 - Dirk Müller <dmuel...@suse.com>
+
+- update to 2.47:
+  * Sort files in POTFILES.in (for stable .pot files)
+  * Set Rules-Requires-Root: no
+
+-------------------------------------------------------------------

Old:
----
  python-distutils-extra-2.45.tar.bz2

New:
----
  python-distutils-extra-2.47.tar.bz2

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

Other differences:
------------------
++++++ python-distutils-extra.spec ++++++
--- /var/tmp/diff_new_pack.6pbt4B/_old  2022-12-04 14:59:24.556634922 +0100
+++ /var/tmp/diff_new_pack.6pbt4B/_new  2022-12-04 14:59:24.564634968 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-distutils-extra
-Version:        2.45
+Version:        2.47
 Release:        0
 Summary:        Distutils/Setuptools Adapter
 License:        GPL-2.0-only

++++++ python-distutils-extra-2.45.tar.bz2 -> 
python-distutils-extra-2.47.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-distutils-extra-2.45/DistUtilsExtra/auto.py 
new/python-distutils-extra-2.47/DistUtilsExtra/auto.py
--- old/python-distutils-extra-2.45/DistUtilsExtra/auto.py      2020-06-21 
21:37:42.000000000 +0200
+++ new/python-distutils-extra-2.47/DistUtilsExtra/auto.py      2022-06-17 
13:42:49.000000000 +0200
@@ -621,6 +621,7 @@
         global src_all
         try:
             if not os.path.exists(os.path.join('po', 'POTFILES.in')):
+                prefix = {}
                 files = src_fileglob(src_all, '*.py')
                 files.update(src_fileglob(src_all, '*.desktop.in'))
                 files.update(src_fileglob(src_all, '*.notifyrc.in'))
@@ -629,7 +630,8 @@
                 for f in src_fileglob(src_all, '*.ui'):
                     contents = open(f, 'rb').read()
                     if (b'<interface>\n' in contents or b'<interface ' in 
contents) and b'class="Gtk' in contents:
-                        files.add('[type: gettext/glade]' + f)
+                        prefix[f] = '[type: gettext/glade]'
+                        files.add(f)
 
                 # find extensionless executable scripts which are Python 
files, and
                 # generate a temporary *.py alias, so that they get caught by
@@ -649,8 +651,8 @@
                         os.mkdir('po')
                     potfiles_in = open('po/POTFILES.in', 'w')
                     potfiles_in.write('[encoding: UTF-8]\n')
-                    for f in files:
-                        potfiles_in.write(f + '\n')
+                    for f in sorted(files):
+                        potfiles_in.write(prefix.get(f, '') + f + '\n')
                     potfiles_in.close()
 
                     auto_potfiles_in = True
@@ -760,4 +762,3 @@
                     os.symlink(os.readlink(f), dest)
 
         distutils.command.install.install.run(self)
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-distutils-extra-2.45/debian/changelog 
new/python-distutils-extra-2.47/debian/changelog
--- old/python-distutils-extra-2.45/debian/changelog    2020-06-21 
21:37:42.000000000 +0200
+++ new/python-distutils-extra-2.47/debian/changelog    2022-06-17 
13:42:49.000000000 +0200
@@ -1,3 +1,28 @@
+python-distutils-extra (2.47) unstable; urgency=medium
+
+  * Team upload.
+  * Sort files in POTFILES.in (for stable .pot files)
+  * Set Rules-Requires-Root: no
+  * Bump Standards-Version to 4.6.1
+
+ -- Benjamin Drung <bdr...@ubuntu.com>  Fri, 17 Jun 2022 13:40:59 +0200
+
+python-distutils-extra (2.46) unstable; urgency=medium
+
+  [ Ondřej Nový ]
+  * d/control: Update Maintainer field with new Debian Python Team
+    contact address.
+  * d/control: Update Vcs-* fields with new Debian Python Team Salsa
+    layout.
+
+  [ Debian Janitor ]
+  * Update standards version to 4.5.0, no changes needed.
+  * Bump debhelper from old 12 to 13.
+  * Set field Upstream-Name in debian/copyright.
+  * Update standards version to 4.5.1, no changes needed.
+
+ -- Sandro Tosi <mo...@debian.org>  Fri, 03 Jun 2022 00:12:02 -0400
+
 python-distutils-extra (2.45) unstable; urgency=medium
 
   [ Michał Górny ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-distutils-extra-2.45/debian/control 
new/python-distutils-extra-2.47/debian/control
--- old/python-distutils-extra-2.45/debian/control      2020-06-21 
21:37:42.000000000 +0200
+++ new/python-distutils-extra-2.47/debian/control      2022-06-17 
13:42:49.000000000 +0200
@@ -1,9 +1,9 @@
 Source: python-distutils-extra
 Section: python
 Priority: optional
-Maintainer: Debian Python Modules Team 
<python-modules-t...@lists.alioth.debian.org>
+Maintainer: Debian Python Team <team+pyt...@tracker.debian.org>
 Uploaders: Martin Pitt <mp...@debian.org>, Sebastian Heinlein 
<de...@glatzor.de>
-Build-Depends: debhelper-compat (= 12),
+Build-Depends: debhelper-compat (= 13),
  dh-python,
  python3-all (>= 3.1.2-10~),
  python3-setuptools,
@@ -13,9 +13,10 @@
  gir1.2-glib-2.0,
  intltool,
  pyflakes3 <!nocheck>,
-Standards-Version: 4.4.1
-Vcs-Browser: 
https://salsa.debian.org/python-team/modules/python-distutils-extra
-Vcs-Git: 
https://salsa.debian.org/python-team/modules/python-distutils-extra.git
+Rules-Requires-Root: no
+Standards-Version: 4.6.1
+Vcs-Browser: 
https://salsa.debian.org/python-team/packages/python-distutils-extra
+Vcs-Git: 
https://salsa.debian.org/python-team/packages/python-distutils-extra.git
 
 Package: python3-distutils-extra
 Architecture: all
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-distutils-extra-2.45/debian/copyright 
new/python-distutils-extra-2.47/debian/copyright
--- old/python-distutils-extra-2.45/debian/copyright    2020-06-21 
21:37:42.000000000 +0200
+++ new/python-distutils-extra-2.47/debian/copyright    2022-06-17 
13:42:49.000000000 +0200
@@ -1,4 +1,5 @@
 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-distutils-extra
 
 Files: *
 Copyright:

Reply via email to