Ravenbrook / Projects / Perforce Defect Tracking Integration / Version 1.1 Product Sources / Design
Perforce Defect Tracking Integration Project
This document describes the design of the automated build support for the P4DTI.
The purpose of this document is to make it possible for people to maintain and adapt the build system. The build system is designed to help people make P4DTI releases of high quality at a low cost.
The readership of this document is the product developers.
This document is not confidential.
The automated build system replaces a completely manual build system (see for example [GDR 2001-10-17a]) that became unwieldy as more build targets were added and as the complexity of the build process increased. The change that really required automatic support for the build process was the fix for job000331. This meant that manuals and other documents had to be processed before becoming part of the release, which meant that the products could no longer be built directly from the version sources in the Perforce repository.
The release build procedure [GDR 2000-10-17b] produces the products in the following table:
Target | Product | Notes | See |
---|---|---|---|
bugzilla |
p4dti-bugzilla-RELEASE.tar.gz |
Bugzilla integration (gzipped tar archive: any supported Unix platform). | 3.1 |
p4dti-RELEASE-1.i386.rpm |
Bugzilla integration (RPM package: RedHat Linux only). | 3.2 | |
teamtrack |
p4dti-teamtrack-RELEASE.zip |
TeamTrack integration (ZIP archive). | 3.3 |
p4dti-teamtrack-RELEASE.exe |
TeamTrack integration (self-extracting archive). | 3.4 | |
kit |
p4dti-kit-RELEASE.tar.gz |
Integration kit (gzipped tar archive). | 3.5 |
p4dti-kit-RELEASE.zip |
Integration kit (ZIP archive). | 3.6 | |
manuals |
readme.txt |
Installation instructions. | 3.7 |
release-notes.txt |
Supported platforms, fixed defects, other release notes. | ||
ag/... |
Copy of Administrator's Guide. | ||
ug/... |
Copy of User's Guide. | ||
ig/... |
Copy of Integrator's Guide |
Make sure your version sources are up to date by completing and
submitting any work in progress and syncing
//info.ravenbrook.com/project/p4dti/version/VERSION/...
.
Then go to the tool/
subdirectory and run:
python build.py OPTIONS
where the options are as follows:
-r, --release |
The release you want to build (for example, "1.2.3"). You must supply this option. |
-c, --changelevel |
The changelevel from which you want to build the release (for
example, "12345"). If you don't supply this option, the build script
will use the current changelevel given by p4 counter
change . |
-t, --target |
The target you want to build; see the "Target" column in table 1. Specify multiple -t options
if you want to build multiple targets. |
For example, to build the Bugzilla integration and the online manuals for release 1.1.2 from the version 1.1 sources at changelevel 13579, run the command:
python build.py -r 1.1.2 -c 13579 -t bugzilla -t manuals
The Bugzilla tarball must unpack into a directory called
p4dti-bugzilla-RELEASE
. It contains:
readme.txt
, release-notes.txt
and
licence.txt
.
The replicator sources:
code/replicator/*.py
.
The Administrator's Guide and the User's Guide, with URLs
converted appropriately (meaning that they refer to each other with
relative links but refer to other files with links starting
http://www.ravenbrook.com/
).
The Bugzilla start/stop script:
packaging/linux/startup-script
.
A patch for Bugzilla 2.10 called
bugzilla-2.10-patch
, generated by
( BEFORE=`p4 where //info.ravenbrook.com/project/p4dti/import/2000-05-09/bugzilla-2.10/bugzilla-2.10 | cut -d ' ' -f 3` AFTER=`p4 where //info.ravenbrook.com/project/p4dti/version/VERSION/code/bugzilla-2.10 | cut -d ' ' -f 3` cd $AFTER && diff -r -u $BEFORE . )
A patch for Bugzilla 2.12 called
bugzilla-2.12-patch
, generated by
( BEFORE=`p4 where //info.ravenbrook.com/project/p4dti/import/2001-04-27/bugzilla-2.12/bugzilla-2_12 | cut -d ' ' -f 3` AFTER=`p4 where //info.ravenbrook.com/project/p4dti/version/VERSION/code/bugzilla-2.12 | cut -d ' ' -f 3` cd $AFTER && diff -r -u $BEFORE . )
The Bugzilla RPM is described in detail in [FJMD 2001-02-13].
It must be built from the Bugzilla tarball (section 3.1 using the commands
echo "%_topdir $HOME/rpm" > $HOME/.rpmmacros mkdir -p $HOME/rpm/{BUILD,SRPMS,RPMS/i386,SOURCES} cp release/RELEASE/p4dti-bugzilla-RELEASE.tar.gz $HOME/rpm/SOURCES rpm --define "packager YOUR-EMAIL" -ba version/VERSION/packaging/linux/p4dti.spec cp $HOME/rpm/RPMS/i386/p4dti-RELEASE-1.i386.rpm release/RELEASE
The TeamTrack ZIP archive must unpack into a directory called
p4dti-RELEASE
. It contains:
readme.txt
, release-notes.txt
and
licence.txt
.
The replicator sources:
code/replicator/*.py
.
The TeamTrack 4.5 interface:
code/replicator/teamtrack45.pyd
, built using Microsoft
Visual C++.
The TeamTrack 5.0 interface:
code/replicator/teamtrack50.pyd
, built using Microsoft
Visual C++.
The Windows Registry key file:
code/replicator/p4dti/reg
.
The Administrator's Guide and the User's Guide, with URLs
converted appropriately (meaning that they refer to each other with
relative links but refer to other files with links starting
http://www.ravenbrook.com/
).
The TeamTrack self-extracting archive must unpack by default into
the directory called C:\Program
Files\p4dti-teamtrack-RELEASE
. It contains the same
contents as the TeamTrack ZIP archive (section
3.3).
The Integration kit tarball must unpack into a directory called
p4dti-kit-RELEASE
. It must contain all files in the
version sources, with URLs converted appropriately in XHTML documents
(meaning that they refer to other documents in the integration kit with
relative links but refer to documents not in the kit with links starting
http://www.ravenbrook.com/
).
Same as the integration kit tarball (section 3.5), different archiver.
The URLs in the Administrator's Guide, the Integrator's Guide and
the User's Guide must be converted appropriately (meaning that they
refer to each other with relative links but refer to other files with
links starting http://www.ravenbrook.com/
).
[FJMD 2001-02-13] | "Building rpms for p4dti"; Francis Davey; Ravenbrook Limited; 2001-02-13. |
[GDR 2000-10-17a] | "Release Build Procedure (Version 1.0)"; Gareth Rees; Ravenbrook Limited; 2000-10-17. |
[GDR 2000-10-17b] | "Release Build Procedure"; Gareth Rees; Ravenbrook Limited; 2000-10-17. |
2001-07-13 | GDR | Created. |
2001-07-18 | GDR | The TeamTrack integration unpacks into a directory called P4DTI-RELEASE , as it says in the readme. Include p4dti.reg in TeamTrack integration. Corrected name of RPM. |
This document is copyright © 2001 Perforce Software, Inc. All rights reserved.
Redistribution and use of this document in any form, with or without modification, is permitted provided that redistributions of this document retain the above copyright notice, this condition and the following disclaimer.
This document is provided by the copyright holders and contributors "as is" and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright holders and contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this document, even if advised of the possibility of such damage.
$Id: //info.ravenbrook.com/project/p4dti/version/1.1/design/build/index.html#4 $
Ravenbrook / Projects / Perforce Defect Tracking Integration / Version 1.1 Product Sources / Design