summaryrefslogtreecommitdiffstats
path: root/network/Pafy
diff options
context:
space:
mode:
Diffstat (limited to 'network/Pafy')
-rw-r--r--network/Pafy/Pafy.SlackBuild22
-rw-r--r--network/Pafy/Pafy.info2
-rw-r--r--network/Pafy/README11
3 files changed, 26 insertions, 9 deletions
diff --git a/network/Pafy/Pafy.SlackBuild b/network/Pafy/Pafy.SlackBuild
index 855e7772f7..a5494a4544 100644
--- a/network/Pafy/Pafy.SlackBuild
+++ b/network/Pafy/Pafy.SlackBuild
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# Slackware build script for Pafy
@@ -22,11 +22,20 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+# 20200119 bkw:
+# Dimitris: this is B. Watson (urchlay@slackware.uk). I can't reach you
+# by email and you don't use IRC, so I'm "texting" you via this
+# comment. Pafy fails to build unless youtube-dl is installed, so
+# I added it to REQUIRES as a hard dep.
+
+cd $(dirname $0) ; CWD=$(pwd)
+
PRGNAM=Pafy
SRCNAM=${PRGNAM,}
VERSION=${VERSION:-0.5.5}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -36,7 +45,14 @@ if [ -z "$ARCH" ]; then
esac
fi
-CWD=$(pwd)
+# 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
+fi
+
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
@@ -89,4 +105,4 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/network/Pafy/Pafy.info b/network/Pafy/Pafy.info
index 3ff1b57f76..774982c1fc 100644
--- a/network/Pafy/Pafy.info
+++ b/network/Pafy/Pafy.info
@@ -5,6 +5,6 @@ DOWNLOAD="https://files.pythonhosted.org/packages/7e/02/b70f4d2ad64bbc7d2a00018c
MD5SUM="01430bb4876aec3b648b2f52c5ee7bd6"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
-REQUIRES=""
+REQUIRES="youtube-dl"
MAINTAINER="Dimitris Zlatanidis"
EMAIL="d.zlatanidis@gmail.com"
diff --git a/network/Pafy/README b/network/Pafy/README
index e583af6bff..7597769aa4 100644
--- a/network/Pafy/README
+++ b/network/Pafy/README
@@ -1,13 +1,16 @@
Pafy (Python API for YouTube content)
-Python API for YouTube - Download videos and retrieve metadata from YouTube.
+Python API for YouTube - Download videos and retrieve metadata from
+YouTube.
- Retreive metadata such as viewcount, duration, rating, author,
thumbnail, keywords.
- Download video or audio at requested resolution / bitrate / format /
filesize.
-- Command line tool (ytdl) for downloading directly from the command line.
-- Retrieve the URL to stream the video in a player such as vlc or mplayer.
+- Command line tool (ytdl) for downloading directly from the command
+ line.
+- Retrieve the URL to stream the video in a player such as vlc or
+ mplayer.
- Works with age-restricted videos and non-embeddable videos.
- Small, standalone, single importable module file (pafy.py).
- Select highest quality stream for download or streaming.
@@ -15,5 +18,3 @@ Python API for YouTube - Download videos and retrieve metadata from YouTube.
- Download video only (no audio) in m4v format.
- Retreive playlists and playlist metadata.
- Works with Python 2.6+ and 3.3+.
-
-Optional dependency: youtube-dl