mise en place des scripts pour la génération du package python et deb
This commit is contained in:
38
build.sh
Executable file
38
build.sh
Executable file
@@ -0,0 +1,38 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Author : vincent.benoit@benserv.fr
|
||||
# Date : 11/2022
|
||||
# Version : 1.0
|
||||
# Brief : création des packages necessaires pour le processus KineIntercom
|
||||
#
|
||||
###########################################################################
|
||||
|
||||
create_deb() {
|
||||
dirname=kineintercommisc-$1
|
||||
/usr/bin/mkdir -p bdist_deb/$dirname
|
||||
cd bdist_deb/$dirname
|
||||
/usr/bin/dh_make -t $2/template -n -y -i -d
|
||||
/usr/bin/find $2/misc -type f -exec /usr/bin/cp -a {} . \;
|
||||
/usr/bin/dpkg-buildpackage -b -uc -us -rfakeroot
|
||||
cd ..
|
||||
if [ $? == "0" ] && [ ! -d "$2/dist" ]; then
|
||||
/usr/bin/mkdir -p $2/dist
|
||||
/usr/bin/find . -type f -name "*.deb" -exec /usr/bin/cp -a {} $2/dist \;
|
||||
fi
|
||||
}
|
||||
|
||||
create_wheel() {
|
||||
cd $1
|
||||
/usr/bin/python3 setup.py bdist_wheel --universal
|
||||
}
|
||||
|
||||
echo "*** Remove old dirs ***"
|
||||
/usr/bin/rm -rf bdist_deb build dist *.egg-info
|
||||
echo "*** read version ***"
|
||||
vers=`/usr/bin/cat src/VERSION`
|
||||
rootpath=`pwd`
|
||||
echo "*** Create Debian Misc Package ***"
|
||||
create_deb "$vers" "$rootpath"
|
||||
echo "*** Create Python Package ***"
|
||||
create_wheel "$rootpath"
|
||||
echo "*** that's All Folks ...***"
|
||||
Reference in New Issue
Block a user