Skip to content

Commit 0531f49

Browse files
committed
Update to libgit2 v1.5.1
1 parent e5be6a2 commit 0531f49

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

Diff for: .github/workflows/tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ jobs:
3434
if: runner.os == 'Linux'
3535
run: |
3636
sudo apt install tinyproxy
37-
LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.0 /bin/sh build.sh test
37+
LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.1 /bin/sh build.sh test
3838
3939
- name: macOS
4040
if: runner.os == 'macOS'
4141
run: |
4242
export OPENSSL_PREFIX=`brew --prefix [email protected]`
4343
export LIBSSH2_PREFIX=`brew --prefix libssh2`
44-
export LIBGIT2_VERSION=1.5.0
44+
export LIBGIT2_VERSION=1.5.1
4545
/bin/sh build.sh test
4646
4747
aarch64:
@@ -59,7 +59,7 @@ jobs:
5959
apt-get update -q -y
6060
apt-get install -q -y cmake libssl-dev python3-dev python3-venv wget
6161
run: |
62-
LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.0 /bin/sh build.sh test
62+
LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.1 /bin/sh build.sh test
6363
6464
s390x:
6565
runs-on: ubuntu-20.04
@@ -77,5 +77,5 @@ jobs:
7777
apt-get update -q -y
7878
apt-get install -q -y cmake libssl-dev python3-dev python3-venv wget
7979
run: |
80-
LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.0 /bin/sh build.sh test
80+
LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.1 /bin/sh build.sh test
8181
continue-on-error: true # Tests are expected to fail, see issue #812

Diff for: .github/workflows/wheels.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
run: python -m cibuildwheel --output-dir wheelhouse
3333
env:
3434
CIBW_BEFORE_ALL: sh build.sh
35-
CIBW_ENVIRONMENT: LIBGIT2_VERSION=1.5.0 LIBSSH2_VERSION=1.10.0 OPENSSL_VERSION=3.0.7 LIBGIT2=/project/ci
36-
CIBW_ENVIRONMENT_MACOS: LIBGIT2_VERSION=1.5.0 LIBSSH2_VERSION=1.10.0 DYLD_LIBRARY_PATH=/usr/local/lib OPENSSL_VERSION=3.0.2
35+
CIBW_ENVIRONMENT: LIBGIT2_VERSION=1.5.1 LIBSSH2_VERSION=1.10.0 OPENSSL_VERSION=3.0.7 LIBGIT2=/project/ci
36+
CIBW_ENVIRONMENT_MACOS: LIBGIT2_VERSION=1.5.1 LIBSSH2_VERSION=1.10.0 DYLD_LIBRARY_PATH=/usr/local/lib OPENSSL_VERSION=3.0.2
3737
CIBW_SKIP: "*-musllinux*"
3838
CIBW_MANYLINUX_AARCH64_IMAGE: "manylinux_2_24"
3939
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux_2_24"

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.PHONY: build html
22

33
build:
4-
OPENSSL_VERSION=3.0.7 LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.0 sh build.sh
4+
OPENSSL_VERSION=3.0.7 LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.1 sh build.sh
55

66
html: build
77
make -C docs html

Diff for: appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ build_script:
3535
# Clone, build and install libgit2
3636
- cmd: |
3737
set LIBGIT2=%APPVEYOR_BUILD_FOLDER%\venv
38-
git clone --depth=1 -b v1.5.0 https://github.com/libgit2/libgit2.git libgit2
38+
git clone --depth=1 -b v1.5.1 https://github.com/libgit2/libgit2.git libgit2
3939
cd libgit2
4040
cmake . -DBUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="%LIBGIT2%" -G "%GENERATOR%"
4141
cmake --build . --target install

Diff for: build.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@
2525
#
2626
# sh build.sh
2727
#
28-
# Build libgit2 1.5.0 (will use libssh2 if available), then build pygit2
28+
# Build libgit2 1.5.1 (will use libssh2 if available), then build pygit2
2929
# inplace:
3030
#
31-
# LIBGIT2_VERSION=1.5.0 sh build.sh
31+
# LIBGIT2_VERSION=1.5.1 sh build.sh
3232
#
33-
# Build libssh2 1.10.0 and libgit2 1.5.0, then build pygit2 inplace:
33+
# Build libssh2 1.10.0 and libgit2 1.5.1, then build pygit2 inplace:
3434
#
35-
# LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.0 sh build.sh
35+
# LIBSSH2_VERSION=1.10.0 LIBGIT2_VERSION=1.5.1 sh build.sh
3636
#
37-
# Tell where libssh2 is installed, build libgit2 1.5.0, then build pygit2
37+
# Tell where libssh2 is installed, build libgit2 1.5.1, then build pygit2
3838
# inplace:
3939
#
40-
# LIBSSH2_PREFIX=/usr/local LIBGIT2_VERSION=1.5.0 sh build.sh
40+
# LIBSSH2_PREFIX=/usr/local LIBGIT2_VERSION=1.5.1 sh build.sh
4141
#
4242
# Build inplace and run the tests:
4343
#

0 commit comments

Comments
 (0)