diff options
author | Peter Kjellerstedt <pkj@axis.com> | 2023-11-07 08:12:30 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-11-07 19:59:58 -0800 |
commit | 253e33e343ec13aa3908a237b5a3f44abc2c5c87 (patch) | |
tree | 46e8edf5697b26825b2332b2e85a4e35418a5030 /meta-oe/recipes-connectivity/libtorrent | |
parent | 89e86cd407e6fdac9a5f4f703ab01fc87d22843b (diff) | |
download | meta-openembedded-253e33e343ec13aa3908a237b5a3f44abc2c5c87.tar.gz |
libtorrent: Add UPSTREAM_CHECK_GITTAGREGEX
This makes sure only tags like "vX.Y.Z" are identified as releases.
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-connectivity/libtorrent')
-rw-r--r-- | meta-oe/recipes-connectivity/libtorrent/libtorrent_git.bb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/meta-oe/recipes-connectivity/libtorrent/libtorrent_git.bb b/meta-oe/recipes-connectivity/libtorrent/libtorrent_git.bb index fec05571d..c235547fe 100644 --- a/meta-oe/recipes-connectivity/libtorrent/libtorrent_git.bb +++ b/meta-oe/recipes-connectivity/libtorrent/libtorrent_git.bb | |||
@@ -6,16 +6,17 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833" | |||
6 | 6 | ||
7 | DEPENDS = "zlib libsigc++-2.0 openssl cppunit" | 7 | DEPENDS = "zlib libsigc++-2.0 openssl cppunit" |
8 | 8 | ||
9 | PV = "0.13.8+git" | ||
10 | |||
9 | SRC_URI = "git://github.com/rakshasa/libtorrent;branch=master;protocol=https" | 11 | SRC_URI = "git://github.com/rakshasa/libtorrent;branch=master;protocol=https" |
10 | SRCREV = "e60f222241319aaae482789517ad00ae9344bd13" | 12 | SRCREV = "e60f222241319aaae482789517ad00ae9344bd13" |
11 | 13 | ||
12 | CVE_STATUS[CVE-2009-1760] = "backported-patch: patched in our product" | 14 | UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)" |
13 | 15 | ||
14 | PV = "0.13.8+git${SRCPV}" | 16 | CVE_STATUS[CVE-2009-1760] = "backported-patch: patched in our product" |
15 | 17 | ||
16 | S = "${WORKDIR}/git" | 18 | S = "${WORKDIR}/git" |
17 | 19 | ||
18 | |||
19 | PACKAGECONFIG ??= "instrumentation aligned" | 20 | PACKAGECONFIG ??= "instrumentation aligned" |
20 | 21 | ||
21 | PACKAGECONFIG:remove:mipsarch = "instrumentation" | 22 | PACKAGECONFIG:remove:mipsarch = "instrumentation" |