2015-04-24 16:31:25 +02:00
|
|
|
#
|
|
|
|
# spec file for package python-packaging
|
|
|
|
#
|
2017-02-23 14:18:40 +01:00
|
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
2015-04-24 16:31:25 +02:00
|
|
|
#
|
|
|
|
# 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/
|
2015-06-25 11:01:38 +02:00
|
|
|
#
|
2015-04-24 16:31:25 +02:00
|
|
|
|
|
|
|
|
2017-02-23 14:18:40 +01:00
|
|
|
%bcond_with test
|
|
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{1} python3-%{1}}
|
2015-04-24 16:31:25 +02:00
|
|
|
Name: python-packaging
|
2016-12-06 13:06:37 +01:00
|
|
|
Version: 16.8
|
2015-04-24 16:31:25 +02:00
|
|
|
Release: 0
|
|
|
|
Summary: Core utilities for Python packages
|
2015-06-25 11:01:38 +02:00
|
|
|
License: Apache-2.0
|
2015-04-24 16:31:25 +02:00
|
|
|
Group: Development/Languages/Python
|
2015-06-25 11:01:38 +02:00
|
|
|
Url: https://github.com/pypa/packaging
|
2016-06-06 13:27:53 +02:00
|
|
|
Source: https://pypi.io/packages/source/p/packaging/packaging-%{version}.tar.gz
|
2017-02-23 14:18:40 +01:00
|
|
|
BuildRequires: %{python_module base}
|
|
|
|
BuildRequires: %{python_module pyparsing}
|
|
|
|
BuildRequires: %{python_module six}
|
|
|
|
BuildRequires: python-rpm-macros
|
|
|
|
# do not add setuptools dependency, this is now a dependency
|
|
|
|
# of setuptools. Ensure that all dependencies also don't depend
|
|
|
|
# on setuptools
|
|
|
|
# (at the moment, six and pyparsing are ok)
|
|
|
|
%if %{with test}
|
|
|
|
BuildRequires: %{python_module pretend}
|
|
|
|
BuildRequires: %{python_module pytest}
|
|
|
|
%endif
|
2016-03-08 16:38:19 +01:00
|
|
|
Requires: python-pyparsing
|
|
|
|
Requires: python-six
|
2015-04-24 16:31:25 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildArch: noarch
|
2017-02-23 14:18:40 +01:00
|
|
|
%python_subpackages
|
2015-04-24 16:31:25 +02:00
|
|
|
|
|
|
|
%description
|
|
|
|
Core utilities for Python packages
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n packaging-%{version}
|
|
|
|
|
|
|
|
%build
|
2017-02-23 14:18:40 +01:00
|
|
|
%python_build
|
2015-04-24 16:31:25 +02:00
|
|
|
|
|
|
|
%install
|
2017-02-23 14:18:40 +01:00
|
|
|
%python_install
|
|
|
|
# ensure egg-info is a directory
|
|
|
|
%{python_expand rm %{buildroot}%{$python_sitelib}/*.egg-info
|
|
|
|
cp -r packaging.egg-info %{buildroot}%{$python_sitelib}/packaging-%{version}-py%{$python_version}.egg-info
|
|
|
|
}
|
2015-04-24 16:31:25 +02:00
|
|
|
|
2017-02-23 14:18:40 +01:00
|
|
|
%if %{with test}
|
2015-04-24 16:31:25 +02:00
|
|
|
%check
|
2017-02-23 14:18:40 +01:00
|
|
|
%python_exec %{_bindir}/py.test
|
|
|
|
%endif
|
2015-04-24 16:31:25 +02:00
|
|
|
|
2017-02-23 14:18:40 +01:00
|
|
|
%files %{python_files}
|
2015-04-24 16:31:25 +02:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc CHANGELOG.rst LICENSE README.rst
|
2017-02-23 14:18:40 +01:00
|
|
|
%{python_sitelib}/packaging
|
|
|
|
%{python_sitelib}/packaging-%{version}-py*.egg-info/
|
2015-04-24 16:31:25 +02:00
|
|
|
|
|
|
|
%changelog
|