diff options
author | Hans de Graaff <graaff@gentoo.org> | 2011-02-12 08:37:43 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2011-02-12 08:37:43 +0000 |
commit | 1af4ae79123a8b2b45db1da74ff9d77f9441486c (patch) | |
tree | 2376e2fa547735247588c9c7bfec25127e0688b8 /dev-ruby/loquacious | |
parent | Version bump. (diff) | |
download | gentoo-2-1af4ae79123a8b2b45db1da74ff9d77f9441486c.tar.gz gentoo-2-1af4ae79123a8b2b45db1da74ff9d77f9441486c.tar.bz2 gentoo-2-1af4ae79123a8b2b45db1da74ff9d77f9441486c.zip |
Version bump.
(Portage version: 2.1.9.25/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/loquacious')
-rw-r--r-- | dev-ruby/loquacious/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/loquacious/loquacious-1.7.1.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/dev-ruby/loquacious/ChangeLog b/dev-ruby/loquacious/ChangeLog index 09764c0df41d..2dcf63704148 100644 --- a/dev-ruby/loquacious/ChangeLog +++ b/dev-ruby/loquacious/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/loquacious # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/loquacious/ChangeLog,v 1.8 2011/01/23 08:48:50 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/loquacious/ChangeLog,v 1.9 2011/02/12 08:37:43 graaff Exp $ + +*loquacious-1.7.1 (12 Feb 2011) + + 12 Feb 2011; Hans de Graaff <graaff@gentoo.org> +loquacious-1.7.1.ebuild: + Version bump. 23 Jan 2011; Hans de Graaff <graaff@gentoo.org> loquacious-1.7.0.ebuild: Add ree18. diff --git a/dev-ruby/loquacious/loquacious-1.7.1.ebuild b/dev-ruby/loquacious/loquacious-1.7.1.ebuild new file mode 100644 index 000000000000..46bf4939960d --- /dev/null +++ b/dev-ruby/loquacious/loquacious-1.7.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/loquacious/loquacious-1.7.1.ebuild,v 1.1 2011/02/12 08:37:43 graaff Exp $ + +EAPI=2 + +USE_RUBY="ruby18 ruby19 jruby ree18" + +RUBY_FAKEGME_DOCDIR="doc" + +RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc" + +inherit ruby-fakegem + +DESCRIPTION="Descriptive configuration files for Ruby written in Ruby" +HOMEPAGE="http://github.com/TwP/${PN}" + +IUSE="" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +ruby_add_bdepend "test? ( dev-ruby/rspec:0 )" + +all_ruby_compile() { + rdoc lib || die "Documentation generation failed." +} + +each_ruby_test() { + ${RUBY} -S spec spec || die "Tests failed." +} + +all_ruby_install() { + all_fakegem_install + + docinto examples + dodoc examples/* || die +} |