From 7d06c193ad79cec3d810be1811929cacc5ad108e Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 12 Feb 2020 20:51:44 +0300 Subject: Use copyright extracted from LICENSE file for printing utility version --- LICENSE | 2 +- bbot/agent/agent.cxx | 2 +- bbot/buildfile | 10 ++++++++++ bbot/worker/worker.cxx | 2 +- doc/cli.sh | 2 +- 5 files changed, 14 insertions(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index 5e9ec53..5ed57fe 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2014-2020 Code Synthesis Ltd +Copyright (c) 2014-2020 Code Synthesis Ltd. TBC; All rights reserved diff --git a/bbot/agent/agent.cxx b/bbot/agent/agent.cxx index c06edaf..80eeae5 100644 --- a/bbot/agent/agent.cxx +++ b/bbot/agent/agent.cxx @@ -1124,7 +1124,7 @@ try << "libbbot " << LIBBBOT_VERSION_ID << endl << "libbpkg " << LIBBPKG_VERSION_ID << endl << "libbutl " << LIBBUTL_VERSION_ID << endl - << "Copyright (c) 2014-2019 Code Synthesis Ltd" << endl + << "Copyright (c) " << BBOT_COPYRIGHT << "." << endl << "TBC; All rights reserved" << endl; return 0; diff --git a/bbot/buildfile b/bbot/buildfile index 80c55f7..ce74c7a 100644 --- a/bbot/buildfile +++ b/bbot/buildfile @@ -72,6 +72,16 @@ for t: cxx{**.test...} $d/exe{$n}: $d/libue{bbot}: bin.whole = false } +# Build options. +# +# Pass the copyright notice extracted from the LICENSE file. +# +copyright = $process.run_regex(cat $src_root/LICENSE, \ + 'Copyright \(c\) (.+)\.', \ + '\1') + +obj{agent/agent worker/worker}: cxx.poptions += -DBBOT_COPYRIGHT=\"$copyright\" + # Generated options parser. # if $cli.configured diff --git a/bbot/worker/worker.cxx b/bbot/worker/worker.cxx index a290020..dc19ece 100644 --- a/bbot/worker/worker.cxx +++ b/bbot/worker/worker.cxx @@ -1620,7 +1620,7 @@ try << "libbbot " << LIBBBOT_VERSION_ID << endl << "libbpkg " << LIBBPKG_VERSION_ID << endl << "libbutl " << LIBBUTL_VERSION_ID << endl - << "Copyright (c) 2014-2019 Code Synthesis Ltd" << endl + << "Copyright (c) " << BBOT_COPYRIGHT << "." << endl << "TBC; All rights reserved" << endl; return 0; diff --git a/doc/cli.sh b/doc/cli.sh index 928c31a..13d78e3 100755 --- a/doc/cli.sh +++ b/doc/cli.sh @@ -9,7 +9,7 @@ function info () { echo "$*" 1>&2; } function error () { info "$*"; exit 1; } date="$(date +"%B %Y")" -copyright="$(sed -n -re 's%^Copyright \(c\) (.+)$%\1%p' ../LICENSE | head -n 1)" +copyright="$(sed -n -re 's%^Copyright \(c\) (.+)\.$%\1%p' ../LICENSE)" while [ $# -gt 0 ]; do case $1 in -- cgit v1.1