diff options
author | Aron Griffis <agriffis@gentoo.org> | 2002-07-08 01:57:47 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2002-07-08 01:57:47 +0000 |
commit | 19c6b5b000234bdf353123eaa34fed3c169e23af (patch) | |
tree | 02e89402e8f8d4eda0c57516df0ac3ff74bf2df0 /dev-ruby/ri | |
parent | Updated with LICENSE, KEYWORDS, SLOT. (diff) | |
download | gentoo-2-19c6b5b000234bdf353123eaa34fed3c169e23af.tar.gz gentoo-2-19c6b5b000234bdf353123eaa34fed3c169e23af.tar.bz2 gentoo-2-19c6b5b000234bdf353123eaa34fed3c169e23af.zip |
update to 0.8a and add LICENSE, KEYWORDS, SLOT.
Diffstat (limited to 'dev-ruby/ri')
-rw-r--r-- | dev-ruby/ri/ChangeLog | 27 | ||||
-rw-r--r-- | dev-ruby/ri/files/digest-ri-0.8a | 1 | ||||
-rw-r--r-- | dev-ruby/ri/ri-0.7a.ebuild | 7 | ||||
-rw-r--r-- | dev-ruby/ri/ri-0.8a.ebuild | 25 |
4 files changed, 50 insertions, 10 deletions
diff --git a/dev-ruby/ri/ChangeLog b/dev-ruby/ri/ChangeLog index f9ba35cd45b0..9ffb8189d4f8 100644 --- a/dev-ruby/ri/ChangeLog +++ b/dev-ruby/ri/ChangeLog @@ -1,13 +1,24 @@ # ChangeLog for dev-ruby/ri # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ri/ChangeLog,v 1.1 2002/02/01 21:53:28 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ri/ChangeLog,v 1.2 2002/07/08 01:57:47 agriffis Exp $ + +*ri-0.8a (07 Jul 2002) + + 07 Jul 2002; Aron Griffis <agriffis@gentoo.org> ri-0.8a.ebuild: + + Updated to 0.8a. *ri-0.7a (1 Feb 2002) - 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. + 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. + + 07 Jul 2002; Aron Griffis <agriffis@gentoo.org> ri-0.7a.ebuild: + + Added LICENSE, KEYWORDS, SLOT. diff --git a/dev-ruby/ri/files/digest-ri-0.8a b/dev-ruby/ri/files/digest-ri-0.8a new file mode 100644 index 000000000000..656bcbf9acfb --- /dev/null +++ b/dev-ruby/ri/files/digest-ri-0.8a @@ -0,0 +1 @@ +MD5 98f42fd2c43158d5e1359f3418b5ac91 ri-0.8a.tgz 121305 diff --git a/dev-ruby/ri/ri-0.7a.ebuild b/dev-ruby/ri/ri-0.7a.ebuild index f80b6af1a96a..ee0e75a76e62 100644 --- a/dev-ruby/ri/ri-0.7a.ebuild +++ b/dev-ruby/ri/ri-0.7a.ebuild @@ -2,12 +2,16 @@ # Distributed under the terms of the GNU General Public License, v2 or later # Author: Richard Lowe <richlowe@richlowe.net> # Maintainer: Tools Team <tools@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ri/ri-0.7a.ebuild,v 1.1 2002/02/01 13:34:36 karltk Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ri/ri-0.7a.ebuild,v 1.2 2002/07/08 01:57:47 agriffis Exp $ S="${WORKDIR}/ri" DESCRIPTION="Ruby Interactive reference" SRC_URI="http://www.pragmaticprogrammer.com/ruby/downloads/files/${P}.tgz" HOMEPAGE="http://www.pragmaticprogrammer.com/ruby/downloads/ri.html" +LICENSE="Ruby" +KEYWORDS="x86" +SLOT="0" + DEPEND=">=dev-lang/ruby-1.6.2" # Specified in ${HOMEPAGE} src_unpack () { @@ -16,7 +20,6 @@ src_unpack () { patch < ${FILESDIR}/${P}-gentoo.patch || die } - src_install () { dodoc COPYING ChangeLog README ruby install.rb diff --git a/dev-ruby/ri/ri-0.8a.ebuild b/dev-ruby/ri/ri-0.8a.ebuild new file mode 100644 index 000000000000..afed31a54b12 --- /dev/null +++ b/dev-ruby/ri/ri-0.8a.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author: Richard Lowe <richlowe@richlowe.net> +# Maintainer: Tools Team <tools@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ri/ri-0.8a.ebuild,v 1.1 2002/07/08 01:57:47 agriffis Exp $ + +S="${WORKDIR}/ri" +DESCRIPTION="Ruby Interactive reference" +SRC_URI="http://www.pragmaticprogrammer.com/ruby/downloads/files/${P}.tgz" +HOMEPAGE="http://www.pragmaticprogrammer.com/ruby/downloads/ri.html" +LICENSE="Ruby" +KEYWORDS="x86" +SLOT="0" + +DEPEND=">=dev-lang/ruby-1.6.2" # Specified in ${HOMEPAGE} + +src_unpack () { + unpack ${A} + cd ${S} +} + +src_install () { + dodoc COPYING ChangeLog README + DESTDIR=${D} ruby install.rb +} |