set -e
function echo_usage {
- echo "usage: mconfigure <package> [options]"
+ echo "usage: mconfigure [options] <package>"
echo " -a <arch>"
+ echo " -c : configure"
+ echo " -d : compile"
+ echo " -p : pack default: do all"
+ echo " -o : support old Debian 7 format"
+}
+
+function check_unversioned {
+ # has to be called in the projects base directory
+ # result: "M" in stdout or nothing
+
+ project=$(pwd)
+ project=${project##*/}
+ pushd .. >/dev/null
+ mCM $project -b -an > /dev/null
+ wc=$(wc $project.batch)
+ rm $project.batch
+ if [ "${wc:0:5}" != "0 0 0" ]
+ then
+ echo "M"
+ fi
+ popd >/dev/null
}
function set_build {
if [ -e .svn ]
then
+ version="0.0"
build=$(svnversion)
+ build=${build/:/-}
+ build="$build$(check_unversioned)"
elif [ -e .git ]
then
- build=$(git describe --tags 2>/dev/null) || true
- if test -z "$build"
+ tag=$(git describe --tags --match "${paket}_*" 2>/dev/null) || true
+ if test -z "$tag"
then
- build="0.0-TOP"
- fi
- changes=$(git status -s |grep "^ *M") || true
- if test -z "$changes"
- then
- build="${build}M"
+ tag="0.0-0TOP"
fi
+ changes=$(check_unversioned)
+ tag="$tag$changes"
+ version=${tag%-*}
+ version=${version##*_}
+ build=${tag##*-}
+ else
+ echo "No configuration system found. Cannot determine version."
+ exit 1
fi
}
+function check_version {
+
+ vline=$(head -1 debian/$paket.changelog)
+ vline=${vline%-*}
+ clversion=${vline#*(}
+ if [ $version = "0.0" ]
+ then
+ version=$clversion
+ return
+ fi
+
+ # do no check on a modified git repos
+ if [ "${build: -1}" == "M" ]
+ then
+ return
+ fi
+
+ if [ "$clversion" != $version ]
+ then
+ echo "version mismatch: git: $version, changelog: $clversion"
+ exit 1
+ fi
+}
# to build a package you need ...
# <package>.cp (optional): copy step for package production
# <package>.cpp.sh (optional): commands to setup the C++ compile environment
+if [ ! -d debian ]
+then
+ echo "run mconfigure in the project base directory with a debian directory in it!"
+ exit 2
+fi
+
+configure=0
+compile=0
+pack=0
+while getopts "a:cdpo" opt; do
+ case $opt in
+ a) ARCH=$OPTARG
+ ;;
+ c) configure=1
+ ;;
+ d) compile=1
+ ;;
+ p) pack=1
+ ;;
+ o) oldpack="-Zgzip"
+ ;;
+ \?) echo "Invalid option: -$OPTARG"
+ echo_usage
+ exit 1
+ ;;
+ :) echo "Option -$OPTARG requires an argument."
+ echo_usage
+ exit 1
+ ;;
+ esac
+done
+shift $((OPTIND -1))
+
if [ $# -lt 1 ]
then
echo_usage
exit 1
fi
-if [ ! -d debian ]
+paket=$1
+
+# if nothing is selected, select all
+if [ $configure -eq 0 -a $compile -eq 0 -a $pack -eq 0 ]
then
- echo "run mconfigure in the project base directory!"
- exit 2
+ configure=1
+ compile=1
+ pack=1
fi
-export paket=$1
-shift
-ARCH=""
-cpp_build=0
-
-set_build
-export build
-
-# get repository name
-tmp=$(pwd)
-export pwd=${tmp##*/}
-
-echo "building $paket with build $build"
-
-#while getopts ":a" opt; do
-# case $opt in
-# a) ARCH=$OPTARG
-# ;;
-# \?) echo "Invalid option: -$OPTARG"
-# echo_usage
-# exit 1
-# ;;
-# :) echo "Option -$OPTARG requires an argument."
-# echo_usage
-# exit 1
-# ;;
-# esac
-#done
-#
-## clean dirs and check out
-#if [ -d build -a $delete_src -eq 1 ]
-#then
-# rm -rf build
-#fi
-#
-
-pushd debian >/dev/null
-
-ln -sf /usr/share/mbuild/rules .
-
-#if [ -e tmp ]
-#then
-# rm -rf tmp
-#fi
-#rm *.stamp 2>/dev/null || true
-#rm make.pre 2>/dev/null || true
-
-mkdir -p tmp/DEBIAN
-
-# load util functions for C/C++ - build
-if [ -f $paket.cpp.sh ]
+if [ $configure -eq 1 ]
then
- cpp_build=1
- . projects/tools/make/c_configure.sh
- . $paket.cpp.sh
+ # delete changelog and control
+ rm debian/changelog debian/control 2>/dev/null || true
+
+ # mconfigure builds 2 environment files: setenv.sh + rules.pre
+
+ if [ -n "$ARCH" ]
+ then
+ arch_opt="-a $ARCH"
+ fi
+ dpkg-architecture $arch_opt > debian/setenv.sh
+ echo "" > debian/rules.pre
+
+ echo "paket=$paket" >> debian/setenv.sh
+ echo "oldpack=\"$oldpack\"" >> debian/setenv.sh
+ cpp_build=0
+
+ set_build
+ check_version
+ echo "version=$version" >> debian/setenv.sh
+ echo "build=$build" >> debian/setenv.sh
+
+ # get repository name
+# tmp=$(pwd)
+# pwd=${tmp##*/}
+# pwd=${pwd,,*}
+# echo "pwd=$pwd" >> debian/rules.pre
+
+ echo "building $paket with build $version-$build"
+
+ pushd debian >/dev/null
+ # ./debian -------------------------------------
+
+ ln -sf /usr/share/mbuild/rules .
+
+ if [ -e tmp ]
+ then
+ rm -rf tmp
+ fi
+
+ # check for pre/post installation scripts
+ if [ -f $paket.preinst ]
+ then
+ echo "add_inst_tgt += debian/tmp/DEBIAN/preinst" >> rules.pre
+ fi
+ if [ -f $paket.postinst ]
+ then
+ echo "add_inst_tgt += debian/tmp/DEBIAN/postinst" >> rules.pre
+ fi
+ if [ -f $paket.prerm ]
+ then
+ echo "add_inst_tgt += debian/tmp/DEBIAN/prerm" >> rules.pre
+ fi
+ if [ -f $paket.postrm ]
+ then
+ echo "add_inst_tgt += debian/tmp/DEBIAN/postrm" >> rules.pre
+ fi
+
+ #cat setenv.sh >> rules.pre
+
+ mkdir -p tmp/DEBIAN
+
+ # load util functions for C/C++ - build
+ if [ -f $paket.cpp.sh ]
+ then
+ cpp_build=1
+ . projects/tools/make/c_configure.sh
+ . $paket.cpp.sh
+ fi
+
+ # add export to setenv.sh
+ sed -i "s/^/export /" setenv.sh
+
+ popd >/dev/null
+ # ./. ---------------------------------------------
+
+ # copy package control
+ if [ -f debian/$paket.control ]
+ then
+ # proceed
+ echo
+ else
+ # try old fashoned way
+ control=$(find etc -name $paket.control) || true
+ if [ -z "$control" ]
+ then
+ echo "warning: control file not found"
+ echo " this file is necessary for any package production."
+ else
+ echo "Source: $paket
+Section: main
+Priority: optional
+Maintainer: WagnerTech UG <mail@wagnertech.de>
+" > debian/$paket.control
+ grep -v "Version:" $control |grep -v "Maintainer:" >> debian/$paket.control
+ fi
+ fi
+
+ # build prepare
+ if [ -e debian/$paket.build ]
+ then
+ if [ -e ../build ]
+ then
+ rm -rf ../build
+ mkdir ../build
+ fi
+ if grep -- "-prepare" debian/$paket.build >/dev/null
+ then
+ debian/rules sync
+ debian/$paket.build -prepare
+ fi
+ fi
+
+ # pack prepare
+ if [ -f debian/$paket.cp -a -f debian/$paket.control ]
+ then
+ echo "PACK=binary" >> debian/rules.pre
+ if grep "^Architecture: *all" debian/$paket.control >/dev/null
+ then
+ echo "arch = all" >> debian/rules.pre
+ echo "BINARY_INDEP = copy ../${paket}_$version-${build}_all.deb" >> debian/rules.pre
+ else
+ echo 'arch = ${DEB_HOST_ARCH}' >> debian/rules.pre
+ echo "BINARY_ARCH = copy ../${paket}_$version-${build}_"'$(arch).deb' >> debian/rules.pre
+ fi
+ elif [ -f debian/$paket.cp ]
+ then
+ echo "PACK=zip" >> debian/rules.pre
+ else
+ echo "PACK=version" >> debian/rules.pre
+ fi
+fi
+
+if [ $compile -eq 1 -a ! -e debian/$paket.build ]
+then
+ echo "no debian/build.sh: skipping build step"
+ compile=0
+fi
+if [ $compile -eq 1 ]
+then
+ # build artefacts
+ . debian/setenv.sh
+ debian/rules build
fi
-# copy package control
-#control=$(find .. -name $paket.control)
-#build_number=${build#*_}
-#if [ -z "$control" ]
-#then
-# echo "warning: control file not found"
-# echo " this file is necessary for any package production."
-#else
-# sed "s/%BUILD%/$build_number/" $control |sed "s/%ARCH%/$ARCH/" >$paket.control
-# echo "$paket.control written."
-#
-# # extract version
-# version=$(grep Version $paket.control |sed "s/Version: //")
-#fi
-
-popd >/dev/null
-
-# build package
-debian/rules binary
-
-## check for copy file
-#if [ ! -f $paket.cp ]
-#then
-# # search for copy file
-# copy=$(find .. -name $paket.cp)
-# if [ -n "$copy" ]
-# then
-# ln -sf $copy .
-# else
-# echo "warning: file $paket.cp missing or not executable:"
-# echo " this file is necessary for any package production."
-# fi
-#fi
-#
-## check for installation scripts
-#files=$(find .. -name $paket.preinst)
-#files="$files $(find .. -name $paket.postinst)"
-#files="$files $(find .. -name $paket.prerm)"
-#files="$files $(find .. -name $paket.postrm)"
-#for file in $files
-#do
-# ln -sf $file .
-#done
-
-# create generic make.pre, if not existing
-#if [ ! -f make.pre ]
-#then
-# cat >>make.pre <<MAKE_PRE
-## mBuild make.pre script (auto generated)
-#project = $paket
-#COPY = ./$paket.cp
-#MAKE_PRE
-# if [ -n "$ARCH" ]
-# then
-# echo "arch = $ARCH" >>make.pre
-# echo "_arch = _${ARCH}" >>make.pre
-# fi
-# echo "make.pre written."
-#fi
-#
-## append version to make.pre
-#echo "version = $version" >> make.pre
-#echo "build = $build" >> make.pre
+if [ $pack -eq 1 ]
+then
+ # build package
+ . debian/setenv.sh
+ debian/rules pack
+fi