Compare commits

...

29 Commits
epel8 ... epel9

Author SHA1 Message Date
Adrien Vergé 12ff8576e6 Update source from GitHub archive to PyPi bundle
1 year ago
Adrien Vergé cc6119d0b1 Update to latest upstream version
1 year ago
Adrien Vergé d578b9b884 Remove deprecated unittest aliases patch
2 years ago
Adrien Vergé 7e819b031a Update to latest upstream version
2 years ago
Robby Callicotte a1a72421e6 Changed license shortname to match Fedora license spec
3 years ago
Miro Hrončok 34c69edf64 Restore epel9 to rawhide state
3 years ago
Adrien Vergé 4f0a3c5d8e Update for EPEL9
3 years ago
Miro Hrončok 204c8a9763 Refactor deprecated unittest aliases for Python 3.11 compatibility
3 years ago
Miro Hrončok a8f9adddcf Update to 0.9.0
3 years ago
Fedora Release Engineering d2bce53ef6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
4 years ago
Python Maint c1bbc384b0 Rebuilt for Python 3.10
4 years ago
Miro Hrončok 30fcbffa8d Update to 0.8.1
4 years ago
Fedora Release Engineering b022b0f3a9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
4 years ago
Fedora Release Engineering feb33eead2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
5 years ago
Miro Hrončok c17f0ce43f Replace Python version glob with macro (needed for Python 3.10+)
5 years ago
Miro Hrončok dd962cb25a Rebuilt for Python 3.9
5 years ago
Fedora Release Engineering d6e16b7e24 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
5 years ago
Adrien Vergé fad0c54006 Update to latest upstream version
5 years ago
Miro Hrončok b47771fa84 Rebuilt for Python 3.8.0rc1 (#1748018)
5 years ago
Miro Hrončok 42376cb933 Rebuilt for Python 3.8
6 years ago
Fedora Release Engineering 029e464bb7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
6 years ago
Fedora Release Engineering a80ec272ec - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
6 years ago
Zbigniew Jędrzejewski-Szmek 5bd8ca40f6 Python2 binary package has been removed
6 years ago
Fedora Release Engineering b48dd23566 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
7 years ago
Miro Hrončok 4e0a54ecc8 Rebuilt for Python 3.7
7 years ago
Fedora Release Engineering a6fd5c59c0 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
7 years ago
Iryna Shcherbina 1828378626 Update Python 2 dependency declarations to new packaging standards
7 years ago
Fedora Release Engineering a70c9e824d - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8 years ago
Adrien Vergé 214f276872 Initial import (#1465954)
8 years ago

2
.gitignore vendored

@ -1 +1 @@
/pathspec-0.6.0.tar.gz
/pathspec-0.10.1.tar.gz

@ -1,35 +1,26 @@
Name: python-pathspec
Version: 0.6.0
Version: 0.12.1
Release: 1%{?dist}
Summary: Utility library for gitignore style pattern matching of file paths
License: MPL 2.0
License: MPLv2.0
URL: https://github.com/cpburnz/python-path-specification
Source0: https://files.pythonhosted.org/packages/source/p/pathspec/pathspec-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: python3-setuptools
%description
Path Specification (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.
%package -n python2-pathspec
Summary: %{summary}
BuildRequires: python2-devel
BuildRequires: python2-setuptools
%{?python_provide:%python_provide python2-pathspec}
%description -n python2-pathspec
Path Specification (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.
%package -n python%{python3_pkgversion}-pathspec
%package -n python3-pathspec
Summary: %{summary}
BuildRequires: python%{python3_pkgversion}-devel
BuildRequires: python%{python3_pkgversion}-setuptools
%{?python_provide:%python_provide python%{python3_pkgversion}-pathspec}
%{?python_provide:%python_provide python3-pathspec}
%description -n python%{python3_pkgversion}-pathspec
%description -n python3-pathspec
Path Specification (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.
@ -41,37 +32,88 @@ is derived from Rsync's wildmatch. Git uses wildmatch for its gitignore files.
rm -rf pathspec.egg-info
%build
%py2_build
%py3_build
%install
%py2_install
%py3_install
%check
%{__python2} setup.py test
%{__python3} setup.py test
%files -n python2-pathspec
%doc README.rst
%license LICENSE
%{python2_sitelib}/pathspec
%{python2_sitelib}/pathspec-%{version}-py?.?.egg-info
%files -n python%{python3_pkgversion}-pathspec
%files -n python3-pathspec
%doc README.rst
%license LICENSE
%{python3_sitelib}/pathspec
%{python3_sitelib}/pathspec-%{version}-py?.?.egg-info
%{python3_sitelib}/pathspec-%{version}-py%{python3_version}.egg-info
%changelog
* Mon Dec 11 2023 Adrien Vergé <adrienverge@gmail.com> - 0.12.1-1
- Update to latest upstream version
* Mon Sep 05 2022 Adrien Vergé <adrienverge@gmail.com> - 0.10.1-1
- Update to latest upstream version
* Wed Nov 17 2021 Miro Hrončok <mhroncok@redhat.com> - 0.9.0-1
- Update to 0.9.0
- Fixes rhbz#1983374
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 0.8.1-2
- Rebuilt for Python 3.10
* Tue Apr 27 2021 Miro Hrončok <mhroncok@redhat.com> - 0.8.1-1
- Update to 0.8.1
- Fixes rhbz#1786816
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.6.0-3
- Rebuilt for Python 3.9
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Tue Oct 15 2019 Adrien Vergé <adrienverge@gmail.com> - 0.6.0-1
- Update to latest upstream version
- Adapt for EPEL 8 and Python 2/3 support
* Fri Mar 08 2019 Troy Dawson <tdawson@redhat.com> - 0.5.3-2
- Rebuilt to change main python from 3.4 to 3.6
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.5.3-11
- Rebuilt for Python 3.8.0rc1 (#1748018)
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.5.3-10
- Rebuilt for Python 3.8
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.3-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.3-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Thu Oct 11 2018 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.5.3-7
- Python2 binary package has been removed
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.3-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.5.3-5
- Rebuilt for Python 3.7
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.3-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Fri Jan 26 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.5.3-3
- Update Python 2 dependency declarations to new packaging standards
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Fri Jul 7 2017 Adrien Vergé <adrienverge@gmail.com> - 0.5.3-1
- Update to latest upstream version

@ -1 +1 @@
SHA512 (pathspec-0.6.0.tar.gz) = e08baa05a3fe58ec6ecd651577834115cdeef26b75eef274d843c3c6444cf771e86f99a2a2b2980a6d1ece946997f1ebe714f79ddd5c296071c2e18b73955a84
SHA512 (pathspec-0.12.1.tar.gz) = 19d1a8ae5936e76eacd691b0e2fb33d0de376556751a9ae007f6b09d0aa36af7d171101df620cab3e93c9913be578ff3d6bba9d4460351ac248e5c9e015380ad

Loading…
Cancel
Save