From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A45301381F1 for ; Wed, 4 May 2016 19:59:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DDC9621C026; Wed, 4 May 2016 19:59:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 87FD621C026 for ; Wed, 4 May 2016 19:59:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F6D5340751 for ; Wed, 4 May 2016 19:59:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4AE4A16 for ; Wed, 4 May 2016 19:59:02 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1462391930.7255875e59602ac8762349be9c840f471fbe2ecb.pesa@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sip/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sip/sip-4.18.ebuild X-VCS-Directories: dev-python/sip/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 7255875e59602ac8762349be9c840f471fbe2ecb X-VCS-Branch: master Date: Wed, 4 May 2016 19:59:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 487b2c8b-999f-408f-a68a-d71a05b59ecd X-Archives-Hash: 4e42e070a89f448fd7df3f683573f60d commit: 7255875e59602ac8762349be9c840f471fbe2ecb Author: Davide Pesavento gentoo org> AuthorDate: Wed May 4 19:58:50 2016 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Wed May 4 19:58:50 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7255875e dev-python/sip: streamline docs installation Package-Manager: portage-2.2.28 dev-python/sip/sip-4.18.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/sip/sip-4.18.ebuild b/dev-python/sip/sip-4.18.ebuild index 799bd72..e68fba8 100644 --- a/dev-python/sip/sip-4.18.ebuild +++ b/dev-python/sip/sip-4.18.ebuild @@ -26,7 +26,6 @@ REQUIRED_USE=" " PATCHES=( "${FILESDIR}"/${PN}-4.18-darwin.patch ) -DOCS=( "${S}"/{ChangeLog,NEWS} ) src_prepare() { # Sub-slot sanity check @@ -41,7 +40,7 @@ src_prepare() { die "sub-slot sanity check failed" fi - # Fix out-of-source installation of sip.pyi + # Fix out-of-source installation of sip.pyi (reported upstream) sed -i -e '/installs.*sip\.pyi/ s/build_dir/src_dir/' configure.py || die default @@ -82,10 +81,11 @@ src_compile() { src_install() { installation() { - default + emake DESTDIR="${D}" install python_optimize } python_foreach_impl run_in_build_dir installation + einstalldocs use doc && dodoc -r doc/html }