svn commit: r414665 - head/devel/ace

Kurt Jaeger pi at FreeBSD.org
Thu May 5 20:50:05 UTC 2016


Author: pi
Date: Thu May  5 20:50:03 2016
New Revision: 414665
URL: https://svnweb.freebsd.org/changeset/ports/414665

Log:
  devel/ace: 6.3.3 -> 6.3.4
  
  Changes:
  - ACE_SSL_Context::set_mode() can no longer be used to select a specific
    SSL/TLS protocol version, use ACE_SSL_Context::filter_versions() for that.
    This follows general advice by the OpenSSL project to go through
    SSL_CTX_set_options() to limit the list of protocols available. The purpose
    of ACE_SSL_Context::set_mode() is now limited to explicitly restricting
    behaviour to client or server (defaults to both).
  - Improve Oracle Studio support
  - CIAO and DAnCE are forked to their own github repositories
    and are not part anymore of the ACE+TAO release packages
  - Fixed several Coverity reported issues
  - Added ACE configuration for FACE safety profiles (see config-face-safety.h).
    FACE, or Future Airborne Capability Environment http://www.opengroup.org/face,
    specifies a restricted subset of OS functions and rules for controlling
    dynamic memory allocation.  When built in this configuration on a platform
    that supports it, ACE conforms to the FACE requirements.
  - ACE uses new netdb.h functions (getaddrinfo/getnameinfo) if they are
    available, in place of deprecated functions (gethostbyname/addr).
  
  PR:		209292
  Submitted by:	tkato432 at yahoo.com

Modified:
  head/devel/ace/Makefile
  head/devel/ace/distinfo
  head/devel/ace/pkg-plist

Modified: head/devel/ace/Makefile
==============================================================================
--- head/devel/ace/Makefile	Thu May  5 20:35:59 2016	(r414664)
+++ head/devel/ace/Makefile	Thu May  5 20:50:03 2016	(r414665)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	ace
-PORTVERSION=	6.3.3
+PORTVERSION=	6.3.4
 CATEGORIES=	devel
 MASTER_SITES=	ftp://download.dre.vanderbilt.edu/previous_versions/ \
 		http://download.dre.vanderbilt.edu/previous_versions/
@@ -16,8 +16,6 @@ LICENSE_NAME=	ACE
 LICENSE_FILE=	${WRKSRC}/COPYING
 LICENSE_PERMS=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
 
-BROKEN_powerpc64=	Does not build
-
 WRKSRC=		${WRKDIR}/ACE_wrappers
 
 USES=		gmake perl5 pkgconfig shebangfix tar:bzip2
@@ -35,9 +33,10 @@ PLIST_SUB=	VERSION="${PORTVERSION}"
 
 CONFLICTS=	ace+tao-5*
 
-BROKEN_ia64=	Does not compile on ${ARCH}
-BROKEN_powerpc=	Does not compile on ${ARCH}
-BROKEN_sparc64=	Does not compile on ${ARCH}
+BROKEN_ia64=		Does not compile on ${ARCH}
+BROKEN_powerpc=		Does not compile on ${ARCH}
+BROKEN_powerpc64=	Does not build on ${ARCH}
+BROKEN_sparc64=		Does not compile on ${ARCH}
 
 OPTIONS_DEFINE=		FLTK QT4 SSL TK TRIO X11
 OPTIONS_DEFAULT=	SSL

Modified: head/devel/ace/distinfo
==============================================================================
--- head/devel/ace/distinfo	Thu May  5 20:35:59 2016	(r414664)
+++ head/devel/ace/distinfo	Thu May  5 20:50:03 2016	(r414665)
@@ -1,2 +1,2 @@
-SHA256 (ACE-6.3.3.tar.bz2) = f362e45f624db3343db529654b601d5df69b5f56fa4597cf453da35d80989888
-SIZE (ACE-6.3.3.tar.bz2) = 8753296
+SHA256 (ACE-6.3.4.tar.bz2) = 9dd3c639fef1e4d3e2483f8cf4b201b2e80b1ffd8dd9c9a7ce57d0ba9e80f789
+SIZE (ACE-6.3.4.tar.bz2) = 8782152

Modified: head/devel/ace/pkg-plist
==============================================================================
--- head/devel/ace/pkg-plist	Thu May  5 20:35:59 2016	(r414664)
+++ head/devel/ace/pkg-plist	Thu May  5 20:50:03 2016	(r414665)
@@ -168,6 +168,7 @@ include/ace/Based_Pointer_T.inl
 include/ace/Basic_Stats.h
 include/ace/Basic_Stats.inl
 include/ace/Basic_Types.h
+include/ace/Bound_Ptr.cpp
 include/ace/Bound_Ptr.h
 include/ace/Bound_Ptr.inl
 include/ace/CDR_Base.h
@@ -644,6 +645,8 @@ include/ace/OS_NS_arpa_inet.h
 include/ace/OS_NS_arpa_inet.inl
 include/ace/OS_NS_ctype.h
 include/ace/OS_NS_ctype.inl
+include/ace/OS_NS_devctl.h
+include/ace/OS_NS_devctl.inl
 include/ace/OS_NS_dirent.h
 include/ace/OS_NS_dirent.inl
 include/ace/OS_NS_dlfcn.h
@@ -1089,6 +1092,8 @@ include/ace/config-aix-7.h
 include/ace/config-all.h
 include/ace/config-android.h
 include/ace/config-cygwin32.h
+include/ace/config-face-conftest.h
+include/ace/config-face-safety.h
 include/ace/config-freebsd.h
 include/ace/config-g++-common.h
 include/ace/config-hpux-11.00.h
@@ -1098,6 +1103,7 @@ include/ace/config-kfreebsd.h
 include/ace/config-linux.h
 include/ace/config-lite.h
 include/ace/config-lynxos.h
+include/ace/config-lynxos-178.h
 include/ace/config-macosx-elcapitan.h
 include/ace/config-macosx-iOS-hardware.h
 include/ace/config-macosx-iOS-simulator.h


More information about the svn-ports-all mailing list