From 757787725cffc24f6c4e353fefa63bf255007457 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 24 Feb 2019 15:44:35 +0200 Subject: Updates for 0.9.0 release --- stage-pkg | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'stage-pkg') diff --git a/stage-pkg b/stage-pkg index 1a77e1f..6930fd9 100755 --- a/stage-pkg +++ b/stage-pkg @@ -12,7 +12,7 @@ # Distribute and regenerating only without publishing the repository. # # -q -# Publish packages into the queue instead of staging. +# Publish packages into the queue instead of staging. Implies -d. # usage="usage: etc/stage-pkg [] ..." @@ -25,6 +25,12 @@ set -o errtrace # Trap in functions. function info () { echo "$*" 1>&2; } function error () { info "$*"; exit 1; } +# Make sure the build2 tools are runnable. +# +b --version >/dev/null +bpkg --version >/dev/null +bdep --version >/dev/null + repo_name="STAGE.BUILD2.ORG" repo_dir="staging/repository/1" repo_host1="stage.build2.org:/var/bpkg/1" @@ -51,10 +57,11 @@ while [ $# -gt 0 ]; do shift ;; -q) - repo_name="CPPGET.ORG/QUEUE" - repo_dir="cppget.org/repository/1/queue" - repo_host1="cppget.org:/var/bpkg/1/queue" - repo_host2="queue.cppget.org:/var/bpkg/1/queue" + #repo_name="CPPGET.ORG/QUEUE" + repo_dir="cppget.org/queue/1/alpha" + #repo_host1="cppget.org:/var/bpkg/1/queue" + #repo_host2="queue.cppget.org:/var/bpkg/1/queue" + dist_only=true shift ;; *) -- cgit v1.1