system/par2cmdline: Removed from 13.0 repository
This commit is contained in:
parent
735722a361
commit
c04b1d8678
|
@ -1,29 +0,0 @@
|
|||
par2cmdline (Commandline implementation of PARv2.0 specification)
|
||||
|
||||
par2cmdline is a GPL-licensed commandline tool for creating and using PAR2
|
||||
parity sets to detect damage in files and repair them if necessary. The
|
||||
program uses Reed Solomon Coding to perform its error correction. A useful
|
||||
program for checking and ensuring the integrity of binaries retrieved from
|
||||
usenet for instance.
|
||||
|
||||
This program, or it's argued gcc, has compile issues which result in a
|
||||
"Warning: ignoring..." messages during the build process. This problem is
|
||||
known and was made a gcc bug, which was shortly fixed. From what I know,
|
||||
this issue does not affect the actual compilation of the program.
|
||||
|
||||
For information on the issue see these messages:
|
||||
http://gcc.gnu.org/ml/gcc-bugs/2004-04/msg02848.html
|
||||
http://gcc.gnu.org/ml/gcc-bugs/2004-04/msg02856.html
|
||||
http://bugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=356548
|
||||
|
||||
There is also current work being done on a par2 library extracted from
|
||||
par2cmdline called libpar2 and is available at pararchive.sourceforge.net.
|
||||
However, since it still contains the original par2cmdline, it has the same
|
||||
compilation issue.
|
||||
|
||||
On a side note, par2cmdline in combination with unrar (available here on
|
||||
SlackBuilds.org) can be used by the python program hellanzb to make getting,
|
||||
verifying and unraring files with a nzb file almost totally hands-free.
|
||||
For more information see: http://www.hellanzb.com/trac/.
|
||||
|
||||
This includes a patch to make par2cmdline work with GCC 4.x.x
|
|
@ -1,56 +0,0 @@
|
|||
--- reedsolomon.cpp.orig 2007-07-06 00:50:38.000000000 +0100
|
||||
+++ reedsolomon.cpp 2007-07-06 00:58:05.000000000 +0100
|
||||
@@ -51,7 +51,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
-bool ReedSolomon<Galois8>::SetInput(const vector<bool> &present)
|
||||
+template <> bool ReedSolomon<Galois8>::SetInput(const vector<bool> &present)
|
||||
{
|
||||
inputcount = (u32)present.size();
|
||||
|
||||
@@ -80,7 +80,7 @@
|
||||
return true;
|
||||
}
|
||||
|
||||
-bool ReedSolomon<Galois8>::SetInput(u32 count)
|
||||
+template <> bool ReedSolomon<Galois8>::SetInput(u32 count)
|
||||
{
|
||||
inputcount = count;
|
||||
|
||||
@@ -101,7 +101,7 @@
|
||||
return true;
|
||||
}
|
||||
|
||||
-bool ReedSolomon<Galois8>::Process(size_t size, u32 inputindex, const void *inputbuffer, u32 outputindex, void *outputbuffer)
|
||||
+template <> bool ReedSolomon<Galois8>::Process(size_t size, u32 inputindex, const void *inputbuffer, u32 outputindex, void *outputbuffer)
|
||||
{
|
||||
// Look up the appropriate element in the RS matrix
|
||||
Galois8 factor = leftmatrix[outputindex * (datapresent + datamissing) + inputindex];
|
||||
@@ -189,7 +189,7 @@
|
||||
|
||||
// Set which of the source files are present and which are missing
|
||||
// and compute the base values to use for the vandermonde matrix.
|
||||
-bool ReedSolomon<Galois16>::SetInput(const vector<bool> &present)
|
||||
+template <> bool ReedSolomon<Galois16>::SetInput(const vector<bool> &present)
|
||||
{
|
||||
inputcount = (u32)present.size();
|
||||
|
||||
@@ -233,7 +233,7 @@
|
||||
|
||||
// Record that the specified number of source files are all present
|
||||
// and compute the base values to use for the vandermonde matrix.
|
||||
-bool ReedSolomon<Galois16>::SetInput(u32 count)
|
||||
+template <> bool ReedSolomon<Galois16>::SetInput(u32 count)
|
||||
{
|
||||
inputcount = count;
|
||||
|
||||
@@ -267,7 +267,7 @@
|
||||
return true;
|
||||
}
|
||||
|
||||
-bool ReedSolomon<Galois16>::Process(size_t size, u32 inputindex, const void *inputbuffer, u32 outputindex, void *outputbuffer)
|
||||
+template <> bool ReedSolomon<Galois16>::Process(size_t size, u32 inputindex, const void *inputbuffer, u32 outputindex, void *outputbuffer)
|
||||
{
|
||||
// Look up the appropriate element in the RS matrix
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for par2cmdline
|
||||
|
||||
# Written by maldoror
|
||||
# See README for notes on "warning" during build
|
||||
|
||||
# No Guarantees. Use this SlackBuild at your own risk.
|
||||
# Public Domain
|
||||
|
||||
# Modified by the SlackBuilds.org project
|
||||
|
||||
PRGNAM=par2cmdline
|
||||
VERSION=0.4
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
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"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP || exit 1
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar -zxvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1
|
||||
cd $PRGNAM-$VERSION || exit 1
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
# Apply the patch for gcc-4.x.x (Thanks to Neil Ord for pointing
|
||||
# this one out in ##Slackware)
|
||||
cat $CWD/$PRGNAM-$VERSION-gcc4.patch | patch -p0 || exit 1
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
|| exit 1
|
||||
|
||||
make || exit 1
|
||||
make check || exit 1
|
||||
make install-strip DESTDIR=$PKG || exit 1
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS PORTING README 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.tgz
|
|
@ -1,8 +0,0 @@
|
|||
PRGNAM="par2cmdline"
|
||||
VERSION="0.4"
|
||||
HOMEPAGE="http://parchive.sourceforge.net"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/parchive/par2cmdline-0.4.tar.gz"
|
||||
MD5SUM="1551b63e57e3c232254dc62073b723a9"
|
||||
MAINTAINER="maldoror"
|
||||
EMAIL="mujyo@comcast.net"
|
||||
APPROVED="rworkman"
|
|
@ -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------------------------------------------------------|
|
||||
par2cmdline: par2cmdline (Commandline implementation of PARv2.0 specification)
|
||||
par2cmdline:
|
||||
par2cmdline: par2cmdline is a GPL-licensed commandline tool for creating and
|
||||
par2cmdline: using PAR2 parity sets to detect damage in files and repair them
|
||||
par2cmdline: if necessary. The program uses Reed Solomon Coding to perform
|
||||
par2cmdline: its error correction. A useful program for checking and ensuring
|
||||
par2cmdline: the integrity of binaries retrieved from usenet for instance.
|
||||
par2cmdline:
|
||||
par2cmdline: http://parchive.sourceforge.net/
|
||||
par2cmdline:
|
||||
par2cmdline:
|
Loading…
Reference in New Issue