From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RFXx4-0005tz-R4 for garchives@archives.gentoo.org; Sun, 16 Oct 2011 21:08:59 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38C9E21C0E1; Sun, 16 Oct 2011 21:08:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 05AD321C0DF for ; Sun, 16 Oct 2011 21:08:45 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7BD291B4036 for ; Sun, 16 Oct 2011 21:08:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id DA2A58004C for ; Sun, 16 Oct 2011 21:08:44 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <141d39185f6af4c1316a4cd899953d12ee43a285.mgorny@gentoo> Subject: [gentoo-commits] dev/mgorny:master commit in: app-portage/flaggie/ X-VCS-Repository: dev/mgorny X-VCS-Files: app-portage/flaggie/flaggie-9999.ebuild X-VCS-Directories: app-portage/flaggie/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 141d39185f6af4c1316a4cd899953d12ee43a285 Date: Sun, 16 Oct 2011 21:08:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 5db4fb17f87543b9f5806aec147ec2bb commit: 141d39185f6af4c1316a4cd899953d12ee43a285 Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Sun Oct 16 21:07:51 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Sun Oct 16 21:07:51 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/mgorny.git;a=3D= commit;h=3D141d3918 app-portage/flaggie: Migrate to bash-completion-r1. (Portage version: 2.2.0_alpha66_p6/git/Linux x86_64, unsigned Manifest co= mmit) --- app-portage/flaggie/flaggie-9999.ebuild | 14 ++++++++------ 1 files changed, 8 insertions(+), 6 deletions(-) diff --git a/app-portage/flaggie/flaggie-9999.ebuild b/app-portage/flaggi= e/flaggie-9999.ebuild index 0778c71..b9adf3d 100644 --- a/app-portage/flaggie/flaggie-9999.ebuild +++ b/app-portage/flaggie/flaggie-9999.ebuild @@ -7,7 +7,7 @@ PYTHON_DEPEND=3D"*:2.6" SUPPORT_PYTHON_ABIS=3D1 RESTRICT_PYTHON_ABIS=3D"2.4 2.5" =20 -inherit base bash-completion distutils +inherit base bash-completion-r1 distutils =20 #if LIVE EGIT_REPO_URI=3D"git://github.com/mgorny/${PN}.git @@ -25,8 +25,7 @@ SLOT=3D"0" KEYWORDS=3D"~amd64 ~arm ~x86" IUSE=3D"" =20 -RDEPEND=3D">=3Dsys-apps/portage-2.1.8.3 - bash-completion? ( app-shells/gentoo-bashcomp )" +RDEPEND=3D">=3Dsys-apps/portage-2.1.8.3" =20 #if LIVE KEYWORDS=3D @@ -41,7 +40,7 @@ src_prepare() { src_install() { distutils_src_install =20 - dobashcompletion contrib/bash-completion/${PN}.bash-completion || die + newbashcomp contrib/bash-completion/${PN}.bash-completion ${PN} || die } =20 pkg_postinst() { @@ -51,6 +50,9 @@ pkg_postinst() { ewarn "before performing each change through appending a single '~'." ewarn "If you'd like to keep your own backup of them, please use anothe= r" ewarn "naming scheme (or even better some VCS)." - - bash-completion_pkg_postinst + elog + elog "bash-completion support requires:" + elog " app-shells/gentoo-bashcomp" + has_version app-shells/gentoo-bashcomp && \ + elog "(installed already)" }