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 8FDEE138334 for ; Tue, 9 Apr 2019 05:53:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F1C1E09CF; Tue, 9 Apr 2019 05:53:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 7CC35E09CC for ; Tue, 9 Apr 2019 05:53:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 1CB6E335C94 for ; Tue, 9 Apr 2019 05:53:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C7AE35A6 for ; Tue, 9 Apr 2019 05:53:48 +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: <1554789176.e33eea5cc0fad8bee5135f69867492fce3af9149.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/metasm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/metasm/metasm-9999.ebuild X-VCS-Directories: dev-ruby/metasm/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: e33eea5cc0fad8bee5135f69867492fce3af9149 X-VCS-Branch: master Date: Tue, 9 Apr 2019 05:53:48 +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: 826b36b9-e2cc-4465-add2-6a1f97456263 X-Archives-Hash: 39f6ac9d4998f5bb1b2187f36fa69a05 commit: e33eea5cc0fad8bee5135f69867492fce3af9149 Author: Hans de Graaff gentoo org> AuthorDate: Wed Jan 16 18:47:37 2019 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Tue Apr 9 05:52:56 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e33eea5c dev-ruby/metasm: cleanup ruby23-only version Signed-off-by: Hans de Graaff gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-ruby/metasm/metasm-9999.ebuild | 62 -------------------------------------- 1 file changed, 62 deletions(-) diff --git a/dev-ruby/metasm/metasm-9999.ebuild b/dev-ruby/metasm/metasm-9999.ebuild deleted file mode 100644 index d2bc0c7e0f9..00000000000 --- a/dev-ruby/metasm/metasm-9999.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -USE_RUBY="ruby21 ruby22 ruby23" - -RUBY_FAKEGEM_RECIPE_DOC="none" -RUBY_FAKEGEM_EXTRADOC="BUGS README TODO" -RUBY_FAKEGEM_EXTRAINSTALL="metasm metasm.rb misc samples" - -inherit ruby-fakegem - -DESCRIPTION="cross-architecture assembler, disassembler, linker, and debugger" -HOMEPAGE="http://metasm.cr0.org/" - -LICENSE="LGPL-2.1" -SLOT="${PV}" -IUSE="gtk" - -if [ "${PV}" = "9999" ]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/jjyg/metasm.git" - KEYWORDS="" - SRC_URI="" - EGIT_CHECKOUT_DIR="${WORKDIR}/all" -else - KEYWORDS="~amd64 ~arm ~x86" -fi - -QA_PREBUILT="usr/lib*/ruby/gems/*/gems/${P}/${PN}/dynldr-linux-x64-233.so" - -ruby_add_bdepend "dev-ruby/bundler - gtk? ( dev-ruby/ruby-gtk2 )" - -all_ruby_prepare() { - if [ -f Gemfile.lock ]; then - rm Gemfile.lock || die - fi - - mkdir bin - ln -s ../samples/disassemble.rb ./bin/disassemble - ln -s ../samples/disassemble-gui.rb ./bin/disassemble-gui -} - -each_ruby_prepare() { - if [ -f Gemfile ] - then - BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle install --local || die - BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle check || die - fi -} - -all_ruby_install() { - all_fakegem_install - - ruby_fakegem_binwrapper disassemble - ruby_fakegem_binwrapper disassemble-gui -} - -each_ruby_test() { - ${RUBY} -Ilib:. -e "Dir['tests/*.rb'].each{|f| require f}" || die -}