summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authordholland <dholland@pkgsrc.org>2019-01-22 02:28:54 +0000
committerdholland <dholland@pkgsrc.org>2019-01-22 02:28:54 +0000
commita4fc950b147dfce841f3cf4434b0d64a330275f6 (patch)
tree389eef6a0fe2f18c96be491dcc4f6408d5a8f050 /devel
parent079eb7437934e6e6a90579fa64e306576c1eb06f (diff)
downloadpkgsrc-a4fc950b147dfce841f3cf4434b0d64a330275f6.tar.gz
Update tradcpp to 0.5.3.
Upstream changes: - Fix markup typo in the man page. - Abort on line numbering or column numbering overflow. Line numbers are limited to values that fit in "unsigned int". Also reject input lines longer than 2^32-1 characters. It seems reasonable to presume that any input that violates these constraints is someone screwing around and not a serious attempt to compile or preprocess anything useful. Done in response to n2129, but without getting into any of the silliness found there. - Recognize __ia64__ for IA64 builds. - Recognize __aarch64__ for 64-bit ARM builds, as sent in by various people. - Recognize __riscv__ and __riscv64__ for risc-v builds.
Diffstat (limited to 'devel')
-rw-r--r--devel/tradcpp/Makefile7
-rw-r--r--devel/tradcpp/distinfo11
-rw-r--r--devel/tradcpp/patches/patch-config.h15
3 files changed, 8 insertions, 25 deletions
diff --git a/devel/tradcpp/Makefile b/devel/tradcpp/Makefile
index f0b71cebd45..316cc5f20e6 100644
--- a/devel/tradcpp/Makefile
+++ b/devel/tradcpp/Makefile
@@ -1,13 +1,12 @@
-# $NetBSD: Makefile,v 1.12 2016/12/16 18:30:58 dholland Exp $
+# $NetBSD: Makefile,v 1.13 2019/01/22 02:28:54 dholland Exp $
#
-DISTNAME= tradcpp-0.5.2
-PKGREVISION= 2
+DISTNAME= tradcpp-0.5.3
CATEGORIES= devel
MASTER_SITES= http://ftp.NetBSD.org/pub/NetBSD/misc/dholland/
MAINTAINER= dholland@NetBSD.org
-#HOMEPAGE= http://www.netbsd.org/~dholland/tradcpp/ (not yet)
+HOMEPAGE= http://www.NetBSD.org/~dholland/tradcpp/
COMMENT= Traditional (K&R-style) C preprocessor
LICENSE= modified-bsd
diff --git a/devel/tradcpp/distinfo b/devel/tradcpp/distinfo
index aed6e42e11b..d23a01a016e 100644
--- a/devel/tradcpp/distinfo
+++ b/devel/tradcpp/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.14 2016/12/16 04:56:04 dholland Exp $
+$NetBSD: distinfo,v 1.15 2019/01/22 02:28:54 dholland Exp $
-SHA1 (tradcpp-0.5.2.tar.gz) = 2864cadfffcb5b04ff6e2cccdfcc3a64898b0d82
-RMD160 (tradcpp-0.5.2.tar.gz) = 2eb9e53caf7d18673ed5d4098bdf85058734d382
-SHA512 (tradcpp-0.5.2.tar.gz) = 84af2e82eb690d9451e1b0283432d7694b23d6d714fc7f275b4d3fc92c84b2a49d829849978a13789e32197e1961f16b442b68d6091b005c2165c3c9b5a53ac5
-Size (tradcpp-0.5.2.tar.gz) = 37996 bytes
-SHA1 (patch-config.h) = 39449427a934ab0878a8b3860e5ab3e24eadae04
+SHA1 (tradcpp-0.5.3.tar.gz) = 68e2b3a15e403b465e49eb82daea4ccb6f2914f3
+RMD160 (tradcpp-0.5.3.tar.gz) = e1ec74bc8623587ec26a8c7c8292e96935037144
+SHA512 (tradcpp-0.5.3.tar.gz) = 31ef1fc9db5e1fdb88c3decab981de9e5341620302195e3ae6883bb5eb3e3937a5d6543f7127c7a242edbe4c0864b3d1bc16ad6fce17e8662af337ffa2a60296
+Size (tradcpp-0.5.3.tar.gz) = 38683 bytes
diff --git a/devel/tradcpp/patches/patch-config.h b/devel/tradcpp/patches/patch-config.h
deleted file mode 100644
index 291b7908a4a..00000000000
--- a/devel/tradcpp/patches/patch-config.h
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-config.h,v 1.1 2016/12/16 18:30:58 dholland Exp $
-
-Recognize __ia64__. (from upstream tree)
-
---- config.h.orig 2016-09-04 21:16:39.000000000 +0000
-+++ config.h
-@@ -124,6 +124,8 @@
- #define CONFIG_CPU "__ppc64__"
- #elif defined(__ARM__)
- #define CONFIG_CPU "__ARM__"
-+#elif defined(__ia64__)
-+#define CONFIG_CPU "__ia64__"
- #else
- /* let it go */
- #endif