Diff x25519-1.0.10 with a x25519-1.0.11

/usr/portage/dev-ruby/x25519/x25519-1.0.11.ebuild 2026-07-30 20:03:04.656405468 +0300
16 16
inherit ruby-fakegem
17 17

  
18 18
DESCRIPTION="Key exchange via the X25519 (Curve25519) Elliptic Curve Diffie-Hellman function"
19
HOMEPAGE="https://github.com/crypto-rb/x25519"
20
SRC_URI="https://github.com/crypto-rb/x25519/archive/v${PV}.tar.gz -> ${P}.tar.gz"
19
HOMEPAGE="https://github.com/RubyCrypto/x25519"
20
SRC_URI="https://github.com/RubyCrypto/x25519/archive/v${PV}.tar.gz -> ${P}.tar.gz"
21 21

  
22 22
LICENSE="BSD"
23 23
SLOT="$(ver_cut 1)"
......
26 26
all_ruby_prepare() {
27 27
	sed -i -e '/bundler/ s:^:#: ; /coverall/I s:^:#:' spec/spec_helper.rb || die
28 28

  
29
	sed -i -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die
29
	sed -e 's/git ls-files -z/find * -print0/' \
30
		-e 's:_relative ":"./:' \
31
		-i ${RUBY_FAKEGEM_GEMSPEC} || die
30 32

  
31 33
	# The precomputed implementation only works on amd64
32 34
	if use amd64 ; then
Thank you!