From 8627d1a944f4a4ce81f2b2cdae721d62df2e7fa3 Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Sat, 12 Mar 2022 15:37:37 -0800 Subject: [PATCH] Ports: Update git to version 2.35.1 --- Ports/AvailablePorts.md | 2 +- Ports/git/package.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 5067988ce4..cb1d84ca00 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -56,7 +56,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^ | [`gcc`](gcc/) | GNU Compiler Collection | 11.2.0 | https://gcc.gnu.org/ | | [`genemu`](genemu/) | Genesis / MegaDrive Emulator | 3bf6f7c | https://github.com/rasky/genemu | | [`gettext`](gettext/) | GNU gettext | 0.21 | https://www.gnu.org/software/gettext/ | -| [`git`](git/) | Git | 2.34.1 | https://git-scm.com/ | +| [`git`](git/) | Git | 2.35.1 | https://git-scm.com/ | | [`glib`](glib/) | GLib | 2.70.0 | https://wiki.gnome.org/Projects/GLib | | [`glm`](glm/) | OpenGL Mathematics (GLM) | 0.9.9.8 | https://github.com/g-truc/glm | | [`gltron`](gltron/) | GLTron | 0.70 | http://gltron.org | diff --git a/Ports/git/package.sh b/Ports/git/package.sh index 3ccd96e059..a4c0cea56c 100755 --- a/Ports/git/package.sh +++ b/Ports/git/package.sh @@ -1,8 +1,8 @@ #!/usr/bin/env -S bash ../.port_include.sh port=git -version=2.34.1 +version=2.35.1 useconfigure="true" -files="https://mirrors.edge.kernel.org/pub/software/scm/git/git-${version}.tar.xz git-${version}.tar.xz 3a0755dd1cfab71a24dd96df3498c29cd0acd13b04f3d08bf933e81286db802c" +files="https://mirrors.edge.kernel.org/pub/software/scm/git/git-${version}.tar.xz git-${version}.tar.xz d768528e6443f65a203036266f1ca50f9d127ba89751e32ead37117ed9191080" auth_type=sha256 configopts=("--target=${SERENITY_ARCH}-pc-serenity" "--with-lib=${SERENITY_INSTALL_ROOT}/usr/local" "CFLAGS=-DNO_IPV6" "LDFLAGS=-L${SERENITY_INSTALL_ROOT}/usr/local/lib") depends=("zlib" "curl")