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 26B1E1393EA for ; Sun, 16 Mar 2014 22:12:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC3A3E09FB; Sun, 16 Mar 2014 22:12:13 +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 3E22BE09FB for ; Sun, 16 Mar 2014 22:12:13 +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 604B933F8FB for ; Sun, 16 Mar 2014 22:12:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 2B96C188EB for ; Sun, 16 Mar 2014 22:12:11 +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: <1395004269.97f644c7fe99b14b3af8994d0ca144c6a3fd90bc.johu@gentoo> Subject: [gentoo-commits] dev/johu:master commit in: dev-vcs/gitflow/ X-VCS-Repository: dev/johu X-VCS-Files: dev-vcs/gitflow/gitflow-0.4.1.ebuild X-VCS-Directories: dev-vcs/gitflow/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 97f644c7fe99b14b3af8994d0ca144c6a3fd90bc X-VCS-Branch: master Date: Sun, 16 Mar 2014 22:12:11 +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: bf5047a3-f09f-401b-80c2-8b34220eb800 X-Archives-Hash: 6871be3a33fb59cd4ec7d626ad1904e7 commit: 97f644c7fe99b14b3af8994d0ca144c6a3fd90bc Author: Johannes Huber gentoo org> AuthorDate: Sun Mar 16 21:11:09 2014 +0000 Commit: Johannes Huber gentoo org> CommitDate: Sun Mar 16 21:11:09 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/johu.git;a=commit;h=97f644c7 [dev-vcs/gitflow] Fix repoman issues * EAPI 5 * drop bash-completion use flag * add ~amd64 keyword * remove einfo Package-Manager: portage-2.2.8-r1 --- dev-vcs/gitflow/gitflow-0.4.1.ebuild | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/dev-vcs/gitflow/gitflow-0.4.1.ebuild b/dev-vcs/gitflow/gitflow-0.4.1.ebuild index 020cfc8..9c1db5b 100644 --- a/dev-vcs/gitflow/gitflow-0.4.1.ebuild +++ b/dev-vcs/gitflow/gitflow-0.4.1.ebuild @@ -1,24 +1,24 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI=4 +EAPI=5 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/gitflow/tarball/0.4.1 -> ${P}.tar.gz - bash-completion? ( https://github.com/bobthecow/git-flow-completion/tarball/0.4.1.0 -> ${P}-completion.tar.gz )" +https://github.com/bobthecow/git-flow-completion/tarball/0.4.1.0 -> ${P}-completion.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~x86" -IUSE="bash-completion" +KEYWORDS="~amd64 ~x86" +IUSE="" DEPEND="dev-util/shflags" RDEPEND="${DEPEND} - dev-vcs/git[bash-completion?]" + dev-vcs/git" S="${WORKDIR}/nvie-gitflow-5b26edc" @@ -32,14 +32,6 @@ src_compile() { src_install() { emake prefix="${D}" install - if use bash-completion; then - newbashcomp "${WORKDIR}/bobthecow-git-flow-completion-b399150/git-flow-completion.bash" git-flow - fi -} -pkg_postinst() { - if use bash-completion; then - elog "Use eselect to activate the bash-completion module:" - elog " git-flow" - fi + newbashcomp "${WORKDIR}/bobthecow-git-flow-completion-b399150/git-flow-completion.bash" git-flow }