Date: Tue, 26 Mar 2019 17:37:58 +0000 (UTC) From: Larry Rosenman <ler@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r496902 - head/devel/cdecl Message-ID: <201903261737.x2QHbwm0057449@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ler Date: Tue Mar 26 17:37:57 2019 New Revision: 496902 URL: https://svnweb.freebsd.org/changeset/ports/496902 Log: devel/cdecl: update to 6.0.1. 6.0 release notes: Added C++ scoped name support Added support for scoped names in C++. For example: cdecl> explain int S::x declare x of scope S as int cdecl> define S::T as struct T; explain S::T x declare x as T of scope S Added partial namespace support Specifically, you can now perform typedef and using declarations within namespaces or inline namespaces: c++decl> namespace S { inline namespace T { typedef int Int; } } c++decl> show user typedef namespace S::T { typedef int Int; } 6.0.1 release note: Fixed undefined uint64_t Fixed a compile-time error on some platforms. Reported by: portscout Modified: head/devel/cdecl/Makefile head/devel/cdecl/distinfo Modified: head/devel/cdecl/Makefile ============================================================================== --- head/devel/cdecl/Makefile Tue Mar 26 17:29:36 2019 (r496901) +++ head/devel/cdecl/Makefile Tue Mar 26 17:37:57 2019 (r496902) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cdecl -PORTVERSION= 5.2 +PORTVERSION= 6.0.1 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= devel Modified: head/devel/cdecl/distinfo ============================================================================== --- head/devel/cdecl/distinfo Tue Mar 26 17:29:36 2019 (r496901) +++ head/devel/cdecl/distinfo Tue Mar 26 17:37:57 2019 (r496902) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544730602 -SHA256 (paul-j-lucas-cdecl-cdecl-5.2_GH0.tar.gz) = a529890df1b5a94e3c75f56fcd1d8bfdec9b3868340634778c7501bb9f9a19ea -SIZE (paul-j-lucas-cdecl-cdecl-5.2_GH0.tar.gz) = 336160 +TIMESTAMP = 1553621530 +SHA256 (paul-j-lucas-cdecl-cdecl-6.0.1_GH0.tar.gz) = a98ba31826ded4963a2a39d9a75cb32c10ffa95e2d66eadad60ef530a1a97798 +SIZE (paul-j-lucas-cdecl-cdecl-6.0.1_GH0.tar.gz) = 350735
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903261737.x2QHbwm0057449>