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 1B5F513829C for ; Wed, 8 Jun 2016 01:11:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA1F721C028; Wed, 8 Jun 2016 01:11:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 27DAD21C028 for ; Wed, 8 Jun 2016 01:11:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D046A340D4D for ; Wed, 8 Jun 2016 01:11:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33F832098 for ; Wed, 8 Jun 2016 01:10:58 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1465277430.57a2dec52e8c8a20e0fd7f93882fa1a4615947b2.heroxbd@gentoo> Subject: [gentoo-commits] repo/proj/prefix:rap0 commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-prefix.sh X-VCS-Directories: scripts/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: 57a2dec52e8c8a20e0fd7f93882fa1a4615947b2 X-VCS-Branch: rap0 Date: Wed, 8 Jun 2016 01:10: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: d59622c6-cf8b-481f-aeca-23f550dc7e18 X-Archives-Hash: f876263384ec8f13a06dbde5b4c5a334 commit: 57a2dec52e8c8a20e0fd7f93882fa1a4615947b2 Author: Benda Xu gentoo org> AuthorDate: Tue Jun 7 05:30:30 2016 +0000 Commit: Benda XU gentoo org> CommitDate: Tue Jun 7 05:30:30 2016 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=57a2dec5 should not use https, it need openssl on the host. scripts/bootstrap-prefix.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 6581c22..f9b0d9a 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -46,7 +46,7 @@ efetch() { # Try to find a download manager, we only deal with wget, # curl, FreeBSD's fetch and ftp. if [[ x$(type -t wget) == "xfile" ]] ; then - FETCH_COMMAND="wget --no-check-certificate" + FETCH_COMMAND="wget" elif [[ x$(type -t ftp) == "xfile" ]] ; then FETCH_COMMAND="ftp" elif [[ x$(type -t curl) == "xfile" ]] ; then @@ -451,7 +451,7 @@ bootstrap_tree() { fi if is-rap; then PORTDIR="${ROOT}/usr/portage-stage" \ - do_tree https://gitweb.gentoo.org/proj/android.git/snapshot android-master.tar.bz2 + do_tree http://dev.gentoo.org/~heroxbd android-master.tar.bz2 fi }