diff options
author | Hans de Graaff <graaff@gentoo.org> | 2010-04-24 07:54:19 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2010-04-24 07:54:19 +0000 |
commit | ed818921a8e14b5ec348df5c4c4a7b3e783d5edb (patch) | |
tree | 47908b388a8170e93faa5cbcc2815e4e921babb7 /dev-ruby/hoe | |
parent | Remove old versions. (diff) | |
download | gentoo-2-ed818921a8e14b5ec348df5c4c4a7b3e783d5edb.tar.gz gentoo-2-ed818921a8e14b5ec348df5c4c4a7b3e783d5edb.tar.bz2 gentoo-2-ed818921a8e14b5ec348df5c4c4a7b3e783d5edb.zip |
Version bump. Minor enhancements and bug fixes.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/hoe')
-rw-r--r-- | dev-ruby/hoe/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/hoe/hoe-2.6.0.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/dev-ruby/hoe/ChangeLog b/dev-ruby/hoe/ChangeLog index 6e92fd3aa82e..6f43f5feca6b 100644 --- a/dev-ruby/hoe/ChangeLog +++ b/dev-ruby/hoe/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/hoe # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hoe/ChangeLog,v 1.72 2010/02/16 07:49:35 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hoe/ChangeLog,v 1.73 2010/04/24 07:54:19 graaff Exp $ + +*hoe-2.6.0 (24 Apr 2010) + + 24 Apr 2010; Hans de Graaff <graaff@gentoo.org> +hoe-2.6.0.ebuild: + Version bump. Minor enhancements and bug fixes. 16 Feb 2010; Jonathan Callen <abcd@gentoo.org> hoe-2.5.0.ebuild: Add ~x64-macos for bug 305355 diff --git a/dev-ruby/hoe/hoe-2.6.0.ebuild b/dev-ruby/hoe/hoe-2.6.0.ebuild new file mode 100644 index 000000000000..5ec393bbf9c9 --- /dev/null +++ b/dev-ruby/hoe/hoe-2.6.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hoe/hoe-2.6.0.ebuild,v 1.1 2010/04/24 07:54:19 graaff Exp $ + +EAPI=2 +USE_RUBY="ruby18 ruby19 jruby" + +RUBY_FAKEGEM_TASK_DOC="docs" + +RUBY_FAKEGEM_DOCDIR="doc" +RUBY_FAKEGEM_EXTRADOC="History.txt Manifest.txt README.txt" + +RUBY_FAKEGEM_EXTRAINSTALL="template" + +inherit ruby-fakegem + +DESCRIPTION="Hoe extends rake to provide full project automation." +HOMEPAGE="http://seattlerb.rubyforge.org/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +IUSE="" + +# - also requires dev-ruby/hoe-seattlerb for 1.9; +# - dev-ruby/gemcutter is an optional dependency at both runtime and +# test-time, at least for us; +# - rubyforge is loaded at runtime when needed, so we don't strictly +# depend on it at runtime, but we need it for tests (for now); +ruby_add_bdepend test "virtual/ruby-minitest >=dev-ruby/rubyforge-2.0.3" + +ruby_add_rdepend ">=dev-ruby/rake-0.8.7" + +all_ruby_prepare() { + # This file is expected by the documentation rake task + mkdir "${WORKDIR}/../homedir/.rubyforge" || die + touch "${WORKDIR}/../homedir/.rubyforge/user-config.yml" || die +} |