forked from pool/python-distlib
Accepting request 682869 from home:jayvdb:coala:python3-bears
- Convert to single spec - Activate test suite - Change license to Python-2.0 to match sdist - Update URL to https://bitbucket.org/pypa/distlib - Remove unnecessary build dependency on python-devel - Add fdupes - Remove unnecessary backports with remove-backports.patch - Update to v0.2.8 OBS-URL: https://build.opensuse.org/request/show/682869 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-distlib?expand=0&rev=1
This commit is contained in:
77
python-distlib.spec
Normal file
77
python-distlib.spec
Normal file
@@ -0,0 +1,77 @@
|
||||
#
|
||||
# spec file for package python-distlib
|
||||
#
|
||||
# Copyright (c) 2019 SUSE LINUX 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_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-distlib
|
||||
Version: 0.2.8
|
||||
Release: 0
|
||||
License: Python-2.0
|
||||
Summary: Distribution utilities
|
||||
Url: https://bitbucket.org/pypa/distlib
|
||||
Group: Development/Languages/Python
|
||||
Source: https://files.pythonhosted.org/packages/source/d/distlib/distlib-%{version}.zip
|
||||
Patch0: remove-backports.patch
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: unzip
|
||||
BuildArch: noarch
|
||||
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
Python distribution utilities.
|
||||
|
||||
%prep
|
||||
%setup -q -n distlib-%{version}
|
||||
%patch0 -p1
|
||||
|
||||
rm -r tests/unittest2
|
||||
|
||||
# tarfile backport is broken
|
||||
rm distlib/_backport/tarfile.py
|
||||
|
||||
# sysconfig backport is unnecessary and untested
|
||||
rm distlib/_backport/sysconfig.*
|
||||
|
||||
# These test modules require internet access and are unnecessary
|
||||
rm tests/test_locators.py tests/test_sysconfig.py
|
||||
|
||||
# Unused
|
||||
rm distlib/_backport/misc.*
|
||||
|
||||
# However, the tests for shutil fail when not using using provided backport
|
||||
|
||||
%build
|
||||
%python_build
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
export LANG=en_US.UTF-8
|
||||
# These two tests need internet access
|
||||
%python_exec -m pytest -k 'not (test_search or test_package_data)'
|
||||
|
||||
%files %{python_files}
|
||||
%doc CHANGES.rst README.rst
|
||||
%license LICENSE.txt
|
||||
%{python_sitelib}/*
|
||||
|
||||
%changelog
|
||||
Reference in New Issue
Block a user