commit 552670b6d87da5db6344db191a26e6221ae4f4615a9efe6feac583b833fe1001 Author: Tomáš Chvátal Date: Fri Aug 30 00:49:52 2019 +0000 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 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/Gloo-0.1.2.tar.gz b/Gloo-0.1.2.tar.gz new file mode 100644 index 0000000..3398575 --- /dev/null +++ b/Gloo-0.1.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f43cbb2776fc1f22e7b47435e8812426965c28f7dce2f97b452d4f48ff7ad6 +size 5371 diff --git a/python-Gloo.changes b/python-Gloo.changes new file mode 100644 index 0000000..327a7ad --- /dev/null +++ b/python-Gloo.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Mon Apr 8 10:47:08 UTC 2019 - Christian Goll + +- Initial commit of v0.1.2 created with py2pack diff --git a/python-Gloo.spec b/python-Gloo.spec new file mode 100644 index 0000000..7bc5c66 --- /dev/null +++ b/python-Gloo.spec @@ -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