Diff llhttp-ffi-0.4.0 with a llhttp-ffi-0.5.0

/usr/portage/dev-ruby/llhttp-ffi/llhttp-ffi-0.5.0.ebuild 2023-10-09 14:52:30.440368374 +0300
9 9

  
10 10
inherit ruby-fakegem
11 11

  
12
MY_PV="2023-03-29"
12 13
DESCRIPTION="Ruby FFI bindings for llhttp"
13
HOMEPAGE="https://github.com/metabahn/llhttp"
14
MY_PV="2021-09-09"
15
SRC_URI="https://github.com/metabahn/llhttp/archive/refs/tags/${MY_PV}.tar.gz -> llhttp-${PV}.tar.gz"
14
HOMEPAGE="https://github.com/bryanp/llhttp"
15
# Use -> ${MY_PV} in SRC_URI here to help spot forgotten MY_PV updates
16
# (pkgcheck will warn on matching checksums)
17
SRC_URI="https://github.com/bryanp/llhttp/archive/refs/tags/${MY_PV}.tar.gz -> llhttp-${MY_PV}.tar.gz"
16 18

  
17 19
LICENSE="MPL-2.0"
18 20
SLOT="$(ver_cut 1)/$(ver_cut 1-2)"
......
27 29
	dev-ruby/rspec:3
28 30
)"
29 31

  
32
DEPEND+=" test? ( net-misc/curl )"
33

  
34
PATCHES=(
35
	"${FILESDIR}"/${PN}-0.5.0-fix-rake-clean.patch
36
)
37

  
30 38
all_ruby_prepare() {
31 39
	sed -i -e 's/gem "rake-compiler"//g' "Gemfile" || die
32 40
}
Thank you!