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 AA5B11382C5 for ; Sat, 3 Feb 2018 07:54:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D049AE0990; Sat, 3 Feb 2018 07:54:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 ABBF8E0990 for ; Sat, 3 Feb 2018 07:54:49 +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 5BF05335C6C for ; Sat, 3 Feb 2018 07:54:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A74321DE for ; Sat, 3 Feb 2018 07:54:46 +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: <1517643418.63b5364373fd4c1fa71aa345d60994cc5bf53ee5.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/debug_inspector/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/debug_inspector/Manifest dev-ruby/debug_inspector/debug_inspector-0.0.2.ebuild X-VCS-Directories: dev-ruby/debug_inspector/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 63b5364373fd4c1fa71aa345d60994cc5bf53ee5 X-VCS-Branch: master Date: Sat, 3 Feb 2018 07:54:46 +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: c37f3dc7-0837-48d9-80ac-12c8f3a2d461 X-Archives-Hash: c82f83bfcde4447aa9ab30b64fb8a47a commit: 63b5364373fd4c1fa71aa345d60994cc5bf53ee5 Author: Hans de Graaff gentoo org> AuthorDate: Sat Feb 3 07:36:58 2018 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Feb 3 07:36:58 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63b53643 dev-ruby/debug_inspector: cleanup Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-ruby/debug_inspector/Manifest | 1 - .../debug_inspector/debug_inspector-0.0.2.ebuild | 29 ---------------------- 2 files changed, 30 deletions(-) diff --git a/dev-ruby/debug_inspector/Manifest b/dev-ruby/debug_inspector/Manifest index 6c9d2317def..57624cdf544 100644 --- a/dev-ruby/debug_inspector/Manifest +++ b/dev-ruby/debug_inspector/Manifest @@ -1,2 +1 @@ -DIST debug_inspector-0.0.2.gem 6656 BLAKE2B c4fb4e8d9e2e911f9b2b04035752ed20e66fb0842089c362dc610ff6ca84ddbb87140390206d6a84ca28e6548f0801bb2a679687a6c920dc48decab2203f97e8 SHA512 ad24ff2071840ce8b7aca3df21264f889539b329db30c251e72600c4c8dad8ef04a5d1b0b5514f6433d76aca903d5cb334ae40c077e142252896d6213103feca DIST debug_inspector-0.0.3.gem 8192 BLAKE2B c7605f246519b245d0b997e10cfc1271c6cd5a31dc44097546d51265eb6ce1d88686b1dc922addce0a58b6bccae4fa5a40611942b6babbf8dfc6b4c528949422 SHA512 38cbe0ddf2eb4285f4f7d6f12428747495230425352e1850a4395a5c27ad4c2f706eeeac1f684baea488f6e3bd4b65c8c9e0d5807d5af93d3350fa7b9d45da43 diff --git a/dev-ruby/debug_inspector/debug_inspector-0.0.2.ebuild b/dev-ruby/debug_inspector/debug_inspector-0.0.2.ebuild deleted file mode 100644 index cdedc77eb08..00000000000 --- a/dev-ruby/debug_inspector/debug_inspector-0.0.2.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22 ruby23" - -RUBY_FAKEGEM_TASK_TEST="" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_EXTRADOC="README.md" - -inherit ruby-fakegem - -DESCRIPTION="A Ruby wrapper for the MRI 2.0 debug_inspector API" -HOMEPAGE="https://github.com/banister/debug_inspector" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -each_ruby_configure() { - ${RUBY} -Cext/${PN} extconf.rb || die -} - -each_ruby_compile() { - emake V=1 -Cext/${PN} - cp ext/${PN}/${PN}.so lib/ || die -}