Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/ruby-filemagic/
Date: Sat, 30 Jul 2022 08:22:25
Message-Id: 1659169335.f36e29713cad17a9f0ad5153d9097cb6f200303f.graaff@gentoo
1 commit: f36e29713cad17a9f0ad5153d9097cb6f200303f
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 30 07:47:28 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 30 08:22:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f36e2971
7
8 dev-ruby/ruby-filemagic: drop 0.7.2-r1
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/ruby-filemagic/Manifest | 1 -
13 .../ruby-filemagic/ruby-filemagic-0.7.2-r1.ebuild | 42 ----------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/dev-ruby/ruby-filemagic/Manifest b/dev-ruby/ruby-filemagic/Manifest
17 index a69c7dfd96db..781f9cc25f7a 100644
18 --- a/dev-ruby/ruby-filemagic/Manifest
19 +++ b/dev-ruby/ruby-filemagic/Manifest
20 @@ -1,2 +1 @@
21 -DIST ruby-filemagic-0.7.2.gem 19456 BLAKE2B 5008fb27a5b6bbd93522c72381b1c74788e544e6120f3c44f4a594b360ee783d4e92e73ef584a8e56c1776a5e5e824d6fa603df135b6e1779fa460c19c3bb4a7 SHA512 b68324dfb0cd2e55cd200696fabe87c0aa68a11922789ae40abc999db7d200810cffa2c414c07bc96e2fee54aab775f01752f951b3a3273289594201ca547494
22 DIST ruby-filemagic-0.7.3.gem 18944 BLAKE2B 5694e4e2dfa4af05c6e9966715feaf1442c4c884b42fe98751af1a4fc74506461c9d42cd42cbe99ed341670950dda5c06ae5a23afb73bf8a88273f9ca6880cd6 SHA512 8bbc7fcb1dd7746061264ee433d501a842bfea30d7eff40b6dfb0f5c567192e6aa161e67181a474a4b805bb1adb9fa3bd43e314abf14c3ce3ac11d72598b2fc6
23
24 diff --git a/dev-ruby/ruby-filemagic/ruby-filemagic-0.7.2-r1.ebuild b/dev-ruby/ruby-filemagic/ruby-filemagic-0.7.2-r1.ebuild
25 deleted file mode 100644
26 index b8b2c7ec7e6c..000000000000
27 --- a/dev-ruby/ruby-filemagic/ruby-filemagic-0.7.2-r1.ebuild
28 +++ /dev/null
29 @@ -1,42 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -USE_RUBY="ruby26 ruby27 ruby30"
35 -
36 -RUBY_FAKEGEM_TASK_DOC=""
37 -RUBY_FAKEGEM_EXTRADOC="ChangeLog README TODO"
38 -
39 -RUBY_FAKEGEM_EXTENSIONS=(ext/filemagic/extconf.rb)
40 -RUBY_FAKEGEM_EXTENSION_LIBDIR="lib/filemagic"
41 -
42 -RUBY_FAKEGEM_TASK_TEST=""
43 -
44 -inherit multilib ruby-fakegem
45 -
46 -DESCRIPTION="Ruby binding to libmagic"
47 -HOMEPAGE="https://github.com/blackwinter/ruby-filemagic"
48 -
49 -LICENSE="Ruby"
50 -SLOT="0"
51 -KEYWORDS="~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
52 -IUSE=""
53 -
54 -DEPEND="${DEPEND} sys-apps/file test? ( >=sys-apps/file-5.30 )"
55 -RDEPEND="${RDEPEND} sys-apps/file"
56 -
57 -all_ruby_prepare() {
58 - # Fix up tests for newer sys-apps/file definitions
59 - sed -i -e '/test_abbrev_mime_type/,/^ end/ s/ms-office/ms-excel/' test/filemagic_test.rb || die
60 -
61 - # Fix up broken test symlink and regenerate compiled magic file
62 - pushd test || die
63 - rm -f pylink && ln -s pyfile pylink || die
64 - file -C -m perl || die
65 - popd || die
66 -}
67 -
68 -each_ruby_test() {
69 - find test
70 - ${RUBY} -Ctest -I../lib filemagic_test.rb || die
71 -}