A Ruby wrapper which uses posix_spawnp(2) for faster process spawning

WWW:	https://github.com/rtomayko/posix-spawn
This commit is contained in:
Steve Wills 2011-10-29 13:55:23 +00:00
parent 25bd2abf68
commit ed769001eb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=284647
4 changed files with 32 additions and 0 deletions

View file

@ -3452,6 +3452,7 @@
SUBDIR += rubygem-platform
SUBDIR += rubygem-polyglot
SUBDIR += rubygem-popen4
SUBDIR += rubygem-posix-spawn
SUBDIR += rubygem-ptreloaded
SUBDIR += rubygem-railsless-deploy
SUBDIR += rubygem-rake

View file

@ -0,0 +1,26 @@
# New ports collection makefile for: rubygem-posix-spawn
# Date created: 2011-10-29
# Whom: Steve Wills <swills@rubick>
#
# $FreeBSD$
#
PORTNAME= posix-spawn
PORTVERSION= 0.3.6
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= ruby@FreeBSD.org
COMMENT= Ruby wrapper for posix_spawnp(2) for faster process spawning
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
PLIST_FILES= bin/posix-spawn-benchmark
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 800000
IGNORE= missing posix_spawnp
.endif
.include <bsd.port.post.mk>

View file

@ -0,0 +1,2 @@
SHA256 (rubygem/posix-spawn-0.3.6.gem) = 83aced0908f18b3ea8734191dcf2b2984f55378c8b231e4bf99e0880d4c45538
SIZE (rubygem/posix-spawn-0.3.6.gem) = 25600

View file

@ -0,0 +1,3 @@
A Ruby wrapper which uses posix_spawnp(2) for faster process spawning
WWW: https://github.com/rtomayko/posix-spawn