2018-05-10 02:23:54 +02:00
|
|
|
#
|
|
|
|
# spec file for package python-pathspec
|
|
|
|
#
|
2022-01-05 11:30:49 +01:00
|
|
|
# Copyright (c) 2022 SUSE LLC
|
2018-05-10 02:23:54 +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.
|
|
|
|
|
2018-12-04 14:45:37 +01:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
|
|
#
|
2018-05-10 02:23:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
|
|
Name: python-pathspec
|
2022-09-14 17:50:45 +02:00
|
|
|
Version: 0.10.1
|
2018-05-10 02:23:54 +02:00
|
|
|
Release: 0
|
|
|
|
Summary: Utility library for gitignore style pattern matching of file paths
|
2018-12-04 14:45:37 +01:00
|
|
|
License: MPL-2.0
|
2019-10-10 10:26:46 +02:00
|
|
|
URL: https://github.com/cpburnz/python-path-specification
|
2018-05-10 02:23:54 +02:00
|
|
|
Source: https://files.pythonhosted.org/packages/source/p/pathspec/pathspec-%{version}.tar.gz
|
2022-09-14 17:50:45 +02:00
|
|
|
BuildRequires: %{python_module base >= 3.7}
|
2018-05-10 02:23:54 +02:00
|
|
|
BuildRequires: %{python_module setuptools}
|
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python-rpm-macros
|
|
|
|
BuildArch: noarch
|
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
%description
|
|
|
|
Pathspec is a utility library for pattern matching of file paths. So
|
|
|
|
far this only includes Git's wildmatch pattern matching which itself is
|
|
|
|
derived from Rsync's wildmatch. Git uses wildmatch for its `gitignore`_
|
|
|
|
files.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n pathspec-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%python_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%python_install
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
|
|
|
|
%check
|
2021-06-01 09:55:51 +02:00
|
|
|
%pyunittest discover -v
|
2018-05-10 02:23:54 +02:00
|
|
|
|
|
|
|
%files %{python_files}
|
|
|
|
%doc CHANGES.rst README.rst
|
|
|
|
%license LICENSE
|
|
|
|
%{python_sitelib}/*
|
|
|
|
|
|
|
|
%changelog
|