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 ABCD3138335 for ; Fri, 23 Nov 2018 09:19:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A81CE099E; Fri, 23 Nov 2018 09:19:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 5F7D7E099E for ; Fri, 23 Nov 2018 09:19:21 +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 0D829335CE7 for ; Fri, 23 Nov 2018 09:19:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42F8C43A for ; Fri, 23 Nov 2018 09:19:17 +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: <1542964371.15b2a304648fb88c7f46e44d8e54f35a2cd51a3e.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/introspection/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/introspection/Manifest dev-ruby/introspection/introspection-0.0.3.ebuild X-VCS-Directories: dev-ruby/introspection/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 15b2a304648fb88c7f46e44d8e54f35a2cd51a3e X-VCS-Branch: master Date: Fri, 23 Nov 2018 09:19:17 +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: f219f6a6-3f0c-49c5-a51a-bb8ec508f1f0 X-Archives-Hash: 48b817ead01bd3dd3b84ced9d9426465 commit: 15b2a304648fb88c7f46e44d8e54f35a2cd51a3e Author: Hans de Graaff gentoo org> AuthorDate: Fri Nov 23 09:12:51 2018 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Nov 23 09:12:51 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15b2a304 dev-ruby/introspection: cleanup Signed-off-by: Hans de Graaff gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-ruby/introspection/Manifest | 1 - dev-ruby/introspection/introspection-0.0.3.ebuild | 26 ----------------------- 2 files changed, 27 deletions(-) diff --git a/dev-ruby/introspection/Manifest b/dev-ruby/introspection/Manifest index 6a3be03ed1c..07b06559985 100644 --- a/dev-ruby/introspection/Manifest +++ b/dev-ruby/introspection/Manifest @@ -1,2 +1 @@ -DIST introspection-0.0.3.gem 9216 BLAKE2B ecc019bdace30aaf0a1357fbdaf56f19722b9ada0e61b335ffadf1ceac3340a664245d177a8ffe9caace9cab1b81d203578f8b914165309be17b6d6734966055 SHA512 423722f402a8a5cb5f415c498cf754a2b5084b0a89ada48b982a97e3951d9af4bcd675d5dc4a2eacdd0673bf08facaba845e767e3e248e0a8ec922eddbc53c37 DIST introspection-0.0.4.gem 9216 BLAKE2B c97279576a60dfd74453d16a6eb0885326dad18748bd182fe3b5c2a73121553cd3ea66690841df6554fd105e50f5f6df075afb94795b94dbd7caf4615ca67764 SHA512 c228827ac9d8a82a104e78daadf038c674cd464bf726fc3bd1efa82e9d9cab37f6ee909f578585e7846378f0b755ed4d60fa119fd699f6c40188ea2de4ac7084 diff --git a/dev-ruby/introspection/introspection-0.0.3.ebuild b/dev-ruby/introspection/introspection-0.0.3.ebuild deleted file mode 100644 index a0f138a55af..00000000000 --- a/dev-ruby/introspection/introspection-0.0.3.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -USE_RUBY="ruby20 ruby21 ruby22 ruby23" - -# No documentation task -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="README.md" - -inherit ruby-fakegem - -DESCRIPTION="Dynamic inspection of the hierarchy of method definitions on a Ruby object" -HOMEPAGE="http://jamesmead.org/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sparc x86" -IUSE="" - -ruby_add_rdepend ">=dev-ruby/metaclass-0.0.1 >=dev-ruby/instantiator-0.0.3" - -all_ruby_prepare() { - sed -i -e '/bundler/I s:^:#:' Rakefile test/test_helper.rb || die -}