Ports: Fix version numbers for some of the ports
This commit is contained in:
parent
f7a33043e0
commit
fb67e99562
Notes:
sideshowbarker
2024-07-18 19:11:50 +09:00
Author: https://github.com/gunnarbeutner Commit: https://github.com/SerenityOS/serenity/commit/fb67e995626 Pull-request: https://github.com/SerenityOS/serenity/pull/6586 Reviewed-by: https://github.com/linusg
5 changed files with 9 additions and 8 deletions
|
@ -11,7 +11,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^
|
|||
| [`byacc`](byacc/) | Berkeley Yacc | 20191125 | https://invisible-island.net/byacc/byacc.html |
|
||||
| [`bzip2`](bzip2/) | bzip2 | 1.0.8 | https://sourceware.org/bzip2/ |
|
||||
| [`carl`](carl/) | Crypto Ancienne Resource Loader | 1.5 | https://github.com/classilla/cryanc |
|
||||
| [`c-ray`](c-ray/) | C-Ray | | https://github.com/vkoskiv/c-ray |
|
||||
| [`c-ray`](c-ray/) | C-Ray | c094d64 | https://github.com/vkoskiv/c-ray |
|
||||
| [`chester`](chester/) | Chester Gameboy Emulator | | https://github.com/veikkos/chester |
|
||||
| [`cmake`](cmake/) | CMake | 3.19.4 | https://cmake.org/ |
|
||||
| [`cmatrix`](cmatrix/) | cmatrix | | https://github.com/abishekvashok/cmatrix |
|
||||
|
@ -30,7 +30,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^
|
|||
| [`freetype`](freetype/) | FreeType | 2.10.4 | https://www.freetype.org/ |
|
||||
| [`frotz`](frotz/) | Frotz | 2.53 | https://gitlab.com/DavidGriffith/frotz |
|
||||
| [`gcc`](gcc/) | GNU Compiler Collection | 10.3.0 | https://gcc.gnu.org/ |
|
||||
| [`genemu`](genemu) | Genesis / MegaDrive Emulator | | https://github.com/rasky/genemu |
|
||||
| [`genemu`](genemu/) | Genesis / MegaDrive Emulator | 3bf6f7c | https://github.com/rasky/genemu |
|
||||
| [`git`](git/) | Git | 2.31.1 | https://git-scm.com/ |
|
||||
| [`gmp`](gmp/) | GNU Multiple Precision Arithmetic Library (GMP) | 6.2.1 | https://gmplib.org/ |
|
||||
| [`gnucobol`](gnucobol/) | GnuCOBOL | 3.1.2 | https://gnucobol.sourceforge.io/ |
|
||||
|
@ -80,7 +80,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^
|
|||
| [`ntbtls`](ntbtls/) | The Not Too Bad TLS Library | 0.2.0 | https://gnupg.org/software/ntbtls/index.html |
|
||||
| [`nyancat`](nyancat/) | Nyancat | | https://github.com/klange/nyancat |
|
||||
| [`openssh`](openssh/) | OpenSSH | 8.3-9ca7e9c | https://github.com/openssh/openssh-portable |
|
||||
| [`openssl`](openssl/) | OpenSSL | 1.0.2 | https://www.openssl.org/ |
|
||||
| [`openssl`](openssl/) | OpenSSL | 1.0.2t | https://www.openssl.org/ |
|
||||
| [`oksh`](oksh/) | oksh | 6.8.1 | https://github.com/ibara/oksh |
|
||||
| [`patch`](patch/) | patch (OpenBSD) | 6.6 | https://github.com/ibara/libpuffy |
|
||||
| [`pcre`](pcre/) | Perl-compatible Regular Expressions (PCRE) | 8.44 | https://www.pcre.org/ |
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port=SDL2
|
||||
version=serenity-git
|
||||
version=git
|
||||
workdir=SDL-main-serenity
|
||||
useconfigure=true
|
||||
files="https://github.com/SerenityOS/SDL/archive/main-serenity.tar.gz SDL2-git.tar.gz"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port=doom
|
||||
workdir=SerenityDOOM-master
|
||||
version=serenity-git
|
||||
version=git
|
||||
files="https://github.com/SerenityOS/SerenityDOOM/archive/master.tar.gz doom-git.tar.gz 481406ef30e04ad55d39aa94baab73bd"
|
||||
auth_type=md5
|
||||
makeopts="-C doomgeneric/"
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port=libicu
|
||||
version=69_1
|
||||
version=69.1
|
||||
useconfigure=true
|
||||
workdir=icu/source
|
||||
configopts=--with-cross-build=$(pwd)/${workdir}/../host-build
|
||||
files="https://github.com/unicode-org/icu/releases/download/release-${version//_/-}/icu4c-${version}-src.tgz icu4c-${version}-src.tgz 9403db682507369d0f60a25ea67014c4"
|
||||
files="https://github.com/unicode-org/icu/releases/download/release-${version//./-}/icu4c-${version//./_}-src.tgz icu4c-${version//./_}-src.tgz 9403db682507369d0f60a25ea67014c4"
|
||||
auth_type=md5
|
||||
|
||||
configure() {
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port=nesalizer
|
||||
version=master
|
||||
version=git
|
||||
workdir=${port}-master
|
||||
makeopts="CONF=release EXTRA=-I${SERENITY_INSTALL_ROOT}/usr/local/include/SDL2"
|
||||
files="https://github.com/SerenityOS/nesalizer/archive/master.zip nesalizer-master.zip"
|
||||
depends=SDL2
|
||||
|
|
Loading…
Add table
Reference in a new issue