File:  [LON-CAPA] / loncom / build / install_web_site_cronjob
Revision 1.6: download - view: text, annotated - select for diffs
Mon Feb 3 18:03:52 2003 UTC (21 years, 3 months ago) by harris41
Branches: MAIN
CVS tags: version_1_1_X, version_1_1_99_1, version_1_1_99_0, version_1_1_3, version_1_1_2, version_1_1_1, version_1_1_0, version_1_0_99_3, version_1_0_99_2, version_1_0_99_1, version_1_0_99, version_1_0_3, version_1_0_2, version_1_0_1, version_1_0_0, version_0_99_5, version_0_99_4, version_0_99_3, version_0_99_2, version_0_99_1, version_0_99_0, conference_2003, HEAD
best wishes to all.

    1: #!/usr/bin/perl
    2: 
    3: =pod
    4: 
    5: =head1 NAME
    6: 
    7: install_web_site_cronjob - maintain install.lon-capa.org web-site every day
    8: 
    9: =head1 DESCRIPTION
   10: 
   11: This is a file that runs periodically on B<install.lon-capa.org>.
   12: 
   13: This file should be run by the 'loninst' user and be part of
   14: the 'loninst' crontab entries (to view loninst crontab, login
   15: as loninst and crontab C<-l>; to edit loninst crontab, login as
   16: loninst and crontab C<-e>).
   17: 
   18: This file should be on the B<install.lon-capa.org> filesystem as
   19: F</home/loninst/auto/install_web_site_cronjob>.
   20: 
   21: The current 'loninst' crontab entry is:
   22: 
   23: 13 16 * * *    /home/loninst/auto/install_web_site_cronjob
   24: 
   25: The main goal of B<install_web_site_cronjob> is to periodically produce the
   26: unstable tarball needed for LON-CAPA installation.
   27: 
   28: A secondary yet important function of B<install_web_site_cronjob> is that it
   29: also refreshes the documentation present on the install.lon-capa.org
   30: web site.
   31: 
   32: This documentation is refreshed based on a file located inside
   33: F</home/loninst/public_html/versions>.  This file is named
   34: F<LATEST-IS-VERSIONNUMBER>, where
   35: I<VERSIONNUMBER> is the latest stable release of loncapa (e.g. 0.4 or 0.6.1).
   36: The F<LATEST-IS-VERSIONNUMBER> file contains a string
   37: that is used to date the release of the current stable version.
   38: 
   39: The coding of this script is a strange brew of shell commands
   40: with perl.
   41: 
   42: =head1 AUTHOR
   43: 
   44: 
   45: =cut
   46: 
   47: # --------------------------------------------- Making the tarball distribution
   48: 
   49: # In an ideal world, this tarball distribution would be always generated with
   50: # the "make tardist" command.  But instead, unstable is now defined as
   51: # "all the gunk we have been working on", whereas the 
   52: # "make tardist" command means a "carefully inventoried selection of gunk".
   53: #`cd /home/loninst/auto; export CVS_PASSFILE=/home/loninst/.cvspass; export CVSROOT=:pserver:scott\@localhost:/home/cvs; rm -Rf loncapa/[C][^V]*; rm -Rf loncapa/[^C]*; cvs -Q co loncapa; cd loncapa/loncom/build; make build 2>/dev/null; make tardist;`;
   54: 
   55: # The real world.  Just give them all the gunk for the unstable distribution.
   56: `cd /home/loninst/auto; export CVS_PASSFILE=/home/loninst/.cvspass; export CVSROOT=:pserver:scott\@localhost:/home/cvs; rm -Rf loncapa-unstable; rm -Rf loncapa; cvs -Q export -r HEAD loncapa;`;
   57: 
   58: # Generate a README file that advises them about dealing with the gunk.
   59: open(OUT,'>/home/loninst/auto/loncapa/README');
   60: print(OUT <<END);
   61: This is a CVS export of LON-CAPA generated on:
   62: END
   63: print(OUT `date`);
   64: print(OUT <<END);
   65: 
   66: To generate an installable tarball distribution from this file, you can
   67: execute the following commands:
   68: cd loncom/build
   69: make tardist
   70: 
   71: Note that the installable tarball distribution (the 'tardist' target)
   72: is what encapsulates the stable releases of the LON-CAPA software (as
   73: well as ensuring that LON-CAPA's distributability does not rely solely on
   74: CVS software).
   75: 
   76: END
   77: print(OUT <<END);
   78: An alternative Makefile command sequence is:
   79: cd loncom/build
   80: make build
   81: make install
   82: 
   83: For more information on Makefile targets, you can just enter the following
   84: commands:
   85: cd loncom/build
   86: make help
   87: 
   88: Finally, if you encounter any problems, be sure to enter them
   89: into the bug database http://bugs.lon-capa.org/ or, alternatively,
   90: discuss them on one of the mailing lists available at
   91: http://mail.lon-capa.org/.
   92: END
   93: close(OUT);
   94: 
   95: # Roll the directory together into the unstable tarball.
   96: `cd /home/loninst/auto; ln -s loncapa loncapa-unstable; tar cvvf loncapa-unstable.tar loncapa-unstable/* ;gzip -9 -f loncapa-unstable.tar`;
   97: 
   98: # ---------------------------------------- Dynamically generating documentation
   99: `cd /home/loninst/auto/loncapa/loncom/build; make pdfdoc`;
  100: `cd /home/loninst/auto/loncapa/loncom/build; make doc`;
  101: `cd /home/loninst/auto/loncapa/loncom/build; cp docs.tar.gz /home/loninst/public_html/docs/.`;
  102: `cd /home/loninst/public_html/docs; tar xzf docs.tar.gz`;
  103: 
  104: # ------------------------------------ Copying over the latest unstable tarball
  105: #my $filename=`cd /home/loninst/auto; find loncapa -type f -name *.tar.gz -maxdepth 1`;
  106: #chomp($filename);
  107: #$filename=~/loncapa\/loncapa\-(.*?)\.tar\.gz/;
  108: #my $version=$1;
  109: `cd /home/loninst/auto; cp -f loncapa-unstable.tar.gz ../public_html/versions/loncapa-unstable.tar.gz`;
  110: #`cd /home/loninst/public_html/versions; rm -f loncapa-unstable.tar.gz; ln -s loncapa-$version-unstable.tar.gz loncapa-unstable.tar.gz`;
  111: 
  112: # ------------------------------------------------ Determine the latest version
  113: my $filename=`cd /home/loninst/public_html/versions; find . -type f -name LATEST-IS-* -maxdepth 1`;
  114: chomp($filename);
  115: $filename =~ /LATEST-IS-(.*)/;
  116: my $version = $1;
  117: open(IN,"</home/loninst/public_html/versions/$filename");
  118: my $releasedate = <IN>;
  119: close(IN);
  120: 
  121: # ------------------ Updating the download page with the date of the last build
  122: open(IN,"</home/loninst/public_html/docs/downloads/index.html");
  123: my @lines = <IN>;
  124: close(IN);
  125: my $date = `date -I`; chomp($date);
  126: my $text = join('',@lines);
  127: $text =~ s/loncapa-unstable\.tar\.gz\<\/a\>.*?\./loncapa-unstable\.tar\.gz\<\/a\> (generated $date)\./;
  128: $text =~ s/LATESTVERSION/$version/g;
  129: $text =~ s/LATESTDATE/$releasedate/g;
  130: open(OUT,">/home/loninst/public_html/docs/downloads/index.html");
  131: print(OUT $text);
  132: close(OUT);

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>