git: 339813b8fd86 - main - textproc/scdoc: update to 1.11.3

From: Jan Beich <jbeich_at_FreeBSD.org>
Date: Sat, 17 Feb 2024 23:08:17 UTC
The branch main has been updated by jbeich:

URL: https://cgit.FreeBSD.org/ports/commit/?id=339813b8fd86fab47cccdca451b06abc089f8adf

commit 339813b8fd86fab47cccdca451b06abc089f8adf
Author:     Jan Beich <jbeich@FreeBSD.org>
AuthorDate: 2024-02-17 09:51:31 +0000
Commit:     Jan Beich <jbeich@FreeBSD.org>
CommitDate: 2024-02-17 23:07:33 +0000

    textproc/scdoc: update to 1.11.3
    
    Changes:        https://git.sr.ht/%7Esircmpwn/scdoc/refs/1.11.3
    Reported by:    Repology
---
 textproc/scdoc/Makefile            |  2 +-
 textproc/scdoc/distinfo            |  6 +++---
 textproc/scdoc/files/patch-clang15 | 24 ------------------------
 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;