From 093ef83c3af9c39dc30b22418c27df66c2cbf5214aef6e0c01eadcd542849839 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=C3=A9ta=20Machov=C3=A1?= Date: Wed, 25 Sep 2024 07:54:16 +0000 Subject: [PATCH] Accepting request 1203220 from home:yeey:branches:home:yeey:OpenWebUI - Enable sle15_python_module_pythons. OBS-URL: https://build.opensuse.org/request/show/1203220 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-easygui?expand=0&rev=7 --- .gitattributes | 23 ++++++++++++++++++ .gitignore | 1 + easygui-0.98.3.tar.gz | 3 +++ python-easygui.changes | 20 ++++++++++++++++ python-easygui.spec | 53 ++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 100 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 easygui-0.98.3.tar.gz create mode 100644 python-easygui.changes create mode 100644 python-easygui.spec 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/easygui-0.98.3.tar.gz b/easygui-0.98.3.tar.gz new file mode 100644 index 0000000..6c9cfe3 --- /dev/null +++ b/easygui-0.98.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d653ff79ee1f42f63b5a090f2f98ce02335d86ad8963b3ce2661805cafe99a04 +size 85583 diff --git a/python-easygui.changes b/python-easygui.changes new file mode 100644 index 0000000..c3cf7f6 --- /dev/null +++ b/python-easygui.changes @@ -0,0 +1,20 @@ +------------------------------------------------------------------- +Tue Sep 24 18:43:34 UTC 2024 - Guang Yee + +- Enable sle15_python_module_pythons. + +------------------------------------------------------------------- +Sun May 29 20:05:53 UTC 2022 - Dirk Müller + +- update to 0.98.3: + * Update collections.abc import location + +------------------------------------------------------------------- +Mon Oct 14 13:36:28 UTC 2019 - Matej Cepl + +- Replace %fdupes -s with plain %fdupes; hardlinks are better. + +------------------------------------------------------------------- +Fri Jul 7 09:19:28 UTC 2017 - aloisio@gmx.com + +- Initial package (0.98.1) diff --git a/python-easygui.spec b/python-easygui.spec new file mode 100644 index 0000000..0276b53 --- /dev/null +++ b/python-easygui.spec @@ -0,0 +1,53 @@ +# +# spec file for package python-easygui +# +# 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 py_name easygui +Name: python-easygui +Version: 0.98.3 +Release: 0 +Summary: Function-driven python GUI programming +License: BSD-3-Clause +URL: https://github.com/robertlugg/easygui +Source0: https://files.pythonhosted.org/packages/source/e/easygui/easygui-%{version}.tar.gz +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +BuildArch: noarch +%python_subpackages + +%description +EasyGui provides an interface for simple GUI interaction with a user. +It's not event-driven and it does not require the programmer to know +anything about tkinter, frames, widgets, callbacks or lambda. + +%prep +%setup -q -n %{py_name}-%{version} + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%files %{python_files} +%doc README.txt +%{python_sitelib}/* + +%changelog