Skip to content

Commit e49a0b4

Browse files
author
kikadf
committed
textproc/scdoc: update to 1.11.4
Drew DeVault (3): Makefile: drop -static parse_preamble: remove useless branch utf8_size: fix bug with array length Jason Lenz (2): Fix unclosed indent at EOF Fix make check permissions mask Kirill Chibisov (1): Emit \(ti and \(ha instead of ~ and ^ Nico Wagner (1): Makefile: remove unnecessary path separator Sertonix (1): gmtime: handle failure Viacheslav Kruglov (1): Fix logical error in comparison with ULONG_MAX elij (1): strip indentation after a hard line break `++` pkgsrc: add tool.mk
1 parent 93dfff1 commit e49a0b4

3 files changed

Lines changed: 42 additions & 7 deletions

File tree

textproc/scdoc/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# $NetBSD: Makefile,v 1.3 2024/07/30 08:10:19 wiz Exp $
1+
# $NetBSD: Makefile,v 1.4 2025/12/30 16:01:23 kikadf Exp $
22

3-
DISTNAME= 1.11.3
3+
DISTNAME= 1.11.4
44
PKGNAME= scdoc-${DISTNAME}
55
CATEGORIES= textproc
66
MASTER_SITES= https://git.sr.ht/~sircmpwn/scdoc/archive/

textproc/scdoc/distinfo

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
$NetBSD: distinfo,v 1.8 2024/07/30 08:10:19 wiz Exp $
1+
$NetBSD: distinfo,v 1.9 2025/12/30 16:01:23 kikadf Exp $
22

3-
BLAKE2s (scdoc/1.11.3.tar.gz) = 956404cbfdabd63c2bec34a4e57a93ebc08fc16adb9c8d567e9a1b5d3c40b015
4-
SHA512 (scdoc/1.11.3.tar.gz) = fbecc505b44c396890c53c05183d34336160dbd02993ee120421fc6e2a3ec78ba349747e8acfe97af956a0081c923309290ff97fb7babafbc3ca8addc9ec92f9
5-
Size (scdoc/1.11.3.tar.gz) = 12768 bytes
6-
SHA1 (patch-Makefile) = b79aab9ddbb85f0d1192f28ca2bddc72ec040604
3+
BLAKE2s (scdoc/1.11.4.tar.gz) = f80867984d2a2f64c77e718c05c604dd8b56256f07eaeb4facc3e1cb8e4e9833
4+
SHA512 (scdoc/1.11.4.tar.gz) = f8950bbef5213a89746185d5ed29fbee2502235632db883afaaac515dc87c60559bc1a39e2a3ea3bb019675e6039bd2d3b5c5d117a0ad022b61c958fb9407877
5+
Size (scdoc/1.11.4.tar.gz) = 13081 bytes

textproc/scdoc/tool.mk

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# $NetBSD: tool.mk,v 1.1 2025/12/30 16:01:23 kikadf Exp $
2+
#
3+
# This mk fragment can be included in all packages that uses `scdoc'
4+
# as a tool.
5+
#
6+
# Keywords: scdoc
7+
#
8+
9+
.if !defined(SCDOC_TOOL_MK)
10+
SCDOC_TOOL_MK= defined
11+
12+
BUILDLINK_TARGETS+= buildlink-bin-scdoc buildlink-pkgconfig-scdoc
13+
14+
.PHONY: buildlink-bin-scdoc
15+
buildlink-bin-scdoc:
16+
${RUN} \
17+
f="${PREFIX}/bin/scdoc"; \
18+
d="${BUILDLINK_DIR}/bin"; \
19+
t="$$d/scdoc"; \
20+
if ${TEST} -f $$f -a ! -f $$t ; then \
21+
${MKDIR} -p $$d; \
22+
${LN} -sf $$f $$t; \
23+
fi
24+
25+
.PHONY: buildlink-pkgconfig-scdoc
26+
buildlink-pkgconfig-scdoc:
27+
${RUN} \
28+
f="${PREFIX}/share/pkgconfig/scdoc.pc"; \
29+
d="${BUILDLINK_DIR}/share/pkgconfig"; \
30+
t="$$d/scdoc.pc"; \
31+
if ${TEST} -f $$f -a ! -f $$t ; then \
32+
${MKDIR} -p $$d; \
33+
${LN} -sf $$f $$t; \
34+
fi
35+
36+
.endif # SCDOC_TOOL_MK

0 commit comments

Comments
 (0)