From 681e4ce6e249ce7e33e406230afca0b84fe9bb81 Mon Sep 17 00:00:00 2001 From: knu Date: Tue, 22 Aug 2000 10:31:09 +0000 Subject: Add ruby-runit, Ruby implementation of Kent Beck's Testing Framework. (cf. eXtreme Programming ("XP")) --- devel/ruby-runit/Makefile | 59 +++++++++++++++++++++++++++++++++++ devel/ruby-runit/distinfo | 1 + devel/ruby-runit/pkg-comment | 1 + devel/ruby-runit/pkg-descr | 8 +++++ devel/ruby-runit/pkg-plist | 74 ++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 143 insertions(+) create mode 100644 devel/ruby-runit/Makefile create mode 100644 devel/ruby-runit/distinfo create mode 100644 devel/ruby-runit/pkg-comment create mode 100644 devel/ruby-runit/pkg-descr create mode 100644 devel/ruby-runit/pkg-plist (limited to 'devel/ruby-runit') diff --git a/devel/ruby-runit/Makefile b/devel/ruby-runit/Makefile new file mode 100644 index 000000000000..8726c1fe649d --- /dev/null +++ b/devel/ruby-runit/Makefile @@ -0,0 +1,59 @@ +# New ports collection makefile for: RubyUnit +# Date created: 22 Aug 2000 +# Whom: Akinori MUSHA aka knu +# +# $FreeBSD$ +# + +PORTNAME= runit +PORTVERSION= 0.2.3 +CATEGORIES= devel ruby +MASTER_SITES= http://homepage1.nifty.com/markey/ruby/rubyunit/ +PKGNAMEPREFIX= ruby- +DISTNAME= ${PORTNAME:S/^r/ruby/}-${PORTVERSION} +DIST_SUBDIR= ruby + +MAINTAINER= knu@FreeBSD.org + +BUILD_DEPENDS= ruby:${PORTSDIR}/lang/ruby +RUN_DEPENDS= ruby:${PORTSDIR}/lang/ruby + +.if !defined(NOPORTDOCS) +BUILD_DEPENDS+= rd2:${PORTSDIR}/textproc/ruby-rdtool +.endif + +PLIST_SUB= RUBY_VER="${RUBY_VER}" RUBY_ARCH="${RUBY_ARCH}" + +RUBY?= ${LOCALBASE}/bin/ruby +RUBY_VER?= 1.4 +RUBY_ARCH?= ${ARCH}-freebsd${OSREL} + +RUBY_SITELIBDIR?= ${LOCALBASE}/lib/ruby/site_ruby/${RUBY_VER} +RUBY_SITEARCHLIBDIR?= ${LOCALBASE}/lib/ruby/site_ruby/${RUBY_VER}/${RUBY_ARCH} + +BINS= c2t runtest +DOCS= HISTORY README ToDo + +do-build: +.if !defined(NOPORTDOCS) + @cd ${WRKSRC}; \ + ${SETENV} ${MAKE_ENV} ${RUBY} makehtml.rb +.endif + +do-install: + @cd ${WRKSRC}; \ + ${SETENV} ${MAKE_ENV} ${RUBY} install.rb +.for f in ${BINS} + ${LN} -sf ${f}.rb ${PREFIX}/bin/${f} +.endfor +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/examples/ruby/runit + ${CP} -R ${WRKSRC}/sample/ ${PREFIX}/share/examples/ruby/runit/ + ${MKDIR} ${PREFIX}/share/doc/ruby/runit +.for f in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/ruby/runit/ +.endfor + ${CP} -R ${WRKSRC}/doc_en/ ${PREFIX}/share/doc/ruby/runit/ +.endif + +.include diff --git a/devel/ruby-runit/distinfo b/devel/ruby-runit/distinfo new file mode 100644 index 000000000000..29f28a178065 --- /dev/null +++ b/devel/ruby-runit/distinfo @@ -0,0 +1 @@ +MD5 (ruby/rubyunit-0.2.3.tar.gz) = 2964a15d17d292cadbf4bf22deeb6277 diff --git a/devel/ruby-runit/pkg-comment b/devel/ruby-runit/pkg-comment new file mode 100644 index 000000000000..c921566e369f --- /dev/null +++ b/devel/ruby-runit/pkg-comment @@ -0,0 +1 @@ +Ruby implementation of Kent Beck's Testing Framework (cf. eXtreme Programming) diff --git a/devel/ruby-runit/pkg-descr b/devel/ruby-runit/pkg-descr new file mode 100644 index 000000000000..d2a00d7d095b --- /dev/null +++ b/devel/ruby-runit/pkg-descr @@ -0,0 +1,8 @@ +RubyUnit is Ruby implementation of Kent Beck's Testing Framework, +which is known as the part of "eXtreme Programming" (XP). + +For details of XP, see http://www.xprogramming.com/. + + +Author: Masaki Suketa +WWW: http://homepage1.nifty.com/markey/ruby/rubyunit/rubyunit_e.html diff --git a/devel/ruby-runit/pkg-plist b/devel/ruby-runit/pkg-plist new file mode 100644 index 000000000000..d4a00fdbf585 --- /dev/null +++ b/devel/ruby-runit/pkg-plist @@ -0,0 +1,74 @@ +bin/c2t +bin/c2t.rb +bin/runtest +bin/runtest.rb +lib/ruby/site_ruby/%%RUBY_VER%%/runit/assert.rb +lib/ruby/site_ruby/%%RUBY_VER%%/runit/error.rb +lib/ruby/site_ruby/%%RUBY_VER%%/runit/cui/testrunner.rb +lib/ruby/site_ruby/%%RUBY_VER%%/runit/ext/repeatedtest.rb +lib/ruby/site_ruby/%%RUBY_VER%%/runit/ext/testdecorator.rb +lib/ruby/site_ruby/%%RUBY_VER%%/runit/ext/testsetup.rb +lib/ruby/site_ruby/%%RUBY_VER%%/runit/robserver.rb +lib/ruby/site_ruby/%%RUBY_VER%%/runit/testfailure.rb +lib/ruby/site_ruby/%%RUBY_VER%%/runit/test.rb +lib/ruby/site_ruby/%%RUBY_VER%%/runit/testcase.rb +lib/ruby/site_ruby/%%RUBY_VER%%/runit/testresult.rb +lib/ruby/site_ruby/%%RUBY_VER%%/runit/testsuite.rb +lib/ruby/site_ruby/%%RUBY_VER%%/runit/topublic.rb +lib/ruby/site_ruby/%%RUBY_VER%%/runit/version.rb +@dirrm lib/ruby/site_ruby/%%RUBY_VER%%/runit/cui +@dirrm lib/ruby/site_ruby/%%RUBY_VER%%/runit/ext +@dirrm lib/ruby/site_ruby/%%RUBY_VER%%/runit +share/examples/ruby/runit/howtouse.html +share/examples/ruby/runit/simpletest.rb +share/examples/ruby/runit/testall.rb +share/examples/ruby/runit/testarray.rb +share/examples/ruby/runit/testrepeatedtest.rb +share/examples/ruby/runit/testtestsetup.rb +@dirrm share/examples/ruby/runit +share/doc/ruby/runit/HISTORY +share/doc/ruby/runit/README +share/doc/ruby/runit/ToDo +share/doc/ruby/runit/assert.html +share/doc/ruby/runit/assert.rd +share/doc/ruby/runit/assert.rmi +share/doc/ruby/runit/cui/testrunner.html +share/doc/ruby/runit/cui/testrunner.rd +share/doc/ruby/runit/cui/testrunner.rmi +share/doc/ruby/runit/error.html +share/doc/ruby/runit/error.rd +share/doc/ruby/runit/error.rmi +share/doc/ruby/runit/ext/repeatedtest.html +share/doc/ruby/runit/ext/repeatedtest.rd +share/doc/ruby/runit/ext/repeatedtest.rmi +share/doc/ruby/runit/ext/testdecorator.html +share/doc/ruby/runit/ext/testdecorator.rd +share/doc/ruby/runit/ext/testdecorator.rmi +share/doc/ruby/runit/ext/testsetup.html +share/doc/ruby/runit/ext/testsetup.rd +share/doc/ruby/runit/ext/testsetup.rmi +share/doc/ruby/runit/index.html +share/doc/ruby/runit/robserver.html +share/doc/ruby/runit/robserver.rd +share/doc/ruby/runit/robserver.rmi +share/doc/ruby/runit/test.html +share/doc/ruby/runit/test.rd +share/doc/ruby/runit/test.rmi +share/doc/ruby/runit/testcase.html +share/doc/ruby/runit/testcase.rd +share/doc/ruby/runit/testcase.rmi +share/doc/ruby/runit/testfailure.html +share/doc/ruby/runit/testfailure.rd +share/doc/ruby/runit/testfailure.rmi +share/doc/ruby/runit/testresult.html +share/doc/ruby/runit/testresult.rd +share/doc/ruby/runit/testresult.rmi +share/doc/ruby/runit/testsuite.html +share/doc/ruby/runit/testsuite.rd +share/doc/ruby/runit/testsuite.rmi +share/doc/ruby/runit/version.html +share/doc/ruby/runit/version.rd +share/doc/ruby/runit/version.rmi +@dirrm share/doc/ruby/runit/cui +@dirrm share/doc/ruby/runit/ext +@dirrm share/doc/ruby/runit -- cgit value='committer'>committer
Commit message (Expand)AuthorAgeFilesLines
* Update to 1.43.07mat2006-04-112-4/+4
* Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryedwin2006-01-221-2/+2
* Update to 1.43.05mat2005-12-232-6/+9
* Be hipe and add SHA256mat2005-11-141-0/+1
* Add SIZE fieldmat2004-01-291-0/+1
* Update my ports to use my @FreeBSD.org addressmat2003-08-161-1/+1
* update graphics/p5-GD-Graph: 1.41 --> 1.43daichi2003-07-023-6/+6
* Update to 1.41foxfair2003-06-223-22/+21
* de-pkg-commentknu2003-02-212-1/+1
* o Rollback PORTCOMMENT modifications while this feature's implementationlioux2002-11-112-2/+1
* Use PORTCOMMENT in the Makefile, and whack the pkg-comment.adamw2002-11-072-1/+2
* Fix dependencies so the port actually builds correctly.ade2002-08-311-1/+3
* Update to 1.35demon2002-06-243-4/+6
* Remove do-configure section, use PERL_CONFIGURE now.vanilla2001-03-011-4/+1
* Change MAINTAINER field.demon2000-11-131-1/+1
* Upgrade to 1.33.vanilla2000-11-12