Diff libvirt-php-0.5.7 with a libvirt-php-9999

/usr/portage/dev-php/libvirt-php/libvirt-php-9999.ebuild 2023-10-09 14:52:30.236368369 +0300
8 8
USE_PHP="php8-0 php8-1"
9 9
PHP_EXT_ECONF_ARGS=()
10 10

  
11
inherit php-ext-source-r3 autotools
11
inherit php-ext-source-r3 git-r3 autotools
12 12

  
13 13
DESCRIPTION="PHP bindings for libvirt"
14 14
HOMEPAGE="http://libvirt.org/php/"
15
SRC_URI="http://libvirt.org/sources/php/${P}.tar.xz"
15
EGIT_REPO_URI="https://gitlab.com/libvirt/libvirt-php.git"
16 16

  
17 17
LICENSE="LGPL-2.1"
18 18
SLOT="0"
19
KEYWORDS="~amd64"
19
KEYWORDS=""
20 20
IUSE="doc"
21 21

  
22 22
RDEPEND="app-emulation/libvirt
......
29 29
DOCS=( ChangeLog NEWS README )
30 30

  
31 31
src_unpack() {
32
	default
32
	git-r3_src_unpack
33 33

  
34 34
	# create the default modules directory to be able
35 35
	# to use the php-ext-source-r3 eclass to configure/build
36
	ln -s src "${S}/modules" || die
36
	ln -s src "${S}/modules"
37 37
}
38 38

  
39 39
src_prepare() {
Thank you!