From 7ef6cfca2bcfc3ec53e88e7922ee2dc42165d94b3f643c173d498143f4cf0766 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sat, 5 Jul 2025 10:21:00 +0000 Subject: [PATCH] - update to 0.1.12: * Finalise TOML config (e.g. exclude unwanted folders in installations), remove `setup.py` - update to 0.1.11: * Added documentation * Automated publishing to PyPI * Automated documentation generation * Switched to TOML package description * No changes in functionality OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-proglog?expand=0&rev=7 --- .gitattributes | 23 ++++++++++++++++ .gitignore | 1 + proglog-0.1.10.tar.gz | 3 +++ proglog-0.1.12.tar.gz | 3 +++ python-proglog.changes | 28 +++++++++++++++++++ python-proglog.spec | 61 ++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 119 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 proglog-0.1.10.tar.gz create mode 100644 proglog-0.1.12.tar.gz create mode 100644 python-proglog.changes create mode 100644 python-proglog.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/proglog-0.1.10.tar.gz b/proglog-0.1.10.tar.gz new file mode 100644 index 0000000..15b97bb --- /dev/null +++ b/proglog-0.1.10.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:658c28c9c82e4caeb2f25f488fff9ceace22f8d69b15d0c1c86d64275e4ddab4 +size 11088 diff --git a/proglog-0.1.12.tar.gz b/proglog-0.1.12.tar.gz new file mode 100644 index 0000000..aeeceb5 --- /dev/null +++ b/proglog-0.1.12.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:361ee074721c277b89b75c061336cb8c5f287c92b043efa562ccf7866cda931c +size 8794 diff --git a/python-proglog.changes b/python-proglog.changes new file mode 100644 index 0000000..4ddfba2 --- /dev/null +++ b/python-proglog.changes @@ -0,0 +1,28 @@ +------------------------------------------------------------------- +Sat Jul 5 10:20:47 UTC 2025 - Dirk Müller + +- update to 0.1.12: + * Finalise TOML config (e.g. exclude unwanted folders in + installations), remove `setup.py` +- update to 0.1.11: + * Added documentation + * Automated publishing to PyPI + * Automated documentation generation + * Switched to TOML package description + * No changes in functionality + +------------------------------------------------------------------- +Tue Jun 3 12:24:42 UTC 2025 - Markéta Machová + +- Convert to pip-based build + +------------------------------------------------------------------- +Tue May 9 21:38:51 UTC 2023 - Dirk Müller + +- update to 0.1.10: + * Test and build on Python 3.9 + +------------------------------------------------------------------- +Mon Jul 2 04:24:44 UTC 2018 - toddrme2178@gmail.com + +- Initial version diff --git a/python-proglog.spec b/python-proglog.spec new file mode 100644 index 0000000..cdc2776 --- /dev/null +++ b/python-proglog.spec @@ -0,0 +1,61 @@ +# +# spec file for package python-proglog +# +# 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/ +# + + +Name: python-proglog +Version: 0.1.12 +Release: 0 +Summary: Log and progress bar manager for Python +License: MIT +Group: Development/Languages/Python +URL: https://github.com/Edinburgh-Genome-Foundry/Proglog +Source: https://files.pythonhosted.org/packages/source/p/proglog/proglog-%{version}.tar.gz +BuildRequires: %{python_module pip} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module wheel} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-tqdm +BuildArch: noarch +# SECTION test requirements +BuildRequires: %{python_module tqdm} +# /SECTION +%python_subpackages + +%description +Proglog is a progress logging system for Python. It allows developers +to build libraries while giving the user control on the management of +logs, callbacks and progress bars. + +%prep +%setup -q -n proglog-%{version} +chmod a-x LICENSE README.rst + +%build +%pyproject_wheel + +%install +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%files %{python_files} +%doc README.rst +%license LICENSE +%{python_sitelib}/proglog +%{python_sitelib}/proglog-%{version}*-info + +%changelog