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 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
|
#!/bin/sh
#
# Project: PyFAI Input/Output
# https://github.com/silx-kit/pyFAI
#
# Copyright (C) 2015-2019 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=pyFAI
source_project=pyfai
version=$(python3 -c"import version; print(version.version)")
strictversion=$(python3 -c"import version; print(version.strictversion)")
debianversion=$(python3 -c"import version; print(version.debianversion)")
deb_name=$(echo "$source_project" | tr '[:upper:]' '[:lower:]')
# target system
if [ -f /etc/debian_version ]
then
debian_version=$(cat /etc/debian_version | cut -d. -f1 | grep -o '[0-9]*')
if [ -z $debian_version ]
then
#we are probably on a ubuntu platform
debian_version=$(cat /etc/debian_version | cut -d/ -f1)
case $debian_version in
squeeze)
debian_version=6
;;
wheezy)
debian_version=7
;;
jessie)
debian_version=8
;;
stretch)
debian_version=9
;;
buster)
debian_version=10
;;
bullseye)
debian_version=11
;;
esac
fi
else
debian_version=0
fi
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.
optional arguments:
--help show this help text
--install install the packages generated at the end of
the process using 'sudo dpkg'
--stdeb-py3 Build using stdeb for python3
--debian9 Simulate a debian 9 Stretch system
--debian10 Simulate a debian 10 Buster system
--debian11 Simulate a debian 11 Bullseye system
"
install=0
use_stdeb=0
stdeb_all_python=0
while :
do
case "$1" in
-h | --help)
echo "$usage"
exit 0
;;
--install)
install=1
shift
;;
--stdeb-py2)
use_stdeb=1
stdeb_all_python=0
shift
;;
--stdeb-py2.py3)
use_stdeb=1
stdeb_all_python=1
shift
;;
--debian9)
debian_version=9
target_system=debian${debian_version}
dist_directory=${project_directory}/dist/${target_system}
build_directory=${project_directory}/build/${target_system}
shift
;;
--debian10)
debian_version=10
target_system=debian${debian_version}
dist_directory=${project_directory}/dist/${target_system}
build_directory=${project_directory}/build/${target_system}
shift
;;
--debian11)
debian_version=11
target_system=debian${debian_version}
dist_directory=${project_directory}/dist/${target_system}
build_directory=${project_directory}/build/${target_system}
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() {
echo "Build for debian 9 or newer using actual packaging"
tarname=${project}_${debianversion}.orig.tar.gz
clean_up
python3 setup.py debian_src
cp -f dist/${tarname} ${build_directory}
if [ -f dist/${project}-testimages.tar.gz ]
then
cp -f dist/${project}-testimages.tar.gz ${build_directory}
fi
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
if [ -f ${project}-testimages.tar.gz ]
then
if [ ! -h ${deb_name}_${debianversion}.orig-testimages.tar.gz ]
then
ln -s ${project}-testimages.tar.gz ${deb_name}_${debianversion}.orig-testimages.tar.gz
fi
fi
cd ${directory}
cp -r ${project_directory}/package/${target_system} debian
cp ${project_directory}/copyright debian
#handle test images
if [ -f ../${deb_name}_${debianversion}.orig-testimages.tar.gz ]
then
if [ ! -d testimages ]
then
mkdir testimages
fi
cd testimages
tar -xzf ../${deb_name}_${debianversion}.orig-testimages.tar.gz
cd ..
else
# Disable to skip tests during build
echo No test data
#export PYBUILD_DISABLE_python2=test
#export PYBUILD_DISABLE_python3=test
#export DEB_BUILD_OPTIONS=nocheck
fi
case $debian_version in
9)
debian_name=stretch
;;
10)
debian_name=buster
;;
11)
debian_name=bullseye
;;
esac
dch --force-distribution -v ${debianversion}-1 "upstream development build of ${project} ${version}"
dch --force-distribution -D ${debian_name}-backports -l~bpo${debian_version}+ "${project} snapshot ${version} built for ${target_system}"
#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_stdeb () {
echo "Build for debian using stdeb"
tarname=${project}-${strictversion}.tar.gz
clean_up
python3 setup.py sdist
cp -f dist/${tarname} ${build_directory}
cd ${build_directory}
tar -xzf ${tarname}
cd ${project}-${strictversion}
if [ $stdeb_all_python -eq 1 ]
then
echo Using Python 2+3
python3 setup.py --command-packages=stdeb.command sdist_dsc --with-python2=True --with-python3=True --no-python3-scripts=True build --no-cython bdist_deb
rc=$?
else
echo Using Python 3
# bdist_deb feed /usr/bin using setup.py entry-points
python3 setup.py --command-packages=stdeb.command build --no-cython bdist_deb
rc=$?
fi
# move packages to dist directory
rm -rf ${dist_directory}
mkdir -p ${dist_directory}
mv -f deb_dist/*.deb ${dist_directory}
# back to the root
cd ../../..
}
if [ $use_stdeb -eq 1 ]; then
build_stdeb
else
build_deb
fi
if [ $install -eq 1 ]; then
sudo su -c "dpkg -i ${dist_directory}/*.deb"
fi
exit "$rc"
|