#!/bin/sh # # USAGE: ./dist.sh -v VERSION -r REVISION [-rs REVISION-SVN] [-pr REPOS-PATH] # [-apr PATH-TO-APR ] [-apru PATH-TO-APR-UTIL] # [-apri PATH-TO-APR-ICONV] [-neon PATH-TO-NEON] # [-zip] [-alpha ALPHA_NUM|-beta BETA_NUM|-rc RC_NUM] # # Create a distribution tarball, labelling it with the given VERSION. # The REVISION or REVISION-SVN will be used in the version string. # The tarball will be constructed from the root located at REPOS-PATH. # If REPOS-PATH is not specified then the default is "branches/VERSION". # For example, the command line: # # ./dist.sh -v 0.24.2 -r 6284 # # from the top-level of a branches/0.24.2 working copy will create # the 0.24.2 release tarball. Make sure you have apr, apr-util, # and neon subdirectories in your current working directory or # specify the path to them with the -apr, -apru or -neon options. # For example: # ./dist.sh -v 1.1.0 -r 10277 -pr branches/1.1.x \ # -apr -neon ~/in-tree-libraries/neon-0.24.7 \ # -apr ~/in-tree-libraries/httpd-2.0.50/srclib/apr \ # -apru ~/in-tree-libraries/httpd-2.0.50/srclib/apr-util/ # # When building a alpha, beta or rc tarballs pass the apppropriate flag # followeb by the number for that releasse. For example you'd do # the following for a Beta 1 release: # ./dist.sh -v 1.1.0 -r 10277 -pr branches/1.1.x -beta 1 # # If neither an -alpha, -beta or -rc option with a number is # specified, it will build a release tarball. # # To build a Windows zip file package pass -zip and the path # to apr-iconv with -apri. # A quick and dirty usage message USAGE="USAGE: ./dist.sh -v VERSION -r REVISION \ [-rs REVISION-SVN ] [-pr REPOS-PATH] \ [-alpha ALPHA_NUM|-beta BETA_NUM|-rc RC_NUM] \ [-apr APR_PATH ] [-apru APR_UTIL_PATH] [-apri APR_ICONV_PATH] [-neon NEON_PATH ] [-zip] EXAMPLES: ./dist.sh -v 0.36.0 -r 8278 ./dist.sh -v 0.36.0 -r 8278 -pr trunk ./dist.sh -v 0.36.0 -r 8282 -rs 8278 -pr tags/0.36.0 ./dist.sh -v 0.36.0 -r 8282 -rs 8278 -pr tags/0.36.0 -alpha ./dist.sh -v 0.36.0 -r 8282 -rs 8278 -pr tags/0.36.0 -beta 1" # Let's check and set all the arguments ARG_PREV="" for ARG in $@ do if [ "$ARG_PREV" ]; then case $ARG_PREV in -v) VERSION="$ARG" ;; -r) REVISION="$ARG" ;; -rs) REVISION_SVN="$ARG" ;; -pr) REPOS_PATH="$ARG" ;; -rc) RC="$ARG" ;; -apr) APR_PATH="$ARG" ;; -apru) APRU_PATH="$ARG" ;; -apri) APRI_PATH="$ARG" ;; -neon) NEON_PATH="$ARG" ;; -beta) BETA="$ARG" ;; -alpha) ALPHA="$ARG" ;; *) ARG_PREV=$ARG ;; esac ARG_PREV="" else case $ARG in -v|-r|-rs|-pr|-beta|-rc|-alpha|-apr|-apru|-apri|-neon) ARG_PREV=$ARG ;; -zip) ZIP=1 ARG_PREV="" ;; *) echo " $USAGE" exit 1 ;; esac fi done if [ -z "$REVISION_SVN" ]; then REVISION_SVN=$REVISION fi if [ -n "$ALPHA" ] && [ -n "$BETA" ] || [ -n "$ALPHA" ] && [ -n "$RC" ] || [ -n "$BETA" ] && [ -n "$RC" ] ; then echo " $USAGE" exit 1 elif [ -n "$ALPHA" ] ; then VER_TAG="Alpha $ALPHA" VER_NUMTAG="-alpha$ALPHA" elif [ -n "$BETA" ] ; then VER_TAG="Beta $BETA" VER_NUMTAG="-beta$BETA" elif [ -n "$RC" ] ; then VER_TAG="Release Candidate $RC" VER_NUMTAG="-rc$RC" else VER_TAG="r$REVISION_SVN" VER_NUMTAG="" fi if [ -n "$ZIP" ] ; then EXTRA_EXPORT_OPTIONS="--native-eol CRLF" fi if [ -z "$VERSION" ] || [ -z "$REVISION" ] ; then echo " $USAGE" exit 1 fi if [ -z "$APR_PATH" ]; then APR_PATH='apr' fi if [ -z "$APRU_PATH" ]; then APRU_PATH='apr-util' fi if [ -z "$NEON_PATH" ]; then NEON_PATH='neon' fi if [ -z "$APRI_PATH" ]; then APRI_PATH='apr-iconv' fi if [ ! -d "$APR_PATH" ]; then echo "ERROR: '$APR_PATH' does not exist." exit 1 fi if [ ! -d "$APRU_PATH" ]; then echo "ERROR: '$APRU_PATH' does not exist." exit 1 fi if [ ! -d "$NEON_PATH" ]; then echo "ERROR: '$NEON_PATH' does not exist." exit 1 fi # apr-iconv is only included in zip files if [ -n "$ZIP" ] && [ ! -d "$APRI_PATH" ]; then echo "ERROR: '$APRI_PATH' does not exist." exit 1 fi if [ -z "$REPOS_PATH" ]; then REPOS_PATH="branches/$VERSION" else REPOS_PATH="`echo $REPOS_PATH | sed 's/^\/*//'`" fi type pax > /dev/null 2>&1 if [ $? -ne 0 ] && [ -z "$ZIP" ]; then echo "ERROR: pax could not be found" exit 1 fi DISTNAME="subversion-${VERSION}${VER_NUMTAG}" DIST_SANDBOX=.dist_sandbox DISTPATH="$DIST_SANDBOX/$DISTNAME" echo "Distribution will be named: $DISTNAME" echo " release branch's revision: $REVISION" echo " executable's revision: $REVISION_SVN" echo " constructed from path: /$REPOS_PATH" rm -rf "$DIST_SANDBOX" mkdir "$DIST_SANDBOX" echo "Removed and recreated $DIST_SANDBOX" echo "Exporting revision $REVISION of Subversion into sandbox..." (cd "$DIST_SANDBOX" && \ ${SVN:-svn} export -q $EXTRA_EXPORT_OPTIONS -r "$REVISION" \ "http://svn.collab.net/repos/svn/$REPOS_PATH" \ "$DISTNAME" --username none --password none) echo "Copying $APR_PATH into sandbox, making extraclean..." cp -r "$APR_PATH" "$DISTPATH/apr" (cd "$DISTPATH/apr" && [ -f Makefile ] && make extraclean) echo "Removing all CVS/ and .cvsignore files from apr..." find "$DISTPATH/apr" -name CVS -type d -print | xargs rm -fr find "$DISTPATH/apr" -name .cvsignore -print | xargs rm -f echo "Copying $APRU_PATH into sandbox, making extraclean..." cp -r "$APRU_PATH" "$DISTPATH/apr-util" (cd "$DISTPATH/apr-util" && [ -f Makefile ] && make extraclean) echo "Removing all CVS/ and .cvsignore files from apr-util..." find "$DISTPATH/apr-util" -name CVS -type d -print | xargs rm -fr find "$DISTPATH/apr-util" -name .cvsignore -print | xargs rm -f if [ -n "$ZIP" ]; then echo "Copying $APRI_PATH into sandbox, making extraclean..." cp -r "$APRI_PATH" "$DISTPATH/apr-iconv" (cd "$DISTPATH/apr-iconv" && [ -f Makefile ] && make extraclean) echo "Removing all CVS/ and .cvsignore files from apr-iconv..." find "$DISTPATH/apr-iconv" -name CVS -type d -print | xargs rm -fr find "$DISTPATH/apr-iconv" -name .cvsignore -print | xargs rm -f fi echo "Coping neon into sandbox, making clean..." cp -r "$NEON_PATH" "$DISTPATH/neon" (cd "$DISTPATH/neon" && [ -f Makefile ] && make distclean) echo "Cleaning *.o in neon..." find "$DISTPATH/neon/src" -name '*.o' -print | xargs rm -f find "$DISTPATH" -name config.nice -print | xargs rm -f echo "Running ./autogen.sh in sandbox, to create ./configure ..." (cd "$DISTPATH" && ./autogen.sh --release) || exit 1 echo "Removing any autom4te.cache directories that might exist..." find "$DISTPATH" -depth -type d -name 'autom4te*.cache' -exec rm -rf {} \; echo "Downloading book into sandbox..." wget http://svnbook.red-bean.com/svnbook-1.1/svn-book.pdf \ -O "$DISTPATH/doc/book/book/svn-book.pdf" || ( echo "ERROR: Problem getting the svn-book.pdf file." && exit 1 ) wget http://svnbook.red-bean.com/svnbook-1.1/svn-book.html \ -O "$DISTPATH/doc/book/book/svn-book.html" || ( echo "ERROR: Problem getting the svn-book.html file." && exit 1 ) cat > "$DISTPATH/ChangeLog.CVS" < "$vsn_file.tmp" mv -f "$vsn_file.tmp" "$vsn_file" cp "$vsn_file" "svn_version.h.dist" if [ -z "$ZIP" ]; then # Do not use tar, it's probably GNU tar which produces tar files that are # not compliant with POSIX.1 when including filenames longer than 100 chars. # Platforms without a tar that understands the GNU tar extension will not # be able to extract the resulting tar file. Use pax to produce POSIX.1 # tar files. echo "Rolling $DISTNAME.tar ..." (cd "$DIST_SANDBOX" > /dev/null && pax -x ustar -w "$DISTNAME") > \ "$DISTNAME.tar" echo "Compressing to $DISTNAME.tar.bz2 ..." bzip2 -9fk "$DISTNAME.tar" echo "Compressing to $DISTNAME.tar.gz ..." gzip -9f "$DISTNAME.tar" else echo "Rolling $DISTNAME.zip ..." (cd "$DIST_SANDBOX" > /dev/null && zip -q -r - "$DISTNAME") > \ "$DISTNAME.zip" fi echo "Removing sandbox..." rm -rf "$DIST_SANDBOX" echo "" echo "Done:" if [ -z "$ZIP" ]; then ls -l "$DISTNAME.tar.gz" "$DISTNAME.tar.bz2" echo "" md5sum "$DISTNAME.tar.gz" "$DISTNAME.tar.bz2" else ls -l "$DISTNAME.zip" echo "" md5sum "$DISTNAME.zip" fi