Changeset 95 for projects/ckbs/trunk
- Timestamp:
- Mar 2, 2010 10:03:30 AM (11 years ago)
- Location:
- projects/ckbs/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
projects/ckbs/trunk/ckbs.omh
r88 r95 39 39 %$$ 40 40 41 $section ckbs-0.20100 228.0: A Constrained Kalman-Bucy Smoother$$41 $section ckbs-0.20100302.0: A Constrained Kalman-Bucy Smoother$$ 42 42 43 43 $head MathML$$ … … 115 115 $codei% 116 116 web="https://projects.coin-or.org/svn/CoinBazaar/projects/ckbs" 117 svn checkout @web/trunk ckbs-0.20100 228.0117 svn checkout @web/trunk ckbs-0.20100302.0 118 118 %$$ 119 This will create the $code ckbs-0.20100 228.0$$ directory.119 This will create the $code ckbs-0.20100302.0$$ directory. 120 120 121 121 $head Test Install$$ … … 138 138 be built by executing the commands 139 139 $codep 140 cd ckbs-0.20100 228.0140 cd ckbs-0.20100302.0 141 141 ./build_doc.sh 142 142 $$ 143 143 You can then view the documentation in your browser by opening the file 144 144 $codei% 145 ckbs-0.20100 228.0/doc/ckbs.xml145 ckbs-0.20100302.0/doc/ckbs.xml 146 146 %$$ 147 147 -
projects/ckbs/trunk/copy_doc.sh
r77 r95 8 8 # If this is the trunk, then update the version number 9 9 dir=`pwd | sed -e 's|.*/ckbs/||'` 10 if [ "$dir" = "trunk" ]10 if [ "$dir" != "trunk" ] 11 11 then 12 version=`date +%F | sed -e 's|-||g' -e 's|^|0.|'`13 #14 sed -i ckbs.omh -e "s/ckbs-[0-9.]\{10\}/ckbs-$version/"12 echo "copy_doc.sh: should only be run in the trunk." 13 echo "For stable versions use ./build_doc.sh and commit changes in doc/*" 14 exit 1 15 15 fi 16 version=`date +%F | sed -e 's|-||g' -e 's|^|0.|'` 17 sed -i ckbs.omh -e "s/ckbs-[0-9.]\{10\}/ckbs-$version/" 16 18 # 17 19 if [ -e doc ] -
projects/ckbs/trunk/new_release.sh
- Property svn:executable set to *
r88 r95 1 1 #! /bin/bash 2 stable_version="0.20200228" 2 # ------------------------------------------------------------------- 3 # ckbs: Constrained Kalman-Bucy Smoother Program: Copyright (C) 2006 4 # Authors: Bradlely Bell: bradbell at washington dot edu 5 # Gianluigi Pillonetto: giapi at dei dot unipd dot it 6 # License: GNU General Public License Version 2 7 # ---------------------------------------------------------------------------- 8 stable_version="0.20100228" 3 9 release_number="1" 4 m essage="[ckbs/releases] add documentation to tarball release"10 msg="[ckbs/releases] add documentation (missing from 0.20100228.0 release)." 5 11 # ------------------------------------------------------------------------- 6 repository="https://projects.coin-or.org/svn/CoinBazaar" 12 repository="https://projects.coin-or.org/svn/CoinBazaar/projects/ckbs" 13 rep_stable=$repository/stable/$stable_version 14 rep_release=$repository/releases/$stable_version.$release_number 7 15 # 8 svn copy \ 9 $repository/ckbs/stable/$stable_version \ 10 $reposiotry/ckbs/releases/$stable_version.$release_number \ 11 -m "$message" 16 echo "svn $rep_stable $rep_release -m \"$msg\"" 17 if ! svn copy $rep_stable $rep_release -m "$msg" 18 then 19 echo "new_stable.sh: svn copy failed" 20 fi 21 exit 0
Note: See TracChangeset
for help on using the changeset viewer.