diff options
| author | wangmy <wangmy@fujitsu.com> | 2022-02-28 22:05:11 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-02 18:43:24 +0000 |
| commit | e1dea39862827546887d55f94d07b79b38a32dce (patch) | |
| tree | e80b57af41dd22d07b91ff46cba1e2e8169c4ba9 /meta/recipes-support/libgit2/libgit2_1.4.2.bb | |
| parent | 83232ac6d8ec3ef16892ef2dd6d1494221c9c757 (diff) | |
| download | poky-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.bb | 22 |
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 @@ | |||
| 1 | SUMMARY = "the Git linkable library" | ||
| 2 | HOMEPAGE = "http://libgit2.github.com/" | ||
| 3 | LICENSE = "GPL-2.0-with-GCC-exception & MIT & OpenSSL" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=e5a9227de4cb6afb5d35ed7b0fdf480d" | ||
| 5 | |||
| 6 | DEPENDS = "curl openssl zlib libssh2 libgcrypt libpcre2" | ||
| 7 | |||
| 8 | SRC_URI = "git://github.com/libgit2/libgit2.git;branch=maint/v1.4;protocol=https" | ||
| 9 | SRCREV = "182d0d1ee933de46bf0b5a6ec269bafa77aba9a2" | ||
| 10 | |||
| 11 | S = "${WORKDIR}/git" | ||
| 12 | |||
| 13 | inherit cmake | ||
| 14 | |||
| 15 | EXTRA_OECMAKE = "\ | ||
| 16 | -DBUILD_CLAR=OFF \ | ||
| 17 | -DCMAKE_BUILD_TYPE=RelWithDebInfo \ | ||
| 18 | -DLIB_INSTALL_DIR=${libdir} \ | ||
| 19 | -DREGEX_BACKEND='pcre2' \ | ||
| 20 | " | ||
| 21 | |||
| 22 | BBCLASSEXTEND = "native" | ||
