diff options
author | wiz <wiz@pkgsrc.org> | 2007-01-30 07:11:19 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2007-01-30 07:11:19 +0000 |
commit | a9be4d8d01e100a2cb6cc7fb9510812df3e965b8 (patch) | |
tree | b05f34d3a6d8d82d30fced12ebdcdc072a9b51de /mk/bulk | |
parent | 207e4583d6ee79f180e86f83305a4226817cb4b9 (diff) | |
download | pkgsrc-a9be4d8d01e100a2cb6cc7fb9510812df3e965b8.tar.gz |
Remove some legacy variable handling after 2-3 branches.
Diffstat (limited to 'mk/bulk')
-rw-r--r-- | mk/bulk/post-build-conf | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/mk/bulk/post-build-conf b/mk/bulk/post-build-conf index 9bd5587c4d7..e50bf973bc9 100644 --- a/mk/bulk/post-build-conf +++ b/mk/bulk/post-build-conf @@ -1,4 +1,4 @@ -# $NetBSD: post-build-conf,v 1.12 2006/01/24 19:19:01 rillig Exp $ +# $NetBSD: post-build-conf,v 1.13 2007/01/30 07:11:19 wiz Exp $ # # This file is included after the build.conf file by the "build" and @@ -157,17 +157,9 @@ pbc_checkdefined() { # usage: check_config_vars check_config_vars() { - # Handle legacy variables FTP, FTPHOST, FTPURL, REPORT. - # Can be removed after 2006Q2. case ${FTP+set},${REPORTS_DIR+set} in set,set) pbc_die "FTP and REPORTS_DIR must not be set both.";; - set,) - REPORTS_URL="${FTPHOST}"/`dirname "${FTPURL}"` - REPORTS_DIR=`dirname "$FTP"` - REPORT_BASEDIR=`basename "${FTP}"` - REPORT_HTML_FILE=`basename "${REPORT}"` - REPORT_TXT_FILE="report.txt";; esac # section "System information" @@ -179,13 +171,6 @@ check_config_vars() { "set") pbc_checkexistingfile MAKECONF;; esac - # LEGACY: remove after 2006Q1 - case ${CVS_USER-""}${CVS_FLAGS+set} in - ?*) pbc_die "CVS_USER and CVS_FLAGS must not be set." \ - "See http://mail-index.netbsd.org/pkgsrc-bulk/2005/11/20/0013.html" \ - "and http://mail-index.netbsd.org/pkgsrc-bulk/2005/11/24/0003.html";; - esac - # section "Getting distfiles" case ${PRUNEDISTFILES+set} in "set") pbc_checkyesno PRUNEDISTFILES |