From owner-svn-ports-head@freebsd.org Thu Jul 30 20:18:44 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BC59B3AE17F; Thu, 30 Jul 2020 20:18:44 +0000 (UTC) (envelope-from ler@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BHhZD4cGGz3dD7; Thu, 30 Jul 2020 20:18:44 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 82FCE1689E; Thu, 30 Jul 2020 20:18:44 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06UKIiaE070550; Thu, 30 Jul 2020 20:18:44 GMT (envelope-from ler@FreeBSD.org) Received: (from ler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06UKIiIx070548; Thu, 30 Jul 2020 20:18:44 GMT (envelope-from ler@FreeBSD.org) Message-Id: <202007302018.06UKIiIx070548@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ler set sender to ler@FreeBSD.org using -f From: Larry Rosenman Date: Thu, 30 Jul 2020 20:18:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r543832 - head/devel/cdecl X-SVN-Group: ports-head X-SVN-Commit-Author: ler X-SVN-Commit-Paths: head/devel/cdecl X-SVN-Commit-Revision: 543832 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Jul 2020 20:18:44 -0000 Author: ler Date: Thu Jul 30 20:18:43 2020 New Revision: 543832 URL: https://svnweb.freebsd.org/changeset/ports/543832 Log: devel/cdecl: update to 8.0. C2X support Added support for C2X: Added type char8_t. Added [[...]] syntax for attributes. Added [[deprecated]], [[maybe_unused]], and [[nodiscard]] attributes. Removed support for typeless function arguments in K&R C. More C++20 support Added support for constinit and export in C++20. Embedded C support Added support for Embedded C: Added types _Accum and _Fract (and accum and fract). Added modifier _Sat (and sat and saturated). Added the typedefs int_hk_t, int_hr_t, int_k_t, int_lk_t, int_lr_t, int_r_t, uint_uhk_t, uint_uhr_t, uint_uk_t, uint_ulk_t, uint_ulr_t, and uint_your_t. Since the Embedded C standard is based on C99, support for Embedded C is available only when the language is set to C99. Forbidding attribute syntax The [[xxx]] attribute syntax is now forbidden until either C2X or C++11. class, struct, & union optional ; Semicolons are now optional after class, struct, or union declarations. class, struct, & union define themselves Before now: class C { typedef int Int; } would define only C::Int as a type. Now, the enclosing class, struct, or union is also defined as a type. Hence, the above is now equivalent to: define C as class C define C::Int as int This also means that either: class C { } class C is eqivalent to: define C as class C class, struct, & union commands class, struct, and union are now commands (just like namespace). Per-scope types; fixed English scope name order Each scope of a scoped name (sname) now has its own type. Additionally, the English printed order is now (correctly) inner-to-outermost. For example: c++decl> namespace N { class C { typedef int I; }; } c++decl> explain N::C::I x declare x as I of class C of namespace N Floating-point extensions for C types Added types _Decimal32_t, _Decimal64_t, _Decimal64x, _Decimal128x, _Float32, _Float32x, _Float64, _Float128, _Float128x, femode_t, and long_double_t. Aligned to Now allowing to in addition to as for ... aligned [as|to] .... show as Now allowing an optional as in show ... [as] typedef. asm Added the asm keyword to prevent declarations from using it. Modified: head/devel/cdecl/Makefile head/devel/cdecl/distinfo Modified: head/devel/cdecl/Makefile ============================================================================== --- head/devel/cdecl/Makefile Thu Jul 30 20:18:04 2020 (r543831) +++ head/devel/cdecl/Makefile Thu Jul 30 20:18:43 2020 (r543832) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cdecl -PORTVERSION= 7.4.1 +PORTVERSION= 8.0 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= devel Modified: head/devel/cdecl/distinfo ============================================================================== --- head/devel/cdecl/distinfo Thu Jul 30 20:18:04 2020 (r543831) +++ head/devel/cdecl/distinfo Thu Jul 30 20:18:43 2020 (r543832) @@ -1,3 +1,3 @@ -TIMESTAMP = 1594653954 -SHA256 (paul-j-lucas-cdecl-cdecl-7.4.1_GH0.tar.gz) = a9595a48dba1e320015d2e2102f4643f32f183bf777750f27fb99cfa26d91383 -SIZE (paul-j-lucas-cdecl-cdecl-7.4.1_GH0.tar.gz) = 433177 +TIMESTAMP = 1596140272 +SHA256 (paul-j-lucas-cdecl-cdecl-8.0_GH0.tar.gz) = d59a071c4038eaf21f25a726e5b495b3b8f028a4bc89dceb645cc3514daef392 +SIZE (paul-j-lucas-cdecl-cdecl-8.0_GH0.tar.gz) = 443998