diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2015-11-16 16:34:03 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-08 10:20:52 +0000 |
commit | 74bfa62f85433991f007ae1e029e76db05b3a380 (patch) | |
tree | a5b2fa6065b7dc556ec44eecfb872a61cf12305a /meta/recipes-extended | |
parent | 75c69294931da1db798b0e2c5103dd0b30ee60d0 (diff) | |
download | poky-74bfa62f85433991f007ae1e029e76db05b3a380.tar.gz |
package_regex.inc: split entries which blacklist specific versions to their recipes
(From OE-Core rev: 1eb9e190ef3bb1170b3eaabd9f7900e7ce176624)
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>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/unzip/unzip_6.0.bb | 4 | ||||
-rw-r--r-- | meta/recipes-extended/zip/zip_3.0.bb | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/meta/recipes-extended/unzip/unzip_6.0.bb b/meta/recipes-extended/unzip/unzip_6.0.bb index b386323780..7705794623 100644 --- a/meta/recipes-extended/unzip/unzip_6.0.bb +++ b/meta/recipes-extended/unzip/unzip_6.0.bb | |||
@@ -20,6 +20,10 @@ SRC_URI = "ftp://ftp.info-zip.org/pub/infozip/src/unzip60.tgz \ | |||
20 | 20 | ||
21 | SRC_URI[md5sum] = "62b490407489521db863b523a7f86375" | 21 | SRC_URI[md5sum] = "62b490407489521db863b523a7f86375" |
22 | SRC_URI[sha256sum] = "036d96991646d0449ed0aa952e4fbe21b476ce994abc276e49d30e686708bd37" | 22 | SRC_URI[sha256sum] = "036d96991646d0449ed0aa952e4fbe21b476ce994abc276e49d30e686708bd37" |
23 | |||
24 | # exclude version 5.5.2 which triggers a false positive | ||
25 | UPSTREAM_CHECK_REGEX = "unzip(?P<pver>(?!552).+)\.tgz" | ||
26 | |||
23 | S = "${WORKDIR}/unzip60" | 27 | S = "${WORKDIR}/unzip60" |
24 | 28 | ||
25 | # Makefile uses CF_NOOPT instead of CFLAGS. We lifted the values from | 29 | # Makefile uses CF_NOOPT instead of CFLAGS. We lifted the values from |
diff --git a/meta/recipes-extended/zip/zip_3.0.bb b/meta/recipes-extended/zip/zip_3.0.bb index 1e961101bc..383da4b89e 100644 --- a/meta/recipes-extended/zip/zip_3.0.bb +++ b/meta/recipes-extended/zip/zip_3.0.bb | |||
@@ -8,6 +8,9 @@ S = "${WORKDIR}/zip30" | |||
8 | SRC_URI[md5sum] = "7b74551e63f8ee6aab6fbc86676c0d37" | 8 | SRC_URI[md5sum] = "7b74551e63f8ee6aab6fbc86676c0d37" |
9 | SRC_URI[sha256sum] = "f0e8bb1f9b7eb0b01285495a2699df3a4b766784c1765a8f1aeedf63c0806369" | 9 | SRC_URI[sha256sum] = "f0e8bb1f9b7eb0b01285495a2699df3a4b766784c1765a8f1aeedf63c0806369" |
10 | 10 | ||
11 | # exclude version 2.3.2 which triggers a false positive | ||
12 | UPSTREAM_CHECK_REGEX = "^zip(?P<pver>(?!232).+)\.tgz" | ||
13 | |||
11 | # zip.inc sets CFLAGS, but what Makefile actually uses is | 14 | # zip.inc sets CFLAGS, but what Makefile actually uses is |
12 | # CFLAGS_NOOPT. It will also force -O3 optimization, overriding | 15 | # CFLAGS_NOOPT. It will also force -O3 optimization, overriding |
13 | # whatever we set. | 16 | # whatever we set. |