summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libgit2/libgit2_1.4.2.bb
diff options
context:
space:
mode:
authorwangmy <wangmy@fujitsu.com>2022-02-28 22:05:11 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-02 18:43:24 +0000
commite1dea39862827546887d55f94d07b79b38a32dce (patch)
treee80b57af41dd22d07b91ff46cba1e2e8169c4ba9 /meta/recipes-support/libgit2/libgit2_1.4.2.bb
parent83232ac6d8ec3ef16892ef2dd6d1494221c9c757 (diff)
downloadpoky-e1dea39862827546887d55f94d07b79b38a32dce.tar.gz
libgit2: upgrade 1.4.1 -> 1.4.2
This is a bugfix release with the following changes: ==================================================== remote: do store the update_tips callback error value win32: find_system_dirs does not return GIT_ENOTFOUND (From OE-Core rev: c8f1727fd3f9583e25ac4dab0194b508758d7eaa) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libgit2/libgit2_1.4.2.bb')
-rw-r--r--meta/recipes-support/libgit2/libgit2_1.4.2.bb22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-support/libgit2/libgit2_1.4.2.bb b/meta/recipes-support/libgit2/libgit2_1.4.2.bb
new file mode 100644
index 0000000000..88bf5a8520
--- /dev/null
+++ b/meta/recipes-support/libgit2/libgit2_1.4.2.bb
@@ -0,0 +1,22 @@
1SUMMARY = "the Git linkable library"
2HOMEPAGE = "http://libgit2.github.com/"
3LICENSE = "GPL-2.0-with-GCC-exception & MIT & OpenSSL"
4LIC_FILES_CHKSUM = "file://COPYING;md5=e5a9227de4cb6afb5d35ed7b0fdf480d"
5
6DEPENDS = "curl openssl zlib libssh2 libgcrypt libpcre2"
7
8SRC_URI = "git://github.com/libgit2/libgit2.git;branch=maint/v1.4;protocol=https"
9SRCREV = "182d0d1ee933de46bf0b5a6ec269bafa77aba9a2"
10
11S = "${WORKDIR}/git"
12
13inherit cmake
14
15EXTRA_OECMAKE = "\
16 -DBUILD_CLAR=OFF \
17 -DCMAKE_BUILD_TYPE=RelWithDebInfo \
18 -DLIB_INSTALL_DIR=${libdir} \
19 -DREGEX_BACKEND='pcre2' \
20"
21
22BBCLASSEXTEND = "native"