svn commit: r539270 - head/devel/cdecl

Larry Rosenman ler at FreeBSD.org
Mon Jun 15 19:21:20 UTC 2020


Author: ler
Date: Mon Jun 15 19:21:19 2020
New Revision: 539270
URL: https://svnweb.freebsd.org/changeset/ports/539270

Log:
  devel/cdecl: upgrade to 7.2.
  
  - changelog:
  new & delete operator overloading
  Added support for composing and deciphering C++ overloaded new, new[], delete, and delete[] operators.
  
  extern &static functions
  extern or static functions can not be const.
  
  English scoped types
  Given:
  
  struct S { typedef int Int; }
  explain S::Int x
  the explanation is:
  
  declare x as Int of structure S
  but English types ("T of ...") weren't legal in cdecl's grammar. They are now.
  
  More C++ std types
  Added types std::align_val_t, std::destroying_delete_t, and std::nothrow_t.
  
  throw() put back
  throw is still a keyword so it was put back in C++20.
  
  Fixed user-defined literal argument
  Explicitly specifying int is now accepted.

Modified:
  head/devel/cdecl/Makefile
  head/devel/cdecl/distinfo

Modified: head/devel/cdecl/Makefile
==============================================================================
--- head/devel/cdecl/Makefile	Mon Jun 15 19:17:18 2020	(r539269)
+++ head/devel/cdecl/Makefile	Mon Jun 15 19:21:19 2020	(r539270)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	cdecl
-PORTVERSION=	7.1
+PORTVERSION=	7.2
 DISTVERSIONPREFIX=	${PORTNAME}-
 CATEGORIES=	devel
 

Modified: head/devel/cdecl/distinfo
==============================================================================
--- head/devel/cdecl/distinfo	Mon Jun 15 19:17:18 2020	(r539269)
+++ head/devel/cdecl/distinfo	Mon Jun 15 19:21:19 2020	(r539270)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1590513618
-SHA256 (paul-j-lucas-cdecl-cdecl-7.1_GH0.tar.gz) = b300a918a9f6cd79922bdb903d2b4ceba933a1bf289ad669cc872980c396e8cf
-SIZE (paul-j-lucas-cdecl-cdecl-7.1_GH0.tar.gz) = 418180
+TIMESTAMP = 1592248846
+SHA256 (paul-j-lucas-cdecl-cdecl-7.2_GH0.tar.gz) = 9986c50f45cbf16e4f6822ef3a9f31a91ca115b5a470d76dea139d4dee219a26
+SIZE (paul-j-lucas-cdecl-cdecl-7.2_GH0.tar.gz) = 422471


More information about the svn-ports-head mailing list