commit 41a66eb94bef9d477cb5dc6daeeb48d446a89faecee9ef930eec820101cce407 Author: Dominique Leuenberger Date: Sat Jul 10 20:53:57 2021 +0000 Accepting request 903650 from devel:languages:python initialized devel package after accepting 903650 OBS-URL: https://build.opensuse.org/request/show/903650 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jaraco.path?expand=0&rev=4 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/jaraco.path-3.3.1.tar.gz b/jaraco.path-3.3.1.tar.gz new file mode 100644 index 0000000..60f8b97 --- /dev/null +++ b/jaraco.path-3.3.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11b75001e622c280bfa73331513ec4271c59217e9b21f471aecd2287d1051bf1 +size 13287 diff --git a/python-jaraco.path.changes b/python-jaraco.path.changes new file mode 100644 index 0000000..c63b13a --- /dev/null +++ b/python-jaraco.path.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Sat May 1 20:13:31 UTC 2021 - Dirk Müller + +- Initial package (3.3.1) diff --git a/python-jaraco.path.spec b/python-jaraco.path.spec new file mode 100644 index 0000000..47477f9 --- /dev/null +++ b/python-jaraco.path.spec @@ -0,0 +1,60 @@ +# +# spec file for package python-jaraco.path +# +# Copyright (c) 2021 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/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-jaraco.path +Version: 3.3.1 +Release: 0 +Summary: miscellaneous path functions for jaraco packages +License: MIT +URL: https://github.com/jaraco/jaraco.path +Source: https://files.pythonhosted.org/packages/source/j/jaraco.path/jaraco.path-%{version}.tar.gz +BuildRequires: %{python_module jaraco.base} +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module setuptools_scm >= 3.4.1} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module singledispatch} +BuildRequires: python-rpm-macros +Requires: python-singledispatch +BuildArch: noarch +%python_subpackages + +%description +jaraco.path provides cross platform hidden file detection +and other miscellaneous path helper functions. + +%prep +%setup -q -n jaraco.path-%{version} + +%build +%python_build + +%install +%python_install + +%check +%pytest + +%files %{python_files} +%license LICENSE +%dir %{python_sitelib}/jaraco/ +%{python_sitelib}/jaraco/path.py +%{python_sitelib}/jaraco.path-%{version}-py%{python_version}.egg-info +%pycache_only %{python_sitelib}/jaraco/__pycache__/path*.py* + +%changelog