Date: Wed, 23 Jan 2019 00:00:41 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r490997 - head/devel/tradcpp Message-ID: <201901230000.x0N00frD049363@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Wed Jan 23 00:00:41 2019 New Revision: 490997 URL: https://svnweb.freebsd.org/changeset/ports/490997 Log: Update to 0.5.3 - 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. Modified: head/devel/tradcpp/Makefile head/devel/tradcpp/distinfo Modified: head/devel/tradcpp/Makefile ============================================================================== --- head/devel/tradcpp/Makefile Wed Jan 23 00:00:35 2019 (r490996) +++ head/devel/tradcpp/Makefile Wed Jan 23 00:00:41 2019 (r490997) @@ -1,9 +1,9 @@ # $FreeBSD$ PORTNAME= tradcpp -PORTVERSION= 0.5.2 +PORTVERSION= 0.5.3 CATEGORIES= devel -MASTER_SITES= http://ftp.NetBSD.org/pub/NetBSD/misc/dholland/ \ +MASTER_SITES= https://ftp.NetBSD.org/pub/NetBSD/misc/dholland/ \ LOCAL/sunpoet MAINTAINER= sunpoet@FreeBSD.org @@ -11,10 +11,11 @@ COMMENT= Traditional (K&R-style) C preprocessor LICENSE= BSD2CLAUSE -MAKE_ARGS= BINDIR=${PREFIX}/bin MANDIR=${MANPREFIX}/man/man USES= uidfix -PLIST_FILES= bin/${PORTNAME} \ - man/man1/${PORTNAME}.1.gz +MAKE_ARGS= BINDIR=${PREFIX}/bin MANDIR=${MANPREFIX}/man/man + +PLIST_FILES= bin/tradcpp \ + man/man1/tradcpp.1.gz .include <bsd.port.mk> Modified: head/devel/tradcpp/distinfo ============================================================================== --- head/devel/tradcpp/distinfo Wed Jan 23 00:00:35 2019 (r490996) +++ head/devel/tradcpp/distinfo Wed Jan 23 00:00:41 2019 (r490997) @@ -1,3 +1,3 @@ -TIMESTAMP = 1479482579 -SHA256 (tradcpp-0.5.2.tar.gz) = 6c2153019e6214397294fc40528785e2b8432a4c889a21c41b3f8fc078e74bc0 -SIZE (tradcpp-0.5.2.tar.gz) = 37996 +TIMESTAMP = 1548164757 +SHA256 (tradcpp-0.5.3.tar.gz) = e17b9f42cf74b360d5691bc59fb53f37e41581c45b75fcd64bb965e5e2fe4c5e +SIZE (tradcpp-0.5.3.tar.gz) = 38683
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901230000.x0N00frD049363>