From: fsLeg Date: Sun, 2 Mar 2025 18:48:52 +0000 (+0300) Subject: popcorntime: added X-Git-Url: https://git.t-rg.ws/?a=commitdiff_plain;h=568a184865d270a670a6da8e036848f11575d03a;p=slackbuilds.git popcorntime: added --- diff --git a/popcorntime/README b/popcorntime/README new file mode 100644 index 0000000..af7c147 --- /dev/null +++ b/popcorntime/README @@ -0,0 +1,8 @@ +Popcorn Time streams movies and TV shows from torrents. + +Popcorn Time is the result of many developers and designers putting +a bunch of APIs together to make the experience of watching torrent +movies as simple as possible. + +Downloading copyrighted material may be illegal in your country. Use +at your own risk. diff --git a/popcorntime/copy-libatomic_fixes.patch b/popcorntime/copy-libatomic_fixes.patch new file mode 100644 index 0000000..236f9fd --- /dev/null +++ b/popcorntime/copy-libatomic_fixes.patch @@ -0,0 +1,41 @@ +diff --git a/dist/linux/copy-libatomic.sh b/dist/linux/copy-libatomic.sh +index 19f6cebfd..59574ef01 100755 +--- a/dist/linux/copy-libatomic.sh ++++ b/dist/linux/copy-libatomic.sh +@@ -7,22 +7,24 @@ arch=$3 + + outDir="$1/$2/$3" + +-sudo dpkg --add-architecture i386 +-dpkg-query -s libatomic1 +-if [ ! $? = 0 ]; then +- sudo apt update +- sudo apt install -y libatomic1 +-fi +-dpkg-query -s libatomic1:i386 +-if [ ! $? = 0 ]; then +- sudo apt update +- sudo apt install -y libatomic1:i386 ++if command -v dpkg; then ++ sudo dpkg --add-architecture i386 ++ dpkg-query -s libatomic1 ++ if [ ! $? = 0 ]; then ++ sudo apt update ++ sudo apt install -y libatomic1 ++ fi ++ dpkg-query -s libatomic1:i386 ++ if [ ! $? = 0 ]; then ++ sudo apt update ++ sudo apt install -y libatomic1:i386 ++ fi + fi + + if [[ $arch == "linux64" ]] + then +- read source <<< `readlink -f /usr/lib/x86_64*/libatomic.so.*` ++ read source <<< `readlink -f /usr/lib64/libatomic.so.*` + else +- read source <<< `readlink -f /usr/lib/i386*/libatomic.so.*` ++ read source <<< `readlink -f /usr/lib32/libatomic.so.*` + fi + cp $source "$outDir/lib/libatomic.so.1" diff --git a/popcorntime/doinst.sh b/popcorntime/doinst.sh new file mode 100644 index 0000000..3e5691a --- /dev/null +++ b/popcorntime/doinst.sh @@ -0,0 +1,9 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi diff --git a/popcorntime/popcorntime.SlackBuild b/popcorntime/popcorntime.SlackBuild new file mode 100644 index 0000000..3dceb42 --- /dev/null +++ b/popcorntime/popcorntime.SlackBuild @@ -0,0 +1,137 @@ +#!/bin/bash + +# Slackware build script for Popcorn Time + +# Copyright 2025 Vladislav Borisov Moscow, Russia +# 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. + +# TODO: look into prebuilds of bufferutil, utf-8-validate and utp-native +# to possibly make this work on 32 bit systems + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=popcorntime +TARNAM=popcorn-desktop +VERSION=${VERSION:-0.5.1} +BUILD=${BUILD:-1} +TAG=${TAG:-fsleg} +PKGTYPE=${PKGTYPE:-txz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +# 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} + +if [ "$ARCH" = "x86_64" ]; then + BITS="64" + LONGBITS="x64" +else + echo "Only x86_64 platform is supported." + exit 1 +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $TARNAM-$VERSION +tar xvf $CWD/$TARNAM-$VERSION.tar.gz +cd $TARNAM-$VERSION + +# Unpack vendored sources +tar xfv $CWD/$PRGNAM-$VERSION-vendored-sources.tar +mkdir -p cache/0.86.0-sdk +tar xf $CWD/nwjs-sdk-v0.86.0-linux-$LONGBITS.tar.gz -C cache/0.86.0-sdk +mv cache/0.86.0-sdk/nwjs-sdk-v0.86.0-linux-$LONGBITS cache/0.86.0-sdk/linux$BITS + +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 {} \; + +# Fix libatomic.so copying +# https://aur.archlinux.org/cgit/aur.git/tree/copy-libatomic_fixes.patch?h=popcorntime +patch -p1 < $CWD/yarn_lock-fixes.patch + +# Patch a proper github url +# https://aur.archlinux.org/cgit/aur.git/tree/yarn_lock-fixes.patch?h=popcorntime +patch -p1 < $CWD/copy-libatomic_fixes.patch + +# Make yarn use vendored sources +export YARN_YARN_OFFLINE_MIRROR="./vendor" + +yarn install --ignore-engines --frozen-lockfile --offline +yarn build + +# Fix permissions +find build/Popcorn-Time/linux64 -type f -perm -u+r -exec chmod a+r {} \; +find build/Popcorn-Time/linux64 -type f -perm -u+x -exec chmod a+x {} \; +find build/Popcorn-Time/linux64 -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs chmod a+x 2> /dev/null || true + +# Move binaries +mkdir -p $PKG/opt +cp -aR build/Popcorn-Time/linux$BITS $PKG/opt/$PRGNAM + +# 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 + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a build/Popcorn-Time/linux$BITS/{CHANGELOG.md,LICENSE.txt,README.md,credits.html} $PKG/usr/doc/$PRGNAM-$VERSION/ +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +# Copy .desktop file and make icons for it +mkdir -p $PKG/usr/share/applications +install -Dm644 dist/linux/appimage/Popcorn-Time.desktop $PKG/usr/share/applications/ +for geometry in 16x16 24x24 32x32 48x48 64x64 96x96 128x128 256x256; do + mkdir -p $PKG/usr/share/icons/hicolor/$geometry/apps + magick dist/linux/appimage/Popcorn-Time.png -resize $geometry $PKG/usr/share/icons/hicolor/$geometry/apps/Popcorn-Time.png +done + +# Make a symlink +mkdir -p $PKG/usr/bin +ln -s /opt/$PRGNAM/Popcorn-Time $PKG/usr/bin/ + +# Copy the slack-desc into ./install +mkdir -p $PKG/install +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 diff --git a/popcorntime/popcorntime.info b/popcorntime/popcorntime.info new file mode 100644 index 0000000..bf2a40c --- /dev/null +++ b/popcorntime/popcorntime.info @@ -0,0 +1,14 @@ +PRGNAM="popcorntime" +VERSION="0.5.1" +HOMEPAGE="https://popcorn-time.site/" +DOWNLOAD="UNSUPPORTED" +MD5SUM="" +DOWNLOAD_x86_64="https://github.com/popcorn-official/popcorn-desktop/archive/v0.5.1/popcorn-desktop-0.5.1.tar.gz \ + https://sbo.t-rg.ws/popcorntime-0.5.1-vendored-sources.tar \ + https://popcorn-time.serv00.net/nw/v0.86.0/nwjs-sdk-v0.86.0-linux-x64.tar.gz" +MD5SUM_x86_64="11bcb10ac85da77b619247e924958127 \ + 9a5ece4a5dc8680db6c5b8be9baa9e85 \ + c55fc8103494bbf3b7a7292578bc9b4d" +REQUIRES="yarn" +MAINTAINER="Vladislav 'fsLeg' Borisov" +EMAIL="fsleg@t-rg.ws" diff --git a/popcorntime/slack-desc b/popcorntime/slack-desc new file mode 100644 index 0000000..772714a --- /dev/null +++ b/popcorntime/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------------------------------------------------------| +popcorntime: popcorntime (Stream free movies and TV shows from torrents) +popcorntime: +popcorntime: Popcorn Time is a multi-platform, free software BitTorrent client +popcorntime: that includes an integrated media player (Windows/Mac/Linux) +popcorntime: A Butter-Project Fork +popcorntime: +popcorntime: Homepage: https://popcorn-time.site/ +popcorntime: +popcorntime: +popcorntime: +popcorntime: diff --git a/popcorntime/yarn_lock-fixes.patch b/popcorntime/yarn_lock-fixes.patch new file mode 100644 index 0000000..1e0353c --- /dev/null +++ b/popcorntime/yarn_lock-fixes.patch @@ -0,0 +1,22 @@ +diff --git a/yarn.lock b/yarn.lock +index 9764d06ef..d7e51c545 100644 +--- a/yarn.lock ++++ b/yarn.lock +@@ -7227,7 +7227,7 @@ teex@^1.0.1: + + "temp@github:adam-lynch/node-temp#remove_tmpdir_dep": + version "0.8.3" +- resolved "git+ssh://git@github.com/adam-lynch/node-temp.git#279c1350cb7e4f02515d91da9e35d39a40774016" ++ resolved "git+https://github.com/adam-lynch/node-temp.git#279c1350cb7e4f02515d91da9e35d39a40774016" + dependencies: + rimraf "~2.2.6" + +@@ -7994,7 +7994,7 @@ vinyl@^3.0.0: + + "vtt.js@git+https://github.com/gkatsev/vtt.js.git#vjs-v0.12.1": + version "0.12.1" +- resolved "git+ssh://git@github.com/gkatsev/vtt.js.git#8ea664e257ec7b5c092f58ac989e3134ff536a7a" ++ resolved "git+https://github.com/gkatsev/vtt.js.git#8ea664e257ec7b5c092f58ac989e3134ff536a7a" + + w-json@^1.3.10: + version "1.3.10"