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 725BD139088 for ; Sun, 8 Jan 2017 22:09:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90A51E0C75; Sun, 8 Jan 2017 22:09:03 +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 61A59E0C75 for ; Sun, 8 Jan 2017 22:09:03 +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 985F93411B5 for ; Sun, 8 Jan 2017 22:09:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0148524E2 for ; Sun, 8 Jan 2017 22:09:01 +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: <1483912793.70c5a21166943031f7a8248c2a4223336c28f80e.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/task/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/task/task-2.5.1-r1.ebuild X-VCS-Directories: app-misc/task/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 70c5a21166943031f7a8248c2a4223336c28f80e X-VCS-Branch: master Date: Sun, 8 Jan 2017 22:09:01 +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: 27a778d5-2820-4f2d-a30f-ce1fdd6b9b27 X-Archives-Hash: d78e77b6aab8f4181a7786740c3c4e12 commit: 70c5a21166943031f7a8248c2a4223336c28f80e Author: Patrice Clement gentoo org> AuthorDate: Sun Jan 8 21:59:53 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Jan 8 21:59:53 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70c5a211 app-misc/task: add missing die. Package-Manager: portage-2.3.0 app-misc/task/task-2.5.1-r1.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app-misc/task/task-2.5.1-r1.ebuild b/app-misc/task/task-2.5.1-r1.ebuild index 0d8b558..9136bbc 100644 --- a/app-misc/task/task-2.5.1-r1.ebuild +++ b/app-misc/task/task-2.5.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -43,17 +43,17 @@ src_install() { newbashcomp scripts/bash/task.sh task - if use vim-syntax ; then - rm scripts/vim/README + if use vim-syntax; then + rm scripts/vim/README || die insinto /usr/share/vim/vimfiles doins -r scripts/vim/* fi - if use zsh-completion ; then + if use zsh-completion; then insinto /usr/share/zsh/site-functions doins scripts/zsh/* fi - exeinto /usr/share/${PN}/scripts + exeinto "/usr/share/${PN}/scripts" doexe scripts/add-ons/* }