From 04226a391a8b852b2dbc04f90087e8fb68054c0eb4622ad444e0337ec4bbbb15 Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Mon, 13 Feb 2012 02:27:39 +0000 Subject: [PATCH] - Renegerate spec file with py2pack; - Add missing changes for 0.5.0. - New version 0.5.0: - Convert pyflakes to use newer _ast infrastructure rather than compiler. - Support for new syntax in 2.7 (including set literals, set comprehensions, and dictionary comprehensions). - Make sure class names don't get bound until after class definition. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyflakes?expand=0&rev=3 --- python-pyflakes.changes | 12 ++++++++- python-pyflakes.spec | 58 +++++++++++++++++++++++++---------------- 2 files changed, 47 insertions(+), 23 deletions(-) diff --git a/python-pyflakes.changes b/python-pyflakes.changes index 10bc720..5828afc 100644 --- a/python-pyflakes.changes +++ b/python-pyflakes.changes @@ -1,7 +1,17 @@ +------------------------------------------------------------------- +Mon Feb 13 02:25:25 UTC 2012 - alexandre@exatati.com.br + +- Renegerate spec file with py2pack; +- Add missing changes for 0.5.0. + ------------------------------------------------------------------- Sun Feb 12 09:38:47 UTC 2012 - werner.ho@gmx.de -- new version 0.5.0 +- New version 0.5.0: + - Convert pyflakes to use newer _ast infrastructure rather than compiler. + - Support for new syntax in 2.7 (including set literals, set comprehensions, + and dictionary comprehensions). + - Make sure class names don't get bound until after class definition. ------------------------------------------------------------------- Mon Dec 28 20:08:03 UTC 2009 - alexandre@exatati.com.br diff --git a/python-pyflakes.spec b/python-pyflakes.spec index a8c5f99..74e7ca7 100644 --- a/python-pyflakes.spec +++ b/python-pyflakes.spec @@ -1,42 +1,56 @@ -# norootforbuild +# +# spec file for package python-pyflakes +# +# 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 +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# 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/ +# +%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-pyflakes Version: 0.5.0 -Release: 1 +Release: 0 +Url: https://launchpad.net/pyflakes Summary: Passive checker of Python programs License: MIT -Group: Development/Libraries/Python +Group: Development/Languages/Python Source: pyflakes-%{version}.tar.bz2 -URL: https://launchpad.net/pyflakes -BuildRequires: python-devel, python-setuptools BuildRoot: %{_tmppath}/%{name}-%{version}-build -%{py_requires} -%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1} +BuildRequires: python-devel +%if 0%{?suse_version} +%py_requires +%if 0%{?suse_version} > 1110 BuildArch: noarch %endif - +%endif %description -Pyflakes is program to analyze Python programs and detect various -errors. It works by parsing the source file, not importing it, so it -is safe to use on modules with side effects. It's also much faster. - -Author: --------- - Moe Aboulkheir - +Pyflakes is program to analyze Python programs and detect various errors. It +works by parsing the source file, not importing it, so it is safe to use on +modules with side effects. It's also much faster. %prep %setup -q -n pyflakes-%{version} - %build -%{__python} setup.py build - +python setup.py build %install -%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES +python setup.py install --prefix=%{_prefix} --root=%{buildroot} +%files +%defattr(-,root,root,-) +%{python_sitelib}/* +%{_bindir}/pyflakes -%files -f INSTALLED_FILES -%defattr(-,root,root) +%changelog