Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Apr 2017 12:57:12 +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: r437624 - in head/lang/ruby23: . files
Message-ID:  <201704031257.v33CvC9P081699@repo.freebsd.org>

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

Log:
  Pet portlint

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

Modified: head/lang/ruby23/Makefile
==============================================================================
--- head/lang/ruby23/Makefile	Mon Apr  3 12:57:06 2017	(r437623)
+++ head/lang/ruby23/Makefile	Mon Apr  3 12:57:12 2017	(r437624)
@@ -11,7 +11,7 @@ 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
@@ -74,7 +74,7 @@ CPE_UPDATE=	p${RUBY_PATCHLEVEL}
 .include <bsd.port.pre.mk>
 
 .if ${SSL_DEFAULT} == openssl-devel
-BROKEN=		Does not detect and buid the openssl*.rb bits.
+BROKEN=		does not detect and buid the openssl*.rb bits.
 .endif
 
 # PORTREVISION/PORTEPOCH hack

Modified: head/lang/ruby23/files/patch-eval.c
==============================================================================
--- head/lang/ruby23/files/patch-eval.c	Mon Apr  3 12:57:06 2017	(r437623)
+++ head/lang/ruby23/files/patch-eval.c	Mon Apr  3 12:57:12 2017	(r437624)
@@ -1,6 +1,6 @@
---- eval.c.orig	2015-11-20 01:17:25.000000000 +0100
-+++ eval.c	2016-01-10 19:24:26.101707000 +0100
-@@ -788,7 +788,7 @@ rb_rescue2(VALUE (* b_proc) (ANYARGS), V
+--- eval.c.orig	2016-11-14 17:36:10 UTC
++++ eval.c
+@@ -804,7 +804,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;
-@@ -854,7 +854,7 @@ rb_protect(VALUE (* proc) (VALUE), VALUE
+@@ -870,7 +870,7 @@ rb_protect(VALUE (* proc) (VALUE), VALUE
      volatile VALUE result = Qnil;
      volatile int status;
      rb_thread_t *th = GET_THREAD();

Modified: head/lang/ruby23/files/patch-eval_error.c
==============================================================================
--- head/lang/ruby23/files/patch-eval_error.c	Mon Apr  3 12:57:06 2017	(r437623)
+++ head/lang/ruby23/files/patch-eval_error.c	Mon Apr  3 12:57:12 2017	(r437624)
@@ -1,6 +1,6 @@
---- eval_error.c.orig	2015-10-31 02:22:51.000000000 +0100
-+++ eval_error.c	2016-01-10 19:24:26.104099000 +0100
-@@ -80,9 +80,9 @@ static void
+--- eval_error.c.orig	2016-11-14 17:36:10 UTC
++++ eval_error.c
+@@ -63,9 +63,9 @@ static void
  error_print(void)
  {
      volatile VALUE errat = Qundef;

Modified: head/lang/ruby23/files/patch-thread.c
==============================================================================
--- head/lang/ruby23/files/patch-thread.c	Mon Apr  3 12:57:06 2017	(r437623)
+++ head/lang/ruby23/files/patch-thread.c	Mon Apr  3 12:57:12 2017	(r437624)
@@ -1,5 +1,5 @@
---- thread.c.orig	2015-12-09 01:38:32.000000000 +0100
-+++ thread.c	2016-01-10 19:24:26.106834000 +0100
+--- thread.c.orig	2016-11-05 02:44:06 UTC
++++ thread.c
 @@ -466,8 +466,8 @@ rb_threadptr_unlock_all_locking_mutexes(
  void
  rb_thread_terminate_all(void)

Modified: head/lang/ruby23/files/patch-vm_eval.c
==============================================================================
--- head/lang/ruby23/files/patch-vm_eval.c	Mon Apr  3 12:57:06 2017	(r437623)
+++ head/lang/ruby23/files/patch-vm_eval.c	Mon Apr  3 12:57:12 2017	(r437624)
@@ -1,6 +1,6 @@
---- vm_eval.c.orig	2015-12-12 10:51:30.000000000 +0100
-+++ vm_eval.c	2016-01-10 19:24:26.109468000 +0100
-@@ -1267,7 +1267,7 @@ eval_string_with_cref(VALUE self, VALUE 
+--- vm_eval.c.orig	2016-11-16 14:41:20 UTC
++++ vm_eval.c
+@@ -1272,7 +1272,7 @@ eval_string_with_cref(VALUE self, VALUE 
      int state;
      VALUE result = Qundef;
      VALUE envval;
@@ -9,7 +9,7 @@
      rb_env_t *env = NULL;
      rb_block_t block, *base_block;
      volatile int parse_in_eval;
-@@ -2001,8 +2001,8 @@ rb_catch_protect(VALUE t, rb_block_call_
+@@ -2006,8 +2006,8 @@ rb_catch_protect(VALUE t, rb_block_call_
  {
      int state;
      volatile VALUE val = Qnil;		/* OK */

Modified: head/lang/ruby23/files/patch-vm_trace.c
==============================================================================
--- head/lang/ruby23/files/patch-vm_trace.c	Mon Apr  3 12:57:06 2017	(r437623)
+++ head/lang/ruby23/files/patch-vm_trace.c	Mon Apr  3 12:57:12 2017	(r437624)
@@ -1,5 +1,5 @@
---- vm_trace.c.orig	2015-12-14 03:52:14.000000000 +0100
-+++ vm_trace.c	2016-01-10 19:24:26.111975000 +0100
+--- vm_trace.c.orig	2015-12-14 02:52:14 UTC
++++ vm_trace.c
 @@ -389,7 +389,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.v33CvC9P081699>