Skip to content

Commit 57f8ce9

Browse files
author
pd
committed
update R-set-version for nicknames, new sample crontab
git-svn-id: https://svn.r-project.org/R-dev-web/trunk@2693 c52295ea-58df-0310-926a-d16021944841
1 parent 2e89f2e commit 57f8ce9

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

R-crontab.sample

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/texbin:/usr/X11/bin
1+
PATH=/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/texbin:/usr/X11/bin
22
3-
10 00 * * * $HOME/scripts/R-build-prerelease
4-
05 00 25 3 * $HOME/scripts/R-create-branch 2.11
5-
05 00 8 4 * $HOME/scripts/R-set-version '2.11.0 beta'
6-
05 00 15 4 * $HOME/scripts/R-set-version '2.11.0 RC'
3+
05 00 * * * $HOME/scripts/R-build-prerelease
4+
02 00 12 06 * $HOME/scripts/R-set-version '2.15.1 beta' 'Roasted Marshmallows'
5+
02 00 15 06 * $HOME/scripts/R-set-version '2.15.1 RC'
6+
00 09 22 06 * $HOME/scripts/R-build-dist 2.15.1
7+
#02 00 02 03 * $HOME/scripts/R-create-branch 2.15
8+
#02 00 16 03 * $HOME/scripts/R-set-version '2.15.0 beta'
9+
#02 00 23 03 * $HOME/scripts/R-set-version '2.15.0 RC'
10+
#00 09 30 03 * $HOME/scripts/R-build-dist 2.15.0

R-set-version

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
#!/bin/bash -x
2-
# This script sets the VERSION file and commits it
2+
# This script sets the VERSION file andi, optionally, the VERSION-NICK
3+
# and then commits the changes
34
# It is run from cron at Feature Freeze and Code Freeze
45
LOCALDIR=$HOME
56
# -- no changes necessary below this line
67
cd $LOCALDIR/r-release-branch
78
umask 022
89
cd R
910
svn up || exit 1
10-
echo $* > VERSION
11+
echo $1 > VERSION
12+
if [ x"$2" != x ]; then echo $2 > VERSION-NICK ; fi
1113
aclocal -I m4 --force
1214
autoconf --force
1315
svn commit -m "go to $*"

0 commit comments

Comments
 (0)