summaryrefslogtreecommitdiff
path: root/dev-ruby/ruby-filemagic
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-ruby/ruby-filemagic
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-ruby/ruby-filemagic')
-rw-r--r--dev-ruby/ruby-filemagic/Manifest3
-rw-r--r--dev-ruby/ruby-filemagic/metadata.xml11
-rw-r--r--dev-ruby/ruby-filemagic/ruby-filemagic-0.7.2.ebuild48
3 files changed, 0 insertions, 62 deletions
diff --git a/dev-ruby/ruby-filemagic/Manifest b/dev-ruby/ruby-filemagic/Manifest
deleted file mode 100644
index 0394743351a0..000000000000
--- a/dev-ruby/ruby-filemagic/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST ruby-filemagic-0.7.2.gem 19456 BLAKE2B 5008fb27a5b6bbd93522c72381b1c74788e544e6120f3c44f4a594b360ee783d4e92e73ef584a8e56c1776a5e5e824d6fa603df135b6e1779fa460c19c3bb4a7 SHA512 b68324dfb0cd2e55cd200696fabe87c0aa68a11922789ae40abc999db7d200810cffa2c414c07bc96e2fee54aab775f01752f951b3a3273289594201ca547494
-EBUILD ruby-filemagic-0.7.2.ebuild 1226 BLAKE2B 5b22de5207934f44f18c5a7dc2671e19746d55cad3684cbd78e3983f4e70724aa4059ca0ca2ea297c849711b5bba66b20e19f42484dddc8428eddb9ca774b3d2 SHA512 8687137249330af9f141d533e9575032649608f694d2104c29413db3f0e6ce6466e8555703cfabd9b2acc001dcf6814863fb9f5189a9070556de4ab364ad6655
-MISC metadata.xml 342 BLAKE2B c67bdb6db6b7c0bb8c22318ed4acf6549438b8858e8a86a79eb7e24cd341368667f75865f7005e45f99fcb7130893b9a7b644515c8a191d696cc34354d539cf8 SHA512 b8c757666516b70af299ab11ac170b1d8055f8a7f82e551768cbed0be44713ea858718992da9e3b58276ba01c8a3a73e0c19ff554546e092b98401da486264f9
diff --git a/dev-ruby/ruby-filemagic/metadata.xml b/dev-ruby/ruby-filemagic/metadata.xml
deleted file mode 100644
index d92faa179122..000000000000
--- a/dev-ruby/ruby-filemagic/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>ruby@gentoo.org</email>
- <name>Gentoo Ruby Project</name>
- </maintainer>
- <upstream>
- <remote-id type="github">blackwinter/ruby-filemagic</remote-id>
- </upstream>
-</pkgmetadata>
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 36d97b8c3ed3..000000000000
--- a/dev-ruby/ruby-filemagic/ruby-filemagic-0.7.2.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby22 ruby23 ruby24 ruby25"
-
-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 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-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
-}