mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 12:58:16 -07:00
25 lines
748 B
Bash
25 lines
748 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
USE_RUBY="ruby25 ruby26 ruby27 ruby30"
|
|
|
|
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
|
|
|
|
RUBY_FAKEGEM_EXTRADOC="README.rdoc History.md"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="Use the McIlroy-Hunt LCS algorithm to compute differences"
|
|
HOMEPAGE="https://github.com/halostatue/diff-lcs"
|
|
|
|
LICENSE="|| ( MIT Ruby GPL-2 )"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
|
IUSE=""
|
|
|
|
all_ruby_prepare() {
|
|
# Avoid specs failing due to missing fixtures. Should be fixed in the next version.
|
|
rm -f spec/ldiff_spec.rb || die
|
|
}
|