File: control

package info (click to toggle)
python-cronsim 2.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 180 kB
  • sloc: python: 1,159; sh: 5; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 1,560 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Source: python-cronsim
Maintainer: Home Assistant Team <team+homeassistant@tracker.debian.org>
Uploaders:
 Edward Betts <edward@4angle.com>,
Section: python
Priority: optional
Build-Depends:
 debhelper-compat (= 13),
 dh-sequence-python3,
 pybuild-plugin-pyproject,
 python3-all,
 python3-setuptools,
Build-Depends-Indep:
 python3-pytest <!nocheck>
Rules-Requires-Root: no
Standards-Version: 4.7.2
Homepage: https://github.com/cuu508/cronsim
Vcs-Browser: https://salsa.debian.org/homeassistant-team/deps/python-cronsim
Vcs-Git: https://salsa.debian.org/homeassistant-team/deps/python-cronsim.git

Package: python3-cronsim
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
Description: Cron expression parser and evaluator
 CronSim is a library designed to parse and evaluate cron expressions with
 precision, aiming to replicate the behavior of Debian's cron. It is primarily
 used to interpret the time descriptions provided by cron syntax, determining
 when these events occur. By addressing quirky behaviors, such as those during
 Daylight Saving Time transitions, the library carefully processes cron
 expressions without supporting the seconds field, maintaining a focus on
 minimalism. It seamlessly interacts with different cron syntax features, such
 as the 'L' character for the last day of the month and the Nth weekday of a
 month. CronSim ensures that cron expressions are correctly evaluated and
 raises errors for invalid formats, effectively handling non-standard syntax
 features that do not interfere with standard operations.