gentoo/dev-ruby/unicode-display_width/unicode-display_width-1.7.0-r1.ebuild
Hans de Graaff 35147309f1
dev-ruby/unicode-display_width: enable ruby33
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
2024-05-26 09:20:22 +02:00

29 lines
749 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby31 ruby32 ruby33"
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
RUBY_FAKEGEM_EXTRAINSTALL="data"
RUBY_FAKEGEM_GEMSPEC="unicode-display_width.gemspec"
inherit ruby-fakegem
DESCRIPTION="Adds String#display_width to get the display size using EastAsianWidth.txt"
HOMEPAGE="https://github.com/janlelis/unicode-display_width"
SRC_URI="https://github.com/janlelis/unicode-display_width/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
KEYWORDS="~amd64 ~arm64"
SLOT="$(ver_cut 1)"
IUSE=""
all_ruby_prepare() {
# Avoid experimental emoji support for now
sed -i -e '/\[emoji\]/,/^ end/ s:^:#:' spec/display_width_spec.rb || die
}