summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
Diffstat (limited to 'textproc')
-rw-r--r--textproc/scdoc/Makefile2
-rw-r--r--textproc/scdoc/distinfo6
-rw-r--r--textproc/scdoc/files/patch-clang1524
3 files changed, 4 insertions, 28 deletions
diff --git a/textproc/scdoc/Makefile b/textproc/scdoc/Makefile
index 1ea193e575e0..0475cd97265b 100644
--- a/textproc/scdoc/Makefile
+++ b/textproc/scdoc/Makefile
@@ -1,5 +1,5 @@
PORTNAME= scdoc
-DISTVERSION= 1.11.2
+DISTVERSION= 1.11.3
CATEGORIES= textproc
MASTER_SITES= https://git.sr.ht/~sircmpwn/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/
diff --git a/textproc/scdoc/distinfo b/textproc/scdoc/distinfo
index 58aa26d7bd5f..66b3bde1fcc2 100644
--- a/textproc/scdoc/distinfo
+++ b/textproc/scdoc/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1636790685
-SHA256 (scdoc-1.11.2.tar.gz) = e9ff9981b5854301789a6778ee64ef1f6d1e5f4829a9dd3e58a9a63eacc2e6f0
-SIZE (scdoc-1.11.2.tar.gz) = 12746
+TIMESTAMP = 1708163491
+SHA256 (scdoc-1.11.3.tar.gz) = 4c5c6136540384e5455b250f768e7ca11b03fdba1a8efc2341ee0f1111e57612
+SIZE (scdoc-1.11.3.tar.gz) = 12768
diff --git a/textproc/scdoc/files/patch-clang15 b/textproc/scdoc/files/patch-clang15
deleted file mode 100644
index 8dd4a4a5e6f8..000000000000
--- a/textproc/scdoc/files/patch-clang15
+++ /dev/null
@@ -1,24 +0,0 @@
-https://lists.sr.ht/~sircmpwn/public-inbox/patches/37432
-
---- include/str.h.orig 2021-11-13 08:04:45 UTC
-+++ include/str.h
-@@ -7,7 +7,7 @@ struct str {
- size_t len, size;
- };
-
--struct str *str_create();
-+struct str *str_create(void);
- void str_free(struct str *str);
- void str_reset(struct str *str);
- int str_append_ch(struct str *str, uint32_t ch);
---- src/string.c.orig 2021-11-13 08:04:45 UTC
-+++ src/string.c
-@@ -12,7 +12,7 @@ static void ensure_capacity(struct str *str, size_t le
- }
- }
-
--struct str *str_create() {
-+struct str *str_create(void) {
- struct str *str = xcalloc(1, sizeof(struct str));
- str->str = xcalloc(16, 1);
- str->size = 16;