aboutsummaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorWilly Sudiarto Raharjo <willysr@slackbuilds.org>2024-06-02 07:40:04 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2024-06-02 11:32:56 +0700
commit550280dfd328aa27aaf5d568ff2f8bcbb0dc4523 (patch)
tree6fdb636fdcc51b57fd81f3532709084b1016ddb2 /misc
parentdabd49c3886d1d5e6446ac5fb1c050071ae4a609 (diff)
misc/par2cmdline-tbb: Removed (FTBFS and upstream is dead).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/par2cmdline-tbb/README10
-rw-r--r--misc/par2cmdline-tbb/par2cmdline-tbb.SlackBuild96
-rw-r--r--misc/par2cmdline-tbb/par2cmdline-tbb.info10
-rw-r--r--misc/par2cmdline-tbb/slack-desc19
4 files changed, 0 insertions, 135 deletions
diff --git a/misc/par2cmdline-tbb/README b/misc/par2cmdline-tbb/README
deleted file mode 100644
index 5fdd10706906..000000000000
--- a/misc/par2cmdline-tbb/README
+++ /dev/null
@@ -1,10 +0,0 @@
-par2cmdline 0.4 with Intel Threading Building Blocks
-
-This is a concurrent (multithreaded) version of par2cmdline 0.4,
-a utility to create and repair data files using Reed Solomon
-coding. par2 parity archives are commonly used on Usenet posting
-to allow corrupted postings to be repaired instead of needing the
-original poster to repost the corrupted file(s).
-
-Note: if you have installed the par2cmdline package this one will
-overwrite the par2 binary file, so do not install both versions.
diff --git a/misc/par2cmdline-tbb/par2cmdline-tbb.SlackBuild b/misc/par2cmdline-tbb/par2cmdline-tbb.SlackBuild
deleted file mode 100644
index aa15bf9e31ac..000000000000
--- a/misc/par2cmdline-tbb/par2cmdline-tbb.SlackBuild
+++ /dev/null
@@ -1,96 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for par2cmdline tbb
-# Written by powtrix (@gmail.com)
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=par2cmdline-tbb
-VERSION=${VERSION:-0.4_20150503}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-DIRNAME=$(echo $PRGNAM | tr -d "\-tbb")
-DIRVERSION=$(echo $VERSION | awk -F_ '{print $1}')
-SRCVERSION=$(echo $VERSION | sed s,_,-tbb-,)
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i686 ;; # i486 fails to build, it isn't multithread
- 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" = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $DIRNAME-$DIRVERSION
-tar xvf $CWD/$DIRNAME-$SRCVERSION.tar.gz
-cd $TMP/$DIRNAME-$DIRVERSION
-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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-# This header has been removed with glibc 2.32, so point at the kernel's one
-sed -i "s|sys/sysctl\.h|linux/sysctl.h|" reedsolomon.cpp
-
-LDFLAGS="-lrt" \
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --build=$ARCH-slackware-linux
-
-make
-sed -i 's/ln -f/ln -sf/g' Makefile # make symbolic links instead of hard links
-make install DESTDIR=$PKG
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS COPYING ChangeLog INSTALL PORTING README{,_FIRST.txt} ROADMAP \
- $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
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/misc/par2cmdline-tbb/par2cmdline-tbb.info b/misc/par2cmdline-tbb/par2cmdline-tbb.info
deleted file mode 100644
index d197ad08687f..000000000000
--- a/misc/par2cmdline-tbb/par2cmdline-tbb.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="par2cmdline-tbb"
-VERSION="0.4_20150503"
-HOMEPAGE="https://github.com/jcfp/par2tbb-chuchusoft-sources/releases"
-DOWNLOAD="https://github.com/jcfp/par2tbb-chuchusoft-sources/releases/download/0.4-tbb-20150503/par2cmdline-0.4-tbb-20150503.tar.gz"
-MD5SUM="8159d5747647d9790ae39e3aedbd2f3c"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="oneTBB"
-MAINTAINER="powtrix"
-EMAIL="powtrix@gmail.com"
diff --git a/misc/par2cmdline-tbb/slack-desc b/misc/par2cmdline-tbb/slack-desc
deleted file mode 100644
index a77a77f844bd..000000000000
--- a/misc/par2cmdline-tbb/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------------------------------------------------------|
-par2cmdline-tbb: par2cmdline-tbb (a multithreaded version of par2cmdline)
-par2cmdline-tbb:
-par2cmdline-tbb: This is a concurrent (multithreaded) version of par2cmdline,
-par2cmdline-tbb: a utility to create and repair data files using Reed Solomon
-par2cmdline-tbb: coding. par2 parity archives are commonly used on Usenet
-par2cmdline-tbb: postings to allow corrupted postings to be repaired instead
-par2cmdline-tbb: of needing the original poster to repost the corrupted file(s).
-par2cmdline-tbb: This version has been modified to utilise the Intel Threading
-par2cmdline-tbb: Building Blocks library.
-par2cmdline-tbb:
-par2cmdline-tbb: