Diff msgpack-1.7.1 with a msgpack-1.7.2

/usr/portage/dev-ruby/msgpack/msgpack-1.7.2.ebuild 2023-10-09 14:52:30.444368374 +0300
11 11
RUBY_FAKEGEM_EXTENSIONS=(ext/msgpack/extconf.rb)
12 12
RUBY_FAKEGEM_EXTENSION_LIBDIR="lib/msgpack"
13 13
RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
14
RUBY_S="${PN}-ruby-${PV}"
14

  
15 15
inherit ruby-fakegem
16 16

  
17 17
DESCRIPTION="Binary-based efficient data interchange format for ruby binding"
18 18
HOMEPAGE="https://msgpack.org/"
19
# In 1.6.1, they stopped shipping the specs in the gem :(
20
# https://github.com/msgpack/msgpack-ruby/commit/9cbcd0b28527af5ca755f34dfb370e3f4474d129 
21
# (https://github.com/msgpack/msgpack-ruby/pull/311)
22 19
SRC_URI="https://github.com/msgpack/msgpack-ruby/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
20
RUBY_S="${PN}-ruby-${PV}"
23 21

  
24 22
LICENSE="Apache-2.0"
25 23
SLOT="0"
......
32 30
	# Remove jruby-specific specs that are run also for other rubies.
33 31
	rm -rf spec/jruby || die
34 32

  
35
	sed -i -e 's/git ls-files/find * -print/' msgpack.gemspec || die
33
	sed -i -e 's/git ls-files -z/find * -print0/' msgpack.gemspec || die
36 34
}
Thank you!