summaryrefslogtreecommitdiff
path: root/dev-ruby/diff-lcs/diff-lcs-1.6.2.ebuild
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2025-05-12 06:41:03 +0200
committerHans de Graaff <graaff@gentoo.org>2025-05-12 06:41:03 +0200
commitb9b965be75970b2b7852167c6ea46cea14a8b15c (patch)
treed0d5f88298723faa1c13f11c94e38fdbbc9ae7b5 /dev-ruby/diff-lcs/diff-lcs-1.6.2.ebuild
parentc6d26b6c5edfa3bee6788e0fe0be9d61c9ec1a3e (diff)
downloadgentoo-b9b965be75970b2b7852167c6ea46cea14a8b15c.tar.gz
gentoo-b9b965be75970b2b7852167c6ea46cea14a8b15c.tar.bz2
gentoo-b9b965be75970b2b7852167c6ea46cea14a8b15c.zip
dev-ruby/diff-lcs: add 1.6.2
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/diff-lcs/diff-lcs-1.6.2.ebuild')
-rw-r--r--dev-ruby/diff-lcs/diff-lcs-1.6.2.ebuild28
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-ruby/diff-lcs/diff-lcs-1.6.2.ebuild b/dev-ruby/diff-lcs/diff-lcs-1.6.2.ebuild
new file mode 100644
index 000000000000..421c450d4c24
--- /dev/null
+++ b/dev-ruby/diff-lcs/diff-lcs-1.6.2.ebuild
@@ -0,0 +1,28 @@
+# 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_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Use the McIlroy-Hunt LCS algorithm to compute differences"
+HOMEPAGE="https://github.com/halostatue/diff-lcs"
+
+LICENSE="|| ( Artistic MIT GPL-2+ )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+
+each_ruby_prepare() {
+ # Use the current ruby to test script invocation
+ sed -e "/system/ s:ruby:${RUBY}:" \
+ -i spec/ldiff_spec.rb || die
+
+ # Skip ldiff specs altogether for now since the fixtures are riddled
+ # with encoding and newline issues and ldiff is not the core of this gem.
+ rm -f spec/ldiff_spec.rb || die
+}