1
0

- 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
This commit is contained in:
Alexandre Rogoski 2012-02-13 02:27:39 +00:00 committed by Git OBS Bridge
parent b0545d01ef
commit 04226a391a
2 changed files with 47 additions and 23 deletions

View File

@ -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 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 Mon Dec 28 20:08:03 UTC 2009 - alexandre@exatati.com.br

View File

@ -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 Name: python-pyflakes
Version: 0.5.0 Version: 0.5.0
Release: 1 Release: 0
Url: https://launchpad.net/pyflakes
Summary: Passive checker of Python programs Summary: Passive checker of Python programs
License: MIT License: MIT
Group: Development/Libraries/Python Group: Development/Languages/Python
Source: pyflakes-%{version}.tar.bz2 Source: pyflakes-%{version}.tar.bz2
URL: https://launchpad.net/pyflakes
BuildRequires: python-devel, python-setuptools
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{py_requires} BuildRequires: python-devel
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1} %if 0%{?suse_version}
%py_requires
%if 0%{?suse_version} > 1110
BuildArch: noarch BuildArch: noarch
%endif %endif
%endif
%description %description
Pyflakes is program to analyze Python programs and detect various Pyflakes is program to analyze Python programs and detect various errors. It
errors. It works by parsing the source file, not importing it, so it works by parsing the source file, not importing it, so it is safe to use on
is safe to use on modules with side effects. It's also much faster. modules with side effects. It's also much faster.
Author:
--------
Moe Aboulkheir <moe@divmod.com>
%prep %prep
%setup -q -n pyflakes-%{version} %setup -q -n pyflakes-%{version}
%build %build
%{__python} setup.py build python setup.py build
%install %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 %changelog
%defattr(-,root,root)