Files
gentoo/dev-ruby/unicode-display_width/unicode-display_width-2.6.0.ebuild
Alfred Wingate 0d862c4463 dev-ruby/unicode-display_width: enable ruby40
Signed-off-by: Alfred Wingate <parona@protonmail.com>
Part-of: https://codeberg.org/gentoo/gentoo/pulls/1527
Signed-off-by: Sam James <sam@gentoo.org>
2026-07-26 16:06:41 +01:00

29 lines
800 B
Bash

# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby32 ruby33 ruby34 ruby40"
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"
SLOT="$(ver_cut 1)"
KEYWORDS="~amd64 ~arm64"
all_ruby_prepare() {
# Avoid experimental emoji support for now
sed -e '/\[emoji\]/,/^ end/ s:^:#:' \
-e '/Config object based API/,/^end/ s:^:#:' \
-i spec/display_width_spec.rb || die
}