commit a8600a5ad2116e8668e6d10b6d8e5eba40b78011 Author: Adrian Schröter Date: Tue Jun 6 15:12:14 2023 +0200 Sync from SUSE:ALP:Source:Standard:1.0 python-jaraco.path revision 32c984cc4879ed124491c79039422388 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..fecc750 --- /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/jaraco.path-3.5.0.tar.gz b/jaraco.path-3.5.0.tar.gz new file mode 100644 index 0000000..dae1524 --- /dev/null +++ b/jaraco.path-3.5.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb87aa212f6777b4efc230a6ff3cc071e148c4b9b390dd44c5041310aad39c14 +size 11060 diff --git a/python-jaraco.path.changes b/python-jaraco.path.changes new file mode 100644 index 0000000..3a8da76 --- /dev/null +++ b/python-jaraco.path.changes @@ -0,0 +1,29 @@ +------------------------------------------------------------------- +Thu May 4 21:52:25 UTC 2023 - Dirk Müller + +- update to 3.5.0: + * Introduced ``Recording`` object and ``TreeMaker`` protocol, + with ``build()`` now explicitly accepting any ``TreeMaker``. + * Fixed EncodingWarnings and ResourceWarnings. + +------------------------------------------------------------------- +Fri Apr 21 12:27:25 UTC 2023 - Dirk Müller + +- add sle15_python_module_pythons (jsc#PED-68) + +------------------------------------------------------------------- +Wed Apr 19 01:00:15 UTC 2023 - Matej Cepl + +- Switch to single spec version build for PSP + +------------------------------------------------------------------- +Mon Aug 29 13:25:07 UTC 2022 - Ben Greiner + +- Update to 3.4.0 + * Require Python 3.7 or later. +- Switch to PEP517 and remove obsolete jaraco.base requirement + +------------------------------------------------------------------- +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..e55e8fe --- /dev/null +++ b/python-jaraco.path.spec @@ -0,0 +1,65 @@ +# +# spec file for package python-jaraco.path +# +# Copyright (c) 2023 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/ +# + + +%{?sle15_python_module_pythons} +Name: python-jaraco.path +Version: 3.5.0 +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 base >= 3.7} +BuildRequires: %{python_module pip} +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module setuptools >= 56} +BuildRequires: %{python_module setuptools_scm >= 3.4.1} +BuildRequires: %{python_module wheel} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +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 +%pyproject_wheel + +%install +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +# work around for gh#pytest-dev/pytest#3396 until gh#pytest-dev/pytest#10088 lands in a pytest release +touch jaraco/__init__.py +%pytest + +%files %{python_files} +%license LICENSE +%dir %{python_sitelib}/jaraco/ +%{python_sitelib}/jaraco/path.py +%{python_sitelib}/jaraco.path-%{version}*-info +%pycache_only %dir %{python_sitelib}/jaraco/__pycache__ +%pycache_only %{python_sitelib}/jaraco/__pycache__/path*.py* + +%changelog