Hello community,

here is the log from the commit of package python-distutils-extra for 
openSUSE:Factory checked in at 2012-10-03 09:59:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-distutils-extra (Old)
 and      /work/SRC/openSUSE:Factory/.python-distutils-extra.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-distutils-extra", Maintainer is "[email protected]"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-distutils-extra/python-distutils-extra.changes
    2012-09-21 14:55:58.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-distutils-extra.new/python-distutils-extra.changes
       2012-10-03 09:59:17.000000000 +0200
@@ -1,0 +2,9 @@
+Sat Sep 29 19:48:14 UTC 2012 - [email protected]
+
+- Update to 2.37:
+  * Handle Glade .ui files correctly when generating the copyright file. Also
+    ignore backup files.
+  * auto.py: Recognize manpages which have comments before the initial .TH
+    comment.
+
+-------------------------------------------------------------------

Old:
----
  python-distutils-extra-2.36.tar.gz

New:
----
  python-distutils-extra-2.37.tar.gz

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

Other differences:
------------------
++++++ python-distutils-extra.spec ++++++
--- /var/tmp/diff_new_pack.LZJoUU/_old  2012-10-03 09:59:18.000000000 +0200
+++ /var/tmp/diff_new_pack.LZJoUU/_new  2012-10-03 09:59:18.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           python-distutils-extra
-Version:        2.36
+Version:        2.37
 Release:        0
 Summary:        Distutils/Setuptools Adapter
 License:        GPL-2.0

++++++ python-distutils-extra-2.36.tar.gz -> python-distutils-extra-2.37.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-distutils-extra-2.36/DistUtilsExtra/__init__.py 
new/python-distutils-extra-2.37/DistUtilsExtra/__init__.py
--- old/python-distutils-extra-2.36/DistUtilsExtra/__init__.py  2012-08-15 
11:12:23.000000000 +0200
+++ new/python-distutils-extra-2.37/DistUtilsExtra/__init__.py  2012-09-17 
12:36:36.000000000 +0200
@@ -1 +1 @@
-__version__ = '2.36'
+__version__ = '2.37'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-distutils-extra-2.36/DistUtilsExtra/auto.py 
new/python-distutils-extra-2.37/DistUtilsExtra/auto.py
--- old/python-distutils-extra-2.36/DistUtilsExtra/auto.py      2012-08-15 
11:14:16.000000000 +0200
+++ new/python-distutils-extra-2.37/DistUtilsExtra/auto.py      2012-08-20 
09:22:33.000000000 +0200
@@ -320,10 +320,15 @@
 
     mans = {}
     for f in src_fileglob(src, '*.[0123456789]'):
-        line = open(f).readline()
-        if line.startswith('.TH '):
-            src_mark(src, f)
-            mans.setdefault(f[-1], []).append(f)
+        with open(f) as fd:
+            for line in fd:
+                if line.startswith('.\"'):
+                    continue
+                if line.startswith('.TH '):
+                    src_mark(src, f)
+                    mans.setdefault(f[-1], []).append(f)
+                break
+
     v = attrs.setdefault('data_files', [])
     for section, files in mans.items():
         v.append((os.path.join('share', 'man', 'man' + section), files))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-distutils-extra-2.36/PKG-INFO 
new/python-distutils-extra-2.37/PKG-INFO
--- old/python-distutils-extra-2.36/PKG-INFO    2012-08-15 11:20:06.000000000 
+0200
+++ new/python-distutils-extra-2.37/PKG-INFO    2012-09-17 12:49:30.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: python-distutils-extra
-Version: 2.36
+Version: 2.37
 Summary: Add support for i18n, documentation and icons to distutils
 Home-page: UNKNOWN
 Author: Sebastian Heinlein, Martin Pitt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/python-distutils-extra-2.36/python_distutils_extra.egg-info/PKG-INFO 
new/python-distutils-extra-2.37/python_distutils_extra.egg-info/PKG-INFO
--- old/python-distutils-extra-2.36/python_distutils_extra.egg-info/PKG-INFO    
2012-08-15 11:20:06.000000000 +0200
+++ new/python-distutils-extra-2.37/python_distutils_extra.egg-info/PKG-INFO    
2012-09-17 12:49:30.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: python-distutils-extra
-Version: 2.36
+Version: 2.37
 Summary: Add support for i18n, documentation and icons to distutils
 Home-page: UNKNOWN
 Author: Sebastian Heinlein, Martin Pitt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-distutils-extra-2.36/test/auto.py 
new/python-distutils-extra-2.37/test/auto.py
--- old/python-distutils-extra-2.36/test/auto.py        2012-07-18 
15:16:37.000000000 +0200
+++ new/python-distutils-extra-2.37/test/auto.py        2012-08-20 
09:21:58.000000000 +0200
@@ -613,7 +613,7 @@
         '''manpages'''
 
         self._mksrc('man/foo.1', '.TH foo 1 "Jan 01, 1900" "Joe Developer"')
-        self._mksrc('daemon/food.8', '.TH food 8 "Jan 01, 1900" "Joe 
Developer"')
+        self._mksrc('daemon/food.8', '.\" some comment\n.TH food 8 "Jan 01, 
1900" "Joe Developer"')
         self._mksrc('cruft/food.1', '')
         self._mksrc('daemon/notme.s', '.TH food 8 "Jan 01, 1900" "Joe 
Developer"')
 

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to