scripts/release
author deba
Tue, 17 Oct 2006 10:50:57 +0000
changeset 2247 269a0dcee70b
parent 2124 c3b9c574fa3e
child 2279 2c3fee01d3ed
permissions -rwxr-xr-x
Update the Path concept
Concept check for paths

DirPath renamed to Path
The interface updated to the new lemon interface
Make difference between the empty path and the path from one node
Builder interface have not been changed
// I wanted but there was not accordance about it

UPath is removed
It was a buggy implementation, it could not iterate on the
nodes in the right order
Right way to use undirected paths => path of edges in undirected graphs

The tests have been modified to the current implementation
     1 #!/bin/bash
     2 
     3 # THE FIRST PARAMETER IS THE VERSION STRING
     4 
     5 if [ $# != 1 ]; then
     6     echo
     7     echo 'Usage: release version-string'
     8     echo 
     9     echo "WARNING: This script modifies the repository, so don't use it unless"
    10     echo '         you really want to make a release'
    11     exit 1
    12 fi
    13 
    14 set -e
    15 
    16 function make-dir () {
    17     if [ ! -d $1 ]; then
    18 	mkdir $1
    19     fi
    20 }
    21 
    22 VERSION=$1
    23 PKGNAME='lemon'
    24 VERSION_STRING='svnhead'
    25 
    26 make-dir release-dir
    27 cd release-dir
    28 
    29 echo
    30 echo '**********************************************************************'
    31 echo '   CHECK OUT'
    32 echo '**********************************************************************'
    33 echo
    34 
    35 rm -rf trunk
    36 svn co https://hugo.cs.elte.hu/svn/hugo/trunk
    37 # svn lock https://hugo.cs.elte.hu/svn/hugo/trunk
    38 
    39 cd trunk
    40 
    41 echo
    42 echo '**********************************************************************'
    43 echo "   CHANGE THE VERSION TO ${VERSION}"
    44 echo '**********************************************************************'
    45 echo
    46 
    47 sed "s/${VERSION_STRING}/${VERSION}/" <configure.ac >configure.ac.tmp
    48 mv configure.ac.tmp configure.ac
    49 
    50 echo
    51 echo '**********************************************************************'
    52 echo '   CREATE TARBALL'
    53 echo '**********************************************************************'
    54 echo
    55 
    56 ./bootstrap --amver=1.7
    57 ./configure CXXFLAGS='-g -O2 -W -Wall -Werror' --enable-gui --enable-demo --enable-benchmark
    58 make doc
    59 make distcheck 
    60 
    61 cd ..
    62 
    63 echo
    64 echo '**********************************************************************'
    65 echo '   CREATE THE OTHER TAR FILES'
    66 echo '**********************************************************************'
    67 echo
    68 
    69 mv trunk/${PKGNAME}-${VERSION}.tar.gz .
    70 tar xzf ${PKGNAME}-${VERSION}.tar.gz
    71 mv ${PKGNAME}-${VERSION}/doc/html ./${PKGNAME}-doc-${VERSION}
    72 tar czf ${PKGNAME}-doc-${VERSION}.tar.gz ${PKGNAME}-doc-${VERSION}
    73 tar czf ${PKGNAME}-${VERSION}-nodoc.tar.gz ${PKGNAME}-${VERSION}
    74 rm -rf ${PKGNAME}-${VERSION} ${PKGNAME}-doc-${VERSION}
    75 
    76 echo
    77 echo '**********************************************************************'
    78 echo '   CREATE SVN TAG'
    79 echo '**********************************************************************'
    80 echo
    81 
    82 svn cp trunk https://hugo.cs.elte.hu/svn/hugo/tags/${PKGNAME}-${VERSION} -m "Version ${VERSION} released."
    83 # svn unlock https://hugo.cs.elte.hu/svn/hugo/trunk