Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Apr 2017 12:57:06 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r437623 - in head/lang/ruby22: . files
Message-ID:  <201704031257.v33Cv6CX081524@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Mon Apr  3 12:57:06 2017
New Revision: 437623
URL: https://svnweb.freebsd.org/changeset/ports/437623

Log:
  Pet portlint

Modified:
  head/lang/ruby22/Makefile
  head/lang/ruby22/files/patch-eval.c
  head/lang/ruby22/files/patch-eval_error.c
  head/lang/ruby22/files/patch-ext_readline_extconf.rb
  head/lang/ruby22/files/patch-thread.c
  head/lang/ruby22/files/patch-vm_eval.c
  head/lang/ruby22/files/patch-vm_trace.c

Modified: head/lang/ruby22/Makefile
==============================================================================
--- head/lang/ruby22/Makefile	Mon Apr  3 12:28:59 2017	(r437622)
+++ head/lang/ruby22/Makefile	Mon Apr  3 12:57:06 2017	(r437623)
@@ -11,15 +11,13 @@ DISTNAME=	${RUBY_DISTNAME}
 DIST_SUBDIR=	ruby
 
 MAINTAINER=	ruby@FreeBSD.org
-COMMENT?=	Object-oriented interpreted scripting language
+COMMENT=	Object-oriented interpreted scripting language
 
 LICENSE=	BSD2CLAUSE RUBY
 LICENSE_COMB=	dual
 LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL
 LICENSE_FILE_RUBY=	${WRKSRC}/COPYING
 
-MAKE_JOBS_UNSAFE=	yes
-
 # Using LIB_DEPENDS finds the libffi from gcc which causes problems
 BUILD_DEPENDS=	libffi>=0:devel/libffi
 LIB_DEPENDS=	libyaml.so:textproc/libyaml
@@ -37,6 +35,7 @@ CPPFLAGS+=	-I${LOCALBASE}/include
 GNU_CONFIGURE=	yes
 # Keep this, else ruby will fail to load libraries dependent of libpthread.
 LIBS+=		-lpthread -L${LOCALBASE}/lib
+MAKE_JOBS_UNSAFE=	yes
 USE_LDCONFIG=	yes
 USES=		autoreconf cpe execinfo tar:xz ssl
 WRKSRC=		${RUBY_WRKSRC}

Modified: head/lang/ruby22/files/patch-eval.c
==============================================================================
--- head/lang/ruby22/files/patch-eval.c	Mon Apr  3 12:28:59 2017	(r437622)
+++ head/lang/ruby22/files/patch-eval.c	Mon Apr  3 12:57:06 2017	(r437623)
@@ -1,6 +1,6 @@
---- eval.c.orig	2014-12-09 02:16:27.000000000 +0100
-+++ eval.c	2016-01-10 19:10:59.326340000 +0100
-@@ -797,7 +797,7 @@ rb_rescue2(VALUE (* b_proc) (ANYARGS), V
+--- eval.c.orig	2016-11-14 18:37:39 UTC
++++ eval.c
+@@ -814,7 +814,7 @@ rb_rescue2(VALUE (* b_proc) (ANYARGS), V
  {
      int state;
      rb_thread_t *th = GET_THREAD();
@@ -9,7 +9,7 @@
      volatile VALUE result = Qfalse;
      volatile VALUE e_info = th->errinfo;
      va_list args;
-@@ -863,7 +863,7 @@ rb_protect(VALUE (* proc) (VALUE), VALUE
+@@ -880,7 +880,7 @@ rb_protect(VALUE (* proc) (VALUE), VALUE
      volatile VALUE result = Qnil;
      volatile int status;
      rb_thread_t *th = GET_THREAD();

Modified: head/lang/ruby22/files/patch-eval_error.c
==============================================================================
--- head/lang/ruby22/files/patch-eval_error.c	Mon Apr  3 12:28:59 2017	(r437622)
+++ head/lang/ruby22/files/patch-eval_error.c	Mon Apr  3 12:57:06 2017	(r437623)
@@ -1,6 +1,6 @@
---- eval_error.c.orig	2015-01-17 08:47:29.000000000 +0100
-+++ eval_error.c	2016-01-10 19:11:10.416384000 +0100
-@@ -80,9 +80,9 @@ static void
+--- eval_error.c.orig	2016-11-14 18:37:39 UTC
++++ eval_error.c
+@@ -63,9 +63,9 @@ static void
  error_print(void)
  {
      volatile VALUE errat = Qundef;

Modified: head/lang/ruby22/files/patch-ext_readline_extconf.rb
==============================================================================
--- head/lang/ruby22/files/patch-ext_readline_extconf.rb	Mon Apr  3 12:28:59 2017	(r437622)
+++ head/lang/ruby22/files/patch-ext_readline_extconf.rb	Mon Apr  3 12:57:06 2017	(r437623)
@@ -1,6 +1,6 @@
---- ext/readline/extconf.rb.orig	2014-05-01 11:59:37.000000000 +0000
-+++ ext/readline/extconf.rb	2015-10-23 04:05:44.000000000 +0000
-@@ -62,7 +63,7 @@ else
+--- ext/readline/extconf.rb.orig	2015-12-01 18:28:54 UTC
++++ ext/readline/extconf.rb
+@@ -63,7 +63,7 @@ else
  end
  
  readline.have_func("rl_getc")

Modified: head/lang/ruby22/files/patch-thread.c
==============================================================================
--- head/lang/ruby22/files/patch-thread.c	Mon Apr  3 12:28:59 2017	(r437622)
+++ head/lang/ruby22/files/patch-thread.c	Mon Apr  3 12:57:06 2017	(r437623)
@@ -1,5 +1,5 @@
---- thread.c.orig	2015-02-20 14:53:23.000000000 +0100
-+++ thread.c	2016-01-10 19:11:32.423524000 +0100
+--- thread.c.orig	2016-11-11 22:33:21 UTC
++++ thread.c
 @@ -462,8 +462,8 @@ rb_threadptr_unlock_all_locking_mutexes(
  void
  rb_thread_terminate_all(void)

Modified: head/lang/ruby22/files/patch-vm_eval.c
==============================================================================
--- head/lang/ruby22/files/patch-vm_eval.c	Mon Apr  3 12:28:59 2017	(r437622)
+++ head/lang/ruby22/files/patch-vm_eval.c	Mon Apr  3 12:57:06 2017	(r437623)
@@ -1,5 +1,5 @@
---- vm_eval.c.orig	2015-11-29 10:01:12.000000000 +0100
-+++ vm_eval.c	2016-01-10 19:11:40.066355000 +0100
+--- vm_eval.c.orig	2016-03-28 17:04:28 UTC
++++ vm_eval.c
 @@ -1111,7 +1111,7 @@ rb_iterate(VALUE (* it_proc) (VALUE), VA
      int state;
      volatile VALUE retval = Qnil;

Modified: head/lang/ruby22/files/patch-vm_trace.c
==============================================================================
--- head/lang/ruby22/files/patch-vm_trace.c	Mon Apr  3 12:28:59 2017	(r437622)
+++ head/lang/ruby22/files/patch-vm_trace.c	Mon Apr  3 12:57:06 2017	(r437623)
@@ -1,5 +1,5 @@
---- vm_trace.c.orig	2015-11-08 15:49:09.000000000 +0100
-+++ vm_trace.c	2016-01-10 19:11:46.862754000 +0100
+--- vm_trace.c.orig	2015-11-08 14:49:09 UTC
++++ vm_trace.c
 @@ -390,7 +390,7 @@ rb_suppress_tracing(VALUE (*func)(VALUE)
      volatile int raised;
      volatile int outer_state;



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