diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2017-04-24 16:15:49 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-28 11:26:07 +0100 |
commit | e4d1100a84e28cb97438c18df6d9f98996a7d578 (patch) | |
tree | 5622e4ea96c34c31f433527fad53e9f1ec9a18d4 | |
parent | b64c4d7e033acf5d58c0fdee6907ea6983a67138 (diff) | |
download | openembedded-core-e4d1100a84e28cb97438c18df6d9f98996a7d578.tar.gz openembedded-core-e4d1100a84e28cb97438c18df6d9f98996a7d578.tar.bz2 openembedded-core-e4d1100a84e28cb97438c18df6d9f98996a7d578.zip |
libproxy: speed up upstream version check
Something in the fetched webpage made the default regex matching really slow.
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-support/libproxy/libproxy_0.4.14.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-support/libproxy/libproxy_0.4.14.bb b/meta/recipes-support/libproxy/libproxy_0.4.14.bb index 8f56aafd62..fcdb82f06c 100644 --- a/meta/recipes-support/libproxy/libproxy_0.4.14.bb +++ b/meta/recipes-support/libproxy/libproxy_0.4.14.bb @@ -11,6 +11,7 @@ DEPENDS = "glib-2.0" SRC_URI = "https://github.com/${BPN}/${BPN}/archive/${PV}.tar.gz" UPSTREAM_CHECK_URI = "https://github.com/libproxy/libproxy/releases" +UPSTREAM_CHECK_REGEX = "libproxy-(?P<pver>.*)\.tar" SRC_URI[md5sum] = "272dc378efcc3335154cef30d171e84a" SRC_URI[sha256sum] = "6220a6cab837a8996116a0568324cadfd09a07ec16b930d2a330e16d5c2e1eb6" |