commit b66ceb422ab0aea3e78482cf4c5ba5dc9128e62f02cf56fc02d4cabbef52acef Author: Markéta Machová Date: Fri Aug 30 11:01:51 2024 +0000 - Enable sle15_python_module_pythons. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Gloo?expand=0&rev=7 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..06d3f71 --- /dev/null +++ b/python-Gloo.changes @@ -0,0 +1,19 @@ +------------------------------------------------------------------- +Wed Aug 28 04:36:43 UTC 2024 - Guang Yee + +- Enable sle15_python_module_pythons. + +------------------------------------------------------------------- +Tue May 25 04:46:56 UTC 2021 - Steve Kowalik + +- Do not build for Python 3.6, due to no NumPy. + +------------------------------------------------------------------- +Tue Sep 10 07:42:13 UTC 2019 - Jan Engelhardt + +- Trim filler wording from description. + +------------------------------------------------------------------- +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..d15eb29 --- /dev/null +++ b/python-Gloo.spec @@ -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