Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 628174

Summary: dev-php/libvirt-php: Don't try to install AUTHORS
Product: Gentoo Linux Reporter: Agostino Sarubbo <ago>
Component: Current packagesAssignee: Tiziano Müller (RETIRED) <dev-zero>
Status: RESOLVED FIXED    
Severity: normal CC: php-bugs, virtualization
Priority: Normal    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Agostino Sarubbo gentoo-dev 2017-08-18 14:15:01 UTC
Received via mail, forwarding here:

From: Michal Prívozník <michal.privoznik@gmail.com>

With the latest git HEAD (05dd00705af) the AUTHORS file does not
exist in the repository but it's generated from AUTHORS.in when
doing dist.  Therefore, when building libvirt-php-9999 do not try
to install it.

Signed-off-by: Michal Privoznik <michal.privoznik@gmail.com>
---
 dev-php/libvirt-php/libvirt-php-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/libvirt-php/libvirt-php-9999.ebuild b/dev-php/libvirt-php/libvirt-php-9999.ebuild
index 50e80eda8c4..4e24b63e0ab 100644
--- a/dev-php/libvirt-php/libvirt-php-9999.ebuild
+++ b/dev-php/libvirt-php/libvirt-php-9999.ebuild
@@ -26,7 +26,7 @@ DEPEND="${RDEPEND}
        doc? ( app-text/xhtml1 )"
 
 RESTRICT="test"
-DOCS=( AUTHORS ChangeLog NEWS README )
+DOCS=( ChangeLog NEWS README )
 
 src_unpack() {
        git-r3_src_unpack
-- 
2.13.0
Comment 1 Michael Orlitzky gentoo-dev 2017-08-18 18:28:23 UTC
Straightforward, thanks.