Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Feb 2020 17:50:23 +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: r525181 - in head/devel: . rubygem-thwait
Message-ID:  <202002041750.014HoNpU086336@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Tue Feb  4 17:50:23 2020
New Revision: 525181
URL: https://svnweb.freebsd.org/changeset/ports/525181

Log:
  Add rubygem-thwait 0.1.0
  
  ThreadsWait watches for termination of multiple threads. Basic functionality
  (wait until specified threads have terminated) can be accessed through the class
  method ThreadsWait::all_waits. Finer control can be gained using instance
  methods.
  
  WWW: https://github.com/ruby/thwait

Added:
  head/devel/rubygem-thwait/
  head/devel/rubygem-thwait/Makefile   (contents, props changed)
  head/devel/rubygem-thwait/distinfo   (contents, props changed)
  head/devel/rubygem-thwait/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Feb  4 17:50:17 2020	(r525180)
+++ head/devel/Makefile	Tue Feb  4 17:50:23 2020	(r525181)
@@ -6435,6 +6435,7 @@
     SUBDIR += rubygem-thread_safe
     SUBDIR += rubygem-thread_safe1
     SUBDIR += rubygem-thrift
+    SUBDIR += rubygem-thwait
     SUBDIR += rubygem-tilt
     SUBDIR += rubygem-tilt1
     SUBDIR += rubygem-timeliness

Added: head/devel/rubygem-thwait/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-thwait/Makefile	Tue Feb  4 17:50:23 2020	(r525181)
@@ -0,0 +1,20 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	thwait
+PORTVERSION=	0.1.0
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Watches for termination of multiple threads
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+USES=		gem
+USE_RUBY=	yes
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/rubygem-thwait/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-thwait/distinfo	Tue Feb  4 17:50:23 2020	(r525181)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1580830437
+SHA256 (rubygem/thwait-0.1.0.gem) = 7a852a6db387afb7209012f9e14b9bbdd7d81d1d707b5f5f2de5f899e8e0638b
+SIZE (rubygem/thwait-0.1.0.gem) = 7680

Added: head/devel/rubygem-thwait/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-thwait/pkg-descr	Tue Feb  4 17:50:23 2020	(r525181)
@@ -0,0 +1,6 @@
+ThreadsWait watches for termination of multiple threads. Basic functionality
+(wait until specified threads have terminated) can be accessed through the class
+method ThreadsWait::all_waits. Finer control can be gained using instance
+methods.
+
+WWW: https://github.com/ruby/thwait



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