diff options
author | 2002-10-27 01:11:08 +0000 | |
---|---|---|
committer | 2002-10-27 01:11:08 +0000 | |
commit | ab997173ecca08e1bbd39da944dcdab1246181c3 (patch) | |
tree | 9b1e08c57722e272e06051034c774f287d08ee02 /dev-ruby | |
parent | Security update (diff) | |
download | historical-ab997173ecca08e1bbd39da944dcdab1246181c3.tar.gz historical-ab997173ecca08e1bbd39da944dcdab1246181c3.tar.bz2 historical-ab997173ecca08e1bbd39da944dcdab1246181c3.zip |
new version; added docs
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/optparse/ChangeLog | 17 | ||||
-rw-r--r-- | dev-ruby/optparse/files/digest-optparse-0.10.1 | 1 | ||||
-rw-r--r-- | dev-ruby/optparse/optparse-0.10.1.ebuild | 25 |
3 files changed, 34 insertions, 9 deletions
diff --git a/dev-ruby/optparse/ChangeLog b/dev-ruby/optparse/ChangeLog index 9f1d8853841d..a556fbcdded4 100644 --- a/dev-ruby/optparse/ChangeLog +++ b/dev-ruby/optparse/ChangeLog @@ -1,16 +1,15 @@ # ChangeLog for dev-ruby/optparse # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/optparse/ChangeLog,v 1.2 2002/07/08 02:55:59 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/optparse/ChangeLog,v 1.3 2002/10/27 01:11:08 george Exp $ -*optparse-0.7.5 (1 Feb 2002) +*optparse-0.10.1 (26 Oct 2002) + + 26 Oct 2002; George Shapovalov <george@gentoo.org> optparse-0.10.1.ebuild : - 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : - - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. + new version, thanks to Rigo Ketelings <rigo@home.nl> for submission + also added installation of docs + +*optparse-0.7.5 (1 Feb 2002) 07 Jul 2002; Aron Griffis <agriffis@gentoo.org> optparse-0.7.5.ebuild: diff --git a/dev-ruby/optparse/files/digest-optparse-0.10.1 b/dev-ruby/optparse/files/digest-optparse-0.10.1 new file mode 100644 index 000000000000..746d76acc051 --- /dev/null +++ b/dev-ruby/optparse/files/digest-optparse-0.10.1 @@ -0,0 +1 @@ +MD5 a6a828d409fe7b5069bd5621e50b5b01 optparse-0.10.1.tar.gz 76219 diff --git a/dev-ruby/optparse/optparse-0.10.1.ebuild b/dev-ruby/optparse/optparse-0.10.1.ebuild new file mode 100644 index 000000000000..e13405178be7 --- /dev/null +++ b/dev-ruby/optparse/optparse-0.10.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/optparse/optparse-0.10.1.ebuild,v 1.1 2002/10/27 01:11:08 george Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Yet another option parser for Ruby" +SRC_URI=" http://member.nifty.ne.jp/nokada/archive/${P}.tar.gz" +HOMEPAGE=" http://member.nifty.ne.jp/nokada/ruby.html" +LICENSE="Ruby" +KEYWORDS="~x86" +SLOT="0" + +DEPEND=">=dev-lang/ruby-1.6.1" + +src_install () { + insinto /usr/lib/ruby/site_ruby/1.6 + doins optparse.rb + + insinto /usr/lib/ruby/site_ruby/1.6/optparse + doins optparse/* + + #docs + dodoc ChangeLog README.en + dohtml *.html +} |