From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 59122138350 for ; Mon, 6 Apr 2020 09:28:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A4FBE0DB8; Mon, 6 Apr 2020 09:28:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8438EE0DB8 for ; Mon, 6 Apr 2020 09:28:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 940DB34F04E for ; Mon, 6 Apr 2020 09:28:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74EAF1AE for ; Mon, 6 Apr 2020 09:28:13 +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: <1586165253.6fb74170d0d168b27f31bf30d99909adc6843c39.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/gruff/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/gruff/gruff-0.7.0-r1.ebuild X-VCS-Directories: dev-ruby/gruff/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 6fb74170d0d168b27f31bf30d99909adc6843c39 X-VCS-Branch: master Date: Mon, 6 Apr 2020 09:28:13 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fa310bd3-53db-4e5c-bc1b-0fae24a798d5 X-Archives-Hash: 9069bb32e5b189542668362aca01e78a commit: 6fb74170d0d168b27f31bf30d99909adc6843c39 Author: Hans de Graaff gentoo org> AuthorDate: Mon Apr 6 05:13:42 2020 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Mon Apr 6 09:27:33 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fb74170 dev-ruby/gruff: cleanup Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/gruff/gruff-0.7.0-r1.ebuild | 49 ------------------------------------ 1 file changed, 49 deletions(-) diff --git a/dev-ruby/gruff/gruff-0.7.0-r1.ebuild b/dev-ruby/gruff/gruff-0.7.0-r1.ebuild deleted file mode 100644 index ba43d17e00f..00000000000 --- a/dev-ruby/gruff/gruff-0.7.0-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -USE_RUBY="ruby23 ruby24 ruby25 ruby26" - -RUBY_FAKEGEM_TASK_DOC="" - -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="History.txt Manifest.txt README.md RELEASE.md" - -RUBY_FAKEGEM_EXTRAINSTALL="assets rails_generators" - -RUBY_FAKEGEM_GEMSPEC="gruff.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Beautiful graphs for one or multiple datasets" -HOMEPAGE="https://github.com/topfunky/gruff" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86 ~x86-macos" -IUSE="" - -# imagemagick is an indirect dependency through rmagick. However, for -# gruff to work properly imagemagick needs to be compiled with truetype -# support and this cannot be expressed in the rmagick dependency. Tests -# also require imagemagick to have jpeg and png support. -DEPEND="${DEPEND} test? ( media-gfx/imagemagick[jpeg,png,truetype,webp] )" -RDEPEND="${RDEPEND} media-gfx/imagemagick[truetype]" - -ruby_add_rdepend ">=dev-ruby/rmagick-2.13.4" -ruby_add_bdepend " - test? ( - dev-ruby/test-unit - )" - -all_ruby_prepare() { - sed -i -e '/reporters/I s:^:#:' test/gruff_test_case.rb || die - sed -i -e '2irequire "date"' test/test_scatter.rb || die - - # Relax rmagick dependency since 3.x is API compatible - sed -i -e "/rmagick/ s/'~> 2.13',//" ${RUBY_FAKEGEM_GEMSPEC} || die -} - -each_ruby_test() { - ${RUBY} -Ilib:. -e "Dir['test/test_*.rb'].each{|f| require f}" || die -}