Diff rss-0.2.9-r1 with a rss-0.3.0

/usr/portage/dev-ruby/rss/rss-0.3.0.ebuild 2023-10-09 14:52:30.460368375 +0300
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5
USE_RUBY="ruby27 ruby30 ruby31 ruby32"
5
USE_RUBY="ruby30 ruby31 ruby32"
6 6

  
7 7
RUBY_FAKEGEM_EXTRADOC="NEWS.md README.md"
8
RUBY_FAKEGEM_GEMSPEC="rss.gemspec"
8 9

  
9 10
inherit ruby-fakegem
10 11

  
11 12
DESCRIPTION="Family of libraries that support various formats of XML feeds"
12 13
HOMEPAGE="https://github.com/ruby/rss"
14
SRC_URI="https://github.com/ruby/rss/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
13 15

  
14 16
LICENSE="BSD-2"
15
KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
17
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
16 18
SLOT="0"
17 19
IUSE="test"
18 20

  
......
22 24

  
23 25
all_ruby_prepare() {
24 26
	sed -i -e '/bundler/,/^helper.install/ s:^:#:' Rakefile || die
27

  
28
	sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die
25 29
}
Thank you!