summaryrefslogtreecommitdiff
path: root/Ports
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2021-03-13 14:59:05 +0100
committerAndreas Kling <kling@serenityos.org>2021-03-14 11:30:38 +0100
commit071b31338a48eb46a45a077fba9a1604b20d3078 (patch)
treefea093231274f687475968c7b51dc67d51224f14 /Ports
parent4100aa52d9f2cd40884bd9829501b2e00ecf277e (diff)
downloadserenity-071b31338a48eb46a45a077fba9a1604b20d3078.zip
Ports: Remove ever-broken 'editline' build
I'm sorry @The-King-of-Toasters, but it never worked and apparently noone uses/fixes it, so let's remove it? Alternatively, see discussion in #2677.
Diffstat (limited to 'Ports')
-rw-r--r--Ports/AvailablePorts.md1
-rwxr-xr-xPorts/editline/package.sh6
-rw-r--r--Ports/editline/patches/configure-system.patch11
-rw-r--r--Ports/editline/patches/example-add-missing-header.patch10
4 files changed, 0 insertions, 28 deletions
diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md
index 3b66754b06..652351edbe 100644
--- a/Ports/AvailablePorts.md
+++ b/Ports/AvailablePorts.md
@@ -19,7 +19,6 @@ Please make sure to keep this list up to date when adding and updating ports. :^
| [`doom`](doom/) | DOOM | | https://github.com/SerenityOS/SerenityDOOM |
| [`dropbear`](dropbear/) | Dropbear SSH | 2019.78 | https://dropbear.nl/mirror/dropbear.html |
| [`ed`](ed/) | GNU ed | 1.15 | https://www.gnu.org/software/ed/ |
-| [`editline`](editline/) | Minix Editline | 1.17.1 | https://troglobit.com/projects/editline/ |
| [`figlet`](figlet/) | FIGlet | 2.2.5 | http://www.figlet.org/ |
| [`flex`](flex/) | flex | 2.6.4 | https://github.com/westes/flex |
| [`freetype`](freetype/) | FreeType | 2.10.4 | https://www.freetype.org/ |
diff --git a/Ports/editline/package.sh b/Ports/editline/package.sh
deleted file mode 100755
index 8c3f443a45..0000000000
--- a/Ports/editline/package.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/usr/bin/env -S bash ../.port_include.sh
-port=editline
-version=1.17.1
-useconfigure=true
-files="https://github.com/troglobit/editline/releases/download/${version}/editline-${version}.tar.xz editline-${version}.tar.xz ec25530e02f0926909bd0f176528019e"
-auth_type="md5"
diff --git a/Ports/editline/patches/configure-system.patch b/Ports/editline/patches/configure-system.patch
deleted file mode 100644
index 328c32ce73..0000000000
--- a/Ports/editline/patches/configure-system.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- editline-1.17.1/aux/config.sub 2020-06-08 23:59:28.865434416 +1000
-+++ editline-1.17.1/aux/config.sub.new 2020-06-08 23:59:21.345434106 +1000
-@@ -1390,7 +1390,7 @@
- | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
- | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \
- | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox* | -bme* \
-- | -midnightbsd*)
-+ | -midnightbsd* | -serenity*)
- # Remember, each alternative MUST END IN *, to match a version number.
- ;;
- -qnx*)
diff --git a/Ports/editline/patches/example-add-missing-header.patch b/Ports/editline/patches/example-add-missing-header.patch
deleted file mode 100644
index b66db98b44..0000000000
--- a/Ports/editline/patches/example-add-missing-header.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- editline-1.17.1/examples/excallback.c 2020-02-23 19:37:53.000000000 +1100
-+++ editline-1.17.1/examples/excallback.c.new 2020-06-09 00:29:06.482173883 +1000
-@@ -39,6 +39,7 @@
-
- #include <stdio.h>
- #include <sys/types.h>
-+#include <sys/select.h>
-
- #ifdef HAVE_STDLIB_H
- #include <stdlib.h>