From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0BFDC138330 for ; Thu, 22 Sep 2016 08:04:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6B89E083A; Thu, 22 Sep 2016 08:04:42 +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 388EDE083A for ; Thu, 22 Sep 2016 08:04:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 E617633FE7D for ; Thu, 22 Sep 2016 08:04:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A4D5247C for ; Thu, 22 Sep 2016 08:04:38 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1474531473.53e54e4dadeff91c36eaa50c949909f4021b0bf2.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/csscomplete/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/csscomplete/csscomplete-1.0.ebuild X-VCS-Directories: app-vim/csscomplete/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 53e54e4dadeff91c36eaa50c949909f4021b0bf2 X-VCS-Branch: master Date: Thu, 22 Sep 2016 08:04:38 +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: 0b67e1c7-b814-4c0a-9c00-2ea3df34e6cc X-Archives-Hash: 65e1ef23d2958ca91016c2791712176e commit: 53e54e4dadeff91c36eaa50c949909f4021b0bf2 Author: Patrice Clement gentoo org> AuthorDate: Thu Sep 22 07:52:14 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Sep 22 08:04:33 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53e54e4d app-vim/csscomplete: clean up. * Remove config.mk in src_prepare phase. * Cancel compilation in src_compile by using a comma. Package-Manager: portage-2.2.28 app-vim/csscomplete/csscomplete-1.0.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app-vim/csscomplete/csscomplete-1.0.ebuild b/app-vim/csscomplete/csscomplete-1.0.ebuild index 387cd0b..56da2c2 100644 --- a/app-vim/csscomplete/csscomplete-1.0.ebuild +++ b/app-vim/csscomplete/csscomplete-1.0.ebuild @@ -16,6 +16,11 @@ DEPEND="app-arch/unzip" S="${WORKDIR}/${PN}.vim-${PV}" -src_compile() { +src_prepare() { + default rm -v config.mk || die } + +src_compile() { + :; +}