Diff rqlite-7.10.1 with a rqlite-7.11.0

/usr/portage/dev-db/rqlite/rqlite-7.11.0.ebuild 2023-10-09 14:52:29.340368346 +0300
3 3

  
4 4
EAPI=7
5 5
inherit go-module
6
EGIT_COMMIT=22af9fdcb9a1093136f1eae7e18d4067dea29c64
6
EGIT_COMMIT=f0a198e577deb55497974174e405031b5e864c36
7 7

  
8 8
DESCRIPTION="Replicated SQLite using the Raft consensus protocol"
9 9
HOMEPAGE="https://github.com/rqlite/rqlite https://www.philipotoole.com/tag/rqlite/"
10
SRC_URI="https://github.com/rqlite/rqlite/archive/v${PV}.tar.gz -> ${P}.tar.gz
11
	https://dev.gentoo.org/~zmedico/dist/${P}-deps.tar.xz"
10
SRC_URI="https://github.com/zmedico/rqlite/archive/v${PV}-vendor.tar.gz -> ${P}-vendor.tar.gz"
12 11

  
13 12
LICENSE="MIT Apache-2.0 BSD CC0-1.0 MPL-2.0"
14 13
SLOT="0"
15 14
KEYWORDS="~amd64 ~x86"
16 15
IUSE=""
17 16

  
17
S=${WORKDIR}/${P}-vendor
18

  
18 19
src_compile() {
19 20
	GOBIN="${S}/bin" \
20 21
		go install \
Thank you!