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 1SQhRy-0005oP-5i for garchives@archives.gentoo.org; Sat, 05 May 2012 16:03:15 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA26EE06B7; Sat, 5 May 2012 16:03:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9AEF0E06B7 for ; Sat, 5 May 2012 16:03:06 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7D1ED1B4053 for ; Sat, 5 May 2012 16:03:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 47822E5403 for ; Sat, 5 May 2012 16:03:04 +0000 (UTC) From: "Arfrever Frehtes Taifersar Arahesis" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arfrever Frehtes Taifersar Arahesis" Message-ID: <1336233657.e3d3ff4f22f5e41f12b2518d23ebea354a006b7b.arfrever@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/, doc/package/ebuild/eapi/ X-VCS-Repository: proj/portage X-VCS-Files: bin/ebuild.sh doc/package/ebuild/eapi/4-python.docbook X-VCS-Directories: bin/ doc/package/ebuild/eapi/ X-VCS-Committer: arfrever X-VCS-Committer-Name: Arfrever Frehtes Taifersar Arahesis X-VCS-Revision: e3d3ff4f22f5e41f12b2518d23ebea354a006b7b X-VCS-Branch: master Date: Sat, 5 May 2012 16:03:04 +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: d502f502-4a50-4555-8e57-d483ec06b9a8 X-Archives-Hash: 5ec8375d35df115492a225af576d7fe5 commit: e3d3ff4f22f5e41f12b2518d23ebea354a006b7b Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Sat May 5 16:00:57 2012 +0000 Commit: Arfrever Frehtes Taifersar Arahesis gmail = com> CommitDate: Sat May 5 16:00:57 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3De3d3ff4f Enable globstar shell option by default in EAPI=3D"4-python". --- bin/ebuild.sh | 4 ++++ doc/package/ebuild/eapi/4-python.docbook | 6 ++++++ 2 files changed, 10 insertions(+), 0 deletions(-) diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 173865c..32dc64f 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -512,6 +512,10 @@ if ! has "$EBUILD_PHASE" clean cleanrm depend && \ [[ -n $EAPI ]] || EAPI=3D0 fi =20 +if has "${EAPI:-0}" 4-python; then + shopt -s globstar +fi + if ! has "$EBUILD_PHASE" clean cleanrm ; then if [[ $EBUILD_PHASE =3D depend || ! -f $T/environment || \ -f $PORTAGE_BUILDDIR/.ebuild_changed ]] || \ diff --git a/doc/package/ebuild/eapi/4-python.docbook b/doc/package/ebuil= d/eapi/4-python.docbook index b4cbc1a..99ad197 100644 --- a/doc/package/ebuild/eapi/4-python.docbook +++ b/doc/package/ebuild/eapi/4-python.docbook @@ -31,6 +31,12 @@ official EAPI 4-python Specification. The "." character is allowed in USE flags. +
+globstar shell option enabled by default + +globstar shell option is enabled by default, which enables recursive exp= ansion of ** pattern in pathname expansion context. + +
REPOSITORY Variable