1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
#!/bin/sh
#
# Project: Silx
# https://github.com/silx-kit/silx
#
# Copyright (C) 2015-2017 European Synchrotron Radiation Facility, Grenoble, France
#
# Principal author: Jérôme Kieffer (Jerome.Kieffer@ESRF.eu)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE
# Script that builds a debian package from this library
project=fisx
source_project=python-fisx
version=$(python -c"import version; print(version.version)")
strictversion=$(python -c"import version; print(version.strictversion)")
debianversion=$(python -c"import version; print(version.debianversion)")
deb_name=$(echo "$source_project" | tr '[:upper:]' '[:lower:]')
# target system
debian_version=$(grep -o '[0-9]*' /etc/issue)
target_system=debian${debian_version}
project_directory="`dirname \"$0\"`"
project_directory="`( cd \"$project_directory\" && pwd )`" # absolutized
dist_directory=${project_directory}/dist/${target_system}
build_directory=${project_directory}/build/${target_system}
if [ -d /usr/lib/ccache ];
then
export PATH=/usr/lib/ccache:$PATH
fi
usage="usage: $(basename "$0") [options]
Build the Debian ${debian_version} package of the ${project} library.
If the build succeed the directory dist/debian${debian_version} will
contains the packages.
You need to have a PGP key on your machine. To use a specific PGP key,
you need to first set DEBEMAIL and DEBFULLNAME environment variables:
export DEBEMAIL=john.smith@esrf.fr
export DEBFULLNAME=\"John Smith (ESRF)\"
optional arguments:
--help show this help text
--install install the packages generated at the end of
the process using 'sudo dpkg'
--debian8 Simulate a debian 8 Jessie system
--debian9 Simulate a debian 9 Stretch system
"
install=0
use_python3=0 #used only for stdeb
while :
do
case "$1" in
-h | --help)
echo "$usage"
exit 0
;;
--install)
install=1
shift
;;
--python3)
use_python3=1
shift
;;
--debian8)
debian_version=8
shift
;;
--debian9)
debian_version=9
shift
;;
-*)
echo "Error: Unknown option: $1" >&2
echo "$usage"
exit 1
;;
*) # No more options
break
;;
esac
done
clean_up()
{
echo "Clean working dir:"
# clean up previous build
rm -rf ${build_directory}
# create the build context
mkdir -p ${build_directory}
}
build_deb_8_plus () {
echo "Build for debian 8 or newer using actual packaging"
tarname=${source_project}_${debianversion}.orig.tar.gz
clean_up
python setup.py debian_src
cp -f dist/${tarname} ${build_directory}
cd ${build_directory}
tar -xzf ${tarname}
directory=${project}-${strictversion}
newname=${deb_name}_${debianversion}.orig.tar.gz
#echo tarname $tarname newname $newname
if [ $tarname != $newname ]
then
if [ -h $newname ]
then
rm ${newname}
fi
ln -s ${tarname} ${newname}
fi
cd ${directory}
cp -r ${project_directory}/package/${target_system} debian
cp ${project_directory}/copyright debian
dch -v ${debianversion}-1 "upstream development build of ${project} ${version}"
dch --bpo "${project} snapshot ${version} built for ${target_system}"
dpkg-buildpackage -r
rc=$?
if [ $rc -eq 0 ]; then
# move packages to dist directory
echo Build succeeded...
rm -rf ${dist_directory}
mkdir -p ${dist_directory}
mv ${build_directory}/*.deb ${dist_directory}
mv ${build_directory}/*.x* ${dist_directory}
mv ${build_directory}/*.dsc ${dist_directory}
mv ${build_directory}/*.changes ${dist_directory}
cd ../../..
else
echo Build failed, please investigate ...
exit "$rc"
fi
}
build_deb_8_plus
if [ $install -eq 1 ]; then
sudo -v su -c "dpkg -i ${dist_directory}/*.deb"
fi
exit "$rc"
|