diff options
author | B. Watson | 2022-01-30 21:19:40 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo | 2022-02-02 05:23:19 +0100 |
commit | 29b73deaf37303dcf20b8ccb289495a58928f329 (patch) | |
tree | b64e658f79351ea1a13ceb295cf5fd353c712f2c /multimedia | |
parent | f642c864952338c7b66a241142d003efb48e7b96 (diff) | |
download | slackbuilds-29b73deaf37303dcf20b8ccb289495a58928f329.tar.gz |
multimedia/straw-viewer: Removed (use pipe-viewer instead).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/straw-viewer/README | 55 | ||||
-rw-r--r-- | multimedia/straw-viewer/git2tarxz.sh | 71 | ||||
-rw-r--r-- | multimedia/straw-viewer/restore_mplayer.diff | 35 | ||||
-rw-r--r-- | multimedia/straw-viewer/slack-desc | 19 | ||||
-rw-r--r-- | multimedia/straw-viewer/straw-viewer.SlackBuild | 149 | ||||
-rw-r--r-- | multimedia/straw-viewer/straw-viewer.info | 10 | ||||
-rw-r--r-- | multimedia/straw-viewer/straw-viewer.sqf | 46 |
7 files changed, 0 insertions, 385 deletions
diff --git a/multimedia/straw-viewer/README b/multimedia/straw-viewer/README deleted file mode 100644 index aff15dfd6e..0000000000 --- a/multimedia/straw-viewer/README +++ /dev/null @@ -1,55 +0,0 @@ -straw-viewer (search and stream videos from youtube) - -straw-viewer is a lightweight application for searching and streaming -videos from YouTube, using the API of invidio.us[2]. The project is -in its early development stages and some features are not implemented -yet. - -straw-viewer is a fork of youtube-viewer that does not require a Google -API key. Usage and user interface are identical to youtube-viewer. - -For playing videos, this uses mplayer, vlc, or mpv. However, the mplayer -that ships with Slackware 14.2 has some issues with straw-viewer (or -actually with youtube: the audio stream cuts out randomly, and can be -fixed by pressing the left arrow usually). Using vlc or mpv is highly -recommended. - -Optional dependencies: - -perl-Gtk3, perl-File-ShareDir - for gtk-straw-viewer. -perl-lwp-useragent-cached - for local cache support. -perl-JSON-XS - for faster JSON deserialization. -perl-Text-CharWidth, perl-Unicode-LineBreak - for better formatting - in the terminal. -perl-Term-ReadLine-Gnu - for command editing/history in the terminal. -youtube-dl [1] - if this is present, straw-viewer will use it to detect - available formats for the video. - -Counting optional ones, straw-viewer has over 40 dependencies. To make -life easier, there's a "straw-viewer.sqf" queue file included with this -build, which includes everything listed above. - -This build always includes the command-line client (straw-viewer). For -the GTK client (gtk-straw-viewer[3]), install perl-Gtk3 and -perl-File-ShareDir before running this script. If you have them -installed but don't want gtk-straw-viewer, you can set GTK=no in the -script's environment. - -Notes: - -[1] A small caveat about youtube-dl: straw-viewer works without it, - though occasionally it'll choose a lower quality than is available - for some videos. However, if youtube-dl is present but outdated, - straw-viewer will fail to play videos at all! If you suspect this, - remove youtube-dl and try without it. - -[2] The default API host is http://invidious.snopyta.org. If you get - "Bad gateway" or "Too many requests" errors, try changing the - api_host in ~/.config/straw-viewer/straw-viewer.conf or via - the --api-host option. A list of API hosts can be found at: - https://instances.invidio.us/ - -[3] To force gtk-straw-viewer to use your preferred terminal for - downloading with wget and watching in a terminal, set - TERMINAL in the script's environment (e.g. TERMINAL="xterm" or - TERMINAL="urxvt"). diff --git a/multimedia/straw-viewer/git2tarxz.sh b/multimedia/straw-viewer/git2tarxz.sh deleted file mode 100644 index 3cc7487637..0000000000 --- a/multimedia/straw-viewer/git2tarxz.sh +++ /dev/null @@ -1,71 +0,0 @@ -#!/bin/sh - -# Create source tarball from git repo, with generated version number. - -# Takes one optional argument, which is the commit or tag to create a -# tarball of. With no arg, HEAD is used. - -# Version number example: 0.0.1+20200227_ad7ec17 - -# Notes: - -# Do not use this if you're packaging a release. - -# This script doesn't need to be run as root. It does need to be able -# to write to the current directory it's run from. - -# Running this script twice for the same commit will NOT give identical -# tarballs, even if the contents are identical. This is because tar -# includes the current time in a newly-created tarball (plus there may -# be other git-related reasons). - -# Once you've generated a tarball, you'll still need a place to host it. -# Ask on the mailing list, if you don't have your own web server to -# play with. - -## Config: -# Github project and user names: -PRGNAM=straw-viewer -GITUSER=trizen - -# For github projects, you can use this unmodified: -CLONE_URL=https://github.com/$GITUSER/$PRGNAM.git - -# For non-github projects, you might not need GITUSER, in which case -# just omit it from the script. - -## End of config. - -set -e - -GITDIR=$( mktemp -dt $PRGNAM.git.XXXXXX ) -rm -rf $GITDIR -git clone $CLONE_URL $GITDIR - -CWD="$( pwd )" -cd $GITDIR - -if [ "$1" != "" ]; then - git reset --hard "$1" || exit 1 -fi - -GIT_SHA=$( git rev-parse --short HEAD ) - -DATE=$( git log --date=format:%Y%m%d --format=%cd | head -1 ) - -VERTAG=$( git tag -l | tail -1 ) - -VERSION=${VERTAG}+${DATE}_${GIT_SHA} - -rm -rf .git -find . -name .gitignore -print0 | xargs -0 rm -f - -cd "$CWD" -rm -rf $PRGNAM-$VERSION $PRGNAM-$VERSION.tar.xz -mv $GITDIR $PRGNAM-$VERSION -tar cvfJ $PRGNAM-$VERSION.tar.xz $PRGNAM-$VERSION - -echo -echo "Created tarball: $PRGNAM-$VERSION.tar.xz" -echo "VERSION=\"$VERSION\"" -echo "MD5SUM=\"$( md5sum $PRGNAM-$VERSION.tar.xz | cut -d' ' -f1 )\"" diff --git a/multimedia/straw-viewer/restore_mplayer.diff b/multimedia/straw-viewer/restore_mplayer.diff deleted file mode 100644 index ea6efb0800..0000000000 --- a/multimedia/straw-viewer/restore_mplayer.diff +++ /dev/null @@ -1,35 +0,0 @@ -diff -Naur straw-viewer-0.1.3/bin/gtk-straw-viewer straw-viewer-0.1.3.patched/bin/gtk-straw-viewer ---- straw-viewer-0.1.3/bin/gtk-straw-viewer 2021-02-23 11:29:38.000000000 -0500 -+++ straw-viewer-0.1.3.patched/bin/gtk-straw-viewer 2021-08-03 12:55:18.814976310 -0400 -@@ -163,6 +163,13 @@ - fs => q{--fullscreen}, - arg => q{--really-quiet --force-media-title=*TITLE* --no-ytdl *VIDEO*}, - }, -+ mplayer => { -+ cmd => q{mplayer}, -+ srt => q{-sub *SUB*}, -+ audio => q{-audiofile *AUDIO*}, -+ fs => q{-fs}, -+ arg => q{-prefer-ipv4 -really-quiet -title *TITLE* *VIDEO*}, -+ }, - }, - video_player_selected => undef, # autodetect it later - -diff -Naur straw-viewer-0.1.3/bin/straw-viewer straw-viewer-0.1.3.patched/bin/straw-viewer ---- straw-viewer-0.1.3/bin/straw-viewer 2021-02-23 11:29:38.000000000 -0500 -+++ straw-viewer-0.1.3.patched/bin/straw-viewer 2021-08-03 12:57:03.187966822 -0400 -@@ -158,6 +158,14 @@ - arg => q{--really-quiet --force-media-title=*TITLE* --no-ytdl *VIDEO*}, - novideo => q{--no-video}, - }, -+ mplayer => { -+ cmd => q{mplayer}, -+ srt => q{-sub *SUB*}, -+ audio => q{-audiofile *AUDIO*}, -+ fs => q{-fs}, -+ arg => q{-prefer-ipv4 -really-quiet -title *TITLE* *VIDEO*}, -+ novideo => q{-novideo}, -+ }, - }, - - video_player_selected => ( diff --git a/multimedia/straw-viewer/slack-desc b/multimedia/straw-viewer/slack-desc deleted file mode 100644 index aea1cf0983..0000000000 --- a/multimedia/straw-viewer/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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------------------------------------------------------| -straw-viewer: straw-viewer (search and stream videos from youtube) -straw-viewer: -straw-viewer: straw-viewer is a lightweight application for searching and streaming -straw-viewer: videos from YouTube, using the API of invidio.us. The project is in -straw-viewer: its early development stages and some features are not implemented -straw-viewer: yet. -straw-viewer: -straw-viewer: -straw-viewer: -straw-viewer: -straw-viewer: diff --git a/multimedia/straw-viewer/straw-viewer.SlackBuild b/multimedia/straw-viewer/straw-viewer.SlackBuild deleted file mode 100644 index 5ae01ebaa4..0000000000 --- a/multimedia/straw-viewer/straw-viewer.SlackBuild +++ /dev/null @@ -1,149 +0,0 @@ -#!/bin/bash - -# Slackware build script for straw-viewer - -# Written by B. Watson (yalhcru@gmail.com) - -# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. - -# 20210803 bkw: update for v0.1.3. -# 20201208 bkw: update for v0.1.2. -# 20201109 bkw: update for v0.1.1. -# 20201012 bkw: update for v0.1.0. -# 20200814 bkw: update for v0.0.7. -# 20200626 bkw: update to latest git. Which (for me anyway) works a lot better. -# 20200525 bkw: -# - update to latest git. -# - add patch to re-enable mplayer. -# - add note in README about new --api-host option. - -# 20200310 bkw: update to not-quite-latest git. Next commit after 9089523 -# removes mplayer support, which kinda sucks for Slackware users since -# mplayer ships with the OS (but mpv and vlc don't). My next update will -# likely re-add mplayer support, unless it's totally broken. - -# 20200302 bkw: new build, based on youtube-viewer, of which straw-viewer -# is a fork. See https://github.com/trizen/youtube-viewer/issues/308 for -# why. Packaging a git commit because the latest (only) release has some -# issues that have been fixed. - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=straw-viewer -VERSION=${VERSION:-0.1.3} -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 $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.?z -cd $PRGNAM-$VERSION -chown -R root:root . -find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ - \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ - -# perl-Gtk3 is a runtime dep, we can build with GTK=yes even if it's not -# installed... but don't do that by default. -GTK="${GTK:-auto}" - -case "$GTK" in - no) BUILD_GTK="no" ;; - yes) BUILD_GTK="yes" ;; - *) perl -MGtk3 -MFile::ShareDir -e 0 2>/dev/null \ - && BUILD_GTK="yes" \ - || BUILD_GTK="no" ;; -esac - -[ "$BUILD_GTK" = "yes" ] && GTKOPT="--gtk" - -echo "=== GTK=$GTK BUILD_GTK=$BUILD_GTK GTKOPT=$GTKOPT" - -# 20200525 bkw: Upstream removed mplayer support because it's flaky. -# That's as may be, but mplayer is included in core Slackware and the -# other players aren't. So we'll give the user the option to at least -# try it. Patch made with: git diff 9c9bbdf4..9089523 -patch -p1 < $CWD/restore_mplayer.diff - -# 20200228 bkw: upstream claims gtk+3-3.20 is required, but everything -# actually works fine with 14.2's 3.18. So: -sed -i 's,"3.20","3.18",' share/gtk-$PRGNAM.glade - -perl Build.PL prefix=/usr installdirs=vendor --destdir="$PKG" $GTKOPT -./Build -./Build test -./Build install --install_path script=/usr/bin -mv $PKG/usr/share/man $PKG/usr/man -gzip -9 $PKG/usr/man/man?/*.? - -if [ "$BUILD_GTK" = "yes" ]; then - # link .desktop and icon to standard locations - mkdir -p $PKG/usr/share/applications $PKG/usr/share/pixmaps - LNPATH="../perl5/vendor_perl/auto/share/dist/WWW-StrawViewer" - ln -s $LNPATH/gtk-$PRGNAM.desktop \ - $PKG/usr/share/applications/gtk-$PRGNAM.desktop - ln -s $LNPATH/icons/gtk-$PRGNAM.png \ - $PKG/usr/share/pixmaps/gtk-$PRGNAM.png - - # support TERMINAL option for user's preferred terminal. - if [ "$TERMINAL" != "" ]; then - sed -i "s/'gnome-terminal'/'$TERMINAL', &/" $PKG/usr/bin/gtk-$PRGNAM - fi -fi - -find $PKG -name perllocal.pod \ - -o -name ".packlist" \ - -o -name "*.bs" \ - | xargs rm -f - -find $PKG -depth -type d -empty -delete || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a Changes LICENSE README* $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -# the permissions in the final package are weird. -find $PKG -type f -print0 | xargs -0 chmod 644 -find $PKG -type d -print0 | xargs -0 chmod 755 -chmod +x $PKG/usr/bin/* - -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/multimedia/straw-viewer/straw-viewer.info b/multimedia/straw-viewer/straw-viewer.info deleted file mode 100644 index a001f25f9e..0000000000 --- a/multimedia/straw-viewer/straw-viewer.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="straw-viewer" -VERSION="0.1.3" -HOMEPAGE="https://github.com/trizen/straw-viewer/" -DOWNLOAD="https://github.com/trizen/straw-viewer/archive/0.1.3/straw-viewer-0.1.3.tar.gz" -MD5SUM="fcae48602793f701833da52686bf2504" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="perl-data-dump perl-LWP-Protocol-https perl-JSON perl-Module-Build perl-List-MoreUtils" -MAINTAINER="B. Watson" -EMAIL="yalhcru@gmail.com" diff --git a/multimedia/straw-viewer/straw-viewer.sqf b/multimedia/straw-viewer/straw-viewer.sqf deleted file mode 100644 index dff04810ae..0000000000 --- a/multimedia/straw-viewer/straw-viewer.sqf +++ /dev/null @@ -1,46 +0,0 @@ -perl-html-tagset -perl-lwp-mediatypes -perl-http-date -perl-html-parser -perl-encode-locale -perl-IO-HTML -perl-http-message -perl-extutils-pkgconfig -perl-extutils-depends -perl-www-robotrules -perl-net-http -perl-http-negotiate -perl-http-daemon -perl-http-cookies -perl-glib -perl-file-listing -perl-common-sense -perl-cairo -perl-Net-LibIDN -Net-SSLeay -perl-Types-Serialiser -perl-Test-RequiresInternet -perl-PAR-Dist -perl-Mozilla-CA -perl-MIME-Charset -perl-List-MoreUtils-XS -perl-IO-Socket-SSL -perl-Glib-Object-Introspection -perl-Exporter-Tiny -perl-Class-Inspector -perl-Canary-Stability -perl-Cairo-GObject -libwww-perl -perl-lwp-useragent-cached -perl-data-dump -perl-Unicode-LineBreak -perl-Text-CharWidth -perl-Term-ReadLine-Gnu -perl-Module-Build -perl-List-MoreUtils -perl-LWP-Protocol-https -perl-JSON-XS -perl-JSON -perl-Gtk3 -perl-File-ShareDir -straw-viewer |