From 681a94659de0771ebae1aa2cf61f4a33fb1307be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Audrius=20Ka=C5=BEukauskas?= Date: Sat, 28 Aug 2010 14:44:51 -0400 Subject: network/spambayes: Miscellaneous cleanups and moved from system. Signed-off-by: dsomero --- network/spambayes/README | 6 ++++ network/spambayes/slack-desc | 19 ++++++++++++ network/spambayes/spambayes.SlackBuild | 50 +++++++++++++++++++++++++++++++ network/spambayes/spambayes.info | 10 +++++++ system/spambayes/README | 6 ---- system/spambayes/slack-desc | 19 ------------ system/spambayes/spambayes.SlackBuild | 55 ---------------------------------- system/spambayes/spambayes.info | 10 ------- 8 files changed, 85 insertions(+), 90 deletions(-) create mode 100644 network/spambayes/README create mode 100644 network/spambayes/slack-desc create mode 100644 network/spambayes/spambayes.SlackBuild create mode 100644 network/spambayes/spambayes.info delete mode 100644 system/spambayes/README delete mode 100644 system/spambayes/slack-desc delete mode 100644 system/spambayes/spambayes.SlackBuild delete mode 100644 system/spambayes/spambayes.info diff --git a/network/spambayes/README b/network/spambayes/README new file mode 100644 index 0000000000..179ca058b7 --- /dev/null +++ b/network/spambayes/README @@ -0,0 +1,6 @@ +SpamBayes uses a different set of algorithm to most statistical spam filters, +which enables to dramatically lower the number of legitimate mail classified as +spam, through the introduction of an 'unsure' category. + +SpamBayes can be used as a POP3 or an IMAP proxy, as well as a simple mail +filter for use with procmail. diff --git a/network/spambayes/slack-desc b/network/spambayes/slack-desc new file mode 100644 index 0000000000..7d1061511c --- /dev/null +++ b/network/spambayes/slack-desc @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +spambayes: spambayes (Python-based spam filter using statistical analysis) +spambayes: +spambayes: SpamBayes uses a different set of algorithm to most statistical spam +spambayes: filters, which enables to dramatically lower the number of +spambayes: legitimate mail classified as spam, through the introduction of an +spambayes: 'unsure' category. +spambayes: +spambayes: SpamBayes can be used as a POP3 or an IMAP proxy, as well as a +spambayes: simple mail filter for use with procmail. +spambayes: +spambayes: Homepage: http://spambayes.sourceforge.net/ diff --git a/network/spambayes/spambayes.SlackBuild b/network/spambayes/spambayes.SlackBuild new file mode 100644 index 0000000000..6bc66d1028 --- /dev/null +++ b/network/spambayes/spambayes.SlackBuild @@ -0,0 +1,50 @@ +#!/bin/sh + +# Slackware build script for spambayes +# Written by Audrius Kažukauskas + +PRGNAM=spambayes +VERSION=${VERSION:-1.0.4} +BUILD=${BUILD:-3} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -eu + +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 . +chmod -R u+rw,go+r-w,a-sx+X . + +# Suppress sets module deprecation warning in Python 2.6+. +sed -i 's/from sets import Set/Set = set/' \ + spambayes/{classifier,TestDriver,tokenizer,ProxyUI}.py + +python setup.py install --root=$PKG + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a *.txt $PKG/usr/doc/$PRGNAM-$VERSION +cp -a contrib $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:-tgz} diff --git a/network/spambayes/spambayes.info b/network/spambayes/spambayes.info new file mode 100644 index 0000000000..2ea6c31a92 --- /dev/null +++ b/network/spambayes/spambayes.info @@ -0,0 +1,10 @@ +PRGNAM="spambayes" +VERSION="1.0.4" +HOMEPAGE="http://spambayes.sourceforge.net/" +DOWNLOAD="http://downloads.sourceforge.net/spambayes/spambayes-1.0.4.tar.gz" +MD5SUM="78c33e79888d410711ff3c7dd7e98d79" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Audrius Kažukauskas" +EMAIL="audrius@neutrino.lt" +APPROVED="dsomero" diff --git a/system/spambayes/README b/system/spambayes/README deleted file mode 100644 index 179ca058b7..0000000000 --- a/system/spambayes/README +++ /dev/null @@ -1,6 +0,0 @@ -SpamBayes uses a different set of algorithm to most statistical spam filters, -which enables to dramatically lower the number of legitimate mail classified as -spam, through the introduction of an 'unsure' category. - -SpamBayes can be used as a POP3 or an IMAP proxy, as well as a simple mail -filter for use with procmail. diff --git a/system/spambayes/slack-desc b/system/spambayes/slack-desc deleted file mode 100644 index 7d1061511c..0000000000 --- a/system/spambayes/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------------------------------------------------------| -spambayes: spambayes (Python-based spam filter using statistical analysis) -spambayes: -spambayes: SpamBayes uses a different set of algorithm to most statistical spam -spambayes: filters, which enables to dramatically lower the number of -spambayes: legitimate mail classified as spam, through the introduction of an -spambayes: 'unsure' category. -spambayes: -spambayes: SpamBayes can be used as a POP3 or an IMAP proxy, as well as a -spambayes: simple mail filter for use with procmail. -spambayes: -spambayes: Homepage: http://spambayes.sourceforge.net/ diff --git a/system/spambayes/spambayes.SlackBuild b/system/spambayes/spambayes.SlackBuild deleted file mode 100644 index 46bfa318ee..0000000000 --- a/system/spambayes/spambayes.SlackBuild +++ /dev/null @@ -1,55 +0,0 @@ -#!/bin/sh - -# Slackware build script for spambayes -# Written by Audrius Kažukauskas - -PRGNAM=spambayes -VERSION=${VERSION:-1.0.4} -BUILD=${BUILD:-3} -TAG=${TAG:-_SBo} - -# 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} - -set -eu - -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 . -chmod -R u+rw,go+r-w,a-s . - -# Eliminate deprecation warning for sets module with Python 2.6 -sed -i 's/from sets import Set/Set = set/' \ - spambayes/{classifier.py,TestDriver.py,tokenizer.py,ProxyUI.py} - -python setup.py install --root=$PKG - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - CHANGELOG.txt LICENSE.txt NEWTRICKS.txt POP3PROXY.txt \ - README-DEVEL.txt README.txt TESTING.txt WHAT_IS_NEW.txt \ - $PKG/usr/doc/$PRGNAM-$VERSION -cp -a contrib $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:-tgz} diff --git a/system/spambayes/spambayes.info b/system/spambayes/spambayes.info deleted file mode 100644 index 53596aa208..0000000000 --- a/system/spambayes/spambayes.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="spambayes" -VERSION="1.0.4" -HOMEPAGE="http://spambayes.sourceforge.net/" -DOWNLOAD="http://downloads.sourceforge.net/spambayes/spambayes-1.0.4.tar.gz" -MD5SUM="78c33e79888d410711ff3c7dd7e98d79" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Audrius Kazukauskas" -EMAIL="audrius@neutrino.lt" -APPROVED="dsomero" -- cgit v1.2.3