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 B8FE613800E for ; Tue, 24 Jul 2012 13:22:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4037E0534; Tue, 24 Jul 2012 13:22:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 75963E0534 for ; Tue, 24 Jul 2012 13:22:00 +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 DFA311B44CD for ; Tue, 24 Jul 2012 13:21:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 9F1CDE5436 for ; Tue, 24 Jul 2012 13:21:58 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1343136077.7df6ba116eb169b0f747ccf2e41d0b68d685505f.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: app-misc/strigi/ X-VCS-Repository: proj/kde X-VCS-Files: app-misc/strigi/strigi-9999.ebuild X-VCS-Directories: app-misc/strigi/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 7df6ba116eb169b0f747ccf2e41d0b68d685505f X-VCS-Branch: master Date: Tue, 24 Jul 2012 13:21:58 +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: 5e1df529-7618-44ef-985a-501f96c1ffe8 X-Archives-Hash: 1286d358c0d0edecfc3a35701806df9a commit: 7df6ba116eb169b0f747ccf2e41d0b68d685505f Author: Michael Palimaka gentoo org> AuthorDate: Tue Jul 24 13:20:58 2012 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Tue Jul 24 13:21:17 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=7df6ba11 [app-misc/strigi] Force each submodule to always use master, wrt bug #427050. (Portage version: 2.1.11.9/git/Linux x86_64, unsigned Manifest commit) --- app-misc/strigi/strigi-9999.ebuild | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/app-misc/strigi/strigi-9999.ebuild b/app-misc/strigi/strigi-9999.ebuild index b4f4136..3a627c1 100644 --- a/app-misc/strigi/strigi-9999.ebuild +++ b/app-misc/strigi/strigi-9999.ebuild @@ -50,8 +50,11 @@ RDEPEND="${COMMONDEPEND}" if [[ ${PV} == 9999 ]] ; then src_unpack() { - git config --global url."git://anongit.kde.org/".insteadOf "kde:" + git config --global url."git://anongit.kde.org/".insteadOf "kde:" || die git-2_src_unpack + pushd "${S}" > /dev/null || die + git submodule foreach git checkout master || die + popd > /dev/null || die } fi