61 lines
1.9 KiB
RPMSpec
61 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package python-pathtools
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-pathtools
|
|
Version: 0.1.2
|
|
Release: 0
|
|
Summary: File system general utilities
|
|
License: MIT
|
|
URL: https://github.com/gorakhargosh/pathtools
|
|
Source: https://files.pythonhosted.org/packages/source/p/pathtools/pathtools-%{version}.tar.gz
|
|
# PATCH-FIX-OPENSUSE Stop using imp module
|
|
Patch0: stop-using-imp.patch
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: python3-Sphinx
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
Pattern matching and various utilities for file systems paths.
|
|
|
|
%prep
|
|
%autosetup -p1 -n pathtools-%{version}
|
|
sed -i "1d" pathtools/path.py pathtools/patterns.py
|
|
sed -i "s/^html_theme.*/#html_theme/" docs/source/conf.py
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
cd docs && make html && rm -r build/html/.buildinfo # Build HTML docs
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc AUTHORS README docs/build/html
|
|
%{python_sitelib}/pathtools
|
|
%{python_sitelib}/pathtools-%{version}.dist-info
|
|
|
|
%changelog
|