aboutsummaryrefslogtreecommitdiff
path: root/network/flexget
diff options
context:
space:
mode:
authorWilly Sudiarto Raharjo <willysr@slackbuilds.org>2025-03-20 20:30:17 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2025-03-20 20:30:17 +0700
commit97acf3ba568120314f4577acc5b0070fa6756d9c (patch)
treeba1f211bb292ea9299e96c2c87c39780901ec7a2 /network/flexget
parent1f422c7af9f67c8de9fd34b72676dc4f752c70ea (diff)
network/flexget: Removed (maintainer request).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/flexget')
-rw-r--r--network/flexget/README7
-rw-r--r--network/flexget/doinst.sh3
-rw-r--r--network/flexget/flexget.SlackBuild98
-rw-r--r--network/flexget/flexget.info10
-rw-r--r--network/flexget/slack-desc19
5 files changed, 0 insertions, 137 deletions
diff --git a/network/flexget/README b/network/flexget/README
deleted file mode 100644
index 02f0d66080..0000000000
--- a/network/flexget/README
+++ /dev/null
@@ -1,7 +0,0 @@
-FlexGet is a multipurpose automation tool for content like torrents,
-nzbs, podcasts, comics, etc. FlexGet is able to handle different kinds
-of sources like RSS-feeds, html pages and csv files. There are even some
-plugins for sites that do not provide any kind of useful feeds.
-
-FlexGet is extremely useful in conjunction with applications which have
-watch directory support, such as rtorrent.
diff --git a/network/flexget/doinst.sh b/network/flexget/doinst.sh
deleted file mode 100644
index 5fb28930db..0000000000
--- a/network/flexget/doinst.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
diff --git a/network/flexget/flexget.SlackBuild b/network/flexget/flexget.SlackBuild
deleted file mode 100644
index f10b85810b..0000000000
--- a/network/flexget/flexget.SlackBuild
+++ /dev/null
@@ -1,98 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for flexget
-
-# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST
-# Copyright 2009-2010 Eric Hameleers, Eindhoven, Netherlands
-# Copyright 2014-2017 Dimitris Zlatanidis Orestiada, Greece
-# Copyright 2022-2024 fourtysixandtwo <fourtysixandtwo@sliderr.net>
-# Written by Lionel Young <redtricycle@gmail.com>
-#
-# 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.
-
-# 20220515 46and2: Updated version, removed python2, New maintainer.
-# 20220908 46and2: Updated version.
-# -build process changed to fix issue with versions >3.3.20.
-# 20230915 46and2: Updated version, deps, various fixes.
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=flexget
-SRCNAM=FlexGet
-VERSION=${VERSION:-3.9.19}
-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}
-
-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 {} \+
-
-# Remove versions from requirements
-sed -i "s/==.*//" requirements.txt
-
-# remove modules already included in python3.9 or win32
-sed -i -E -e '/^(backports-zoneinfo|pkgutil-resolve-name)/d' \
- -e '/^(pywin32|win32-setctime)/d' requirements.txt
-
-PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])')
-export PYTHONPATH=/opt/python$PYVER/site-packages/
-
-python3 -m build --no-isolation
-python3 -m installer -d "$PKG" dist/*.whl
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a LICENSE README.rst PKG-INFO $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
-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/network/flexget/flexget.info b/network/flexget/flexget.info
deleted file mode 100644
index 3aeb1d5c53..0000000000
--- a/network/flexget/flexget.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="flexget"
-VERSION="3.9.19"
-HOMEPAGE="https://flexget.com/"
-DOWNLOAD="https://files.pythonhosted.org/packages/source/f/flexget/FlexGet-3.9.19.tar.gz"
-MD5SUM="148a5eb3cb226fec011f568a42a5f573"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="feedparser SQLAlchemy BeautifulSoup4 html5lib python3-PyRSS2Gen python3-pynzb python3-rpyc python3-guessit python3-APScheduler python3-CherryPy python3-Flask-RESTful python3-Flask-RESTX python3-Flask-Compress python3-Flask-Login python3-Flask-Cors python3-zxcvbn python3-rich pytz-deprecation-shim python3-loguru tzdata python3-psutil colorama CommonMark python3-brotlicffi"
-MAINTAINER="fourtysixandtwo"
-EMAIL="fourtysixandtwo@sliderr.net"
diff --git a/network/flexget/slack-desc b/network/flexget/slack-desc
deleted file mode 100644
index ea1c24dad2..0000000000
--- a/network/flexget/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------------------------------------------------------|
-flexget: flexget (multipurpose content downloader)
-flexget:
-flexget: FlexGet is a multipurpose automation tool for content like torrents,
-flexget: nzbs, podcasts, comics, etc. FlexGet is able to handle different
-flexget: kinds of sources like RSS-feeds, html pages and csv files.
-flexget:
-flexget: FlexGet is extremely useful in conjunction with applications which
-flexget: have watch directory support, such as rtorrent.
-flexget:
-flexget: Home: http://flexget.com/
-flexget: