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 0855B158086 for ; Mon, 1 Nov 2021 06:08:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43D06E081E; Mon, 1 Nov 2021 06:08:29 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0E3A5E081E for ; Mon, 1 Nov 2021 06:08:28 +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 66729342D24 for ; Mon, 1 Nov 2021 06:08:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD668186 for ; Mon, 1 Nov 2021 06:08:25 +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: <1635746901.c4b8e445253d21828eab43e7ad9261dc8e502d0c.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/ruby-filemagic/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/ruby-filemagic/ruby-filemagic-0.7.2.ebuild X-VCS-Directories: dev-ruby/ruby-filemagic/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: c4b8e445253d21828eab43e7ad9261dc8e502d0c X-VCS-Branch: master Date: Mon, 1 Nov 2021 06:08:25 +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: b761c769-9a88-471a-879e-89c4a18b579a X-Archives-Hash: 3b06f7fd3a57761a044055a0ebc2ca4a commit: c4b8e445253d21828eab43e7ad9261dc8e502d0c Author: Hans de Graaff gentoo org> AuthorDate: Sun Oct 31 12:04:39 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Mon Nov 1 06:08:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4b8e445 dev-ruby/ruby-filemagic: cleanup Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> .../ruby-filemagic/ruby-filemagic-0.7.2.ebuild | 48 ---------------------- 1 file changed, 48 deletions(-) diff --git a/dev-ruby/ruby-filemagic/ruby-filemagic-0.7.2.ebuild b/dev-ruby/ruby-filemagic/ruby-filemagic-0.7.2.ebuild deleted file mode 100644 index e2a30f471bf..00000000000 --- a/dev-ruby/ruby-filemagic/ruby-filemagic-0.7.2.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -USE_RUBY="ruby24 ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="ChangeLog README TODO" - -RUBY_FAKEGEM_TASK_TEST="" - -inherit multilib ruby-fakegem - -DESCRIPTION="Ruby binding to libmagic" -HOMEPAGE="https://github.com/blackwinter/ruby-filemagic" - -LICENSE="Ruby" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" -IUSE="" - -DEPEND="${DEPEND} sys-apps/file test? ( >=sys-apps/file-5.30 )" -RDEPEND="${RDEPEND} sys-apps/file" - -all_ruby_prepare() { - # Fix up tests for newer sys-apps/file definitions - sed -i -e '/test_abbrev_mime_type/,/^ end/ s/ms-office/ms-excel/' test/filemagic_test.rb || die - - # Fix up broken test symlink and regenerate compiled magic file - pushd test || die - rm -f pylink && ln -s pyfile pylink || die - file -C -m perl || die - popd || die -} - -each_ruby_configure() { - ${RUBY} -Cext/filemagic extconf.rb || die -} - -each_ruby_compile() { - emake V=1 -Cext/filemagic - mv ext/filemagic/ruby_filemagic$(get_modname) lib/filemagic/ || die -} - -each_ruby_test() { - find test - ${RUBY} -Ctest -I../lib filemagic_test.rb || die -}