|
|
@ -1,6 +1,6 @@ |
|
|
|
#!/bin/bash |
|
|
|
# Build script for Slackware |
|
|
|
# Copyright (C) 2018,2019 Damien Goutte-Gattat |
|
|
|
# Copyright (C) 2018,2019,2020 Damien Goutte-Gattat |
|
|
|
# |
|
|
|
# Redistribution and use of this script, with or without modifications, |
|
|
|
# is permitted provided that the following conditions are met: |
|
|
@ -26,17 +26,16 @@ |
|
|
|
# <https://github.com/certbot/certbot>. |
|
|
|
# |
|
|
|
# Depends: l/python-acme, l/python-configargparse, l/python-configobj |
|
|
|
# Depends: l/python-distro, l/python-parsedatetime, l/zope.component |
|
|
|
# Depends: l/python-parsedatetime, l/zope.component |
|
|
|
|
|
|
|
# Source package infos |
|
|
|
NAMESRC=${NAMESRC:-certbot} |
|
|
|
VERSION=${VERSION:-0.40.1} |
|
|
|
VERSION=${VERSION:-1.5.0} |
|
|
|
ARCHIVE=${ARCHIVE:-$NAMESRC-$VERSION.tar.gz} |
|
|
|
WGET=${WGET:-https://files.pythonhosted.org/packages/aa/dd/348260e569f3ce7d7996365fa0efceec926be482702f9b0947929d3d4285/$ARCHIVE} |
|
|
|
|
|
|
|
# Build infos |
|
|
|
NAMEPKG=${NAMEPKG:-certbot} |
|
|
|
BUILD=${BUILD:-2GGD} |
|
|
|
BUILD=${BUILD:-1GGD} |
|
|
|
ARCH=${ARCH:-$(uname -m | sed 's/^i.86$/i486/;s/^arm.*/arm/')} |
|
|
|
JOBS=${JOBS:-1} |
|
|
|
EXT=${EXT:-txz} |
|
|
@ -46,6 +45,7 @@ TMP=${TMP:-/tmp} |
|
|
|
OUT=${OUT:-$TMP/build} |
|
|
|
PKG=${PKG:-$OUT/$NAMEPKG} |
|
|
|
CWD=$(pwd) |
|
|
|
PYTHONDIR=$(python3 -c 'import sysconfig; print(sysconfig.get_paths()["purelib"])') |
|
|
|
|
|
|
|
set -e # Quit if a command returns non-zero |
|
|
|
|
|
|
@ -61,8 +61,7 @@ fi |
|
|
|
|
|
|
|
# Get and verify the source archive |
|
|
|
if [ ! -r $ARCHIVE ]; then |
|
|
|
wget -c -O $ARCHIVE.part "$WGET" |
|
|
|
mv $ARCHIVE.part $ARCHIVE |
|
|
|
pip3 download --no-binary :all: --no-deps $NAMESRC==$VERSION |
|
|
|
fi |
|
|
|
sha256sum -c $ARCHIVE.sha256 |
|
|
|
NAME=$(tar ft $ARCHIVE | head -n 1 | cut -d / -f 1) |
|
|
@ -72,18 +71,18 @@ cd $TMP |
|
|
|
echo "Building $ARCHIVE..." |
|
|
|
tar xf $CWD/$ARCHIVE |
|
|
|
cd $NAME |
|
|
|
python2 setup.py build |
|
|
|
python2 setup.py install --root=$PKG |
|
|
|
mv $PKG/usr/bin/certbot $PKG/usr/bin/certbot-2.7 |
|
|
|
|
|
|
|
# And now for Python 3 |
|
|
|
python3 setup.py build |
|
|
|
python3 setup.py install --root=$PKG |
|
|
|
|
|
|
|
# Install the documentation |
|
|
|
mkdir -p $PKG/usr/doc/$NAME |
|
|
|
install -m 644 CHANGELOG.md CONTRIBUTING.md LICENSE.txt README.rst \ |
|
|
|
$PKG/usr/doc/$NAME |
|
|
|
install -m 644 CHANGELOG.md LICENSE.txt README.rst $PKG/usr/doc/$NAME |
|
|
|
|
|
|
|
# Build HTML docs if possible |
|
|
|
export PYTHONPATH=$PKG$PYTHONDIR |
|
|
|
if sphinx-build -b html docs $PKG/usr/doc/$NAME/html ; then |
|
|
|
rm -rf $PKG/usr/doc/$NAME/html/.{buildinfo,doctrees} |
|
|
|
fi |
|
|
|
|
|
|
|
# Copy slack-desc file |
|
|
|
install -D -m 644 $CWD/slack-desc $PKG/install/slack-desc |
|
|
@ -93,7 +92,6 @@ cat <<EOF > $PKG/install/slack-required |
|
|
|
python-acme |
|
|
|
python-configargparse |
|
|
|
python-configobj |
|
|
|
python-distro |
|
|
|
python-parsedatetime |
|
|
|
zope.component |
|
|
|
EOF |
|
|
|