From 810f363fc0903c0a11aecd63e95775a83e5471f3 Mon Sep 17 00:00:00 2001 From: EWouters <6179932+EWouters@users.noreply.github.com> Date: Fri, 3 Jun 2022 15:17:18 +0200 Subject: [PATCH] Ports/git: Update git to version 2.36.1 --- Ports/AvailablePorts.md | 2 +- Ports/git/package.sh | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 3c91bd7e03..619ec5ae79 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -63,7 +63,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n | [`gdb`](gdb/) | GNU Project Debugger | 11.2 | https://sourceware.org/gdb | | [`genemu`](genemu/) | Genesis / MegaDrive Emulator | e39f690 | https://github.com/rasky/genemu | | [`gettext`](gettext/) | GNU gettext | 0.21 | https://www.gnu.org/software/gettext/ | -| [`git`](git/) | Git | 2.36.0 | https://git-scm.com/ | +| [`git`](git/) | Git | 2.36.1 | https://git-scm.com/ | | [`glib`](glib/) | GLib | 2.72.1 | 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 ffce1f65b1..ece9a8dfe4 100755 --- a/Ports/git/package.sh +++ b/Ports/git/package.sh @@ -1,9 +1,9 @@ #!/usr/bin/env -S bash ../.port_include.sh -port=git -version=2.36.0 -useconfigure="true" -files="https://mirrors.edge.kernel.org/pub/software/scm/git/git-${version}.tar.xz git-${version}.tar.xz af5ebfc1658464f5d0d45a2bfd884c935fb607a10cc021d95bc80778861cc1d3" -auth_type=sha256 +port='git' +version='2.36.1' +files="https://mirrors.edge.kernel.org/pub/software/scm/git/git-${version}.tar.xz git-${version}.tar.xz 405d4a0ff6e818d1f12b3e92e1ac060f612adcb454f6299f70583058cb508370" +auth_type='sha256' +useconfigure='true' 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") @@ -14,7 +14,7 @@ build() { post_install() { run mkdir -p "${SERENITY_INSTALL_ROOT}/home/anon" - run cp "../default_gitconfig" "${SERENITY_INSTALL_ROOT}/home/anon/.gitconfig" + run_nocd cp default_gitconfig "${SERENITY_INSTALL_ROOT}/home/anon/.gitconfig" } export NO_PERL=YesPlease