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 A07B01391DB for ; Wed, 19 Mar 2014 06:55:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FE8FE0A6E; Wed, 19 Mar 2014 06:55:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 33BB8E0A6E for ; Wed, 19 Mar 2014 06:55:50 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3457E33FC95 for ; Wed, 19 Mar 2014 06:55:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 682D618875 for ; Wed, 19 Mar 2014 06:55:47 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1395211805.aa9005715304e1b392cc4622f43082a3951041b1.johu@gentoo> Subject: [gentoo-commits] dev/johu:master commit in: dev-vcs/git-flow/ X-VCS-Repository: dev/johu X-VCS-Files: dev-vcs/git-flow/git-flow-0.4.1.ebuild X-VCS-Directories: dev-vcs/git-flow/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: aa9005715304e1b392cc4622f43082a3951041b1 X-VCS-Branch: master Date: Wed, 19 Mar 2014 06:55:47 +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: 3f80aba1-cde2-4787-b34c-de554e85874b X-Archives-Hash: f2ed3391f1c6f0997d514c9d5b6a9420 commit: aa9005715304e1b392cc4622f43082a3951041b1 Author: Johannes Huber gentoo org> AuthorDate: Wed Mar 19 06:50:05 2014 +0000 Commit: Johannes Huber gentoo org> CommitDate: Wed Mar 19 06:50:05 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/johu.git;a=commit;h=aa900571 [dev-vcs/git-flow] More vars for completion Package-Manager: portage-2.2.8-r1 --- dev-vcs/git-flow/git-flow-0.4.1.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-vcs/git-flow/git-flow-0.4.1.ebuild b/dev-vcs/git-flow/git-flow-0.4.1.ebuild index ed33286..750407d 100644 --- a/dev-vcs/git-flow/git-flow-0.4.1.ebuild +++ b/dev-vcs/git-flow/git-flow-0.4.1.ebuild @@ -5,13 +5,15 @@ EAPI=5 MY_PN="${PN/-/}" +COMP_PN="${PN}-completion" COMP_PV="0.4.2.2" +COMP_P="${COMP_PN}-${COMP_PV}" inherit eutils bash-completion-r1 DESCRIPTION="Git extensions to provide high-level repository operations for Vincent Driessen's branching model" HOMEPAGE="https://github.com/nvie/gitflow" SRC_URI="https://github.com/nvie/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz -https://github.com/bobthecow/${PN}-completion/archive/${COMP_PV}.tar.gz -> ${PN}-completion-${COMP_PV}.tar.gz" +https://github.com/bobthecow/${COMP_PN}/archive/${COMP_PV}.tar.gz -> ${COMP_P}.tar.gz" LICENSE="BSD MIT" SLOT="0" @@ -45,5 +47,5 @@ src_install() { [[ ${DOCS[@]} ]] && dodoc "${DOCS[@]}" - newbashcomp "${WORKDIR}/${PN}-completion-${COMP_PV}/${PN}-completion.bash" ${PN} + newbashcomp "${WORKDIR}/${COMP_P}/${COMP_PN}.bash" ${PN} }