From 27b0c3822f02e8d924af6264d205ad7182d438bf Mon Sep 17 00:00:00 2001 From: Patrick J Volkerding Date: Sun, 3 Feb 2019 20:26:34 +0000 Subject: Sun Feb 3 20:26:34 UTC 2019 d/bison-3.3.2-x86_64-1.txz: Upgraded. n/dovecot-2.3.4-x86_64-2.txz: Rebuilt. Patched double free when used with MariaDB 10.3.x. Thanks to Thom1b. x/xkeyboard-config-2.26-noarch-1.txz: Upgraded. extra/bittorrent/bittorrent-4.4.0-noarch-4.txz: Removed. --- extra/bittorrent/README | 31 ------------- extra/source/bittorrent/bittorrent-xterm.sh | 37 --------------- extra/source/bittorrent/bittorrent.SlackBuild | 65 --------------------------- extra/source/bittorrent/doinst.sh | 10 ----- extra/source/bittorrent/slack-desc | 19 -------- 5 files changed, 162 deletions(-) delete mode 100644 extra/bittorrent/README delete mode 100644 extra/source/bittorrent/bittorrent-xterm.sh delete mode 100755 extra/source/bittorrent/bittorrent.SlackBuild delete mode 100644 extra/source/bittorrent/doinst.sh delete mode 100644 extra/source/bittorrent/slack-desc (limited to 'extra') diff --git a/extra/bittorrent/README b/extra/bittorrent/README deleted file mode 100644 index 551ba8660..000000000 --- a/extra/bittorrent/README +++ /dev/null @@ -1,31 +0,0 @@ - -Here's a BitTorrent package for Slackware. - -Note that we don't ship either wxGTK or wxPython, which are needed for the -bittorrent-console script. I built and installed these, and couldn't justify -the huge size (and assorted build problems) in order to enable an ugly little -dialog box. But feel free to grab those sources and knock yourself out! - -I've included a simple script and mailcap entry to allow using the curses -based downloader instead, which will work just the same as the GUI version -but with a lot less library overhead required. For Mozilla, Netscape, and -other browsers that read /etc/mailcap, once you've installed this package -BitTorrent should work right out of the box. If your browser doesn't use -/etc/mailcap, you can set it up to use /usr/bin/bittorrent-xterm as the -helper application for the MIME type application/x-bittorrent. - -If you're a command-line user, you may also consider using bittorrent-curses -manually. Here's how: - -1. Download the .torrent file into your download directory. - -2. At the command line, use the curses version of BitTorrent to download: - bittorrent-curses some-big-file.torrent - -This should start the download and bring up a status screen where you can -monitor the download (and upload) progress. - -Have fun! - -- P. - diff --git a/extra/source/bittorrent/bittorrent-xterm.sh b/extra/source/bittorrent/bittorrent-xterm.sh deleted file mode 100644 index fdf32ea1e..000000000 --- a/extra/source/bittorrent/bittorrent-xterm.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh -# Copyright 2003 Slackware Linux, Inc., Concord, CA, USA -# Copyright 2006 Patrick J. Volkerding, Sebeka, MN, USA -# 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. - -# /usr/bin/bittorrent-xterm.sh -# A simple script used in /etc/mailcap to enable using -# bittorrent-curses with Mozilla, etc. -# -# This goes in /etc/mailcap: -#application/x-bittorrent; /usr/bin/bittorrent-xterm '%s' ; - -# Create a directory for downloads: -if [ ! -d $HOME/BitTorrent ]; then - mkdir -p $HOME/BitTorrent -fi - -# Change to the download directory and start BitTorrent there: -cd $HOME/BitTorrent && exec /usr/X11R6/bin/xterm -e /usr/bin/bittorrent-curses "$1" - diff --git a/extra/source/bittorrent/bittorrent.SlackBuild b/extra/source/bittorrent/bittorrent.SlackBuild deleted file mode 100755 index 7bfc6a61c..000000000 --- a/extra/source/bittorrent/bittorrent.SlackBuild +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/sh - -# Copyright 2009 Patrick J. Volkerding, Sebeka, MN, USA -# 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. - -VERSION=${VERSION:-4.4.0} -ARCH=noarch -BUILD=${BUILD:-4} - -CWD=$(pwd) -TMP=${TMP:-/tmp} -PKG=/tmp/package-bittorrent -rm -rf $PKG -mkdir -p $PKG $TMP - -cd $TMP -rm -rf BitTorrent-$VERSION -tar xvf $CWD/BitTorrent-$VERSION.tar.bz2 || exit 1 -cd BitTorrent-$VERSION || exit 1 -chown -R root.root . -find . \ - \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -python setup.py build install --root=$PKG -# Add bittorrent-xterm (this just opens an xterm for bittorrent-curses so -# that it can work as a MIME handler from mailcap): -mkdir -p $PKG/usr/bin -zcat $CWD/bittorrent-xterm.sh.gz > $PKG/usr/bin/bittorrent-xterm -chmod 755 $PKG/usr/bin/bittorrent-xterm -mkdir -p $PKG/usr/doc/BitTorrent-$VERSION -cp -a \ - INSTALL.unix.txt LICENSE.txt PKG-INFO README.txt TRACKERLESS.txt \ - credits-l10n.txt credits.txt public.key redirdonate.html \ - $PKG/usr/doc/BitTorrent-$VERSION -rm -rf $PKG/usr/share/doc $PKG/usr/share/pixmaps/BitTorrent-$VERSION/icons/old - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc -# Add support for using bittorrent-curses instead of bittorrent-gui -# in /etc/mailcap: -zcat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $TMP/bittorrent-$VERSION-$ARCH-$BUILD.txz - diff --git a/extra/source/bittorrent/doinst.sh b/extra/source/bittorrent/doinst.sh deleted file mode 100644 index 3b84c3043..000000000 --- a/extra/source/bittorrent/doinst.sh +++ /dev/null @@ -1,10 +0,0 @@ -# Add bittorrent support to /etc/mailcap unless it's found there -# already (commented out, or not): -if ! grep application/x-bittorrent etc/mailcap 1> /dev/null 2> /dev/null ; then - echo "application/x-bittorrent; /usr/bin/bittorrent-xterm '%s' ; " >> etc/mailcap -else - # If it calls btdownloadxterm.sh, make bittorrent-xterm the default instead: - if grep btdownloadxterm etc/mailcap 1> /dev/null 2> /dev/null ; then - sed -i -e 's/btdownloadxterm.sh/bittorrent-xterm/g' etc/mailcap - fi -fi diff --git a/extra/source/bittorrent/slack-desc b/extra/source/bittorrent/slack-desc deleted file mode 100644 index 4c32bb58c..000000000 --- a/extra/source/bittorrent/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 ':'. - - |-----handy-ruler------------------------------------------------------| -bittorrent: bittorrent (BitTorrent file distribution utility) -bittorrent: -bittorrent: BitTorrent is a file distribution utility which utilizes the upload -bittorrent: capacity of machines which are downloading a file to help distribute -bittorrent: it to other downloading machines. This makes it possible to provide -bittorrent: large files (such as the Slackware Linux ISO images) to many people -bittorrent: without the usual problem of insufficient bandwidth. The more -bittorrent: downloaders, the more bandwidth. Problem solved. -bittorrent: -bittorrent: Bram Cohen is the genius behind BitTorrent. -bittorrent: -- cgit v1.2.3