summaryrefslogtreecommitdiff
path: root/Ports/ed
diff options
context:
space:
mode:
authorTim Schumacher <timschumi@gmx.de>2022-06-05 03:05:04 +0200
committerLinus Groh <mail@linusgroh.de>2022-06-08 17:58:36 +0100
commitd426c5a4b2eac839497cc2cbeee4b87a1c9ee422 (patch)
treec3484b5625b583fc7da9cc3a7f53b4dc69186fa5 /Ports/ed
parentd69a79b03b8f2853b60773e38553d662a01ac269 (diff)
downloadserenity-d426c5a4b2eac839497cc2cbeee4b87a1c9ee422.zip
Ports: Format patches without numbering, commit hash or version number
Diffstat (limited to 'Ports/ed')
-rw-r--r--Ports/ed/patches/0001-Make-CC-and-friends-overridable-from-the-env.patch7
-rw-r--r--Ports/ed/patches/0002-Use-stdbool-instead-of-rolling-a-manual-Bool.patch7
-rw-r--r--Ports/ed/patches/0003-Manually-link-with-pcre2.patch7
-rw-r--r--Ports/ed/patches/0004-Use-pcre2-for-regex-instead-of-libc-s-regex.h.patch7
4 files changed, 8 insertions, 20 deletions
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 5212b5ae4e..3cac2551d4 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
@@ -1,7 +1,7 @@
-From d29259d2ea80767820f69b9b58f9377166440938 Mon Sep 17 00:00:00 2001
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: EWouters <6179932+EWouters@users.noreply.github.com>
Date: Fri, 1 Apr 2022 02:54:00 +0200
-Subject: [PATCH 1/4] Make CC and friends overridable from the env
+Subject: [PATCH] Make CC and friends overridable from the env
Co-Authored-By: roytam1 <roytam@gmail.com>
---
@@ -27,6 +27,3 @@ index 3531bcd..a225c14 100755
# checking whether we are using GNU C.
/bin/sh -c "${CC} --version" > /dev/null 2>&1 || { CC=cc ; CFLAGS=-O2 ; }
---
-2.36.1
-
diff --git a/Ports/ed/patches/0002-Use-stdbool-instead-of-rolling-a-manual-Bool.patch b/Ports/ed/patches/0002-Use-stdbool-instead-of-rolling-a-manual-Bool.patch
index 7011cb14df..1c6265c372 100644
--- a/Ports/ed/patches/0002-Use-stdbool-instead-of-rolling-a-manual-Bool.patch
+++ b/Ports/ed/patches/0002-Use-stdbool-instead-of-rolling-a-manual-Bool.patch
@@ -1,7 +1,7 @@
-From a61996a48d800229a267d9fef1548b08450997ab Mon Sep 17 00:00:00 2001
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Brian Callahan <ibara@users.noreply.github.com>
Date: Sat, 1 Feb 2020 14:54:04 -0500
-Subject: [PATCH 2/4] Use stdbool instead of rolling a manual Bool
+Subject: [PATCH] Use stdbool instead of rolling a manual Bool
---
ed.h | 3 +--
@@ -21,6 +21,3 @@ index db0b4a6..ef0c134 100644
#endif
enum Pflags /* print suffixes */
---
-2.36.1
-
diff --git a/Ports/ed/patches/0003-Manually-link-with-pcre2.patch b/Ports/ed/patches/0003-Manually-link-with-pcre2.patch
index bf6f0ceb5f..233ac7ffcf 100644
--- a/Ports/ed/patches/0003-Manually-link-with-pcre2.patch
+++ b/Ports/ed/patches/0003-Manually-link-with-pcre2.patch
@@ -1,7 +1,7 @@
-From 492088ee0565b8d947d129125ab3518a4da6a7c9 Mon Sep 17 00:00:00 2001
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Brian Callahan <ibara@users.noreply.github.com>
Date: Fri, 1 Apr 2022 02:54:00 +0200
-Subject: [PATCH 3/4] Manually link with pcre2
+Subject: [PATCH] Manually link with pcre2
Co-Authored-By: EWouters <6179932+EWouters@users.noreply.github.com>
---
@@ -21,6 +21,3 @@ index f716df4..c1a7880 100644
r$(progname) : r$(progname).in
cat $(VPATH)/r$(progname).in > $@
---
-2.36.1
-
diff --git a/Ports/ed/patches/0004-Use-pcre2-for-regex-instead-of-libc-s-regex.h.patch b/Ports/ed/patches/0004-Use-pcre2-for-regex-instead-of-libc-s-regex.h.patch
index 7f58601305..329d443c71 100644
--- a/Ports/ed/patches/0004-Use-pcre2-for-regex-instead-of-libc-s-regex.h.patch
+++ b/Ports/ed/patches/0004-Use-pcre2-for-regex-instead-of-libc-s-regex.h.patch
@@ -1,7 +1,7 @@
-From 5d79ba1193bb0f9813c9650ee36ec416af525a1e Mon Sep 17 00:00:00 2001
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Brian Callahan <ibara@users.noreply.github.com>
Date: Sat, 1 Feb 2020 14:54:04 -0500
-Subject: [PATCH 4/4] Use pcre2 for regex instead of libc's regex.h
+Subject: [PATCH] Use pcre2 for regex instead of libc's regex.h
---
regex.c | 2 +-
@@ -20,6 +20,3 @@ index 9b38120..325b2f6 100644
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
---
-2.36.1
-