From a8f8c4321072613b1f824e67f4fa5dadd7dfdbbd Mon Sep 17 00:00:00 2001 From: fsLeg Date: Sat, 9 May 2015 19:32:14 +0300 Subject: [PATCH] dumptorrent: added. --- dumptorrent/README | 1 + dumptorrent/dumptorrent.SlackBuild | 92 ++++++++++++++++++++++++++++++ dumptorrent/dumptorrent.info | 10 ++++ dumptorrent/slack-desc | 11 ++++ 4 files changed, 114 insertions(+) create mode 100644 dumptorrent/README create mode 100755 dumptorrent/dumptorrent.SlackBuild create mode 100644 dumptorrent/dumptorrent.info create mode 100644 dumptorrent/slack-desc diff --git a/dumptorrent/README b/dumptorrent/README new file mode 100644 index 0000000..ce7cdad --- /dev/null +++ b/dumptorrent/README @@ -0,0 +1 @@ +DumpTorrent is a non-interactive text mode program which displays BitTorrent .torrent file information, including size, file names, announce[-list], comment, publisher and info_hash. It can also query (scrape) tracker for current downloader count. diff --git a/dumptorrent/dumptorrent.SlackBuild b/dumptorrent/dumptorrent.SlackBuild new file mode 100755 index 0000000..76dd887 --- /dev/null +++ b/dumptorrent/dumptorrent.SlackBuild @@ -0,0 +1,92 @@ +#!/bin/sh + +# Slackware build script for dumptorrent + +# Copyright 2015 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. + +PRGNAM=dumptorrent +VERSION=${VERSION:-1.2} +BUILD=${BUILD:-1} +TAG=${TAG:-fsleg} + +# Automatically determine the architecture we're building on: +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +else + SLKCFLAGS="-O2" +fi + +set -e # Exit on most errors + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$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 {} \; + +make dumptorrent CFLAGS="${SLKFLAGS}" + +# There's no 'install' target and no documentation, so we just copy the binary +# to a correct location and package it. + +mkdir -p ${PKG}/usr/bin +install -Dm755 ./dumptorrent ${PKG}/usr/bin/ + +# Strip binaries +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 + +# Copy the SlackBuild into the package +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +# Copy the slack-desc into ./install +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +# Make the package +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-txz} diff --git a/dumptorrent/dumptorrent.info b/dumptorrent/dumptorrent.info new file mode 100644 index 0000000..30ad043 --- /dev/null +++ b/dumptorrent/dumptorrent.info @@ -0,0 +1,10 @@ +PRGNAM="dumptorrent" +VERSION="1.2" +HOMEPAGE="http://sourceforge.net/projects/dumptorrent/" +DOWNLOAD="http://sourceforge.net/projects/dumptorrent/files/dumptorrent/1.2/dumptorrent-1.2.tar.gz" +MD5SUM="90c68a0889bd0eae2ed3392bd5e1fb03" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Vladislav Borisov" +EMAIL="fsleg@t-rg.ws" diff --git a/dumptorrent/slack-desc b/dumptorrent/slack-desc new file mode 100644 index 0000000..e775196 --- /dev/null +++ b/dumptorrent/slack-desc @@ -0,0 +1,11 @@ + |-----handy-ruler------------------------------------------------------| +dumptorrent: dumptorrent (get torrent metadata) +dumptorrent: +dumptorrent: DumpTorrent is a non-interactive text mode program which displays +dumptorrent: BitTorrent .torrent file information, including size, file names, +dumptorrent: announce[-list], comment, publisher and info_hash. It can also query +dumptorrent: (scrape) tracker for current downloader count. +dumptorrent: +dumptorrent: Website: http://sourceforge.net/projects/dumptorrent/ +dumptorrent: +dumptorrent: -- 2.46.3