commit python-distutils-extra for openSUSE:Factory
Hello community, here is the log from the commit of package python-distutils-extra for openSUSE:Factory checked in at 2020-09-21 17:25:44 Comparing /work/SRC/openSUSE:Factory/python-distutils-extra (Old) and /work/SRC/openSUSE:Factory/.python-distutils-extra.new.4249 (New) Package is "python-distutils-extra" Mon Sep 21 17:25:44 2020 rev:29 rq:835357 version:2.39 Changes: --- /work/SRC/openSUSE:Factory/python-distutils-extra/python-distutils-extra.changes 2019-03-13 16:42:24.938638258 +0100 +++ /work/SRC/openSUSE:Factory/.python-distutils-extra.new.4249/python-distutils-extra.changes 2020-09-21 17:27:32.880149927 +0200 @@ -1,0 +2,8 @@ +Fri Sep 18 07:39:36 UTC 2020 - John Vandenberg + +- Add fdupes +- Update to v2.39 + * Ignore comment in second line when parsing *.ui files + * test/auto.py: Show exactly which modules are missing + +--- Old: python-distutils-extra-2.38.tar.gz New: python-distutils-extra-2.39.tar.gz Other differences: -- ++ python-distutils-extra.spec ++ --- /var/tmp/diff_new_pack.9r5IBh/_old 2020-09-21 17:27:35.352152295 +0200 +++ /var/tmp/diff_new_pack.9r5IBh/_new 2020-09-21 17:27:35.356152299 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-distutils-extra # -# Copyright (c) 2019 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,13 +12,13 @@ # 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/ # %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-distutils-extra -Version:2.38 +Version:2.39 Release:0 Summary:Distutils/Setuptools Adapter License:GPL-2.0-only @@ -27,12 +27,13 @@ Source: http://launchpad.net/python-distutils-extra/trunk/%{version}/+download/python-distutils-extra-%{version}.tar.gz BuildRequires: %{python_module setuptools} BuildRequires: python-rpm-macros +BuildRequires: fdupes BuildArch: noarch %python_subpackages %description -This package adds support for common build additions to distutils. This -includes the follwing: +This package adds support for common build additions to distutils. +This includes the following: * gettext/i18n * documentation @@ -46,9 +47,9 @@ %install %python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} %files %{python_files} -%defattr(-,root,root) %doc doc/* %license LICENSE %{python_sitelib}/* ++ python-distutils-extra-2.38.tar.gz -> python-distutils-extra-2.39.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-distutils-extra-2.38/DistUtilsExtra/__init__.py new/python-distutils-extra-2.39/DistUtilsExtra/__init__.py --- old/python-distutils-extra-2.38/DistUtilsExtra/__init__.py 2013-07-22 17:41:39.0 +0200 +++ new/python-distutils-extra-2.39/DistUtilsExtra/__init__.py 2016-02-03 09:55:25.0 +0100 @@ -1 +1 @@ -__version__ = '2.38' +__version__ = '2.39' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-distutils-extra-2.38/DistUtilsExtra/auto.py new/python-distutils-extra-2.39/DistUtilsExtra/auto.py --- old/python-distutils-extra-2.38/DistUtilsExtra/auto.py 2012-08-20 09:22:33.0 +0200 +++ new/python-distutils-extra-2.39/DistUtilsExtra/auto.py 2016-02-03 09:39:39.0 +0100 @@ -305,6 +305,7 @@ fd = open(f, 'rb') firstlines = fd.readline() firstlines += b'\n' + fd.readline() +firstlines += b'\n' + fd.readline() fd.close() if b.decode('UTF-8')) self._mksrc('gtk/settings.ui', ''' + @@ -670,12 +671,11 @@ def test_requires_provides(self): '''automatic requires/provides''' -try: -__import__('pkg_resources') -__import__('httplib2') -__import__('gi.repository.GLib') -except ImportError: -self.fail('You need to have pkg_resources, httplib2, and gi.repository.GLib installed for this test suite to work') +for needed_pkg in ['pkg_resources','httplib2','gi.repository.GLib']: +try: +__import__(needed_pkg) +except ImportError: +self.fail('You need to have %s installed for this test suite to work' % needed_
commit python-distutils-extra for openSUSE:Factory
Hello community, here is the log from the commit of package python-distutils-extra for openSUSE:Factory checked in at 2019-03-13 16:42:23 Comparing /work/SRC/openSUSE:Factory/python-distutils-extra (Old) and /work/SRC/openSUSE:Factory/.python-distutils-extra.new.28833 (New) Package is "python-distutils-extra" Wed Mar 13 16:42:23 2019 rev:28 rq:684643 version:2.38 Changes: --- /work/SRC/openSUSE:Factory/python-distutils-extra/python-distutils-extra.changes 2018-12-13 19:42:59.761126037 +0100 +++ /work/SRC/openSUSE:Factory/.python-distutils-extra.new.28833/python-distutils-extra.changes 2019-03-13 16:42:24.938638258 +0100 @@ -1,0 +2,7 @@ +Wed Mar 13 09:00:35 UTC 2019 - qzheng + +- Make use of %license macro and get ready for submitting this + package (the dependency of onboard) to SLE-15 + (fate#326794, bsc#1082318). + +--- Other differences: -- ++ python-distutils-extra.spec ++ --- /var/tmp/diff_new_pack.LUIMDv/_old 2019-03-13 16:42:25.674637715 +0100 +++ /var/tmp/diff_new_pack.LUIMDv/_new 2019-03-13 16:42:25.674637715 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-distutils-extra # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 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 @@ -12,7 +12,7 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# Please submit bugfixes or comments via http://bugs.opensuse.org/ # @@ -49,7 +49,8 @@ %files %{python_files} %defattr(-,root,root) -%doc LICENSE doc/* +%doc doc/* +%license LICENSE %{python_sitelib}/* %changelog
commit python-distutils-extra for openSUSE:Factory
Hello community, here is the log from the commit of package python-distutils-extra for openSUSE:Factory checked in at 2018-12-13 19:42:58 Comparing /work/SRC/openSUSE:Factory/python-distutils-extra (Old) and /work/SRC/openSUSE:Factory/.python-distutils-extra.new.28833 (New) Package is "python-distutils-extra" Thu Dec 13 19:42:58 2018 rev:27 rq:654015 version:2.38 Changes: --- /work/SRC/openSUSE:Factory/python-distutils-extra/python-distutils-extra.changes 2017-09-04 12:31:15.046299325 +0200 +++ /work/SRC/openSUSE:Factory/.python-distutils-extra.new.28833/python-distutils-extra.changes 2018-12-13 19:42:59.761126037 +0100 @@ -1,0 +2,5 @@ +Tue Dec 4 12:47:19 UTC 2018 - Matej Cepl + +- Remove superfluous devel dependency for noarch package + +--- Other differences: -- ++ python-distutils-extra.spec ++ --- /var/tmp/diff_new_pack.hc7zzl/_old 2018-12-13 19:43:00.245125404 +0100 +++ /var/tmp/diff_new_pack.hc7zzl/_new 2018-12-13 19:43:00.245125404 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-distutils-extra # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 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 @@ -12,7 +12,7 @@ # 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/ # @@ -21,11 +21,10 @@ Version:2.38 Release:0 Summary:Distutils/Setuptools Adapter -License:GPL-2.0 +License:GPL-2.0-only Group: Development/Libraries/Python Url:https://launchpad.net/python-distutils-extra Source: http://launchpad.net/python-distutils-extra/trunk/%{version}/+download/python-distutils-extra-%{version}.tar.gz -BuildRequires: %{python_module devel} BuildRequires: %{python_module setuptools} BuildRequires: python-rpm-macros BuildArch: noarch
commit python-distutils-extra for openSUSE:Factory
Hello community, here is the log from the commit of package python-distutils-extra for openSUSE:Factory checked in at 2017-09-04 12:31:07 Comparing /work/SRC/openSUSE:Factory/python-distutils-extra (Old) and /work/SRC/openSUSE:Factory/.python-distutils-extra.new (New) Package is "python-distutils-extra" Mon Sep 4 12:31:07 2017 rev:26 rq:519784 version:2.38 Changes: --- /work/SRC/openSUSE:Factory/python-distutils-extra/python-distutils-extra.changes 2013-09-09 19:47:37.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-distutils-extra.new/python-distutils-extra.changes 2017-09-04 12:31:15.046299325 +0200 @@ -1,0 +2,5 @@ +Thu Aug 24 13:36:16 UTC 2017 - jmate...@suse.com + +- singlespec auto-conversion + +--- @@ -157,0 +163 @@ + Other differences: -- ++ python-distutils-extra.spec ++ --- /var/tmp/diff_new_pack.i8s5Uv/_old 2017-09-04 12:31:16.066155934 +0200 +++ /var/tmp/diff_new_pack.i8s5Uv/_new 2017-09-04 12:31:16.074154809 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-distutils-extra # -# Copyright (c) 2013 SUSE LINUX Products 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 @@ -16,6 +16,7 @@ # +%{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-distutils-extra Version:2.38 Release:0 @@ -24,14 +25,11 @@ Group: Development/Libraries/Python Url:https://launchpad.net/python-distutils-extra Source: http://launchpad.net/python-distutils-extra/trunk/%{version}/+download/python-distutils-extra-%{version}.tar.gz -BuildRequires: python-devel -BuildRequires: python-setuptools -BuildRoot: %{_tmppath}/%{name}-%{version}-build -%if 0%{?suse_version} && 0%{?suse_version} <= 1110 -%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} -%else +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +BuildRequires: python-rpm-macros BuildArch: noarch -%endif +%python_subpackages %description This package adds support for common build additions to distutils. This @@ -42,15 +40,15 @@ * program icons %prep -%setup -q -n "%{name}-%{version}" +%setup -q %build -python setup.py build +%python_build %install -python setup.py install --prefix="%{_prefix}" --root=%{buildroot} +%python_install -%files +%files %{python_files} %defattr(-,root,root) %doc LICENSE doc/* %{python_sitelib}/*
commit python-distutils-extra for openSUSE:Factory
Hello community, here is the log from the commit of package python-distutils-extra for openSUSE:Factory checked in at 2013-09-09 19:47:36 Comparing /work/SRC/openSUSE:Factory/python-distutils-extra (Old) and /work/SRC/openSUSE:Factory/.python-distutils-extra.new (New) Package is "python-distutils-extra" Changes: --- /work/SRC/openSUSE:Factory/python-distutils-extra/python-distutils-extra.changes 2012-10-03 09:59:17.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-distutils-extra.new/python-distutils-extra.changes 2013-09-09 19:47:37.0 +0200 @@ -1,0 +2,6 @@ +Sun Sep 8 20:45:19 UTC 2013 - os-...@jacraig.com + +- Update to 2.38: + * Use yelp-tools style help installation. + +--- Old: python-distutils-extra-2.37.tar.gz New: python-distutils-extra-2.38.tar.gz Other differences: -- ++ python-distutils-extra.spec ++ --- /var/tmp/diff_new_pack.Ti6IWy/_old 2013-09-09 19:47:38.0 +0200 +++ /var/tmp/diff_new_pack.Ti6IWy/_new 2013-09-09 19:47:38.0 +0200 @@ -17,7 +17,7 @@ Name: python-distutils-extra -Version:2.37 +Version:2.38 Release:0 Summary:Distutils/Setuptools Adapter License:GPL-2.0 @@ -25,7 +25,7 @@ Url:https://launchpad.net/python-distutils-extra Source: http://launchpad.net/python-distutils-extra/trunk/%{version}/+download/python-distutils-extra-%{version}.tar.gz BuildRequires: python-devel -BuildRequires: python-distribute +BuildRequires: python-setuptools BuildRoot: %{_tmppath}/%{name}-%{version}-build %if 0%{?suse_version} && 0%{?suse_version} <= 1110 %{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} ++ python-distutils-extra-2.37.tar.gz -> python-distutils-extra-2.38.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-distutils-extra-2.37/DistUtilsExtra/__init__.py new/python-distutils-extra-2.38/DistUtilsExtra/__init__.py --- old/python-distutils-extra-2.37/DistUtilsExtra/__init__.py 2012-09-17 12:36:36.0 +0200 +++ new/python-distutils-extra-2.38/DistUtilsExtra/__init__.py 2013-07-22 17:41:39.0 +0200 @@ -1 +1 @@ -__version__ = '2.37' +__version__ = '2.38' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-distutils-extra-2.37/DistUtilsExtra/command/build_help.py new/python-distutils-extra-2.38/DistUtilsExtra/command/build_help.py --- old/python-distutils-extra-2.37/DistUtilsExtra/command/build_help.py 2011-03-15 11:44:37.0 +0100 +++ new/python-distutils-extra-2.38/DistUtilsExtra/command/build_help.py 2013-07-22 17:36:23.0 +0200 @@ -5,7 +5,7 @@ import distutils.cmd class build_help(distutils.cmd.Command): -description = 'install docbook XML based documentation' +description = 'install Mallard or DocBook XML based documentation' user_options= [('help-dir', None, 'help directory in the source tree')] def initialize_options(self): @@ -18,22 +18,18 @@ def get_data_files(self): data_files = [] name = self.distribution.metadata.name -omf_pattern = os.path.join(self.help_dir, '*', '*.omf') for path in glob(os.path.join(self.help_dir, '*')): lang = os.path.basename(path) -path_xml = os.path.join('share/gnome/help', name, lang) -path_figures = os.path.join('share/gnome/help', name, lang, 'figures') +path_xml = os.path.join('share/help', lang, name) +path_figures = os.path.join('share/help', lang, name, 'figures') -docbook_files = glob('%s/*.xml' % path) +docbook_files = glob('%s/index.docbook' % path) +docbook_files_extra = glob('%s/*.xml' % path) mallard_files = glob('%s/*.page' % path) -data_files.append((path_xml, docbook_files + mallard_files)) +data_files.append((path_xml, docbook_files + docbook_files_extra + mallard_files)) data_files.append((path_figures, glob('%s/figures/*.png' % path))) -omf_files = glob(omf_pattern) -if omf_files: -data_files.append((os.path.join('share', 'omf', name), omf_files)) - return data_files def run(self): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-distutils-extra-2.37/PKG-INFO new/python-distutils-extra-2.38/PKG-INFO --- old/python-distutils-extra-2.37/PKG-INFO2012-09-17 12:49:30.0 +02
commit python-distutils-extra for openSUSE:Factory
Hello community, here is the log from the commit of package python-distutils-extra for openSUSE:Factory checked in at 2013-06-19 16:28:32 Comparing /work/SRC/openSUSE:Factory/python-distutils-extra (Old) and /work/SRC/openSUSE:Factory/.python-distutils-extra.new (New) Package is "python-distutils-extra" Changes: Old: python3-distutils-extra.changes python3-distutils-extra.spec Other differences: -- -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit python-distutils-extra for openSUSE:Factory
Hello community, here is the log from the commit of package python-distutils-extra for openSUSE:Factory checked in at 2013-04-06 19:54:22 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 "radma...@suse.com" Changes: --- /work/SRC/openSUSE:Factory/python-distutils-extra/python3-distutils-extra.changes 2013-02-25 21:41:41.0 +0100 +++ /work/SRC/openSUSE:Factory/.python-distutils-extra.new/python3-distutils-extra.changes 2013-04-06 19:54:23.0 +0200 @@ -1,0 +2,5 @@ +Wed Apr 3 06:24:58 UTC 2013 - a...@gmx.de + +- fix build error for python3 and <12.2: "ImportError: cannot import name sha512" needs python3 as a requirement + +--- Other differences: -- ++ python-distutils-extra.spec ++ --- /var/tmp/diff_new_pack.PbAEE4/_old 2013-04-06 19:54:24.0 +0200 +++ /var/tmp/diff_new_pack.PbAEE4/_new 2013-04-06 19:54:24.0 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-distutils-extra # -# 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 ++ python3-distutils-extra.spec ++ --- /var/tmp/diff_new_pack.PbAEE4/_old 2013-04-06 19:54:24.0 +0200 +++ /var/tmp/diff_new_pack.PbAEE4/_new 2013-04-06 19:54:24.0 +0200 @@ -15,6 +15,7 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + %define tarball_name python-distutils-extra Name: python3-distutils-extra @@ -25,7 +26,9 @@ Group: Development/Libraries/Python Url:https://launchpad.net/python-distutils-extra Source: http://launchpad.net/python-distutils-extra/trunk/%{version}/+download/%{tarball_name}-%{version}.tar.gz +BuildRequires: python3 BuildRequires: python3-devel +Requires: python3 BuildRequires: python3-distribute BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit python-distutils-extra for openSUSE:Factory
Hello community, here is the log from the commit of package python-distutils-extra for openSUSE:Factory checked in at 2013-02-25 21:41:40 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 "radma...@suse.com" Changes: New Changes file: --- /dev/null 2013-02-25 16:34:27.356011506 +0100 +++ /work/SRC/openSUSE:Factory/.python-distutils-extra.new/python3-distutils-extra.changes 2013-02-25 21:41:41.0 +0100 @@ -0,0 +1,157 @@ +--- +Fri Feb 22 14:43:08 UTC 2013 - i...@marguerite.su + +- builds for python3 + +--- +Sat Sep 29 19:48:14 UTC 2012 - os-...@jacraig.com + +- 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. + +--- +Wed Sep 12 03:20:46 UTC 2012 - os-...@jacraig.com + +- Update to version 2.36: + * Use python 2.6 friendly sys.version_info test. + * Do not call decode() with an "errors" keyword, as this does not +yet work with Python 2.6. +- No changelog provided for 2.35. +- Changes from 2.34: + * Fix *.ui detection to be robust for non-ASCII files. + * Fix a regression with python2 if files have some utf-8 directives. +- Changes from 2.33: + * Fix crash when encountering binary files with Python 3. + * Fix crash when encountering an UTF-8 Python source code file. + +--- +Wed Mar 14 11:02:40 UTC 2012 - vu...@opensuse.org + +- Update to version 2.32. Summary of changes since 2.23: + + Port code to be fully Python 3 compatible. + + Rename "check" command to "pylint". + + Add support for installing GSettings schema files. + + Properly support GI repository module detection. + + Remove pykdeuic4 integration. + + Drop support for the long-obsolete PolicyKit (pre polkit 1.0 +API). + + Several bug fixes. + +--- +Thu Jan 12 11:31:12 UTC 2012 - sasc...@suse.de + +- Specfile cleanup: + * SPDX-style license (GPL-2.0) + * Remove %clean section (sane default) + * Simpler macro usage + * No authors in description + +--- +Sat Dec 11 16:51:38 UTC 2010 - rwob...@hotmail.com + +- Update to 2.23 + According to this page https://launchpad.net/python-distutils-extra/trunk/2.23) this release has no changelog + +--- +Sat Oct 30 08:22:11 UTC 2010 - rwob...@hotmail.com + +- Update to version 2.22 ( 2.6 is not the latest one) + + +Changelog to 2.22 + +* setup.py: Drop import of "commands"; unused, and does not exist in +python3. + * DistUtilsExtra/command/build_extra.py: Use "in" operator instead of +has_key(). It's more elegant and Python 3 compatible. + * test/auto.py: Use Python3 compatible octal constant. + * test/auto.py: Decode stdout/stderr result from subprocess from bytes to +str, to work with Python3. + * test/auto.py: Use whichever Python interpreter we got invoked with (using +/proc/self/exe) instead of hardcoding "python". With that we can run the +tests through python3 as well. + * DistUtilsExtra/auto.py: Port from deprecated "compiler" module to current +"ast" module. + * test/auto.py: Only set PYTHONPATH if it isn't set already, so that we can +override it from outside. + * test/auto.py: Do not require that "setup.py clean -a" doesn't print +anything to stderr; with Python 3.1 it now sends out warnings about +nonexisting directories. + * test/auto.py: Changed print statements to work with both Python 2 and 3. + * DistUtilsExtra/command/build_extra.py: Drop unnecessary hashbang line. + * test/auto.py: Filter out bogus errors about missing files which current +Python 3 distutils spews out. + * test/auto.py, Use python{,3}-{pkg-resources,httplib2} as +external test modules instead of -xdg and -dateutil, since the latter are +not available for Python 3 yet. + +Changelog to 2.20 + + [Didier Roche ] + * build_i18n.py: add support for LINGUAS (Siegfried Gevatter) (LP: #510957) + +[ Martin Pitt ] +* debian/local/python-mkdebian: Make langpack.mk include optional, as it + only exists in Ubuntu, not Debian. (Closes: #589802) +* debian/local/python-mkdebian: If we are on Debian, set upload target to + "unstable". (Closes: #589794) + +changelog to 2.19 + + * auto.py: Also recognize Qt .ui files if they start with an "http://bugs.ope
commit python-distutils-extra for openSUSE:Factory
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 "cth...@suse.com" Changes: --- /work/SRC/openSUSE:Factory/python-distutils-extra/python-distutils-extra.changes 2012-09-21 14:55:58.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-distutils-extra.new/python-distutils-extra.changes 2012-10-03 09:59:17.0 +0200 @@ -1,0 +2,9 @@ +Sat Sep 29 19:48:14 UTC 2012 - os-...@jacraig.com + +- 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.0 +0200 +++ /var/tmp/diff_new_pack.LZJoUU/_new 2012-10-03 09:59:18.0 +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.0 +0200 +++ new/python-distutils-extra-2.37/DistUtilsExtra/__init__.py 2012-09-17 12:36:36.0 +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.0 +0200 +++ new/python-distutils-extra-2.37/DistUtilsExtra/auto.py 2012-08-20 09:22:33.0 +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-INFO2012-08-15 11:20:06.0 +0200 +++ new/python-distutils-extra-2.37/PKG-INFO2012-09-17 12:49:30.0 +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.0 +0200 +++ new/python-distutils-extra-2.37/python_distutils_extra.egg-info/PKG-INFO 2012-09-17 12:49:30.0 +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.py2012-07-18 15:16:37.0 +0200 +++ new/python-distutils-extra-2.37/test/auto.py2012-08-20
commit python-distutils-extra for openSUSE:Factory
Hello community, here is the log from the commit of package python-distutils-extra for openSUSE:Factory checked in at 2012-09-21 14:55:55 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 "cth...@suse.com" Changes: --- /work/SRC/openSUSE:Factory/python-distutils-extra/python-distutils-extra.changes 2012-03-20 11:32:09.0 +0100 +++ /work/SRC/openSUSE:Factory/.python-distutils-extra.new/python-distutils-extra.changes 2012-09-21 14:55:58.0 +0200 @@ -1,0 +2,15 @@ +Wed Sep 12 03:20:46 UTC 2012 - os-...@jacraig.com + +- Update to version 2.36: + * Use python 2.6 friendly sys.version_info test. + * Do not call decode() with an "errors" keyword, as this does not +yet work with Python 2.6. +- No changelog provided for 2.35. +- Changes from 2.34: + * Fix *.ui detection to be robust for non-ASCII files. + * Fix a regression with python2 if files have some utf-8 directives. +- Changes from 2.33: + * Fix crash when encountering binary files with Python 3. + * Fix crash when encountering an UTF-8 Python source code file. + +--- Old: python-distutils-extra-2.32.tar.gz New: python-distutils-extra-2.36.tar.gz Other differences: -- ++ python-distutils-extra.spec ++ --- /var/tmp/diff_new_pack.Y9s1pD/_old 2012-09-21 14:55:59.0 +0200 +++ /var/tmp/diff_new_pack.Y9s1pD/_new 2012-09-21 14:55:59.0 +0200 @@ -17,7 +17,7 @@ Name: python-distutils-extra -Version:2.32 +Version:2.36 Release:0 Summary:Distutils/Setuptools Adapter License:GPL-2.0 ++ python-distutils-extra-2.32.tar.gz -> python-distutils-extra-2.36.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-distutils-extra-2.32/DistUtilsExtra/__init__.py new/python-distutils-extra-2.36/DistUtilsExtra/__init__.py --- old/python-distutils-extra-2.32/DistUtilsExtra/__init__.py 2012-03-02 17:46:22.0 +0100 +++ new/python-distutils-extra-2.36/DistUtilsExtra/__init__.py 2012-08-15 11:12:23.0 +0200 @@ -1 +1 @@ -__version__ = '2.32' +__version__ = '2.36' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-distutils-extra-2.32/DistUtilsExtra/auto.py new/python-distutils-extra-2.36/DistUtilsExtra/auto.py --- old/python-distutils-extra-2.32/DistUtilsExtra/auto.py 2012-03-02 17:45:10.0 +0100 +++ new/python-distutils-extra-2.36/DistUtilsExtra/auto.py 2012-08-15 11:14:16.0 +0200 @@ -39,7 +39,7 @@ # Author: Martin Pitt import os, os.path, fnmatch, stat, sys, subprocess -import ast +import ast, locale import distutils.core from functools import reduce @@ -101,8 +101,15 @@ if src: print('WARNING: the following files are not recognized by DistUtilsExtra.auto:') +enc = locale.getpreferredencoding() for f in sorted(src): -print (' ' + f) +# ensure that we can always print the file name +if(sys.version_info[0] < 3): +# hack to make this work with Python 2 +f_loc = f.decode('ascii', 'ignore') +else: +f_loc = f.encode(enc, errors='replace').decode(enc, errors='replace') +print (' ' + f_loc) # # parts of setup() @@ -295,11 +302,11 @@ ui = [] for f in src_fileglob(src, '*.ui'): -fd = open(f) +fd = open(f, 'rb') firstlines = fd.readline() -firstlines += '\n' + fd.readline() +firstlines += b'\n' + fd.readline() fd.close() -if '\n' in contents or ' +self._mksrc('gtk/test.ui', b''' -yes11 +my\xe2\x99\xa5 -''') +'''.decode('UTF-8')) self._mksrc('gtk/settings.ui', ''' @@ -799,6 +801,40 @@ self.assertTrue('/usr/share/gnome/help/foo/de/legal.page' in f) self.assertTrue('/usr/share/gnome/help/foo/de/figures/mainscreen.png' in f) +def test_binary_files(self): +'''Binary files are ignored''' + +with open(os.path.join(self.src, 'binary_trap'), 'wb') as f: +f.write(b'\x00\x01abc\xFF\xFE') +(o, e, s) = self.do_install() +self.assertEqual(e, '') +self.assertEqual(s, 0) +self.assertTrue('following files are not recognized' in o, o) +self.assertTrue('\n binary_trap\n' in o) + +f = self.installed_files() +self.assertEqual(len(f), 1, f) +self.assertTrue('egg-info' in f[0]) + +def test_utf8
commit python-distutils-extra for openSUSE:Factory
Hello community, here is the log from the commit of package python-distutils-extra for openSUSE:Factory checked in at 2012-02-17 12:08:40 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 "" Changes: --- /work/SRC/openSUSE:Factory/python-distutils-extra/python-distutils-extra.changes 2011-09-23 12:42:33.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-distutils-extra.new/python-distutils-extra.changes 2012-02-17 12:08:48.0 +0100 @@ -1,0 +2,9 @@ +Thu Jan 12 11:31:12 UTC 2012 - sasc...@suse.de + +- Specfile cleanup: + * SPDX-style license (GPL-2.0) + * Remove %clean section (sane default) + * Simpler macro usage + * No authors in description + +--- Other differences: -- ++ python-distutils-extra.spec ++ --- /var/tmp/diff_new_pack.yB0nsw/_old 2012-02-17 12:08:49.0 +0100 +++ /var/tmp/diff_new_pack.yB0nsw/_new 2012-02-17 12:08:49.0 +0100 @@ -1,7 +1,7 @@ # -# spec file for package python-distutils-extra (Version 2.23) +# spec file for package python-distutils-extra # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 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,21 +15,21 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # -# norootforbuild - Name: python-distutils-extra Version:2.23 -Release:1 +Release:0 Summary:Distutils/Setuptools Adapter -Source: http://launchpad.net/python-distutils-extra/trunk/%{version}/+download/python-distutils-extra-%{version}.tar.gz -Url:https://launchpad.net/python-distutils-extra -Group: Development/Libraries/Python License:GPL-2.0 +Group: Development/Libraries/Python +Url:https://launchpad.net/python-distutils-extra +Source: http://launchpad.net/python-distutils-extra/trunk/%{version}/+download/python-distutils-extra-%{version}.tar.gz +BuildRequires: python-devel +BuildRequires: python-distribute BuildRoot: %{_tmppath}/%{name}-%{version}-build -BuildRequires: python-devel python-setuptools -%py_requires -%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1} +%if 0%{?suse_version} && 0%{?suse_version} <= 1110 +%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} +%else BuildArch: noarch %endif @@ -41,32 +41,18 @@ * documentation * program icons -Authors: - - Sebastian Heinlein - %prep %setup -q -n "%{name}-%{version}" -#%__rm -rf debian/debian -#%__mv debian/* . %build -%__python ./setup.py build +python setup.py build %install -%__python ./setup.py install --prefix="%{_prefix}" --root="%{buildroot}" \ ---record-rpm=files.lst +python setup.py install --prefix="%{_prefix}" --root=%{buildroot} -%clean -%__rm -rf "%{buildroot}" - -%files -f files.lst +%files %defattr(-,root,root) %doc LICENSE doc/* - -# Local Variables: -# mode: rpm-spec -# tab-width: 3 -# End: +%{python_sitelib}/* %changelog -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit python-distutils-extra for openSUSE:Factory
Hello community, here is the log from the commit of package python-distutils-extra for openSUSE:Factory checked in at 2011-12-06 18:55:22 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 "" Changes: Other differences: -- ++ python-distutils-extra.spec ++ --- /var/tmp/diff_new_pack.sARHek/_old 2011-12-06 19:28:33.0 +0100 +++ /var/tmp/diff_new_pack.sARHek/_new 2011-12-06 19:28:33.0 +0100 @@ -25,7 +25,7 @@ Source: http://launchpad.net/python-distutils-extra/trunk/%{version}/+download/python-distutils-extra-%{version}.tar.gz Url:https://launchpad.net/python-distutils-extra Group: Development/Libraries/Python -License:GNU General Public License version 2 (GPL v2) +License:GPL-2.0 BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: python-devel python-setuptools %py_requires -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org