diff options
author | B. Watson <yalhcru@gmail.com> | 2022-03-12 19:19:43 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-03-12 19:19:43 -0500 |
commit | 1adebe00fcf3f29067d8f705adc667f1c23306d7 (patch) | |
tree | 67335ea2bd636d7834d2ed117714345f6fbdbd8e /libraries/paho-mqtt/paho-mqtt.SlackBuild | |
parent | 34d3d1268b344be4ec2e4b6a36ecd5fa5d2bf3b0 (diff) |
libraries/paho-mqtt: Update to 15.0 template.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'libraries/paho-mqtt/paho-mqtt.SlackBuild')
-rw-r--r-- | libraries/paho-mqtt/paho-mqtt.SlackBuild | 29 |
1 files changed, 11 insertions, 18 deletions
diff --git a/libraries/paho-mqtt/paho-mqtt.SlackBuild b/libraries/paho-mqtt/paho-mqtt.SlackBuild index 382d315d052f..e2e8af02b544 100644 --- a/libraries/paho-mqtt/paho-mqtt.SlackBuild +++ b/libraries/paho-mqtt/paho-mqtt.SlackBuild @@ -22,6 +22,8 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +cd $(dirname $0) ; CWD=$(pwd) + PRGNAM=paho-mqtt SRCNAM=paho.mqtt.python VERSION=${VERSION:-1.6.1} @@ -36,24 +38,16 @@ if [ -z "$ARCH" ]; then esac fi -CWD=$(pwd) +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi +# 20220312 bkw: no compiled code, no need for CFLAGS. set -e @@ -66,17 +60,16 @@ cd $SRCNAM-$VERSION chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ + -o -perm 511 \) -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ python setup.py install --root=$PKG if $(python3 -c 'import sys' 2>/dev/null); then python3 setup.py install --root=$PKG fi -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +# 20220312 bkw: no compiled code, no need to strip anything. mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ |