diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 44bd9545579..6314efa3425 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -66,7 +66,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n | [`dtc`](dtc/) | Device Tree Compiler | 1.7.0 | https://github.com/dgibson/dtc | | [`dungeonrush`](dungeonrush/) | DungeonRush | 1.1-beta | https://github.com/Rapiz1/DungeonRush | | [`e2fsprogs`](e2fsprogs/) | e2fsprogs | 1.47.0 | http://e2fsprogs.sourceforge.net/ | -| [`ed`](ed/) | GNU ed | 1.18 | https://www.gnu.org/software/ed/ | +| [`ed`](ed/) | GNU ed | 1.19 | https://www.gnu.org/software/ed/ | | [`edid-decode`](edid-decode/) | edid-decode | 20220315.cb74358c2896 | https://git.linuxtv.org/edid-decode | | [`editline`](editline/) | editline | 1.17.1 | https://github.com/troglobit/editline | | [`emu2`](emu2/) | emu2 DOS emulator | 2021.01 | https://github.com/dmsc/emu2 | diff --git a/Ports/ed/package.sh b/Ports/ed/package.sh index 9edf2ab34a3..077068448af 100755 --- a/Ports/ed/package.sh +++ b/Ports/ed/package.sh @@ -1,8 +1,8 @@ #!/usr/bin/env -S bash ../.port_include.sh port='ed' -version='1.18' +version='1.19' files=( - "https://ftpmirror.gnu.org/gnu/ed/ed-${version}.tar.lz#aca8efad9800c587724a20b97aa8fc47e6b5a47df81606feaba831b074462b4f" + "https://ftpmirror.gnu.org/gnu/ed/ed-${version}.tar.lz#ce2f2e5c424790aa96d09dacb93d9bbfdc0b7eb6249c9cb7538452e8ec77cd48" ) useconfigure='true' depends=( diff --git a/Ports/ed/patches/0001-Make-CC-and-friends-overridable-from-the-env.patch b/Ports/ed/patches/0001-Make-CC-and-friends-overridable-from-the-env.patch index 3cac2551d45..6bbb2f9ab57 100644 --- a/Ports/ed/patches/0001-Make-CC-and-friends-overridable-from-the-env.patch +++ b/Ports/ed/patches/0001-Make-CC-and-friends-overridable-from-the-env.patch @@ -9,7 +9,7 @@ Co-Authored-By: roytam1 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure -index 3531bcd..a225c14 100755 +index 5692ef9daeb29c0b57a5c756b878e094682a1e14..281ea8040153218b26ca78faa472fa8b9c071c94 100755 --- a/configure +++ b/configure @@ -21,10 +21,10 @@ datarootdir='$(prefix)/share' @@ -24,6 +24,6 @@ index 3531bcd..a225c14 100755 +CPPFLAGS?= +CFLAGS?='-Wall -W -O2' +LDFLAGS?= + MAKEINFO=makeinfo # checking whether we are using GNU C. - /bin/sh -c "${CC} --version" > /dev/null 2>&1 || { CC=cc ; CFLAGS=-O2 ; }