From owner-svn-ports-head@freebsd.org Fri Dec 15 03:02:07 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4492E97F7F; Fri, 15 Dec 2017 03:02:07 +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 mx1.freebsd.org (Postfix) with ESMTPS id BC1BC639E6; Fri, 15 Dec 2017 03:02:07 +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 vBF326xC036757; Fri, 15 Dec 2017 03:02:06 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBF326SV036754; Fri, 15 Dec 2017 03:02:06 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201712150302.vBF326SV036754@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 15 Dec 2017 03:02:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456382 - in head/lang: ruby22 ruby23 ruby24 X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/lang: ruby22 ruby23 ruby24 X-SVN-Commit-Revision: 456382 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.25 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: Fri, 15 Dec 2017 03:02:08 -0000 Author: swills Date: Fri Dec 15 03:02:06 2017 New Revision: 456382 URL: https://svnweb.freebsd.org/changeset/ports/456382 Log: lang/ruby22, 23, 24: update ARCHs Add armv7, drop armv6hf and ia64. While here, drop unneeded quotes. PR: 223986 Submitted by: linimon Modified: head/lang/ruby22/Makefile head/lang/ruby23/Makefile head/lang/ruby24/Makefile Modified: head/lang/ruby22/Makefile ============================================================================== --- head/lang/ruby22/Makefile Fri Dec 15 02:09:37 2017 (r456381) +++ head/lang/ruby22/Makefile Fri Dec 15 03:02:06 2017 (r456382) @@ -86,7 +86,7 @@ _SUF1= _${PORTREVISION} .endif .if ${OPSYS} == "FreeBSD" -.if exists(/usr/sbin/dtrace) && (${OSVERSION} > 1100032) && (${ARCH} == "amd64" || ${ARCH} == "i386") +.if exists(/usr/sbin/dtrace) && (${OSVERSION} > 1100032) && (${ARCH} == amd64 || ${ARCH} == i386) CONFIGURE_ARGS+= --enable-dtrace .else CONFIGURE_ARGS+= --disable-dtrace @@ -94,15 +94,15 @@ CONFIGURE_ARGS+= --disable-dtrace .endif # keep in sync with all platforms where libunwind is available -.if (${ARCH} == "amd64" || ${ARCH} == "i386") +.if (${ARCH} == amd64 || ${ARCH} == i386) LIB_DEPENDS+= libunwind.so:devel/libunwind .endif -.if ${ARCH} == "powerpc64" +.if ${ARCH} == powerpc64 USE_GCC= yes .endif -.if ${ARCH} == "armv6" || ${ARCH} == "armv6hf" +.if ${ARCH} == armv6 || ${ARCH} == armv7 CONFIGURE_ARGS+= --with-setjmp-type=_setjmp CONFIGURE_ENV+= ac_cv_func__setjmp=yes .endif Modified: head/lang/ruby23/Makefile ============================================================================== --- head/lang/ruby23/Makefile Fri Dec 15 02:09:37 2017 (r456381) +++ head/lang/ruby23/Makefile Fri Dec 15 03:02:06 2017 (r456382) @@ -90,7 +90,7 @@ _SUF2= ,${PORTEPOCH} .endif .if ${OPSYS} == "FreeBSD" -.if exists(/usr/sbin/dtrace) && (${OSVERSION} > 1100032) && (${ARCH} == "amd64" || ${ARCH} == "i386") +.if exists(/usr/sbin/dtrace) && (${OSVERSION} > 1100032) && (${ARCH} == amd64 || ${ARCH} == i386) CONFIGURE_ARGS+=--enable-dtrace .else CONFIGURE_ARGS+=--disable-dtrace @@ -98,15 +98,15 @@ CONFIGURE_ARGS+=--disable-dtrace .endif # keep in sync with all platforms where libunwind is available -.if (${ARCH} == "amd64" || ${ARCH} == "i386") +.if (${ARCH} == amd64 || ${ARCH} == i386) LIB_DEPENDS+= libunwind.so:devel/libunwind .endif -.if ${ARCH} == "powerpc64" +.if ${ARCH} == powerpc64 USE_GCC= yes .endif -.if ${ARCH} == "armv6" || ${ARCH} == "armv6hf" +.if ${ARCH} == armv6 || ${ARCH} == armv7 CONFIGURE_ARGS+=--with-setjmp-type=_setjmp CONFIGURE_ENV+= ac_cv_func__setjmp=yes .endif Modified: head/lang/ruby24/Makefile ============================================================================== --- head/lang/ruby24/Makefile Fri Dec 15 02:09:37 2017 (r456381) +++ head/lang/ruby24/Makefile Fri Dec 15 03:02:06 2017 (r456382) @@ -45,9 +45,6 @@ USE_RUBY= yes RUBY_NO_BUILD_DEPENDS= yes RUBY_NO_RUN_DEPENDS= yes -NOT_FOR_ARCHS= ia64 -NOT_FOR_ARCHS_REASON_ia64= does not build - OPTIONS_DEFINE= CAPIDOCS DEBUG DOCS EXAMPLES GMP RDOC OPTIONS_DEFAULT= RDOC LIBEDIT OPTIONS_SINGLE= EDIT @@ -87,7 +84,7 @@ _SUF2= ,${PORTEPOCH} .endif .if ${OPSYS} == "FreeBSD" -.if exists(/usr/sbin/dtrace) && (${OSVERSION} > 1100032) && (${ARCH} == "amd64" || ${ARCH} == "i386") +.if exists(/usr/sbin/dtrace) && (${OSVERSION} > 1100032) && (${ARCH} == amd64 || ${ARCH} == i386) CONFIGURE_ARGS+=--enable-dtrace .else CONFIGURE_ARGS+=--disable-dtrace @@ -95,15 +92,15 @@ CONFIGURE_ARGS+=--disable-dtrace .endif # keep in sync with all platforms where libunwind is available -.if (${ARCH} == "amd64" || ${ARCH} == "i386") +.if (${ARCH} == amd64 || ${ARCH} == i386) LIB_DEPENDS+= libunwind.so:devel/libunwind .endif -.if (${ARCH} == "powerpc64" || ${ARCH} == "powerpc") +.if (${ARCH} == powerpc || ${ARCH} == powerpc64) USE_GCC= yes .endif -.if ${ARCH} == "armv6" || ${ARCH} == "armv6hf" +.if ${ARCH} == armv6 || ${ARCH} == armv7 CONFIGURE_ARGS+=--with-setjmp-type=_setjmp CONFIGURE_ENV+= ac_cv_func__setjmp=yes .endif