You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
949 B
38 lines
949 B
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
USE_RUBY="ruby27 ruby30 ruby31 ruby32"
|
|
|
|
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
|
|
|
|
RUBY_FAKEGEM_TASK_DOC=""
|
|
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc README.md"
|
|
|
|
RUBY_FAKEGEM_GEMSPEC="mail.gemspec"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
GITHUB_USER="mikel"
|
|
|
|
DESCRIPTION="An email handling library"
|
|
HOMEPAGE="https://github.com/mikel/mail"
|
|
SRC_URI="https://github.com/${GITHUB_USER}/mail/archive/${PV}.tar.gz -> ${P}-git.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="$(ver_cut 1-2)"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
|
IUSE=""
|
|
|
|
ruby_add_rdepend ">=dev-ruby/mini_mime-0.1.1"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-psych-4.patch
|
|
)
|
|
|
|
all_ruby_prepare() {
|
|
rm Gemfile || die
|
|
sed -i -e '/[Bb]undle/d' -e '6d' Rakefile || die "Unable to remove Bundler code."
|
|
}
|