Hello community,

here is the log from the commit of package python-pep8 for openSUSE:Factory 
checked in at 2012-06-07 15:39:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pep8 (Old)
 and      /work/SRC/openSUSE:Factory/.python-pep8.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pep8", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pep8/python-pep8.changes  2012-05-29 
10:35:44.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python-pep8.new/python-pep8.changes     
2012-06-07 15:39:43.000000000 +0200
@@ -1,0 +2,16 @@
+Wed Jun  6 11:11:20 UTC 2012 - sasc...@suse.de
+
+- Update to version 1.2:
+  * Add E121 through E128 for continuation line indentation.  These
+    checks are disabled by default.  If you want to force all checks,
+    use switch ``--select=E,W``.  Patch by Sam Vilain. (Issue #64)
+  * Add E721 for direct type comparisons. (Issue #47)
+  * Add E711 and E712 for comparisons to singletons. (Issue #46)
+  * Fix spurious E225 and E701 for function annotations. (Issue #29)
+  * Add E502 for explicit line join between brackets.
+  * Fix E901 when printing source with ``--show-source``.
+  * Report all errors for each checker, instead of reporting only the
+    first occurence for each line.
+  * Option ``--show-pep8`` implies ``--first``.
+
+-------------------------------------------------------------------
python3-pep8.changes: same change

Old:
----
  pep8-1.1.tar.gz

New:
----
  pep8-1.2.tar.gz

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

Other differences:
------------------
++++++ python-pep8.spec ++++++
--- /var/tmp/diff_new_pack.VKgkI3/_old  2012-06-07 15:39:44.000000000 +0200
+++ /var/tmp/diff_new_pack.VKgkI3/_new  2012-06-07 15:39:44.000000000 +0200
@@ -15,15 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%define modname pep8
-Name:           python-%{modname}
-Version:        1.1
+
+Name:           python-pep8
+Version:        1.2
 Release:        0
 Url:            http://github.com/jcrocholl/pep8
 Summary:        Python style guide checker
 License:        MIT
 Group:          Development/Languages/Python
-Source:         
http://pypi.python.org/packages/source/p/%{modname}/%{modname}-%{version}.tar.gz
+Source:         
http://pypi.python.org/packages/source/p/pep8/pep8-%{version}.tar.gz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  fdupes
 BuildRequires:  python-devel
@@ -35,14 +35,13 @@
 BuildArch:      noarch
 %endif
 
-
 %description
 Pep8 is a tool to check your Python code against some of the style
 conventions in PEP 8.
 
 %prep
-%setup -q -n %{modname}-%{version}
-sed -i '1d' %{modname}.py # Remove she-bang line
+%setup -q -n pep8-%{version}
+sed -i '1d' pep8.py # Remove she-bang line
 
 %build
 python setup.py build
@@ -54,8 +53,8 @@
 %files
 %defattr(-,root,root)
 %doc CHANGES.txt README.rst TODO.txt
-%{_bindir}/%{modname}
-%{python_sitelib}/%{modname}.py*
-%{python_sitelib}/%{modname}-%{version}-py%{py_ver}.egg-info/
+%{_bindir}/pep8
+%{python_sitelib}/pep8.py*
+%{python_sitelib}/pep8-%{version}-py%{py_ver}.egg-info/
 
 %changelog

++++++ python3-pep8.spec ++++++
--- /var/tmp/diff_new_pack.VKgkI3/_old  2012-06-07 15:39:44.000000000 +0200
+++ /var/tmp/diff_new_pack.VKgkI3/_new  2012-06-07 15:39:44.000000000 +0200
@@ -15,15 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%define modname pep8
-Name:           python3-%{modname}
-Version:        1.1
+
+Name:           python3-pep8
+Version:        1.2
 Release:        0
 Url:            http://github.com/jcrocholl/pep8
 Summary:        Python style guide checker
 License:        MIT
 Group:          Development/Languages/Python
-Source:         
http://pypi.python.org/packages/source/p/%{modname}/%{modname}-%{version}.tar.gz
+Source:         
http://pypi.python.org/packages/source/p/pep8/pep8-%{version}.tar.gz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  fdupes
 BuildRequires:  python3
@@ -42,15 +42,15 @@
 conventions in PEP 8.
 
 %prep
-%setup -q -n %{modname}-%{version}
-sed -i '1d' %{modname}.py # Remove she-bang line
+%setup -q -n pep8-%{version}
+sed -i '1d' pep8.py # Remove she-bang line
 
 %build
 python3 setup.py build
 
 %install
 python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
-mv %{buildroot}%{_bindir}/%{modname} 
%{buildroot}%{_bindir}/%{modname}-python%{py3_ver}
+mv %{buildroot}%{_bindir}/pep8 %{buildroot}%{_bindir}/pep8-python%{py3_ver}
 %if 0%{?suse_version} > 1210
 rm -r %{buildroot}%{python3_sitelib}/__pycache__/
 %endif
@@ -59,9 +59,9 @@
 %files
 %defattr(-,root,root)
 %doc CHANGES.txt README.rst TODO.txt
-%{_bindir}/%{modname}-python%{py3_ver}
-%{python3_sitelib}/%{modname}.py*
-%{python3_sitelib}/%{modname}-%{version}-py%{py3_ver}.egg-info/
+%{_bindir}/pep8-python%{py3_ver}
+%{python3_sitelib}/pep8.py*
+%{python3_sitelib}/pep8-%{version}-py%{py3_ver}.egg-info/
 %if 0%{?suse_version} <= 1140
 %dir %{_prefix}/lib/python%{py3_ver}
 %endif

++++++ pep8-1.1.tar.gz -> pep8-1.2.tar.gz ++++++
++++ 2121 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to