commit b3f7557f1e8d39b3c35acc29d7bf8e24f5f50c4a57c59c7a8877b29ba1ec10cb Author: Steve Kowalik Date: Mon May 5 06:20:03 2025 +0000 - Switch to pyproject macros. - No more greedy globs in %files. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Gloo?expand=0&rev=9 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..2064d50 --- /dev/null +++ b/python-Gloo.changes @@ -0,0 +1,25 @@ +------------------------------------------------------------------- +Mon May 5 06:19:28 UTC 2025 - Steve Kowalik + +- Switch to pyproject macros. +- No more greedy globs in %files. + +------------------------------------------------------------------- +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..45e9ab2 --- /dev/null +++ b/python-Gloo.spec @@ -0,0 +1,60 @@ +# +# spec file for package python-Gloo +# +# Copyright (c) 2025 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} +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 pip} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module wheel} +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 +%pyproject_wheel + +%install +%pyproject_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}/[Gg]loo +%{python_sitelib}/[Gg]loo-%{version}.dist-info + +%changelog