Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 27 Feb 2022 21:03:36 GMT
From:      Larry Rosenman <ler@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 2f70772413f3 - main - devel/cdecl: update to 11.13
Message-ID:  <202202272103.21RL3adu088056@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by ler:

URL: https://cgit.FreeBSD.org/ports/commit/?id=2f70772413f3c2078787cce52e21c6220df2d7db

commit 2f70772413f3c2078787cce52e21c6220df2d7db
Author:     Larry Rosenman <ler@FreeBSD.org>
AuthorDate: 2022-02-27 21:01:42 +0000
Commit:     Larry Rosenman <ler@FreeBSD.org>
CommitDate: 2022-02-27 21:03:27 +0000

    devel/cdecl: update to 11.13
    
    ChangeLog:
    Aligned enum, struct, and union in C
    Alignment of enum, struct, and union is now correctly forbidden in C.
    
    alignas & _Alignas
    These keywords are now additionally allowed instead of aligned [as|to]
    in pseudo-English.
    
    Auto-completion of cdecl keywords
    Cdecl keywords are now not auto-completable when explaining gibberish.
    
    Auto-completion tweaks
    new is now auto-completable; variadic is now autocompletable only in C89
    and later. The following are now not autocompletable: co_await,
    co_return, co_yield, concept, decltype, and requires.
    
    restrict of typedef
    restrict is now correctly allowed on typedefs of pointer:
    
    cdecl> typdef int *pint
    cdecl> explain restrict pint p
    declare p as restricted pint
    return English shorthand
    return is now accepted as a shorthand for returning in pseudo-English.
    
    English new-style cast synonyms
    The C++ keywords const_cast, dynamic_cast, reinterpret_cast, and
    static_cast are now synonyms for their respective two-word counterparts
    in pseudo-English.
    
    Fixed core dump for --debug/-d for operator
    Fixed a core dump when using the --debug/-d option for an operator.
    
    Fixed function returning function parameter crash
    A crash for:
    
    explain void f( int()() )
    (which is illegal) has been fixed.
---
 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 a83f96394a00..37a14784374f 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.12
+PORTVERSION=	11.13
 DISTVERSIONPREFIX=	${PORTNAME}-
 CATEGORIES=	devel
 
diff --git a/devel/cdecl/distinfo b/devel/cdecl/distinfo
index 2d34b88358b9..dc4c4d04ef78 100644
--- a/devel/cdecl/distinfo
+++ b/devel/cdecl/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1644594257
-SHA256 (paul-j-lucas-cdecl-cdecl-11.12_GH0.tar.gz) = 97834179df8cb11ed43b204e4b3d07afceea84c7183daa6996d9afe96792a7fe
-SIZE (paul-j-lucas-cdecl-cdecl-11.12_GH0.tar.gz) = 766918
+TIMESTAMP = 1645989952
+SHA256 (paul-j-lucas-cdecl-cdecl-11.13_GH0.tar.gz) = f9329923d7780c9542d442385698fd8d897f5f6aae142acbc222cd8e6717fd2a
+SIZE (paul-j-lucas-cdecl-cdecl-11.13_GH0.tar.gz) = 769720



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202202272103.21RL3adu088056>