From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B6436138334 for ; Wed, 6 Mar 2019 11:09:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB6D1E08DA; Wed, 6 Mar 2019 11:09:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A1211E08DA for ; Wed, 6 Mar 2019 11:09:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8A93E335CFE for ; Wed, 6 Mar 2019 11:09:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 34C9855D for ; Wed, 6 Mar 2019 11:09:12 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1551870546.5d7ead7ca9a3d10fec3fa02f82d54be6524565dc.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/auto-bootstraps/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/auto-bootstraps/dobootstrap X-VCS-Directories: scripts/auto-bootstraps/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 5d7ead7ca9a3d10fec3fa02f82d54be6524565dc X-VCS-Branch: master Date: Wed, 6 Mar 2019 11:09:12 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 24039b8d-c004-4ae6-ad43-707e669b243b X-Archives-Hash: bc6ef8fcd101d2a21fe34d4c2bd8671d commit: 5d7ead7ca9a3d10fec3fa02f82d54be6524565dc Author: Fabian Groffen gentoo org> AuthorDate: Wed Mar 6 11:08:17 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Wed Mar 6 11:09:06 2019 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=5d7ead7c dobootstrap: allow targetting USE=libressl Signed-off-by: Fabian Groffen gentoo.org> scripts/auto-bootstraps/dobootstrap | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/auto-bootstraps/dobootstrap b/scripts/auto-bootstraps/dobootstrap index 00c3925684..35b693ddd4 100755 --- a/scripts/auto-bootstraps/dobootstrap +++ b/scripts/auto-bootstraps/dobootstrap @@ -119,6 +119,7 @@ do_prepare() { GENTOO_MIRRORS="http://distfileslocal/" \ EPREFIX=${EPREFIX} \ ${DOLOCAL+DOLOCAL=1} \ + ${DOLIBRESSL+MAKE_CONF_ADDITIONAL_USE=libressl} \ ${RESUME+RESUME=1} \ ${LATEST_TREE_YES+LATEST_TREE_YES=1} \ ${TREE_FROM_SRC+TREE_FROM_SRC=}${TREE_FROM_SRC} \ @@ -170,6 +171,12 @@ case $1 in export DOLOCAL=1 export DOPUBLISH=1 fi + for arg in "${@:2}" ; do + case "${arg}" in + libressl) export DOLIBRESSL=1 ;; + latesttree) export LATEST_TREE_YES=1 ;; + esac + done do_prepare $1 ;; esac