diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-04-19 13:25:31 +0200 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2022-04-19 10:07:09 -0400 |
commit | 880bb5324756101e744c3b7c3456b5d332a90071 (patch) | |
tree | 916d94c8cd837d883699cc65024184fe1fffb5c7 /Ports | |
parent | cf308643c74c686b21e034a540fe6a4ba7d33bd7 (diff) | |
download | serenity-880bb5324756101e744c3b7c3456b5d332a90071.zip |
Ports: Update git to 2.36.0
Diffstat (limited to 'Ports')
-rw-r--r-- | Ports/AvailablePorts.md | 2 | ||||
-rwxr-xr-x | Ports/git/package.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 9272c0147c..921801249b 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -60,7 +60,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 | e39f690 | https://github.com/rasky/genemu | | [`gettext`](gettext/) | GNU gettext | 0.21 | https://www.gnu.org/software/gettext/ | -| [`git`](git/) | Git | 2.35.1 | https://git-scm.com/ | +| [`git`](git/) | Git | 2.36.0 | 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 a4c0cea56c..ffce1f65b1 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.35.1 +version=2.36.0 useconfigure="true" -files="https://mirrors.edge.kernel.org/pub/software/scm/git/git-${version}.tar.xz git-${version}.tar.xz d768528e6443f65a203036266f1ca50f9d127ba89751e32ead37117ed9191080" +files="https://mirrors.edge.kernel.org/pub/software/scm/git/git-${version}.tar.xz git-${version}.tar.xz af5ebfc1658464f5d0d45a2bfd884c935fb607a10cc021d95bc80778861cc1d3" 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") |