mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 15:37:58 +02:00
39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
USE_RUBY="ruby32 ruby33 ruby34"
|
|
|
|
RUBY_FAKEGEM_BINWRAP=""
|
|
RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md TODO"
|
|
|
|
RUBY_FAKEGEM_GEMSPEC="highline.gemspec"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="Highline is a high-level command-line IO library for ruby"
|
|
HOMEPAGE="https://github.com/JEG2/highline"
|
|
SRC_URI="https://github.com/JEG2/highline/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="|| ( GPL-2 Ruby-BSD )"
|
|
SLOT="$(ver_cut 1)"
|
|
KEYWORDS="~amd64 ~arm64 ~hppa ~ppc ppc64 sparc ~x86"
|
|
IUSE="test"
|
|
|
|
ruby_add_rdepend "dev-ruby/reline"
|
|
|
|
ruby_add_bdepend "test? ( dev-ruby/dry-types )"
|
|
|
|
all_ruby_prepare() {
|
|
# fix up gemspec file not to call git
|
|
sed -i -e 's/git ls-files -z/find * -print0/' highline.gemspec || die
|
|
|
|
# Avoid unneeded dependencies
|
|
sed -i -e '/\(bundler\|code_statistics\)/ s:^:#:' \
|
|
-e '/PackageTask/,/end/ s:^:#:' Rakefile || die
|
|
sed -i -e '/simplecov/ s:^:#:' test/test_helper.rb || die
|
|
|
|
# Remove almost empty doc directory to allow rdoc recipe to work
|
|
rm -rf doc || die
|
|
}
|