From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1CC6E1384B4 for ; Tue, 17 Nov 2015 06:23:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99A7DE07F7; Tue, 17 Nov 2015 06:23:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E85D6E07F7 for ; Tue, 17 Nov 2015 06:23:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 221E4340821 for ; Tue, 17 Nov 2015 06:23:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 718181074 for ; Tue, 17 Nov 2015 06:23:43 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1447741007.7bc53563d59672c210e097c5758b99b1ecd6df45.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/hoe/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/hoe/hoe-3.13.0.ebuild X-VCS-Directories: dev-ruby/hoe/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 7bc53563d59672c210e097c5758b99b1ecd6df45 X-VCS-Branch: master Date: Tue, 17 Nov 2015 06:23:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f1eab691-97f7-41da-9c24-a89e6fe789b7 X-Archives-Hash: 829e9b778cb8a9ecb231af1248ba6f4a commit: 7bc53563d59672c210e097c5758b99b1ecd6df45 Author: Hans de Graaff gentoo org> AuthorDate: Tue Nov 17 06:16:47 2015 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Tue Nov 17 06:16:47 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bc53563 dev-ruby/hoe: cleanup Package-Manager: portage-2.2.20.1 dev-ruby/hoe/hoe-3.13.0.ebuild | 44 ------------------------------------------ 1 file changed, 44 deletions(-) diff --git a/dev-ruby/hoe/hoe-3.13.0.ebuild b/dev-ruby/hoe/hoe-3.13.0.ebuild deleted file mode 100644 index 71f43cd..0000000 --- a/dev-ruby/hoe/hoe-3.13.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20" - -RUBY_FAKEGEM_TASK_DOC="" - -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="History.rdoc Manifest.txt README.rdoc" - -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="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="" - -ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.3:5 )" - -ruby_add_rdepend ">=dev-ruby/rake-0.8.7 >=dev-ruby/rdoc-4.0" - -all_ruby_prepare() { - # Skip isolation - sed -i -e '/isolate/ s:^:#:' Rakefile || die - - # Skip test depending on specifics of gem command name - sed -i -e '/test_nosudo/,/^ end/ s:^:#:' test/test_hoe.rb || die - - # Gem.bin_wrapper does not work as expected on Gentoo. - sed -i -e 's/Gem.bin_wrapper//' lib/hoe/rcov.rb lib/hoe/publish.rb test/test_hoe_publish.rb || die -} - -all_ruby_compile() { - all_fakegem_compile - - rdoc --title "seattlerb's hoe-3.5.1 Documentation" -o doc --main README.txt lib History.txt Manifest.txt README.txt || die -}