From nobody Tue Oct 19 14:53:59 2021 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id A7D3317FFD41; Tue, 19 Oct 2021 14:53:59 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HYcFg47n2z3Nhl; Tue, 19 Oct 2021 14:53:59 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6DDA91619A; Tue, 19 Oct 2021 14:53:59 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19JErxgl055545; Tue, 19 Oct 2021 14:53:59 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19JErxWm055544; Tue, 19 Oct 2021 14:53:59 GMT (envelope-from git) Date: Tue, 19 Oct 2021 14:53:59 GMT Message-Id: <202110191453.19JErxWm055544@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Larry Rosenman Subject: git: 156e0517c0f2 - main - devel/cdecl: upgrade 11.2->11.4 List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: ler X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 156e0517c0f2ead88a55c5a90a63f3d1cbfbcdc6 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by ler: URL: https://cgit.FreeBSD.org/ports/commit/?id=156e0517c0f2ead88a55c5a90a63f3d1cbfbcdc6 commit 156e0517c0f2ead88a55c5a90a63f3d1cbfbcdc6 Author: Larry Rosenman AuthorDate: 2021-10-19 14:52:39 +0000 Commit: Larry Rosenman CommitDate: 2021-10-19 14:52:39 +0000 devel/cdecl: upgrade 11.2->11.4 ChangeLog: 11.3: Added explicit-ecsu option Both an --explicit-csu/-S command-line and explicit-ecsu set option have been added that set which type keywords enum, class, struct, or union, are included explicitly in C++ declarations. The default is struct and union only, so: c++decl> declare ps as pointer to struct S struct S *ps; c++decl> declare pt as pointer to class T T *pt; Fixed nested array declaration Explaining a declaration like: explain int (a)[4] is now fixed. 11.4: _Atomic(T) in C++23 Now supporting the _Atomic(T) macro in C++23. Fixed pointer to a typedef of void Declarations like: typedef void V explain V *p are now fixed. Allow declarations using unknown scoped type names Previously, cdecl complained about things like: cdecl> define S as struct S cdecl> explain S::T x ^ 19: error: "T": unknown name Now, it just assumes the T is a type: declare x as T of structure S cvr-qualified _Atomic const-volatile-restrict-qualified _Atomic types are now correctly forbidden. --- devel/cdecl/Makefile | 2 +- devel/cdecl/distinfo | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/devel/cdecl/Makefile b/devel/cdecl/Makefile index c16d4ffa6f2b..47a3800c766c 100644 --- a/devel/cdecl/Makefile +++ b/devel/cdecl/Makefile @@ -1,7 +1,7 @@ # Created by: David O'Brien (obrien@NUXI.com) PORTNAME= cdecl -PORTVERSION= 11.2 +PORTVERSION= 11.4 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= devel diff --git a/devel/cdecl/distinfo b/devel/cdecl/distinfo index 0e77a43dc1f6..7cb713ebf09c 100644 --- a/devel/cdecl/distinfo +++ b/devel/cdecl/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633302794 -SHA256 (paul-j-lucas-cdecl-cdecl-11.2_GH0.tar.gz) = ef6bf1cb71ed6fad0f5c78c10272e9c03abd98c48dc658bdfb2e8aaa33118d90 -SIZE (paul-j-lucas-cdecl-cdecl-11.2_GH0.tar.gz) = 731926 +TIMESTAMP = 1634654653 +SHA256 (paul-j-lucas-cdecl-cdecl-11.4_GH0.tar.gz) = 44e7272f9cbd68cbfa2e47df459879d7b805f11875b2ba90bf95e4e59f081701 +SIZE (paul-j-lucas-cdecl-cdecl-11.4_GH0.tar.gz) = 737797