Accepting request 726984 from home:mslacken:ml

* added right license info
* tests are broken, so they are not used

OBS-URL: https://build.opensuse.org/request/show/726984
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Gloo?expand=0&rev=1
This commit is contained in:
Tomáš Chvátal 2019-08-30 00:49:52 +00:00 committed by Git OBS Bridge
commit 552670b6d8
5 changed files with 89 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

4
python-Gloo.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
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) 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-%{**}}
Name: python-Gloo
Version: 0.1.2
Release: 0
License: BSD-3-Clause
Summary: Project management for data analysis projects
Url: http://pypi.python.org/pypi/Gloo/
Group: Development/Languages/Python
Source: https://files.pythonhosted.org/packages/source/G/Gloo/Gloo-%{version}.tar.gz
BuildRequires: python-rpm-macros
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
Requires: python-pandas
BuildArch: noarch
%python_subpackages
%description
Gloo's goal is to tie together a lot of the data analysis actions that happen
regularly and make that processes easy. Automatically loading data into the
ipython environment, running scripts, making utitlity functions available and
more. These are things that have to be done often, but aren't the fun part.
%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