From owner-svn-ports-head@freebsd.org Thu Oct 18 22:24:46 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8EADAF77382; Thu, 18 Oct 2018 22:24:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3351081AB2; Thu, 18 Oct 2018 22:24:46 +0000 (UTC) (envelope-from swills@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 2879426153; Thu, 18 Oct 2018 22:24:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9IMOkKN063855; Thu, 18 Oct 2018 22:24:46 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9IMOiTd063846; Thu, 18 Oct 2018 22:24:44 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201810182224.w9IMOiTd063846@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 18 Oct 2018 22:24:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482384 - in head/lang/ponyc: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/lang/ponyc: . files X-SVN-Commit-Revision: 482384 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.29 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, 18 Oct 2018 22:24:46 -0000 Author: swills Date: Thu Oct 18 22:24:44 2018 New Revision: 482384 URL: https://svnweb.freebsd.org/changeset/ports/482384 Log: lang/ponyc: update to 0.25.0 PR: 232352 Submitted by: Greg V (maintainer) Added: head/lang/ponyc/files/patch-src_libponyc_codegen_genexe.c (contents, props changed) head/lang/ponyc/files/patch-src_libponyc_codegen_host.cc (contents, props changed) Modified: head/lang/ponyc/Makefile (contents, props changed) head/lang/ponyc/distinfo (contents, props changed) head/lang/ponyc/files/patch-Makefile (contents, props changed) head/lang/ponyc/pkg-plist (contents, props changed) Modified: head/lang/ponyc/Makefile ============================================================================== --- head/lang/ponyc/Makefile Thu Oct 18 22:20:51 2018 (r482383) +++ head/lang/ponyc/Makefile Thu Oct 18 22:24:44 2018 (r482384) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= ponyc -DISTVERSION= 0.24.4 -PORTREVISION= 1 +DISTVERSION= 0.25.0 CATEGORIES= lang MAINTAINER= greg@unrelenting.technology @@ -19,24 +18,32 @@ LIB_DEPENDS= libunwind.so:devel/libunwind BUILD_DEPENDS= llvm-link${LLVM_VERSION}:devel/llvm${LLVM_VERSION} RUN_DEPENDS= llvm-link${LLVM_VERSION}:devel/llvm${LLVM_VERSION} -OPTIONS_DEFINE= DOCS EXAMPLES - USES= gmake ncurses compiler:c++11-lang -MAKE_ARGS= config=release LLVM_VERSION= 50 +# LLVM 6 has assertion failures when e.g. optimizing the mandelbrot example PLIST_SUB= VERSION="${DISTVERSION}" PONYARCH="${PONYARCH}" +OPTIONS_SUB= yes USE_GITHUB= yes GH_ACCOUNT= ponylang PORTDOCS= *.md -.include +MAKE_ENV= config=release verbose=true default_pic=true \ + prefix=${PREFIX} arch=${PONYARCH} \ + LLVM_CONFIG=llvm-config${LLVM_VERSION} -MAKE_ENV= prefix=${PREFIX} verbose=true arch=${PONYARCH} +OPTIONS_DEFINE= DOCS EXAMPLES DTRACE +OPTIONS_EXCLUDE_aarch64= DTRACE +# Not enabling DTrace by default yet because it breaks --runtimebc ("super LTO"): +# https://github.com/ponylang/ponyc/issues/2915 +DTRACE_MAKE_ENV= use=dtrace + +.include + # Pony defaults to 'native', which # a) doesn't work on aarch64 # b) is not appropriate for official OS packages @@ -47,6 +54,17 @@ PONYARCH?= armv8-a PONYARCH?= core2 .endif +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200085 +MAKE_ENV+= default_ssl=openssl_1.1.0 +.endif + +.if ${CHOSEN_COMPILER_TYPE} == clang +MAKE_ENV+= runtime-bitcode=yes +PLIST_SUB+= BITCODE="" +.else +PLIST_SUB+= BITCODE="@comment " +.endif + post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/pony/${DISTVERSION}/bin/ponyc @@ -58,4 +76,4 @@ post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) -.include +.include Modified: head/lang/ponyc/distinfo ============================================================================== --- head/lang/ponyc/distinfo Thu Oct 18 22:20:51 2018 (r482383) +++ head/lang/ponyc/distinfo Thu Oct 18 22:24:44 2018 (r482384) @@ -1,3 +1,3 @@ -TIMESTAMP = 1533336886 -SHA256 (ponylang-ponyc-0.24.4_GH0.tar.gz) = 979e443fa27df7b65c3ac35db47fc0b130608f0745d4fa393c451734343c088d -SIZE (ponylang-ponyc-0.24.4_GH0.tar.gz) = 1361094 +TIMESTAMP = 1539770206 +SHA256 (ponylang-ponyc-0.25.0_GH0.tar.gz) = 8420d84f178db325934d77dc407a7f98d6bd14b8cf8036e17b41f886f5820cb2 +SIZE (ponylang-ponyc-0.25.0_GH0.tar.gz) = 1378042 Modified: head/lang/ponyc/files/patch-Makefile ============================================================================== --- head/lang/ponyc/files/patch-Makefile Thu Oct 18 22:20:51 2018 (r482383) +++ head/lang/ponyc/files/patch-Makefile Thu Oct 18 22:24:44 2018 (r482384) @@ -1,13 +1,11 @@ ---- Makefile.orig 2018-05-27 18:29:53 UTC +--- Makefile.orig 2018-10-17 10:11:59 UTC +++ Makefile -@@ -221,6 +221,10 @@ ifndef LLVM_CONFIG - LLVM_CONFIG = llvm-config-3.9 - else ifneq (,$(shell which /usr/local/opt/llvm@3.9/bin/llvm-config 2> /dev/null)) - LLVM_CONFIG = /usr/local/opt/llvm@3.9/bin/llvm-config -+ else ifneq (,$(shell which llvm-config50 2> /dev/null)) -+ LLVM_CONFIG = llvm-config50 -+ else ifneq (,$(shell which llvm-config40 2> /dev/null)) -+ LLVM_CONFIG = llvm-config40 - else ifneq (,$(shell which llvm-config39 2> /dev/null)) - LLVM_CONFIG = llvm-config39 - else ifneq (,$(shell which /usr/local/opt/llvm/bin/llvm-config 2> /dev/null)) +@@ -806,7 +806,7 @@ $($(1))/libponyrt.$(LIB_EXT): $(depends) $(ofiles) + $(SILENT)rm -f $(PONY_BUILD_DIR)/dtrace_probes.o + $(SILENT)$(DTRACE) -G -s $(PONY_SOURCE_DIR)/common/dtrace_probes.d -o $(PONY_BUILD_DIR)/dtrace_probes.o $(ofiles) + $(SILENT)$(AR) $(AR_FLAGS) $$@ $(ofiles) $(PONY_BUILD_DIR)/dtrace_probes.o +- $(SILENT)$(AR) $(AR_FLAGS) $(PONY_BUILD_DIR)/libdtrace_probes.a $(PONY_BUILD_DIR)/dtrace_probes.o ++ $(SILENT)$(AR) $(AR_FLAGS) $(lib)/libdtrace_probes.a $(PONY_BUILD_DIR)/dtrace_probes.o + else + $(SILENT)$(AR) $(AR_FLAGS) $$@ $(ofiles) + endif Added: head/lang/ponyc/files/patch-src_libponyc_codegen_genexe.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/ponyc/files/patch-src_libponyc_codegen_genexe.c Thu Oct 18 22:24:44 2018 (r482384) @@ -0,0 +1,12 @@ +--- src/libponyc/codegen/genexe.c.orig 2018-10-13 12:30:06 UTC ++++ src/libponyc/codegen/genexe.c +@@ -347,8 +347,7 @@ static bool link_exe(compile_t* c, ast_t* program, + ""; + #endif + const char* lexecinfo = +-#if (defined(PLATFORM_IS_LINUX) && !defined(__GLIBC__)) || \ +- (defined(PLATFORM_IS_BSD) && defined(DEBUG)) ++#if (defined(PLATFORM_IS_LINUX) && !defined(__GLIBC__)) || defined(PLATFORM_IS_BSD) + "-lexecinfo"; + #else + ""; Added: head/lang/ponyc/files/patch-src_libponyc_codegen_host.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/ponyc/files/patch-src_libponyc_codegen_host.cc Thu Oct 18 22:24:44 2018 (r482384) @@ -0,0 +1,17 @@ +--- src/libponyc/codegen/host.cc.orig 2018-10-17 11:42:19 UTC ++++ src/libponyc/codegen/host.cc +@@ -56,7 +56,14 @@ char* LLVMGetHostCPUFeatures() + { + StringMap features; + bool got_features = sys::getHostCPUFeatures(features); ++#ifdef PLATFORM_IS_ARM ++ // LLVM might not have CPU features support on e.g. FreeBSD/aarch64 ++ if (!got_features) { ++ features["neon"] = true; ++ } ++#else + pony_assert(got_features); ++#endif + (void)got_features; + + // Calculate the size of buffer that will be needed to return all features. Modified: head/lang/ponyc/pkg-plist ============================================================================== --- head/lang/ponyc/pkg-plist Thu Oct 18 22:20:51 2018 (r482383) +++ head/lang/ponyc/pkg-plist Thu Oct 18 22:24:44 2018 (r482384) @@ -6,15 +6,19 @@ lib/libponyrt.a lib/pony/%%VERSION%%/bin/ponyc lib/pony/%%VERSION%%/include/pony.h lib/pony/%%VERSION%%/include/pony/detail/atomics.h +%%DTRACE%%lib/pony/%%VERSION%%/lib/%%PONYARCH%%/libdtrace_probes.a lib/pony/%%VERSION%%/lib/%%PONYARCH%%/libponyc.a lib/pony/%%VERSION%%/lib/%%PONYARCH%%/libponyrt.a +%%BITCODE%%lib/pony/%%VERSION%%/lib/%%PONYARCH%%/libponyrt.bc lib/pony/%%VERSION%%/packages/assert/assert.pony lib/pony/%%VERSION%%/packages/backpressure/auth.pony lib/pony/%%VERSION%%/packages/backpressure/backpressure.pony lib/pony/%%VERSION%%/packages/buffered/_test.pony +lib/pony/%%VERSION%%/packages/buffered/benchmarks/main.pony lib/pony/%%VERSION%%/packages/buffered/buffered.pony lib/pony/%%VERSION%%/packages/buffered/reader.pony lib/pony/%%VERSION%%/packages/buffered/writer.pony +lib/pony/%%VERSION%%/packages/builtin/_partial_arithmetic.pony lib/pony/%%VERSION%%/packages/builtin/_to_string.pony lib/pony/%%VERSION%%/packages/builtin/ambient_auth.pony lib/pony/%%VERSION%%/packages/builtin/any.pony @@ -90,6 +94,7 @@ lib/pony/%%VERSION%%/packages/files/directory.pony lib/pony/%%VERSION%%/packages/files/file.pony lib/pony/%%VERSION%%/packages/files/file_caps.pony lib/pony/%%VERSION%%/packages/files/file_info.pony +lib/pony/%%VERSION%%/packages/files/file_lines.pony lib/pony/%%VERSION%%/packages/files/file_mode.pony lib/pony/%%VERSION%%/packages/files/file_path.pony lib/pony/%%VERSION%%/packages/files/file_stream.pony