Hello community,

here is the log from the commit of package python-flake8 for openSUSE:Factory 
checked in at 2013-04-29 14:31:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-flake8 (Old)
 and      /work/SRC/openSUSE:Factory/.python-flake8.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-flake8", Maintainer is ""

Changes:
--------
New Changes file:

--- /dev/null   2013-04-05 00:01:41.916011506 +0200
+++ /work/SRC/openSUSE:Factory/.python-flake8.new/python-flake8.changes 
2013-04-29 14:31:22.000000000 +0200
@@ -0,0 +1,12 @@
+-------------------------------------------------------------------
+Wed Apr 24 08:57:24 UTC 2013 - speili...@suse.com
+
+- Spec file cleanup
+- Run testsuite
+- Add LICENSE (for legal)
+
+-------------------------------------------------------------------
+Sun Apr 21 23:40:09 UTC 2013 - dmuel...@suse.com
+
+- Initial package (2.0) 
+
New Changes file:

--- /dev/null   2013-04-05 00:01:41.916011506 +0200
+++ /work/SRC/openSUSE:Factory/.python-flake8.new/python3-flake8.changes        
2013-04-29 14:31:22.000000000 +0200
@@ -0,0 +1,12 @@
+-------------------------------------------------------------------
+Wed Apr 24 09:07:31 UTC 2013 - speili...@suse.com
+
+- Spec file cleanup
+- Run testsuite
+- Add LICENSE (for legal)
+
+-------------------------------------------------------------------
+Sun Apr 21 23:40:09 UTC 2013 - dmuel...@suse.com
+
+- Initial package (2.0) 
+

New:
----
  flake8-2.0.tar.gz
  python-flake8.changes
  python-flake8.spec
  python3-flake8.changes
  python3-flake8.spec

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

Other differences:
------------------
++++++ python-flake8.spec ++++++
#
# spec file for package python-flake8
#
# 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
# 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/


Name:           python-flake8
Version:        2.0
Release:        0
License:        MIT
Summary:        Modular source code checker: pep8, pyflakes and co
Url:            http://bitbucket.org/tarek/flake8
Group:          Development/Languages/Python
Source:         
http://pypi.python.org/packages/source/f/flake8/flake8-%{version}.tar.gz
BuildRequires:  python-devel
BuildRequires:  python-distribute
# Test requirements:
BuildRequires:  python-mccabe >= 0.2
BuildRequires:  python-nose
BuildRequires:  python-pep8 >= 1.4.3
BuildRequires:  python-pyflakes >= 0.6.1
Requires:       python-mccabe >= 0.2
Requires:       python-pep8 >= 1.4.3
Requires:       python-pyflakes >= 0.6.1
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
BuildArch:      noarch
%endif

%description
Flake8 is a wrapper around these tools:

- PyFlakes
- pep8
- Ned Batchelder's McCabe script

Flake8 runs all the tools by launching the single ``flake8`` script.

%prep
%setup -q -n flake8-%{version}

%build
python setup.py build

%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}

%check
python setup.py test

%files
%defattr(-,root,root,-)
%doc LICENSE README.rst
%{_bindir}/flake8
%{python_sitelib}/*

%changelog
++++++ python3-flake8.spec ++++++
#
# spec file for package python-flake8
#
# 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
# 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/


Name:           python3-flake8
Version:        2.0
Release:        0
License:        MIT
Summary:        Modular source code checker: pep8, pyflakes and co
Url:            http://bitbucket.org/tarek/flake8
Group:          Development/Languages/Python
Source:         
http://pypi.python.org/packages/source/f/flake8/flake8-%{version}.tar.gz
BuildRequires:  python3-devel
BuildRequires:  python3-distribute
# Test requirements:
BuildRequires:  python3-mccabe >= 0.2
BuildRequires:  python3-nose
BuildRequires:  python3-pep8 >= 1.4.3
BuildRequires:  python3-pyflakes >= 0.6.1
Requires:       python3-mccabe >= 0.2
Requires:       python3-pep8 >= 1.4.3
Requires:       python3-pyflakes >= 0.6.1
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildArch:      noarch

%description
Flake8 is a wrapper around these tools:

- PyFlakes
- pep8
- Ned Batchelder's McCabe script

Flake8 runs all the tools by launching the single ``flake8`` script.

%prep
%setup -q -n flake8-%{version}

%build
python3 setup.py build

%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
# Avoid file conflict with Python-2.x version:
mv %{buildroot}%{_bindir}/flake8{,-%{py3_ver}}

%check
python3 setup.py test

%files
%defattr(-,root,root,-)
%doc LICENSE README.rst
%{_bindir}/flake8-%{py3_ver}
%{python3_sitelib}/*

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

Reply via email to