Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Oct 2020 18:25:13 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r552141 - in head: Mk lang/ruby25 lang/ruby26 lang/ruby27 lang/ruby30
Message-ID:  <202010121825.09CIPDwJ056578@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Mon Oct 12 18:25:13 2020
New Revision: 552141
URL: https://svnweb.freebsd.org/changeset/ports/552141

Log:
  Add libunwind for aarch64, powerpc64 and powerpc64le.

Modified:
  head/Mk/bsd.ruby.mk
  head/lang/ruby25/Makefile
  head/lang/ruby26/Makefile
  head/lang/ruby27/Makefile
  head/lang/ruby30/Makefile

Modified: head/Mk/bsd.ruby.mk
==============================================================================
--- head/Mk/bsd.ruby.mk	Mon Oct 12 17:40:50 2020	(r552140)
+++ head/Mk/bsd.ruby.mk	Mon Oct 12 18:25:13 2020	(r552141)
@@ -149,7 +149,7 @@ RUBY?=			${LOCALBASE}/bin/${RUBY_NAME}
 # Ruby 2.5
 #
 RUBY_VERSION=		2.5.8
-RUBY_PORTREVISION=	1
+RUBY_PORTREVISION=	2
 RUBY_PORTEPOCH=		1
 RUBY25=			""	# PLIST_SUB helpers
 
@@ -158,7 +158,7 @@ RUBY25=			""	# PLIST_SUB helpers
 # Ruby 2.6
 #
 RUBY_VERSION=		2.6.6
-RUBY_PORTREVISION=	1
+RUBY_PORTREVISION=	2
 RUBY_PORTEPOCH=		1
 RUBY26=			""	# PLIST_SUB helpers
 
@@ -167,7 +167,7 @@ RUBY26=			""	# PLIST_SUB helpers
 # Ruby 2.7
 #
 RUBY_VERSION=		2.7.2
-RUBY_PORTREVISION=	0
+RUBY_PORTREVISION=	1
 RUBY_PORTEPOCH=		1
 RUBY27=			""	# PLIST_SUB helpers
 
@@ -176,7 +176,7 @@ RUBY27=			""	# PLIST_SUB helpers
 # Ruby 3.0
 #
 RUBY_DISTVERSION=	3.0.0-preview1
-RUBY_PORTREVISION=	0
+RUBY_PORTREVISION=	1
 RUBY_PORTEPOCH=		1
 RUBY30=			""	# PLIST_SUB helpers
 

Modified: head/lang/ruby25/Makefile
==============================================================================
--- head/lang/ruby25/Makefile	Mon Oct 12 17:40:50 2020	(r552140)
+++ head/lang/ruby25/Makefile	Mon Oct 12 18:25:13 2020	(r552141)
@@ -93,7 +93,7 @@ CONFIGURE_ARGS+=--disable-dtrace
 .endif
 
 # keep in sync with all platforms where libunwind is available
-.if (${ARCH} == amd64 || ${ARCH} == i386)
+.if (${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH:Mpowerpc64*})
 LIB_DEPENDS+=	libunwind.so:devel/libunwind
 .endif
 

Modified: head/lang/ruby26/Makefile
==============================================================================
--- head/lang/ruby26/Makefile	Mon Oct 12 17:40:50 2020	(r552140)
+++ head/lang/ruby26/Makefile	Mon Oct 12 18:25:13 2020	(r552141)
@@ -94,7 +94,7 @@ CONFIGURE_ARGS+=--disable-dtrace
 .endif
 
 # keep in sync with all platforms where libunwind is available
-.if (${ARCH} == amd64 || ${ARCH} == i386)
+.if (${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH:Mpowerpc64*})
 LIB_DEPENDS+=	libunwind.so:devel/libunwind
 .endif
 

Modified: head/lang/ruby27/Makefile
==============================================================================
--- head/lang/ruby27/Makefile	Mon Oct 12 17:40:50 2020	(r552140)
+++ head/lang/ruby27/Makefile	Mon Oct 12 18:25:13 2020	(r552141)
@@ -94,7 +94,7 @@ CONFIGURE_ARGS+=--disable-dtrace
 .endif
 
 # keep in sync with all platforms where libunwind is available
-.if (${ARCH} == amd64 || ${ARCH} == i386)
+.if (${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH:Mpowerpc64*})
 LIB_DEPENDS+=	libunwind.so:devel/libunwind
 .endif
 

Modified: head/lang/ruby30/Makefile
==============================================================================
--- head/lang/ruby30/Makefile	Mon Oct 12 17:40:50 2020	(r552140)
+++ head/lang/ruby30/Makefile	Mon Oct 12 18:25:13 2020	(r552141)
@@ -93,7 +93,7 @@ CONFIGURE_ARGS+=--disable-dtrace
 .endif
 
 # keep in sync with all platforms where libunwind is available
-.if (${ARCH} == amd64 || ${ARCH} == i386)
+.if (${ARCH} == arch64 || ${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH:Mpowerpc64*})
 LIB_DEPENDS+=	libunwind.so:devel/libunwind
 .endif
 



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