Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python311-pathspec | Distribution: SUSE Linux Framework One |
Version: 0.11.1 | Vendor: SUSE LLC <https://www.suse.com/> |
Release: slfo.1.1.4 | Build date: Mon Aug 26 11:04:38 2024 |
Group: Unspecified | Build host: h01-ch2d |
Size: 182951 | Source RPM: python-pathspec-0.11.1-slfo.1.1.4.src.rpm |
Packager: https://www.suse.com/ | |
Url: https://github.com/cpburnz/python-path-specification | |
Summary: Utility library for gitignore style pattern matching of file paths |
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.
MPL-2.0
* Fri Apr 21 2023 dmueller@suse.com - add sle15_python_module_pythons (jsc#PED-68) * Thu Apr 13 2023 mcepl@suse.com - Make calling of %{sle15modernpython} optional. * Sun Mar 26 2023 dmueller@suse.com - update to 0.11.1: * `Issue #74`_: Include directory should override exclude file. * `Pull #75`_: Fix partially unknown PathLike type. * Convert `os.PathLike` to a string properly using `os.fspath`. * Major changes: * Changed build backend to `flit_core.buildapi`_ from `setuptools.build_meta`_. Building with `setuptools` through `setup.py` is still supported for distributions that need it. * `Issue #72`_/`Pull #73`_: Please consider switching the build-system to flit_core to ease setuptools bootstrap. * Tue Dec 13 2022 yarunachalam@suse.com - Update to version 0.10.3 * New features: Added utility function pathspec.util.append_dir_sep() to aid in distinguishing between directories and files on the file-system. See Issue #65. * Bug fixes: Issue #66/Pull #67: Package not marked as py.typed. Issue #68: Exports are considered private. Issue #70/Pull #71: 'Self' string literal type is Unknown in pyright. * Improvements: Issue #65: Checking directories via match_file() does not work on Path objects. * Sat Dec 03 2022 yarunachalam@suse.com - Update to version 0.10.2: Bug fixes: * Fix failing tests on Windows. * Type hint on root parameter on pathspec.pathspec.PathSpec.match_tree_entries(). * Type hint on root parameter on pathspec.pathspec.PathSpec.match_tree_files(). * Type hint on root parameter on pathspec.util.iter_tree_entries(). * Type hint on root parameter on pathspec.util.iter_tree_files(). * Issue #64: IndexError with my .gitignore file when trying to build a Python package. Improvements: * Issue #58: CI: add GitHub Actions test workflow. * Mon Sep 12 2022 benoit.monin@gmx.fr - update to 0.10.1: * Bug fixes: + Fix documentation on pathspec.pattern.RegexPattern.match_file(). + Issue #60: Remove redundant wheel dep from pyproject.toml. + Issue #61: Dist failure for Fedora, CentOS, EPEL. + Issue #62: Since version 0.10.0 pure wildcard does not work in some cases. * Improvements: + Restore support for legacy installations using setup.py. See Issue #61. - additional changes from 0.10.0: * Major changes: + Dropped support of EOL Python 2.7, 3.5, 3.6. See Issue #47 + The gitwildmatch pattern dir/* is now handled the same as dir/ + Added pathspec.GitIgnoreSpec class (see new features) + Changed build system to pyproject.toml and build backend to setuptools.build_meta which may have unforeseen consequences + Renamed GitHub project from python-path-specification to python-pathspec. See Issue #35. * API changes: + Deprecated: pathspec.util.match_files() is an old function no longer used. + Deprecated: pathspec.match_files() is an old function no longer used. + Deprecated: pathspec.util.normalize_files() is no longer used + Deprecated: pathspec.util.iter_tree() is an alias for pathspec.util.iter_tree_files(). + Deprecated: pathspec.iter_tree() is an alias for pathspec.util.iter_tree_files(). + Deprecated: pathspec.pattern.Pattern.match() is no longer used. Use or implement pathspec.pattern.Pattern.match_file(). * New features: + Added class pathspec.gitignore.GitIgnoreSpec (with alias pathspec.GitIgnoreSpec) to implement gitignore behavior not possible with standard PathSpec class * Bug fixes: + Issue #19: Files inside an ignored sub-directory are not matched. + Issue #41: Incorrectly (?) matches files inside directories that do match. + Issue #51: Refactor deprecated unittest aliases for Python 3.11 compatibility. + Issue #53: Symlink pathspec_meta.py breaks Windows. + Issue #54: test_util.py uses os.symlink which can fail on Windows. + Issue #55: Backslashes at start of pattern not handled correctly. + Issue #56: pyproject.toml: include subpackages in setuptools config + Issue #57: ! doesn't exclude files in directories if the pattern doesn't have a trailing slash. * Improvements: + Support Python 3.10, 3.11. + Modernize code to Python 3.7. + Issue #52: match_files() is not a pure generator function, and it impacts tree_*() gravely. - add BuildRequires for python >= 3.7 * Wed Jan 05 2022 dmueller@suse.com - update to 0.9.0: * Raise `GitWildMatchPatternError` for invalid git patterns. * Fix for duplicate leading double-asterisk, and edge cases. * Fix matching absolute paths. * API change: `util.normalize_files()` now returns a `Dict[str, List[pathlike]]` instead of a `Dict[str, pathlike]`. * Added type hinting. * Tue Jun 01 2021 pgajdos@suse.com - %check: use %pyunittest rpm macro * Sat Dec 19 2020 dmueller@suse.com - update to 0.8.1: * `Issue #43`_: Add support for addition operator * Wed Oct 07 2020 jayvdb@gmail.com - Update to v0.8.0 * Expose what patterns matched paths. Added `util.detailed_match_files()` * `match_tree()` doesn't return symlinks - Add `PathSpec.match_tree_entries` and `util.iter_tree_entries()` to support directories and symlinks - API change: `match_tree()` has been renamed to `match_tree_files()` The old name `match_tree()` is still available as an alias - API change: `match_tree_files()` now returns symlinks * Wed Mar 11 2020 mcalabkova@suse.com - update to 0.7.0 * Add support for Python 3.8, and drop Python 3.4. * Publish bdist wheel. * Thu Oct 10 2019 tchvatal@suse.com - Update to 0.6.0: * Issue #24: Drop support for Python 2.6, 3.2, and 3.3. * Issue #25: Update README.rst. * Issue #26: Method to escape gitwildmatch. * Thu Feb 14 2019 jayvdb@gmail.com - Update to v0.5.9 * Fixed file system error handling. - from v0.5.8 * Improved type checking. * Created scripts to test Python 2.6 because Tox removed support for it. * Improved byte string handling in Python 3. * Handle dangling symlinks. - from v0.5.7 * Fix collections deprecation warning. * Tue Dec 04 2018 mcepl@suse.com - Remove superfluous devel dependency for noarch package * Thu May 10 2018 toddrme2178@gmail.com - Update to 0.5.6 * Improved unit tests. * Improved type checking. * `Issue #20`_: Support current directory prefix. - Use license tag * Wed Jan 17 2018 toddrme2178@gmail.com - Initial version
/usr/lib/python3.11/site-packages/pathspec /usr/lib/python3.11/site-packages/pathspec-0.11.1-py3.11.egg-info /usr/lib/python3.11/site-packages/pathspec-0.11.1-py3.11.egg-info/PKG-INFO /usr/lib/python3.11/site-packages/pathspec-0.11.1-py3.11.egg-info/SOURCES.txt /usr/lib/python3.11/site-packages/pathspec-0.11.1-py3.11.egg-info/dependency_links.txt /usr/lib/python3.11/site-packages/pathspec-0.11.1-py3.11.egg-info/top_level.txt /usr/lib/python3.11/site-packages/pathspec/__init__.py /usr/lib/python3.11/site-packages/pathspec/__pycache__ /usr/lib/python3.11/site-packages/pathspec/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pathspec/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/pathspec/__pycache__/_meta.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pathspec/__pycache__/_meta.cpython-311.pyc /usr/lib/python3.11/site-packages/pathspec/__pycache__/gitignore.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pathspec/__pycache__/gitignore.cpython-311.pyc /usr/lib/python3.11/site-packages/pathspec/__pycache__/pathspec.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pathspec/__pycache__/pathspec.cpython-311.pyc /usr/lib/python3.11/site-packages/pathspec/__pycache__/pattern.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pathspec/__pycache__/pattern.cpython-311.pyc /usr/lib/python3.11/site-packages/pathspec/__pycache__/util.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pathspec/__pycache__/util.cpython-311.pyc /usr/lib/python3.11/site-packages/pathspec/_meta.py /usr/lib/python3.11/site-packages/pathspec/gitignore.py /usr/lib/python3.11/site-packages/pathspec/pathspec.py /usr/lib/python3.11/site-packages/pathspec/pattern.py /usr/lib/python3.11/site-packages/pathspec/patterns /usr/lib/python3.11/site-packages/pathspec/patterns/__init__.py /usr/lib/python3.11/site-packages/pathspec/patterns/__pycache__ /usr/lib/python3.11/site-packages/pathspec/patterns/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pathspec/patterns/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/pathspec/patterns/__pycache__/gitwildmatch.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pathspec/patterns/__pycache__/gitwildmatch.cpython-311.pyc /usr/lib/python3.11/site-packages/pathspec/patterns/gitwildmatch.py /usr/lib/python3.11/site-packages/pathspec/py.typed /usr/lib/python3.11/site-packages/pathspec/util.py /usr/share/doc/packages/python311-pathspec /usr/share/doc/packages/python311-pathspec/CHANGES.rst /usr/share/doc/packages/python311-pathspec/README.rst /usr/share/licenses/python311-pathspec /usr/share/licenses/python311-pathspec/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Sat Nov 9 00:03:33 2024