The build is done from your CVS working directory; however, the script
does a clean checkout into a separate directory, $REL_DIR
,
which is set to $(HOME)/src_release
by default. The actual
release build is done in this directory, not your working directory.
Note that the build process is specific to the environment at Ricoh CRC;
so far, that's where all releases are made. The gzipped tar file is
generated directly in /pia1/pia/pia_srcversion.tgz
and copied to the RiSource.org
website. The release directory used to be copied over to
/pia1/pia
as src_releaseversion
; this
is no longer done by default. Since the PIA is now open source, binary
releases are no longer made, either. Old src_release directories can just
be deleted; .tgz
files should be kept around for reference.
Use the following command to ensure that references to your home directory
have not snuck into the code; typically this happens when you save an
AGENT.xml
file for a new agent. (Note that the references to
/home/steve
in Doc/intro.html
are OK -- they're
in an example.)
find . -type f \! -name \*class \! -name Root \! -name Repository -print0 |\ xargs -0 -e grep -n -e "$HOME"
Replace $HOME
with /pia1
to catch additional
references to CRC's local directory structure. References in the
top-level Makefile and this note are OK because they involve the release
process; a few other references occur in comments.
Of course, you should make sure that the PIA actually runs on your machine, and that the links (at least on the home page) are still good.
Note that an abbreviated summary of the build process can be found in the top-level Makefile.
PIA/Makefile
:
RELEASE = 2 MAJOR = 0 MINOR = 5 SUFFIX = a
CVS commit Makefile
make prep-checkout
CREATE_CVS_TAG
has been set to 1. This is fairly
expensive; if you are only changing the minor version number, consider
doing make update-version
instead.
make rsync-cvs
-- synchronize CVS repositoriesrsync
to synchronize the internal and external
cvs respositories. You have to be running under ssh-agent
for this to work. Otherwise, you'll have to do it manually so that
ssh
can prompt you for your passphrase:
cd /pia1/CvsRoot rsync -e ssh -a --numeric-ids --delete -v PIA cvs.risource.org:/home/cvsroot/Don't be alarmed by the fact that this uploads everything -- the previous step (tagging) changes every file in the repository. Can't be helped.
make src-release
-- This does the rest of the build. cd
if you
don't want to. The build no longer involves a
make clean
, so a minor release can be made without a
complete rebuild. build_release
does make
doc
, so it is strongly recommended that your
machine have at least 128Mb of RAM.
do_checkout |
check out the release from the public server. |
build_release |
Build the code and documentation |
tar_file |
Make a compressed tar file in /pia1/pia. |
|
Link the tar file to pia_src.tgz. |
make copy_src_dir
is now optional; it copies the
src_release directory to /pia1/pia. It uses up quite a lot of
space, and can lead to directory trees that are hard to delete.
javadoc
failure; you can
partially fix this with
cd ~/src_release/PIA/src/java make jdocThis doesn't build the indices, unfortunately.
www.RiSource.org
website. This is best done via
the ssh
(secure shell) and scp
(secure copy)
commands.
RiSource.org/PIA/latest.html
(the ``what's new''
page) and copy it to
/home/web/risource-htdocs/PIA
.tgz
file to
/home/ftp/PIA
/home/ftp/PIA/pia_src.tgz
a symbolic link to the
new .tgz
file.
This file contains some updates by <steve@rii.ricoh.com>.