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 186671391DB for ; Wed, 19 Mar 2014 03:32:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0008BE0A5F; Wed, 19 Mar 2014 03:32: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 687CCE0A5F for ; Wed, 19 Mar 2014 03:32:13 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 453AC33FC84 for ; Wed, 19 Mar 2014 03:32:12 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id EE4472005C; Wed, 19 Mar 2014 03:32:10 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.3-r1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: bash-4.3-r1.ebuild ChangeLog X-VCS-Directories: app-shells/bash X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140319033210.EE4472005C@flycatcher.gentoo.org> Date: Wed, 19 Mar 2014 03:32:10 +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: dc770f28-5f71-4895-8c26-025f11cc0e82 X-Archives-Hash: ddbe87e0dd47bf826b943af749533e8e vapier 14/03/19 03:32:10 Modified: bash-4.3-r1.ebuild ChangeLog Log: Move the readline version to a global var so it stays in sync. (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D2E96200) Revision Changes Path 1.2 app-shells/bash/bash-4.3-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.3-r1.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.3-r1.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.3-r1.ebuild?r1=1.1&r2=1.2 Index: bash-4.3-r1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.3-r1.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- bash-4.3-r1.ebuild 10 Mar 2014 01:15:31 -0000 1.1 +++ bash-4.3-r1.ebuild 19 Mar 2014 03:32:10 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.3-r1.ebuild,v 1.1 2014/03/10 01:15:31 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.3-r1.ebuild,v 1.2 2014/03/19 03:32:10 vapier Exp $ EAPI="4" @@ -28,6 +28,9 @@ fi } +# The version of readline this bash normally ships with. +READLINE_VER="6.3" + DESCRIPTION="The standard GNU Bourne again shell" HOMEPAGE="http://tiswww.case.edu/php/chet/bash/bashtop.html" SRC_URI="mirror://gnu/bash/${MY_P}.tar.gz $(patches)" @@ -39,7 +42,7 @@ IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla" DEPEND=">=sys-libs/ncurses-5.2-r2 - readline? ( >=sys-libs/readline-6.3 ) + readline? ( >=sys-libs/readline-${READLINE_VER} ) nls? ( virtual/libintl )" RDEPEND="${DEPEND} ! bash-4.3-r1.ebuild: + Move the readline version to a global var so it stays in sync. *bash-4.3-r1 (10 Mar 2014)