15
0

Compare commits

8 Commits

Author SHA256 Message Date
a6de82455e Accepting request 1292436 from devel:languages:python
- update to 1.0.5:
  * [added] the ability to use z0 as last day of the month, z1
    for the day before the last day of the month, up to z7 for
    7 days before the last day of the month.

OBS-URL: https://build.opensuse.org/request/show/1292436
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-crontab?expand=0&rev=7
2025-07-14 08:51:40 +00:00
55b401c3cf - update to 1.0.5:
* [added] the ability to use z0 as last day of the month, z1
    for the day before the last day of the month, up to z7 for
    7 days before the last day of the month.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-crontab?expand=0&rev=13
2025-07-12 17:26:56 +00:00
a0b72bb93b Accepting request 1285961 from devel:languages:python
- Switch to pyroject macros.

OBS-URL: https://build.opensuse.org/request/show/1285961
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-crontab?expand=0&rev=6
2025-06-16 09:13:07 +00:00
7844e18b7e - Switch to pyroject macros.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-crontab?expand=0&rev=11
2025-06-16 06:22:03 +00:00
cb43482c13 Accepting request 1273574 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1273574
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-crontab?expand=0&rev=5
2025-04-30 17:05:08 +00:00
5b7b60c30b - Update to 1.0.4
* Allow previous to return datetime
  * make returned datetime respect requested timezone

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-crontab?expand=0&rev=9
2025-04-30 06:34:54 +00:00
8fec32482d Accepting request 1238941 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1238941
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-crontab?expand=0&rev=4
2025-01-20 16:14:40 +00:00
50c382848e - Add %{?sle15_python_module_pythons}
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-crontab?expand=0&rev=7
2025-01-20 08:59:38 +00:00
4 changed files with 37 additions and 10 deletions

View File

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

3
crontab-1.0.5.tar.gz Normal file
View File

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

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Sat Jul 12 17:26:33 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 1.0.5:
* [added] the ability to use z0 as last day of the month, z1
for the day before the last day of the month, up to z7 for
7 days before the last day of the month.
-------------------------------------------------------------------
Mon Jun 16 06:12:20 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Switch to pyroject macros.
-------------------------------------------------------------------
Tue Apr 29 13:21:53 UTC 2025 - Felix Stegmeier <felix.stegmeier@suse.com>
- Update to 1.0.4
* Allow previous to return datetime
* make returned datetime respect requested timezone
-------------------------------------------------------------------
Sat Jan 18 11:32:28 UTC 2025 - ecsos <ecsos@opensuse.org>
- Add %{?sle15_python_module_pythons}
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Aug 23 12:52:40 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com> Mon Aug 23 12:52:40 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-crontab # spec file for package python-crontab
# #
# Copyright (c) 2021 SUSE LLC # Copyright (c) 2025 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -16,19 +16,20 @@
# #
%{?!python_module:%define python_module() python-%{**} python3-%{**}} %{?sle15_python_module_pythons}
Name: python-crontab Name: python-crontab
Version: 0.23.0 Version: 1.0.5
Release: 0 Release: 0
Summary: Python module for parsing and using crontab schedules Summary: Python module for parsing and using crontab schedules
License: LGPL-2.1-only License: LGPL-2.1-only
Group: Development/Languages/Python
URL: https://github.com/josiahcarlson/parse-crontab URL: https://github.com/josiahcarlson/parse-crontab
Source: https://github.com/josiahcarlson/parse-crontab/archive/%{version}.tar.gz#/crontab-%{version}.tar.gz Source: https://github.com/josiahcarlson/parse-crontab/archive/%{version}.tar.gz#/crontab-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest} BuildRequires: %{python_module pytest}
BuildRequires: %{python_module python-dateutil} BuildRequires: %{python_module python-dateutil}
BuildRequires: %{python_module pytz} BuildRequires: %{python_module pytz}
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros
Requires: python-python-dateutil Requires: python-python-dateutil
@@ -46,10 +47,10 @@ to when the item should next be executed.
%setup -q -n parse-crontab-%{version} %setup -q -n parse-crontab-%{version}
%build %build
%python_build %pyproject_wheel
%install %install
%python_install %pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib} %python_expand %fdupes %{buildroot}%{$python_sitelib}
%check %check
@@ -58,6 +59,7 @@ to when the item should next be executed.
%files %{python_files} %files %{python_files}
%doc README.rst %doc README.rst
%license LICENSE LICENSE3 %license LICENSE LICENSE3
%{python_sitelib}/* %{python_sitelib}/crontab
%{python_sitelib}/crontab-%{version}.dist-info
%changelog %changelog