Diff rouge-3.30.0-r1 with a rouge-4.1.2

/usr/portage/dev-ruby/rouge/rouge-4.1.2.ebuild 2023-10-09 14:52:30.456368374 +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
RUBY_FAKEGEM_BINWRAP=""
8 7
RUBY_FAKEGEM_TASK_TEST="spec"
9 8
RUBY_FAKEGEM_RECIPE_DOC="yard"
10 9

  
......
13 12
inherit ruby-fakegem
14 13

  
15 14
DESCRIPTION="Yet-another-markdown-parser using a strict syntax definition in pure Ruby"
16
HOMEPAGE="https://github.com/jneen/rouge"
17
SRC_URI="https://github.com/jneen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
15
HOMEPAGE="https://github.com/rouge-ruby/rouge"
16
SRC_URI="https://github.com/rouge-ruby/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
18 17

  
19 18
LICENSE="MIT"
20 19

  
21
SLOT="2"
22
KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos"
20
SLOT="$(ver_cut 1)"
21
KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~s390 sparc x86"
23 22
IUSE=""
24 23

  
25 24
ruby_add_bdepend "doc? ( dev-ruby/redcarpet )
......
27 26
	dev-ruby/yard
28 27
"
29 28

  
30
ruby_add_rdepend "dev-ruby/redcarpet"
29
ruby_add_rdepend "dev-ruby/redcarpet !<dev-ruby/rouge-3.30.0-r1"
31 30

  
32 31
all_ruby_prepare() {
33 32
	rm -f tasks/{check/style,update/changelog}.rake || die
Thank you!