diff options
author | Kevin Bryant <sultmhoor+SB@gmail.com> | 2023-11-19 00:05:53 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-11-19 00:30:36 +0700 |
commit | ed1999a7b53b4d257369b0a914a2e2b31ca53165 (patch) | |
tree | 431a7051be6cd4436ef76059d056d230d2a465d5 | |
parent | 3e7c796a1b09d90aacba42fb753f51cd6a7bd3cb (diff) |
network/toot: Updated for version 0.38.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | network/toot/toot.SlackBuild | 21 | ||||
-rw-r--r-- | network/toot/toot.info | 6 |
2 files changed, 5 insertions, 22 deletions
diff --git a/network/toot/toot.SlackBuild b/network/toot/toot.SlackBuild index 3c21ba10c4650..e1e0e8701f0ce 100644 --- a/network/toot/toot.SlackBuild +++ b/network/toot/toot.SlackBuild @@ -25,16 +25,13 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=toot -VERSION=${VERSION:-0.38.1} +VERSION=${VERSION:-0.38.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} ARCH=${ARCH:-noarch} -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -61,29 +58,15 @@ find -L . \ python3 setup.py install --root=$PKG -# Strip binaries and libraries. 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 -# If the man pages are installed to /usr/share/man instead, you'll need to -# move them manually. -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 - -rmdir --ignore-fail-on-non-empty $PKG/usr/man - -# Also, include the SlackBuild script in the documentation directory +rm -rf $PKG/usr/man mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -# cp -a \ -# $TMP/$PRGNAM-$VERSION/docs/ \ -# $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 -# If package symlinks need to be created during install *before* -# your custom contents of doinst.sh runs, then add the -p switch to -# the makepkg command below -- see makepkg(8) for details cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/network/toot/toot.info b/network/toot/toot.info index bc650e9279686..80a709b3add06 100644 --- a/network/toot/toot.info +++ b/network/toot/toot.info @@ -1,8 +1,8 @@ PRGNAM="toot" -VERSION="0.38.1" +VERSION="0.38.2" HOMEPAGE="https://github.com/ihabunek/toot" -DOWNLOAD="https://github.com/ihabunek/toot/releases/download/0.38.1/toot-0.38.1.tar.gz" -MD5SUM="82705bdaa72ca2de53f583d50bf7dbe6" +DOWNLOAD="https://github.com/ihabunek/toot/releases/download/0.38.2/toot-0.38.2.tar.gz" +MD5SUM="33f45beb5295fa0bcf989ce0b9a543ef" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="BeautifulSoup4 python3-wcwidth python-urwid" |