From b8ef5c8ca745a75f87c84b0246e5b35919e178bb Mon Sep 17 00:00:00 2001 From: Christoph Willing Date: Thu, 19 May 2022 23:28:10 +0100 Subject: python/python3-elgato-streamdeck: Added (Elgato Stream Deck library) Signed-off-by: Dave Woodfall Signed-off-by: Willy Sudiarto Raharjo --- python/python3-elgato-streamdeck/README | 4 + .../python3-elgato-streamdeck.SlackBuild | 100 +++++++++++++++++++++ .../python3-elgato-streamdeck.info | 10 +++ python/python3-elgato-streamdeck/slack-desc | 19 ++++ 4 files changed, 133 insertions(+) create mode 100644 python/python3-elgato-streamdeck/README create mode 100644 python/python3-elgato-streamdeck/python3-elgato-streamdeck.SlackBuild create mode 100644 python/python3-elgato-streamdeck/python3-elgato-streamdeck.info create mode 100644 python/python3-elgato-streamdeck/slack-desc (limited to 'python/python3-elgato-streamdeck') diff --git a/python/python3-elgato-streamdeck/README b/python/python3-elgato-streamdeck/README new file mode 100644 index 0000000000..8ea27880f9 --- /dev/null +++ b/python/python3-elgato-streamdeck/README @@ -0,0 +1,4 @@ +This is an open source Python 3 library to control an Elgato Stream Deck +directly, without the official software. This can allow you to create +your own custom front-ends, such as a custom control front-end for home +automation software. diff --git a/python/python3-elgato-streamdeck/python3-elgato-streamdeck.SlackBuild b/python/python3-elgato-streamdeck/python3-elgato-streamdeck.SlackBuild new file mode 100644 index 0000000000..0d923b3433 --- /dev/null +++ b/python/python3-elgato-streamdeck/python3-elgato-streamdeck.SlackBuild @@ -0,0 +1,100 @@ +#!/bin/bash + +# Slackware build script for python3-elgato-streamdeck + +# Copyright 2022 Christoph Willing Brisbane, Australia +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# 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=python3-elgato-streamdeck +SRCNAM=python-elgato-streamdeck +VERSION=${VERSION:-0.9.1} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +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 + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $SRCNAM-$VERSION +tar xvf $CWD/$SRCNAM-$VERSION.tar.gz +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 \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +python3 setup.py install --root=$PKG + +make -C doc man +mkdir -p $PKG/usr/man/man1 +cp doc/build/man/$SRCNAM.1 $PKG/usr/man/man1/ + +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 + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a CHANGELOG LICENSE README.md $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/python/python3-elgato-streamdeck/python3-elgato-streamdeck.info b/python/python3-elgato-streamdeck/python3-elgato-streamdeck.info new file mode 100644 index 0000000000..7c3b8ff291 --- /dev/null +++ b/python/python3-elgato-streamdeck/python3-elgato-streamdeck.info @@ -0,0 +1,10 @@ +PRGNAM="python3-elgato-streamdeck" +VERSION="0.9.1" +HOMEPAGE="https://github.com/abcminiuser/python-elgato-streamdeck" +DOWNLOAD="https://github.com/abcminiuser/python-elgato-streamdeck/archive/refs/tags/0.9.1/python-elgato-streamdeck-0.9.1.tar.gz" +MD5SUM="add67a8109c52a8ccfc4b370063492f1" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="Sphinx sphinx-rtd-theme hidapi" +MAINTAINER="Christoph Willing" +EMAIL="chris.willing@linux.com" diff --git a/python/python3-elgato-streamdeck/slack-desc b/python/python3-elgato-streamdeck/slack-desc new file mode 100644 index 0000000000..ac2f3f4f18 --- /dev/null +++ b/python/python3-elgato-streamdeck/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +python3-elgato-streamdeck: python3-elgato-streamdeck (Python library for Elgato Stream Deck) +python3-elgato-streamdeck: +python3-elgato-streamdeck: This is an open source Python 3 library to control an Elgato Stream +python3-elgato-streamdeck: Deck directly, without the official software. This can allow you to +python3-elgato-streamdeck: create your own custom front-ends, such as a custom control front-end +python3-elgato-streamdeck: for home automation software. +python3-elgato-streamdeck: +python3-elgato-streamdeck: +python3-elgato-streamdeck: +python3-elgato-streamdeck: +python3-elgato-streamdeck: -- cgit v1.2.3