feat: Upgrade libgit2 to version 1.4.2

This commit is contained in:
Carlos Álvaro
2022-03-28 22:52:58 +02:00
parent be810450fc
commit ab1111fce5
2 changed files with 3 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ for the list of changes in SaltStack.
**3004.1**
- Upgrade `salt-master` to `3004.1` *Silicon*
- Upgrade `libgit2` to version `1.4.2`
- Change Docker base image to `ubuntu:hirsute-20220113`
**3004_6**

View File

@@ -200,10 +200,10 @@ function install_libssh2()
#----------------------------------------------------------------------------------------------------------------------
function install_libgit2()
{
local LIBGIT2_VERSION=1.3.0
local LIBGIT2_VERSION=1.4.2
local LIBGIT2_URL="https://github.com/libgit2/libgit2/archive/refs/tags/v${LIBGIT2_VERSION}.tar.gz"
local FILE_NAME="libgit2-${LIBGIT2_VERSION}.tar.gz"
local SHA256_SUM='192eeff84596ff09efb6b01835a066f2df7cd7985e0991c79595688e6b36444e'
local SHA256_SUM='901c2b4492976b86477569502a41c31b274b69adc177149c02099ea88404ef19'
local CURRENT_DIR="$(pwd)"
local WORK_DIR="$(mktemp -d)" && cd "${WORK_DIR}"