diff options
author | 2009-07-14 17:54:26 +0000 | |
---|---|---|
committer | 2009-07-14 17:54:26 +0000 | |
commit | 0bf1ca45f14f6715655da6c059170e531193eb97 (patch) | |
tree | e892d3fa2fd9eae67a0653bdd45ec8ef00acf69c /dev-ruby/amatch | |
parent | Remove ruby19 keyword. (diff) | |
download | gentoo-2-0bf1ca45f14f6715655da6c059170e531193eb97.tar.gz gentoo-2-0bf1ca45f14f6715655da6c059170e531193eb97.tar.bz2 gentoo-2-0bf1ca45f14f6715655da6c059170e531193eb97.zip |
Version bump. Remove ruby19 keyword.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/amatch')
-rw-r--r-- | dev-ruby/amatch/ChangeLog | 9 | ||||
-rw-r--r-- | dev-ruby/amatch/amatch-0.2.1.ebuild | 4 | ||||
-rw-r--r-- | dev-ruby/amatch/amatch-0.2.3.ebuild | 29 |
3 files changed, 39 insertions, 3 deletions
diff --git a/dev-ruby/amatch/ChangeLog b/dev-ruby/amatch/ChangeLog index e16b19e31432..39d27543568c 100644 --- a/dev-ruby/amatch/ChangeLog +++ b/dev-ruby/amatch/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-ruby/amatch # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amatch/ChangeLog,v 1.9 2009/06/13 09:22:07 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amatch/ChangeLog,v 1.10 2009/07/14 17:54:26 graaff Exp $ + +*amatch-0.2.3 (14 Jul 2009) + + 14 Jul 2009; Hans de Graaff <graaff@gentoo.org> amatch-0.2.1.ebuild, + +amatch-0.2.3.ebuild: + Version bump to latest upstream version. Remove ruby19 keyword: not + compatible. See bug 276819, thanks to Kevin Fullerton for reporting. 13 Jun 2009; Hans de Graaff <graaff@gentoo.org> amatch-0.2.1.ebuild: Fix quoting. diff --git a/dev-ruby/amatch/amatch-0.2.1.ebuild b/dev-ruby/amatch/amatch-0.2.1.ebuild index 19ef2882dee0..f8a1314fd8d6 100644 --- a/dev-ruby/amatch/amatch-0.2.1.ebuild +++ b/dev-ruby/amatch/amatch-0.2.1.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amatch/amatch-0.2.1.ebuild,v 1.10 2009/06/13 09:22:07 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amatch/amatch-0.2.1.ebuild,v 1.11 2009/07/14 17:54:26 graaff Exp $ inherit ruby -USE_RUBY="ruby18 ruby19" +USE_RUBY="ruby18" DESCRIPTION="A template library for ruby like amrita" HOMEPAGE="http://amatch.rubyforge.org" diff --git a/dev-ruby/amatch/amatch-0.2.3.ebuild b/dev-ruby/amatch/amatch-0.2.3.ebuild new file mode 100644 index 000000000000..1fc07ed1cbb9 --- /dev/null +++ b/dev-ruby/amatch/amatch-0.2.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amatch/amatch-0.2.3.ebuild,v 1.1 2009/07/14 17:54:26 graaff Exp $ + +inherit ruby + +USE_RUBY="ruby18" + +DESCRIPTION="A template library for ruby like amrita" +HOMEPAGE="http://amatch.rubyforge.org" +SRC_URI="mirror://rubyforge/${PN}/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86" +IUSE="" + +DEPEND="virtual/ruby" + +src_compile() { + ruby install.rb config || die 'install.rb config failed' + ruby install.rb setup || die 'install.rb setup failed' +} + +src_install() { + ruby install.rb config --prefix="${D}"/usr || die 'install.rb config failed' + ruby install.rb install || die 'install.rb install failed' + dodoc README.en +} |