From 51a55229888eebc5e8c99e9b86fff928e9b769cc7d8514bd82e4e3722a7320e4 Mon Sep 17 00:00:00 2001 From: Todd R Date: Thu, 10 May 2018 00:23:54 +0000 Subject: [PATCH] Accepting request 605991 from devel:languages:python:misc Utility library for gitignore style pattern matching of file paths OBS-URL: https://build.opensuse.org/request/show/605991 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pathspec?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++++ .gitignore | 1 + pathspec-0.5.6.tar.gz | 3 ++ python-pathspec.changes | 13 +++++++++ python-pathspec.spec | 62 +++++++++++++++++++++++++++++++++++++++++ 5 files changed, 102 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 pathspec-0.5.6.tar.gz create mode 100644 python-pathspec.changes create mode 100644 python-pathspec.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/pathspec-0.5.6.tar.gz b/pathspec-0.5.6.tar.gz new file mode 100644 index 0000000..8a2ec78 --- /dev/null +++ b/pathspec-0.5.6.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be664567cf96a718a68b33329862d1e6f6803ef9c48a6e2636265806cfceb29d +size 24494 diff --git a/python-pathspec.changes b/python-pathspec.changes new file mode 100644 index 0000000..825baf5 --- /dev/null +++ b/python-pathspec.changes @@ -0,0 +1,13 @@ +------------------------------------------------------------------- +Thu May 10 00:06:44 UTC 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 02:36:25 UTC 2018 - toddrme2178@gmail.com + +- Initial version diff --git a/python-pathspec.spec b/python-pathspec.spec new file mode 100644 index 0000000..6bbda97 --- /dev/null +++ b/python-pathspec.spec @@ -0,0 +1,62 @@ +# +# spec file for package python-pathspec +# +# Copyright (c) 2018 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-%{**}} +%bcond_without test +Name: python-pathspec +Version: 0.5.6 +Release: 0 +License: MPL-2.0 +Summary: Utility library for gitignore style pattern matching of file paths +Url: https://github.com/cpburnz/python-path-specification +Group: Development/Languages/Python +Source: https://files.pythonhosted.org/packages/source/p/pathspec/pathspec-%{version}.tar.gz +BuildRequires: %{python_module devel} +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} + +%if %{with test} +%check +%python_exec setup.py test +%endif + +%files %{python_files} +%doc CHANGES.rst README.rst +%license LICENSE +%{python_sitelib}/* + +%changelog