17
0

Compare commits

7 Commits

Author SHA256 Message Date
f0e653fae2 Accepting request 1300056 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1300056
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-feedgenerator?expand=0&rev=11
2025-08-18 14:09:13 +00:00
8a577b339c - update to version 2.2.1
- change documentation to README.md to match upstream

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-feedgenerator?expand=0&rev=23
2025-08-18 12:39:17 +00:00
20dbccdee0 Accepting request 1293335 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1293335
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-feedgenerator?expand=0&rev=10
2025-07-15 14:46:01 +00:00
5b4994b7eb Accepting request 1293220 from home:benoit_monin:branches:devel:languages:python
- update to version 2.2.0
- require python >= 3.9
- add hatchling and remove setuptools and wheel as build dependency
- drop pytz runtime requirement, it is still needed for the test during the build

OBS-URL: https://build.opensuse.org/request/show/1293220
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-feedgenerator?expand=0&rev=21
2025-07-15 09:04:39 +00:00
1b335d9999 Accepting request 1280526 from devel:languages:python
- Convert to pip-based build

OBS-URL: https://build.opensuse.org/request/show/1280526
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-feedgenerator?expand=0&rev=9
2025-05-27 16:42:51 +00:00
569c5868b8 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-feedgenerator?expand=0&rev=19 2025-05-27 11:42:11 +00:00
f71fc9bc82 - Convert to pip-based build
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-feedgenerator?expand=0&rev=18
2025-05-27 11:41:43 +00:00
4 changed files with 37 additions and 12 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f075f23f28fd227f097c36b212161c6cf012e1c6caaf7ff53d5d6bb02cd42b9d
size 20682

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0eaa955f1f0bcb5b87ac195af740f06ff9fff4a40ed30b8a7c6bbebb264d4dd1
size 20872

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Sun Aug 17 21:02:40 UTC 2025 - Benoît Monin <benoit.monin@gmx.fr>
- update to version 2.2.1:
* Restore missing content property to default item dictionary
- change documentation to README.md to match upstream
-------------------------------------------------------------------
Mon Jul 14 17:40:27 UTC 2025 - Benoît Monin <benoit.monin@gmx.fr>
- update to version 2.2.0:
* Update to latest upstream code from Django 5.2
* Remove pytz as a dependency on non-Windows systems
* Use standardized pyproject file
* Drop support for EOL Python 3.7 & 3.8
- require python >= 3.9
- add hatchling and remove setuptools and wheel as build dependency
- drop pytz runtime requirement, it is still needed for the test
during the build
-------------------------------------------------------------------
Tue May 27 11:41:14 UTC 2025 - Markéta Machová <mmachova@suse.com>
- Convert to pip-based build
-------------------------------------------------------------------
Fri Apr 14 16:28:32 UTC 2023 - Benoît Monin <benoit.monin@gmx.fr>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-feedgenerator
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,20 +17,20 @@
Name: python-feedgenerator
Version: 2.1.0
Version: 2.2.1
Release: 0
Summary: Standalone version of django.utilsfeedgenerator, compatible with Py3k
License: BSD-3-Clause
Group: Development/Languages/Python
URL: https://github.com/getpelican/feedgenerator
Source: https://files.pythonhosted.org/packages/source/f/feedgenerator/feedgenerator-%{version}.tar.gz
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module base >= 3.9}
BuildRequires: %{python_module hatchling}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module pytz}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-pytz
BuildArch: noarch
%python_subpackages
@@ -42,10 +42,10 @@ It has evolved over time and includes numerous enhancements.
%setup -q -n feedgenerator-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@@ -55,8 +55,8 @@ export LC_ALL=en_US.utf8
%files %{python_files}
%license LICENSE
%doc README.rst
%{python_sitelib}/feedgenerator-%{version}-py%{python_version}.egg-info
%doc README.md
%{python_sitelib}/feedgenerator-%{version}*-info
%{python_sitelib}/feedgenerator
%changelog