forked from pool/python-crontab
Compare commits
8 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| a6de82455e | |||
| 55b401c3cf | |||
| a0b72bb93b | |||
| 7844e18b7e | |||
| cb43482c13 | |||
| 5b7b60c30b | |||
| 8fec32482d | |||
| 50c382848e |
@@ -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
3
crontab-1.0.5.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ea6cc78911e5be44475819d5564b474473e4e2b7dcef53253a86ad5a5a0531e4
|
||||||
|
size 22482
|
||||||
@@ -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>
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user