From c9a12c53be0e97c89ca1ff0bcb0c4641aa39551a1620ac4a895dc5377ee9683a Mon Sep 17 00:00:00 2001 From: Todd R Date: Tue, 23 Jul 2019 14:43:44 +0000 Subject: [PATCH] Accepting request 717931 from home:TheBlackCat:branches:devel:languages:python Filesystem specification package. Required by the latest version of python-gcsfs OBS-URL: https://build.opensuse.org/request/show/717931 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fsspec?expand=0&rev=1 --- .gitattributes | 23 ++++++++++++++ .gitignore | 1 + filesystem_spec-0.3.3.tar.gz | 3 ++ python-fsspec.changes | 4 +++ python-fsspec.spec | 59 ++++++++++++++++++++++++++++++++++++ 5 files changed, 90 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 filesystem_spec-0.3.3.tar.gz create mode 100644 python-fsspec.changes create mode 100644 python-fsspec.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/filesystem_spec-0.3.3.tar.gz b/filesystem_spec-0.3.3.tar.gz new file mode 100644 index 0000000..153a375 --- /dev/null +++ b/filesystem_spec-0.3.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0480098ff4651808ecc5ee399743c2a3506a386f556a15f074d752a19c9fb1c7 +size 81250 diff --git a/python-fsspec.changes b/python-fsspec.changes new file mode 100644 index 0000000..439ea07 --- /dev/null +++ b/python-fsspec.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Mon Jul 22 16:32:08 UTC 2019 - Todd R + +- Initial version diff --git a/python-fsspec.spec b/python-fsspec.spec new file mode 100644 index 0000000..4123224 --- /dev/null +++ b/python-fsspec.spec @@ -0,0 +1,59 @@ +# +# spec file for package python-fsspec +# +# Copyright (c) 2019 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-%{**}} +%define skip_python2 1 +Name: python-fsspec +Version: 0.3.3 +Release: 0 +License: BSD-3-Clause +Summary: Filesystem specification package +Url: http://github.com/intake/filesystem_spec +Group: Development/Languages/Python +Source: https://codeload.github.com/intake/filesystem_spec/tar.gz/%{version}#/filesystem_spec-%{version}.tar.gz +BuildRequires: %{python_module setuptools} +# SECTION test requirements +BuildRequires: %{python_module pytest} +# /SECTION +BuildRequires: fdupes +BuildRequires: python-rpm-macros +BuildArch: noarch + +%python_subpackages + +%description +A specification for pythonic filesystems. + +%prep +%setup -q -n filesystem_spec-%{version} + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%pytest + +%files %{python_files} +%doc README.md +%license LICENSE +%{python_sitelib}/* + +%changelog