mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
32 lines
981 B
Bash
32 lines
981 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
USE_RUBY="ruby31 ruby32 ruby33 ruby34"
|
|
|
|
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.md"
|
|
|
|
RUBY_FAKEGEM_BINWRAP=""
|
|
|
|
RUBY_FAKEGEM_GEMSPEC="mini_mime.gemspec"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="A lightweight mime type lookup toy"
|
|
HOMEPAGE="https://github.com/discourse/mini_mime"
|
|
SRC_URI="https://github.com/discourse/mini_mime/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos ~x64-solaris"
|
|
IUSE="test"
|
|
|
|
all_ruby_prepare() {
|
|
sed -i -e '/bundler/ s:^:#:' Rakefile || die
|
|
sed -i -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die
|
|
|
|
# Avoid comparison with MIME::Types because types may vary over time
|
|
# as they get reclassified leading to random harmless failures.
|
|
sed -i -e '/test_full_parity_with_mime_types/askip "gentoo"' test/mini_mime_test.rb || die
|
|
}
|