14
0

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
This commit is contained in:
2021-07-10 20:53:57 +00:00
committed by Git OBS Bridge
commit 41a66eb94b
5 changed files with 91 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -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

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

3
jaraco.path-3.3.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:11b75001e622c280bfa73331513ec4271c59217e9b21f471aecd2287d1051bf1
size 13287

View File

@@ -0,0 +1,4 @@
-------------------------------------------------------------------
Sat May 1 20:13:31 UTC 2021 - Dirk Müller <dmueller@suse.com>
- Initial package (3.3.1)

60
python-jaraco.path.spec Normal file
View File

@@ -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