mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Upgrade to release 1.0.11: - fix bug: bad case:0 6 30 3 * - Add support for L in the day_of_week component. This enable expressions like * * * * L4, which means last Thursday of the month. - Create CroniterUnsupportedSyntaxError exception for situations where CRON syntax may be valid but some combinations of features is not supported. Currently, this is used when the day_of_week component has a combination of literal values and nth/last syntax at the same time. For example, 0 0 * * 1,L6 or 0 0 * * 15,sat#1 will both raise this exception because of mixing literal days of the week with nth-weekday or last-weekday syntax. This may impact existing cron expressions in prior releases, because 0 0 * * 15,sat#1 was previously allowed but incorrectly handled. - Update croniter_range() to allow an alternate croniter class to be used. Helpful when using a custom class derived from croniter. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
13 lines
402 B
BlitzBasic
13 lines
402 B
BlitzBasic
DESCRIPTION = "croniter provides iteration for datetime object with cron like format"
|
|
SECTION = "devel/python"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://docs/LICENSE;md5=b8ee59850b882cbf623188489ea748e2"
|
|
|
|
PYPI_PACKAGE = "croniter"
|
|
|
|
SRC_URI[sha256sum] = "cd89bcbed4d79f56bbf2c9415c2bbbfd09fadc8a59dbae3898fbca5bab34103d"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
RDEPENDS_${PN} += " python3-dateutil python3-natsort"
|