TWiki home VRJ Wiki > Juggler > VrjReleaseProcess (r1.1 vs. r1.10) VRJ Wiki webs:
Juggler | VRJPlanning | Main | TWiki | Test
Juggler . { Home | Changes | Index | Search | Go }
 <<O>>  Difference Topic VrjReleaseProcess (r1.10 - 02 Sep 2005 - DanielShipton)

META TOPICPARENT MakingReleases
TOC: No TOC in "Juggler.VrjReleaseProcess"
Line: 58 to 58

    • Once the distribution has been completed, it can be moved into /home/vr/Juggler/2.0.

IRIX

Changed:
<
<
>
>
  • Don't use the IRIX tar to untar...Use a linux box to untar because IRIX tar cannot make all of the symlinks right

  • Build N32/mips3 (default) SPROC
  • Build N32/mips3 (default) POSIX
  • Build 64/mips4 (--with-abi=64_M4) SPROC

 <<O>>  Difference Topic VrjReleaseProcess (r1.9 - 29 Dec 2004 - PatrickHartling)

META TOPICPARENT MakingReleases
TOC: No TOC in "Juggler.VrjReleaseProcess"
Line: 10 to 10

  • VPR
  • Tweek
Changed:
<
<
    • Java support which requires CORBA and JDOM
>
>
    • Java support which requires CORBA

    • C++ CORBA support which requires omniORB 4.0.3 or newer (for full compiler support)
  • JCCL
    • Java support
  • Sonix
Changed:
<
<
    • All possible plug-ins (OpenAL and AudioWorks as a bare minimum)
>
>
    • All possible plug-ins (OpenAL and Audiere as a bare minimum)

  • Gadgeteer
    • All drivers except TrackdAPI (we don't have a copy of it)
Changed:
<
<
    • For VRPN, use 06.06 beta 4 or newer as it is the first version that compiles with Visual C++ 7.1
>
>
    • For VRPN, use 06.06 or newer as it is the first version that compiles with Visual C++ 7.1

  • VR Juggler and VRJConfig

Steps

Line: 77 to 77

Mac OS X

Changed:
<
<
  • Build NSPR + X11 version
>
>
  • Build X11 version
    • Create a disk image for distribution purposes

Documentation

Changed:
<
<
Note that documentation releases must be built on a Linux machine in the VRAC lab. Only there are all the necessary tools available and in a functioning state. (On IRIX, Java crashes when trying to run the XSLT code.)
>
>
The DocBook-related tools needed for rendering the documentation can be found as attachments to WritingDocumentationUsingDocBook.

  • Build a documentation release:

Line: 93 to 94

Things to check before releasing

Changed:
<
<
  • All boost files were installed, including the few .h files that they have in their source tree.
>
>
  • All Boost files were installed, including the few .h files that they have in their source tree.

Uploading to SourceForge


 <<O>>  Difference Topic VrjReleaseProcess (r1.8 - 27 Dec 2004 - DanielShipton)

META TOPICPARENT MakingReleases
TOC: No TOC in "Juggler.VrjReleaseProcess"
Line: 46 to 46

  • Use make release unless otherwise noted.
  • The target install-deps installs all the detected dependencies. By default, it installs into the same tree where VR Juggler is installed by the release target, but this can be changed by setting the varaible deps_prefix when running make. For example:

Changed:
<
<
make release
>
>
make prefix=/home/users/me/vrjuggler-2.0 release

make deps_prefix=/home/users/me/vrjuggler-2.0-deps install-deps

 <<O>>  Difference Topic VrjReleaseProcess (r1.7 - 30 Apr 2004 - PatrickHartling)

META TOPICPARENT MakingReleases
TOC: No TOC in "Juggler.VrjReleaseProcess"
Line: 11 to 11

  • VPR
  • Tweek
    • Java support which requires CORBA and JDOM
Changed:
<
<
    • C++ CORBA support which requires omniORB 4.0.1 or newer (for full compiler support)
>
>
    • C++ CORBA support which requires omniORB 4.0.3 or newer (for full compiler support)

  • JCCL
    • Java support
  • Sonix
    • All possible plug-ins (OpenAL and AudioWorks as a bare minimum)
  • Gadgeteer
    • All drivers except TrackdAPI (we don't have a copy of it)
Added:
>
>
    • For VRPN, use 06.06 beta 4 or newer as it is the first version that compiles with Visual C++ 7.1

  • VR Juggler and VRJConfig
Deleted:
<
<
  • vjAvatar with Cal3D

Steps

Line: 29 to 29

  1. Increment the version in juggler/modules/vrjuggler/VERSION
    • Do this so that the release is against a specific VR Juggler version.
  2. Update juggler/modules/vrjuggler/RELEASE-NOTES.txt with any relevant information regarding API changes, major bug fixes, and cool new features.
Changed:
<
<
  1. For modules being checked out from a branch rather than a frozen release tag, in juggler/Gatherrc add the current date to the module configuration (Date: mm/dd/yyyy hh:mm:ss TZ;).
    • This is done to make something like a frozen snapshot of the dependent code acquired by cvs-gather.
    • Make sure to commit this, of course.
  2. Tag the tree.
>
>
  1. Tag the tree with a release tag (referred to below as <TAG_NAME>).

  1. Remove the source tree you were just working with and run the following:
Deleted:
<
<
    • Note that after running cvs-gather, you could get rid of the CVS directories in the code checked out by cvs-gather, but that isn't terribly important.

   cvs -d <...> export -kv -r <TAG_NAME> juggler
   cd juggler
Deleted:
<
<
./cvs-gather.pl

./autogen.sh

  • Once the above is done, tar up the fully populated source tree. Compress it with bzip2 -9 to make it as small as possible.
    • This is the source distribution.
Deleted:
<
<
    • Note that vjAvatar isn't included in this. This is kind of bad, but the vjAvatar source does not have a place to live in this source tree. It could go into juggler/external if nothing else.

Binary Distributions

Deleted:
<
<
  • After each binary distribution is compiled, vjAvatar needs to be compiled against it. The compiled version of vjAvatar and Cal3D needs to be inserted into the binary release tree. Fun, huh?

  • Use maximum compression when creating the final archive to be uploaded to SourceForge.
  • Use make release unless otherwise noted.
Added:
>
>
  • The target install-deps installs all the detected dependencies. By default, it installs into the same tree where VR Juggler is installed by the release target, but this can be changed by setting the varaible deps_prefix when running make. For example:
   make release
   make deps_prefix=/home/users/me/vrjuggler-2.0-deps install-deps

Before Beginning

Line: 61 to 59

IRIX

Changed:
<
<
  • Build N32 SPROC
  • Build N32 POSIX
>
>
  • Build N32/mips3 (default) SPROC
  • Build N32/mips3 (default) POSIX
  • Build 64/mips4 (--with-abi=64_M4) SPROC
  • Build 64/mips4 (--with-abi=64_M4) POSIX

Linux

Line: 70 to 70

Windows

Changed:
<
<
  • Build NSPR debugging
    • On Windows, we currently have bugs relating to the binary incompatibility of debugging versus optimized code. No one has had time to try to improve the build system to account for this. At this pre-release stage of VR Juggler 2.0, people would be better off using the debug builds, so that is what we distribute on Windows. Do not bother trying to build optimized binaries.
>
>
  • Build NSPR debug and release
    • The Python script buildwin32.py will ask for a path for the VR Juggler installation and for the dependency installation. These can be the same if desired.
    • Select everything under the Batch Build dialog and build.

    • Compress the binary distribution tree using WinZip with maximum compression.

Mac OS X

  • Build NSPR + X11 version
Deleted:
<
<

Documentation

Note that documentation releases must be built on a Linux machine in the VRAC lab. Only there are all the necessary tools available and in a functioning state. (On IRIX, Java crashes when trying to run the XSLT code.)

Line: 105 to 105

Deleted:
<
<
  • Change juggler/Gatherrc back to the way it was prior to the release. That is, remove any dates that were added earlier.

-- PatrickHartling - 01 Jul 2003


 <<O>>  Difference Topic VrjReleaseProcess (r1.6 - 25 Sep 2003 - PatrickHartling)

META TOPICPARENT MakingReleases
TOC: No TOC in "Juggler.VrjReleaseProcess"
Line: 103 to 103

Finishing Up

Added:
>
>

  • Change juggler/Gatherrc back to the way it was prior to the release. That is, remove any dates that were added earlier.

-- PatrickHartling - 01 Jul 2003


 <<O>>  Difference Topic VrjReleaseProcess (r1.5 - 25 Sep 2003 - AronBierbaum)

META TOPICPARENT MakingReleases
TOC: No TOC in "Juggler.VrjReleaseProcess"
Line: 91 to 91

mv vrj-docs.dist
Added:
>
>

Things to check before releasing

  • All boost files were installed, including the few .h files that they have in their source tree.

Uploading to SourceForge


 <<O>>  Difference Topic VrjReleaseProcess (r1.4 - 02 Jul 2003 - BenScott)

META TOPICPARENT MakingReleases
TOC: No TOC in "Juggler.VrjReleaseProcess"
Line: 29 to 29

  1. Increment the version in juggler/modules/vrjuggler/VERSION
    • Do this so that the release is against a specific VR Juggler version.
  2. Update juggler/modules/vrjuggler/RELEASE-NOTES.txt with any relevant information regarding API changes, major bug fixes, and cool new features.
Changed:
<
<
  1. For modules being checked out from a branch rather than a frozen release tag, add the current date to the module configuration (Date: mm/dd/yyyy hh:mm:ss TZ;).
>
>
  1. For modules being checked out from a branch rather than a frozen release tag, in juggler/Gatherrc add the current date to the module configuration (Date: mm/dd/yyyy hh:mm:ss TZ;).

    • This is done to make something like a frozen snapshot of the dependent code acquired by cvs-gather.
    • Make sure to commit this, of course.
  1. Tag the tree.

 <<O>>  Difference Topic VrjReleaseProcess (r1.3 - 02 Jul 2003 - PatrickHartling)

META TOPICPARENT MakingReleases
TOC: No TOC in "Juggler.VrjReleaseProcess"
Line: 39 to 39

cvs -d <...> export -kv -r juggler cd juggler ./cvs-gather.pl
Added:
>
>
./autogen.sh

  • Once the above is done, tar up the fully populated source tree. Compress it with bzip2 -9 to make it as small as possible.

 <<O>>  Difference Topic VrjReleaseProcess (r1.2 - 02 Jul 2003 - PatrickHartling)

META TOPICPARENT MakingReleases
TOC: No TOC in "Juggler.VrjReleaseProcess"
Line: 29 to 29

  1. Increment the version in juggler/modules/vrjuggler/VERSION
    • Do this so that the release is against a specific VR Juggler version.
  2. Update juggler/modules/vrjuggler/RELEASE-NOTES.txt with any relevant information regarding API changes, major bug fixes, and cool new features.
Changed:
<
<
  1. Change any CVS branch tags in juggler/Gatherrc to match the current date.
>
>
  1. For modules being checked out from a branch rather than a frozen release tag, add the current date to the module configuration (Date: mm/dd/yyyy hh:mm:ss TZ;).

    • This is done to make something like a frozen snapshot of the dependent code acquired by cvs-gather.
    • Make sure to commit this, of course.
  1. Tag the tree.
Line: 98 to 98

Finishing Up

Changed:
<
<
  • Change juggler/Gatherrc back to the way it was prior to the release. That is, change dates back to branch names.
>
>
  • Change juggler/Gatherrc back to the way it was prior to the release. That is, remove any dates that were added earlier.

-- PatrickHartling - 01 Jul 2003


 <<O>>  Difference Topic VrjReleaseProcess (r1.1 - 02 Jul 2003 - PatrickHartling)
Line: 1 to 1
Added:
>
>
META TOPICPARENT MakingReleases

Making a VR Juggler Release

Pieces

"VR Juggler" is basically supposed to be everything, which means that a lot of code goes into a release distribution. The following lists everything that goes into a distribution of VR Juggler (for a 2.0 pre-release).

  • VPR
  • Tweek
    • Java support which requires CORBA and JDOM
    • C++ CORBA support which requires omniORB 4.0.1 or newer (for full compiler support)
  • JCCL
    • Java support
  • Sonix
    • All possible plug-ins (OpenAL and AudioWorks as a bare minimum)
  • Gadgeteer
    • All drivers except TrackdAPI (we don't have a copy of it)
  • VR Juggler and VRJConfig
  • vjAvatar with Cal3D

Steps

Source Distribution

  1. Check out a clean copy of the juggler module. Do not run cvs-gather.
  2. Increment the version in juggler/modules/vrjuggler/VERSION
    • Do this so that the release is against a specific VR Juggler version.
  3. Update juggler/modules/vrjuggler/RELEASE-NOTES.txt with any relevant information regarding API changes, major bug fixes, and cool new features.
  4. Change any CVS branch tags in juggler/Gatherrc to match the current date.
    • This is done to make something like a frozen snapshot of the dependent code acquired by cvs-gather.
    • Make sure to commit this, of course.
  5. Tag the tree.
  6. Remove the source tree you were just working with and run the following:
    • Note that after running cvs-gather, you could get rid of the CVS directories in the code checked out by cvs-gather, but that isn't terribly important.
   cvs -d <...> export -kv -r <TAG_NAME> juggler
   cd juggler
   ./cvs-gather.pl

  • Once the above is done, tar up the fully populated source tree. Compress it with bzip2 -9 to make it as small as possible.
    • This is the source distribution.
    • Note that vjAvatar isn't included in this. This is kind of bad, but the vjAvatar source does not have a place to live in this source tree. It could go into juggler/external if nothing else.

Binary Distributions

  • After each binary distribution is compiled, vjAvatar needs to be compiled against it. The compiled version of vjAvatar and Cal3D needs to be inserted into the binary release tree. Fun, huh?
  • Use maximum compression when creating the final archive to be uploaded to SourceForge.
  • Use make release unless otherwise noted.

Before Beginning

  • Install the freshly made source distribution in /home/vr/Juggler/2.0.
    • Make all builds against this distribution, though do them in /tmp or /var/tmp to make the process a little faster. configure will find the source code in /home/vr/Juggler/2.0, so don't worry about that.
  • When running configure.pl, pass --prefx=/TEMP_DIRECTORY/vrjuggler-VERSION.PLATFORM so that the installation happens on the local disk.
    • Once the distribution has been completed, it can be moved into /home/vr/Juggler/2.0.

IRIX

  • Build N32 SPROC
  • Build N32 POSIX

Linux

  • Build POSIX

Windows

  • Build NSPR debugging
    • On Windows, we currently have bugs relating to the binary incompatibility of debugging versus optimized code. No one has had time to try to improve the build system to account for this. At this pre-release stage of VR Juggler 2.0, people would be better off using the debug builds, so that is what we distribute on Windows. Do not bother trying to build optimized binaries.
    • Compress the binary distribution tree using WinZip with maximum compression.

Mac OS X

  • Build NSPR + X11 version

Documentation

Note that documentation releases must be built on a Linux machine in the VRAC lab. Only there are all the necessary tools available and in a functioning state. (On IRIX, Java crashes when trying to run the XSLT code.)

  • Build a documentation release:
   make -f Makefile.docs
   make -f Makefile.docs release
   cd ~
   mv vrj-docs.dist <versioned documentation distribution name>

Uploading to SourceForge

  • Read their documentation about making file releases.
  • Read their documentation about posting a news item (in this case, a release announcement).
    • Usually, it is fine to base an announcement on the last one that was made for that release series.

Finishing Up

  • Change juggler/Gatherrc back to the way it was prior to the release. That is, change dates back to branch names.

-- PatrickHartling - 01 Jul 2003



Topic VrjReleaseProcess . { View | Diffs | r1.10 | > | r1.9 | > | r1.8 | More }
Revision r1.1 - 02 Jul 2003 - 02:34 - PatrickHartling
Revision r1.10 - 02 Sep 2005 - 15:42 - DanielShipton

Copyright © 1999-2008 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding VRJ Wiki? Send feedback