#! /bin/sh # Copyright (c) 2002-2016, Dirk Krause # All rights reserved. # # Redistribution and use in source and binary forms, # with or without modification, are permitted provided # that the following conditions are met: # # * Redistributions of source code must retain the above # copyright notice, this list of conditions and the # following disclaimer. # * Redistributions in binary form must reproduce the above # opyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # * Neither the name of the Dirk Krause nor the names of # contributors may be used to endorse or promote # products derived from this software without specific # prior written permission. # # THIS SOFTWARE 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 OWNER OR 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 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH # DAMAGE. echo `date '+%Y-%m-%d %H:%M:%S'` Start scripts/create-distribution.sh umask 0 D1=`date` echo $D1 VERSION=`cat version.txt` SRCDIR=/home/krause/work/dklib-4 DOWNLOADS=/home/krause/Downloads # Ensure the Downloads directory is available [ -d $DOWNLOADS ] || mkdir -p $DOWNLOADS # Remove artifacts A="dktools-${VERSION} dktools-doc-${VERSION} dktools-devdoc-${VERSION}" A="$A dktools-full-${VERSION} dktools-sf-doc-${VERSION}" for i in $A do echo Removing old files for $i if [ -d ${DOWNLOADS}/$i ] then echo "rm -fr ${DOWNLOADS}/$i" rm -fr ${DOWNLOADS}/$i fi if [ -f ${DOWNLOADS}/${i}.tar ] then echo "rm -f ${DOWNLOADS}/${i}.tar" rm -f ${DOWNLOADS}/${i}.tar fi if [ -f ${DOWNLOADS}/${i}.tar.gz ] then echo "rm -f ${DOWNLOADS}/${i}.tar.gz" rm -f ${DOWNLOADS}/${i}.tar.gz fi if [ -f /home/krause/SW-DEV/archives/${i}.tar.gz ] then echo "rm -f /home/krause/SW-DEV/archives/${i}.tar.gz" rm -f /home/krause/SW-DEV/archives/${i}.tar.gz fi # if [ -f /home/krause/rpmbuild/SOURCES/${i}.tar.gz ] # then # echo "rm -f /home/krause/rpmbuild/SOURCES/${i}.tar.gz" # rm -f /home/krause/rpmbuild/SOURCES/${i}.tar.gz # fi done # Update version number in debian/changelog # sed -e "s/@VERSION@/$VERSION/" < debian/changelog.in > debian/changelog echo 'Changing @VERSION@ to' "$VERSION" in doc/debian/changelog and devdoc/debian/changelog sed -e "s/@VERSION@/$VERSION/" < doc/debian/changelog.in > doc/debian/changelog sed -e "s/@VERSION@/$VERSION/" < devdoc/debian/changelog.in > devdoc/debian/changelog # dktools-${VERSION} mkdir -p ${DOWNLOADS}/dktools-${VERSION} cd ${DOWNLOADS}/dktools-${VERSION} echo Copying files to ${DOWNLOADS}/dktools-${VERSION} (cd ${SRCDIR} ; tar cf - * --exclude .git --exclude doc/doxygen --exclude dk4wx-v1) | tar xf - rm -fr ${DOWNLOADS}/dktools-${VERSION}/doc rm -fr ${DOWNLOADS}/dktools-${VERSION}/devdoc rm -fr ${DOWNLOADS}/dktools-${VERSION}/debian/*.ex rm -fr ${DOWNLOADS}/dktools-${VERSION}/debian/*.EX [ ! -f configure.out ] || rm -f configure.out tar cf help-src.tar help-src gzip -9 help-src.tar rm -fr "${DOWNLOADS}/dktools-${VERSION}/help-src" tar cf help-html.tar help-html gzip -9 help-html.tar rm -fr "${DOWNLOADS}/dktools-${VERSION}/help-html" tar cf man-src.tar man-src gzip -9 man-src.tar rm -fr "${DOWNLOADS}/dktools-${VERSION}/man-src" find . -type d -exec chmod 755 {} \; find . -type f -exec chmod ugo+r {} \; find . -name '*.sh' -exec chmod ugo+x {} \; find . -name '*.pl' -exec chmod ugo+x {} \; # dktools-doc-${VERSION} mkdir -p ${DOWNLOADS}/dktools-doc-${VERSION} cd ${DOWNLOADS}/dktools-doc-${VERSION} echo Copying files to ${DOWNLOADS}/dktools-doc-${VERSION} (cd ${SRCDIR}/doc ; tar cf - *) | tar xf - cp ${SRCDIR}/version.txt . rm -fr ${DOWNLOADS}/dktools-doc-${VERSION}/doxygen rm -fr ${DOWNLOADS}/dktools-doc-${VERSION}/html/devdoc # rm -fr ${DOWNLOADS}/dktools-doc-${VERSION}/src find . -type d -exec chmod 755 {} \; find . -type f -exec chmod ugo+r {} \; find . -name '*.sh' -exec chmod ugo+x {} \; find . -name '*.pl' -exec chmod ugo+x {} \; # dktools-devdoc-${VERSION} mkdir -p ${DOWNLOADS}/dktools-devdoc-${VERSION} cd ${DOWNLOADS}/dktools-devdoc-${VERSION} echo Copying files to ${DOWNLOADS}/dktools-devdoc-${VERSION} (cd ${SRCDIR}/devdoc ; tar cf - *) | tar xf - (cd ${SRCDIR}/doc/doxygen; tar cf - html) | tar xf - cp ${SRCDIR}/version.txt . find . -type d -exec chmod 755 {} \; find . -type f -exec chmod ugo+r {} \; find . -name '*.sh' -exec chmod ugo+x {} \; find . -name '*.pl' -exec chmod ugo+x {} \; # dktools-full-${VERSION} mkdir -p ${DOWNLOADS}/dktools-full-${VERSION} cd ${DOWNLOADS}/dktools-full-${VERSION} echo Copying files to ${DOWNLOADS}/dktools-full-${VERSION} (cd ${SRCDIR} ; tar cf - * --exclude .git) | tar xf - find . -type d -exec chmod 755 {} \; find . -type f -exec chmod ugo+r {} \; find . -name '*.sh' -exec chmod ugo+x {} \; find . -name '*.pl' -exec chmod ugo+x {} \; # dktools-sf-doc-${VERSION} mkdir -p ${DOWNLOADS}/dktools-sf-doc-${VERSION} cd ${SRCDIR}/doc/src touch index.prj make webinstall cd ${DOWNLOADS}/dktools-sf-doc-${VERSION} echo Copying files to ${DOWNLOADS}/dktools-sf-doc-${VERSION} (cd ${SRCDIR}/doc ; tar cf - *) | tar xf - cp ${SRCDIR}/version.txt . [ -d html ] || mkdir -p html mkdir html/devdoc cd html/devdoc (cd ${SRCDIR}/doc/doxygen/html ; tar cf - *) | tar xf - cd ../.. find . -type d -exec chmod 755 {} \; find . -type f -exec chmod ugo+r {} \; find . -name '*.sh' -exec chmod ugo+x {} \; find . -name '*.pl' -exec chmod ugo+x {} \; find . -type f -exec chmod go-w {} \; rm -fr ${DOWNLOADS}/dktools-doc-${VERSION}/doxygen # rm -fr ${DOWNLOADS}/dktools-doc-${VERSION}/src cd ${SRCDIR}/doc/src touch index.prj make install cd .. find . -type d -exec chmod 755 {} \; find . -type f -exec chmod ugo+r {} \; find . -name '*.sh' -exec chmod ugo+x {} \; find . -name '*.pl' -exec chmod ugo+x {} \; # Copy files echo "cd ${DOWNLOADS}" cd ${DOWNLOADS} for i in $A do echo "tar cf ${i}.tar ${i}" tar cf ${i}.tar ${i} echo "gzip -9 ${i}.tar" gzip -9 ${i}.tar echo "cp ${i}.tar.gz ~/SW-DEV/archives" cp ${i}.tar.gz ~/SW-DEV/archives # echo "cp ${i}.tar.gz ~/rpmbuild/SOURCES" # cp ${i}.tar.gz ~/rpmbuild/SOURCES done # echo "cp dktools-${VERSION}/*.spec ~/rpmbuild/SPECS" # cp dktools-${VERSION}/*.spec ~/rpmbuild/SPECS # echo "cp dktools-doc-${VERSION}/*.spec ~/rpmbuild/SPECS" # cp dktools-doc-${VERSION}/*.spec ~/rpmbuild/SPECS # echo "cp dktools-devdoc-${VERSION}/*.spec ~/rpmbuild/SPECS" # cp dktools-devdoc-${VERSION}/*.spec ~/rpmbuild/SPECS # Clean up for i in $A do if [ -d ${DOWNLOADS}/$i ] then echo "rm -fr ${DOWNLOADS}/$i" rm -fr ${DOWNLOADS}/$i fi if [ -f ${DOWNLOADS}/${i}.tar ] then echo "rm -f ${DOWNLOADS}/${i}.tar" rm -f ${DOWNLOADS}/${i}.tar fi if [ -f ${DOWNLOADS}/${i}.tar.gz ] then echo "rm -f ${DOWNLOADS}/${i}.tar.gz" rm -f ${DOWNLOADS}/${i}.tar.gz fi done echo `date '+%Y-%m-%d %H:%M:%S'` Finished scripts/create-distribution.sh