15
0
forked from pool/python-Gloo

- Enable sle15_python_module_pythons.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Gloo?expand=0&rev=7
This commit is contained in:
2024-08-30 11:01:51 +00:00
committed by Git OBS Bridge
commit b66ceb422a
5 changed files with 104 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
Gloo-0.1.2.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:86f43cbb2776fc1f22e7b47435e8812426965c28f7dce2f97b452d4f48ff7ad6
size 5371

19
python-Gloo.changes Normal file
View File

@@ -0,0 +1,19 @@
-------------------------------------------------------------------
Wed Aug 28 04:36:43 UTC 2024 - Guang Yee <gyee@suse.com>
- Enable sle15_python_module_pythons.
-------------------------------------------------------------------
Tue May 25 04:46:56 UTC 2021 - Steve Kowalik <steven.kowalik@suse.com>
- Do not build for Python 3.6, due to no NumPy.
-------------------------------------------------------------------
Tue Sep 10 07:42:13 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
- Trim filler wording from description.
-------------------------------------------------------------------
Mon Apr 8 10:47:08 UTC 2019 - Christian Goll <cgoll@suse.com>
- Initial commit of v0.1.2 created with py2pack

58
python-Gloo.spec Normal file
View File

@@ -0,0 +1,58 @@
#
# spec file for package python-Gloo
#
# Copyright (c) 2024 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}
%define skip_python36 1
Name: python-Gloo
Version: 0.1.2
Release: 0
Summary: Project management for data analysis projects
License: BSD-3-Clause
URL: https://pypi.python.org/pypi/Gloo/
Source: https://files.pythonhosted.org/packages/source/G/Gloo/Gloo-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-pandas
BuildArch: noarch
%python_subpackages
%description
Gloo ties together a lot of the data analysis actions that happen
regularly. It automatically loads data into the IPython environment,
runs scripts, makes utitlity functions available and more.
%prep
%setup -q -n Gloo-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
# The tests in test directory are broken and so they are not checked
%files %{python_files}
%doc CHANGES.txt README.rst
%license LICENSE.txt
%{python_sitelib}/*
%changelog