Compare commits

...
Sign in to create a new pull request.

16 commits

Author SHA1 Message Date
Fedora Release Engineering
83c35971ec Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild 2026-07-17 08:15:17 +00:00
Python Maint
26afa257ca Rebuilt for Python 3.15 2026-06-04 10:38:52 +02:00
Fedora Release Engineering
8cdfb9e3aa Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild 2026-01-17 19:40:40 +00:00
Python Maint
23b79d2400 Rebuilt for Python 3.14.0rc3 bytecode 2025-09-19 15:01:43 +02:00
Python Maint
e76a7287a8 Rebuilt for Python 3.14.0rc2 bytecode 2025-08-15 15:21:39 +02:00
Federico Pellegrin
447ced4d17 Bump to 2.29, add tests execution and docs build 2025-08-08 06:03:12 +02:00
Federico Pellegrin
0f50122d3d Use new Python macros in spec file (rhbz#2378492) 2025-08-08 05:10:02 +02:00
Fedora Release Engineering
3ffc1ef3e4 Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 19:51:31 +00:00
Python Maint
a82de1da61 Rebuilt for Python 3.14 2025-06-02 20:53:43 +02:00
Fedora Release Engineering
303ae1311d Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-19 13:54:18 +00:00
Fabian Affolter
1713e8c78b Adjust requires (closes rhbz#2148282) 2024-09-27 11:18:40 +02:00
Miroslav Suchý
62e9d64e41 convert license to SPDX
This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4
2024-09-04 22:35:07 +02:00
Fedora Release Engineering
ab783b1e38 Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-20 08:23:26 +00:00
Python Maint
6aa03563ac Rebuilt for Python 3.13 2024-06-07 09:12:13 +02:00
Ondřej Nosek
9a19eee3e2 Update to latest upstream release 2.28
Signed-off-by: Ondřej Nosek <onosek@redhat.com>
2024-01-30 21:51:54 +00:00
Fedora Release Engineering
21e21e92b5 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-27 07:15:06 +00:00
3 changed files with 83 additions and 18 deletions

2
.gitignore vendored
View file

@ -7,3 +7,5 @@ urlwatch-1.11.tar.gz
/urlwatch-2.6.tar.gz
/urlwatch-2.17.tar.gz
/urlwatch-2.21.tar.gz
/urlwatch-2.28.tar.gz
/urlwatch-2.29.tar.gz

View file

@ -1 +1 @@
SHA512 (urlwatch-2.21.tar.gz) = e832ae0ed836739b85c9e71e0028fc475dcd2944af78c61391d7b3f155b1f22f52e5913b1dd4207f79c210383e6f187650a7e2ef109a59827881d825bfaee7c1
SHA512 (urlwatch-2.29.tar.gz) = 71e809398ad3b78779174a3a5f1a834d568e476166044c67b3b6d00fda53a4950015c51586a78f70f3637311cd4904257d97eeace4eb602392141a593e03ac7d

View file

@ -1,21 +1,27 @@
Name: urlwatch
Version: 2.21
Release: 10%{?dist}
Version: 2.29
Release: 6%{?dist}
Summary: A tool for monitoring webpages for updates
License: BSD
License: LicenseRef-Callaway-BSD
URL: http://thpinfo.com/2008/urlwatch/
Source0: https://github.com/thp/urlwatch/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-idle
BuildRequires: python3dist(sphinx)
# Build deps for testing
BuildRequires: python3dist(pytest)
BuildRequires: python3dist(docutils)
BuildRequires: python3dist(pycodestyle)
Requires: python3-requests
Requires: python3-keyring
Requires: python3-minidb
Requires: python3-PyYAML
Requires: python3dist(platformdirs)
Requires: python3dist(html2text)
Requires: python3dist(keyring)
Requires: python3dist(lxml)
Requires: python3dist(minidb)
Requires: python3dist(pyyaml)
Requires: python3dist(requests)
%description
This script is intended to help you watch URLs and get notified (via
@ -38,25 +44,82 @@ Basic features
%prep
%autosetup
%generate_buildrequires
%pyproject_buildrequires
%build
%py3_build
%pyproject_wheel
pushd .
cd docs
sphinx-build -M html source ../build
rm ../build/html/.buildinfo
popd
%install
%py3_install
# Fix exec permission for rpmlint
chmod 0755 %{buildroot}%{python3_sitelib}/%{name}/*txt.py
chmod a+x %{buildroot}%{python3_sitelib}/%{name}/handler.py
%pyproject_install
%check
# test_filter_documentation requires jq and pdftotext which are not packaged in Fedora
%pytest lib/urlwatch/tests -k "not test_filter_documentation"
%files
%doc CHANGELOG.md README.md
%doc CHANGELOG.md README.md build/html/*
%license COPYING
%{_mandir}/man*/*.*
%{_bindir}/%{name}
%{_datadir}/%{name}/examples/
%{python3_sitelib}/%{name}/
%{python3_sitelib}/%{name}*.egg-info
%{python3_sitelib}/%{name}*.dist-info
%changelog
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2.29-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
* Thu Jun 04 2026 Python Maint <python-maint@redhat.com> - 2.29-5
- Rebuilt for Python 3.15
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2.29-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 2.29-3
- Rebuilt for Python 3.14.0rc3 bytecode
* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 2.29-2
- Rebuilt for Python 3.14.0rc2 bytecode
* Fri Aug 08 2025 Federico Pellegrin <fede@evolware.org> - 2.29-1
- Bump to 2.29, add tests execution and docs build
* Fri Aug 08 2025 Federico Pellegrin <fede@evolware.org> - 2.28-9
- Use new Python macros in spec file (rhbz#2378492)
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.28-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Mon Jun 02 2025 Python Maint <python-maint@redhat.com> - 2.28-7
- Rebuilt for Python 3.14
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.28-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
* Fri Sep 27 2024 Fabian Affolter <mail@fabian-affolter.ch> - 2.28-5
- Adjust requires (closes rhbz#2148282)
* Wed Sep 04 2024 Miroslav Suchý <msuchy@redhat.com> - 2.28-4
- convert license to SPDX
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.28-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Fri Jun 07 2024 Python Maint <python-maint@redhat.com> - 2.28-2
- Rebuilt for Python 3.13
* Tue Jan 30 2024 Ondřej Nosek <onosek@redhat.com> - 2.28-1
- Update to latest upstream release 2.28
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.21-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.21-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild