From 9a588b92605bce82b652ae45cc206a598924e6a6 Mon Sep 17 00:00:00 2001 From: Hans de Graaff Date: Mon, 13 Jun 2016 20:11:23 +0200 Subject: dev-ruby/rake: account for changed bindir, fixing bug 585836 Package-Manager: portage-2.2.28 --- dev-ruby/rake/rake-11.2.2-r1.ebuild | 52 +++++++++++++++++++++++++++++++++++++ dev-ruby/rake/rake-11.2.2.ebuild | 50 ----------------------------------- 2 files changed, 52 insertions(+), 50 deletions(-) create mode 100644 dev-ruby/rake/rake-11.2.2-r1.ebuild delete mode 100644 dev-ruby/rake/rake-11.2.2.ebuild (limited to 'dev-ruby') diff --git a/dev-ruby/rake/rake-11.2.2-r1.ebuild b/dev-ruby/rake/rake-11.2.2-r1.ebuild new file mode 100644 index 00000000000..6413fb8ca1f --- /dev/null +++ b/dev-ruby/rake/rake-11.2.2-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby20 ruby21 ruby22 ruby23" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="CHANGES README.rdoc TODO" + +RUBY_FAKEGEM_TASK_TEST="" + +RUBY_FAKEGEM_BINDIR="exe" + +inherit bash-completion-r1 ruby-fakegem + +DESCRIPTION="Make-like scripting in Ruby" +HOMEPAGE="https://github.com/ruby/rake" +SRC_URI="https://github.com/ruby/rake/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="doc" + +DEPEND+=" app-arch/gzip" + +ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.8 )" + +all_ruby_compile() { + if use doc; then + rdoc --title "Rake - Ruby Make" --main README.rdoc --out html lib *.rdoc doc/*/*.rdoc || die + fi +} + +each_ruby_test() { + ${RUBY} -Ilib:test:. -e 'gem "minitest", "~>5.8"; require "minitest/autorun"; Dir["test/test_*.rb"].each{|f| require f}' || die +} + +all_ruby_install() { + ruby_fakegem_binwrapper rake + + if use doc; then + pushd html + dohtml -r * + popd + fi + + doman doc/rake.1 + + newbashcomp "${FILESDIR}"/rake.bash-completion ${PN} +} diff --git a/dev-ruby/rake/rake-11.2.2.ebuild b/dev-ruby/rake/rake-11.2.2.ebuild deleted file mode 100644 index 3851138a105..00000000000 --- a/dev-ruby/rake/rake-11.2.2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22 ruby23" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="CHANGES README.rdoc TODO" - -RUBY_FAKEGEM_TASK_TEST="" - -inherit bash-completion-r1 ruby-fakegem - -DESCRIPTION="Make-like scripting in Ruby" -HOMEPAGE="https://github.com/ruby/rake" -SRC_URI="https://github.com/ruby/rake/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="doc" - -DEPEND+=" app-arch/gzip" - -ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.8 )" - -all_ruby_compile() { - if use doc; then - rdoc --title "Rake - Ruby Make" --main README.rdoc --out html lib *.rdoc doc/*/*.rdoc || die - fi -} - -each_ruby_test() { - ${RUBY} -Ilib:test:. -e 'gem "minitest", "~>5.8"; require "minitest/autorun"; Dir["test/test_*.rb"].each{|f| require f}' || die -} - -all_ruby_install() { - ruby_fakegem_binwrapper rake - - if use doc; then - pushd html - dohtml -r * - popd - fi - - doman doc/rake.1 - - newbashcomp "${FILESDIR}"/rake.bash-completion ${PN} -} -- cgit v1.2.1