diff options
author | hubertf <hubertf> | 2004-04-19 18:39:09 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2004-04-19 18:39:09 +0000 |
commit | cb208f916457404aef9463c4a6bf7683ab52edf4 (patch) | |
tree | 4e6813eff7142fd19aac6f668442eb3c465f388b /mk/bulk | |
parent | 7d2cfd8ec44c8b92ca17762b596b5097cec269d3 (diff) | |
download | pkgsrc-cb208f916457404aef9463c4a6bf7683ab52edf4.tar.gz |
Deprecate RSYNC_DST_SPECIFIC and RSYNC_DST_OTHER and replace them
by RSYNC_DST. Warn if any of them is not set properly, and in
general adjust to the new layout on the FTP server.
Diffstat (limited to 'mk/bulk')
-rw-r--r-- | mk/bulk/build.conf-example | 13 | ||||
-rw-r--r-- | mk/bulk/upload | 32 |
2 files changed, 17 insertions, 28 deletions
diff --git a/mk/bulk/build.conf-example b/mk/bulk/build.conf-example index 2ff7d9447a4..d7de0a329ff 100644 --- a/mk/bulk/build.conf-example +++ b/mk/bulk/build.conf-example @@ -1,5 +1,5 @@ # build.conf -# $NetBSD: build.conf-example,v 1.19 2004/04/09 18:43:14 jschauma Exp $ +# $NetBSD: build.conf-example,v 1.20 2004/04/19 18:39:09 hubertf Exp $ # # config file in /bin/sh syntax for {,pre,post}-build # @@ -33,7 +33,7 @@ USR_PKGSRC="/usr/pkgsrc" CVS_USER="yourlogin" # Flags to pass to 'cvs update', e.g. to get a certain branch -#CVS_FLAGS="-rnetbsd-1-6" +#CVS_FLAGS="-rnetbsd-2004Q1" #CVS_FLAGS="-A" # prune distfiles to remove those which are out of date @@ -50,13 +50,8 @@ PRUNEDISTFILES=no # can be set to 'yes' or 'no'. UPDATE_VULNERABILITY_LIST=yes -# Destination for packages with the OSVERSION_SPECIFIC flag set. Needs -# major.minor.patch version. -RSYNC_DST_SPECIFIC=$CVS_USER@ftp.NetBSD.org:/pub/NetBSD/packages/x.y.z/arch - -# destination for packages without the OSVERSION_SPECIFIC flag set. Needs -# major.minor version. -RSYNC_DST_OTHER=$CVS_USER@ftp.NetBSD.org:/pub/NetBSD/packages/x.y/arch +# Destination for packages and rsync options +RSYNC_DST=$CVS_USER@ftp.NetBSD.org:/pub/NetBSD/packages/pkgsrc-200xQy/NetBSD-a.b.c/i386 RSYNC_OPTS='-e ssh' ########################################################################### diff --git a/mk/bulk/upload b/mk/bulk/upload index bcbd7df38bb..d31b3918640 100644 --- a/mk/bulk/upload +++ b/mk/bulk/upload @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: upload,v 1.17 2004/04/12 13:01:52 hubertf Exp $ +# $NetBSD: upload,v 1.18 2004/04/19 18:39:09 hubertf Exp $ # # Upload non-restricted binary pkgs to ftp server @@ -26,27 +26,21 @@ else . `dirname $0`/build.conf fi -if [ -z "$RSYNC_DST_SPECIFIC" -o -z "$RSYNC_DST_OTHER" ]; then - echo "You must set the variables RSYNC_DST_SPECIFIC and RSYNC_DST_OTHER" - echo " " - echo "RSYNC_DST_SPECIFIC should be set to the destination for packages" - echo "which have the OSVERSION_SPECIFIC flag set. I.e., the complete OS" - echo "version number is required. For example:" - echo " user@ftp.NetBSD.org:/pub/NetBSD/packages/1.5.1/alpha" - echo " " - echo "RSYNC_DST_OTHER should be set to the destination for packages" - echo "which do _not_ have the OSVERSION_SPECIFIC flag set. I.e., only" - echo "the major.minor release string is used. For example, on a 1.5.1" - echo "alpha system you would use:" - echo " user@ftp.NetBSD.org:/pub/NetBSD/packages/1.5/alpha" - echo "If you are building from pkgsrc current, set the destination" - echo "to major.minor-latest. For example, on a 1.6.1 m68k system where" - echo "building pkgsrc current (assuming pkgsrc-1-6 is already built):" - echo " user@ftp.NetBSD.org:/pub/NetBSD/packages/1.6-latest/m68k" - echo " " +if [ "$RSYNC_DST_SPECIFIC" != "" -o "$RSYNC_DST_OTHER" != "" ]; then + echo Use of RSYNC_DST_SPECIFIC and RSYNC_DST_OTHER is deprecated. + echo Please just set RSYNC_DST in build.conf. exit 1 fi +if [ -z "$RSYNC_DST" ]; then + echo "You must set the variable RSYNC_DST, see build.conf-example." + exit 1 +fi + +# Paths for both OS-version-specific and general pkgs: +RSYNC_DST_SPECIFIC=${RSYNC_DST} +RSYNC_DST_OTHER=${RSYNC_DST} + # # Some temp files # |