mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

Was a problem with perl in particular. (From OE-Core rev: cc40b3ad2c4a725f93d0b984f23d34d247cffb2f) (From OE-Core rev: 428531463574f4e7722912d1960bd288df586c14) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
6 lines
311 B
Plaintext
6 lines
311 B
Plaintext
# This class ensures that the upstream version check only
|
|
# accepts even minor versions (i.e. 3.0.x, 3.2.x, 3.4.x, etc.)
|
|
# This scheme is used by Gnome and a number of other projects
|
|
# to signify stable releases vs development releases.
|
|
UPSTREAM_CHECK_REGEX = "[^\d\.](?P<pver>\d+\.(\d*[02468])+(\.\d+)+)\.tar"
|