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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9DBF7158088 for ; Sat, 15 Jan 2022 06:43:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6EC8A2BC00F; Sat, 15 Jan 2022 06:43:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 50D0C2BC00F for ; Sat, 15 Jan 2022 06:43:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D168B343528 for ; Sat, 15 Jan 2022 06:43:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2CEC9297 for ; Sat, 15 Jan 2022 06:43:41 +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: <1642228370.d94cc906b40c8fa7cfe58f47e7aa56e17bf3f9dd.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/ruby-elf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/ruby-elf/ruby-elf-1.0.8.ebuild X-VCS-Directories: dev-ruby/ruby-elf/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: d94cc906b40c8fa7cfe58f47e7aa56e17bf3f9dd X-VCS-Branch: master Date: Sat, 15 Jan 2022 06:43:41 +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: 871ce4c2-0d3c-42d7-92bf-30ef3599892f X-Archives-Hash: 0489e5b952085c0cf5198558f5ad2256 commit: d94cc906b40c8fa7cfe58f47e7aa56e17bf3f9dd Author: Hans de Graaff gentoo org> AuthorDate: Sat Jan 15 06:32:50 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Jan 15 06:32:50 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d94cc906 dev-ruby/ruby-elf: cleanup Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/ruby-elf/ruby-elf-1.0.8.ebuild | 68 --------------------------------- 1 file changed, 68 deletions(-) diff --git a/dev-ruby/ruby-elf/ruby-elf-1.0.8.ebuild b/dev-ruby/ruby-elf/ruby-elf-1.0.8.ebuild deleted file mode 100644 index 246f1f2373ff..000000000000 --- a/dev-ruby/ruby-elf/ruby-elf-1.0.8.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -USE_RUBY="ruby23 ruby24 ruby25 ruby26" - -GITHUB_URI="https://github.com/Flameeyes/${PN}" - -if [[ ${PV} == "9999" ]]; then - EGIT_REPO_URI="${GITHUB_URI}.git" -fi - -RUBY_FAKEGEM_RECIPE_TEST="none" -RUBY_FAKEGEM_RECIPE_DOC="none" - -RUBY_FAKGEM_GESPEC="${PN}.gemspec" - -inherit ruby-fakegem ${EGIT_REPO_URI:+git-2} - -if [[ -n ${EGIT_REPO_URI} ]]; then - SRC_URI="" -else - SRC_URI="${GITHUB_URI}/archive/${PV}.tar.gz -> ${P}.tar.gz" -fi - -DESCRIPTION="Ruby library to access ELF files information" -HOMEPAGE="http://www.flameeyes.eu/projects/ruby-elf" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64" - -IUSE="test" - -ruby_add_bdepend " - test? ( dev-ruby/test-unit:2 ) - dev-ruby/rake" - -# for the man pages -DEPEND+=" - dev-libs/libxslt - app-text/docbook-xsl-ns-stylesheets" - -RDEPEND+=" - virtual/man" - -if [[ ${PV} == "9999" ]]; then - all_ruby_unpack() { - git_src_unpack - } -fi - -all_ruby_compile() { - # build the man pages - rake manpages || die "rake manpages failed" -} - -each_ruby_test() { - ruby-ng_testrb-2 -Ilib test/test_*.rb -} - -all_ruby_install() { - all_fakegem_install - - doman manpages/*.1 - dodoc DONATING README.md -}