diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2011-03-16 01:13:49 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-20 12:33:01 -0500 |
commit | 7a1b4848a3d34a263544fadf08178c91c12fbad0 (patch) | |
tree | 8987d0fc908e371dfa87445425f59c7514075b37 /libraries | |
parent | 987d45e99a299c3b24418b2976e8ec9d5f3bf404 (diff) | |
download | slackbuilds-7a1b4848a3d34a263544fadf08178c91c12fbad0.tar.gz |
python/*: Moved a lot of Python stuff here
The criteria for whether something "belongs" in Development or
Libraries or Python or ... is admittedly arbitrary. As a general
rule, if it could be either Libraries or Python, it's Python.
Otherwise, pick one and we'll go from there...
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries')
236 files changed, 0 insertions, 6591 deletions
diff --git a/libraries/SOAPpy/README b/libraries/SOAPpy/README deleted file mode 100644 index 0080e72969..0000000000 --- a/libraries/SOAPpy/README +++ /dev/null @@ -1,6 +0,0 @@ -The goal of the SOAPpy team is to provide a full-featured SOAP library -for Python that is very simple to use and that fully supports dynamic -interaction between clients and servers. - -SOAPpy requires fpconst and PyXML packages, both avalaible at -SlackBuilds.org. diff --git a/libraries/SOAPpy/SOAPpy.SlackBuild b/libraries/SOAPpy/SOAPpy.SlackBuild deleted file mode 100644 index 08215d32d7..0000000000 --- a/libraries/SOAPpy/SOAPpy.SlackBuild +++ /dev/null @@ -1,81 +0,0 @@ -#!/bin/sh - -# Slackware build script for SOAPpy. -# -# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it> -# 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=SOAPpy -VERSION=0.11.6 -BUILD=${BUILD:-1} -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} - -DOCS="ChangeLog LICENSE PKG-INFO README RELEASE_INFO docs" - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION - -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 {} \; -# fix txts permissions -chmod 644 docs/*.txt - -# Fix imports from future order -patch -p1 < $CWD/imports.patch - -python setup.py install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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/libraries/SOAPpy/SOAPpy.info b/libraries/SOAPpy/SOAPpy.info deleted file mode 100644 index 2bbb88a179..0000000000 --- a/libraries/SOAPpy/SOAPpy.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="SOAPpy" -VERSION="0.11.6" -HOMEPAGE="http://pywebsvcs.sourceforge.net/" -DOWNLOAD="http://downloads.sourceforge.net/pywebsvcs/SOAPpy-0.11.6.tar.gz" -MD5SUM="51ac835366badedd932c64f26fa8336b" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="dsomero" diff --git a/libraries/SOAPpy/imports.patch b/libraries/SOAPpy/imports.patch deleted file mode 100644 index efb2931e6b..0000000000 --- a/libraries/SOAPpy/imports.patch +++ /dev/null @@ -1,48 +0,0 @@ -diff -Naur SOAPpy-0.11.6.orig/SOAPpy/Client.py SOAPpy-0.11.6/SOAPpy/Client.py ---- SOAPpy-0.11.6.orig/SOAPpy/Client.py 2004-04-27 17:45:58.000000000 +0200 -+++ SOAPpy-0.11.6/SOAPpy/Client.py 2009-03-13 13:15:11.000000000 +0100 -@@ -40,10 +40,10 @@ - ################################################################################ - """ - --ident = '$Id: Client.py,v 1.20 2004/04/10 04:22:52 irjudson Exp $' -+from __future__ import nested_scopes - from version import __version__ - --from __future__ import nested_scopes -+ident = '$Id: Client.py,v 1.20 2004/04/10 04:22:52 irjudson Exp $' - - #import xml.sax - import urllib -diff -Naur SOAPpy-0.11.6.orig/SOAPpy/Server.py SOAPpy-0.11.6/SOAPpy/Server.py ---- SOAPpy-0.11.6.orig/SOAPpy/Server.py 2004-04-28 23:47:10.000000000 +0200 -+++ SOAPpy-0.11.6/SOAPpy/Server.py 2009-03-13 13:15:11.000000000 +0100 -@@ -40,10 +40,10 @@ - ################################################################################ - """ - --ident = '$Id: Server.py,v 1.20 2004/04/28 21:47:10 warnes Exp $' -+from __future__ import nested_scopes - from version import __version__ - --from __future__ import nested_scopes -+ident = '$Id: Server.py,v 1.20 2004/04/28 21:47:10 warnes Exp $' - - #import xml.sax - import re -diff -Naur SOAPpy-0.11.6.orig/SOAPpy/Types.py SOAPpy-0.11.6/SOAPpy/Types.py ---- SOAPpy-0.11.6.orig/SOAPpy/Types.py 2004-09-11 05:03:33.000000000 +0200 -+++ SOAPpy-0.11.6/SOAPpy/Types.py 2009-03-13 13:15:11.000000000 +0100 -@@ -33,10 +33,10 @@ - ################################################################################ - """ - --ident = '$Id: Types.py,v 1.17 2004/09/11 03:03:33 warnes Exp $' -+from __future__ import nested_scopes - from version import __version__ - --from __future__ import nested_scopes -+ident = '$Id: Types.py,v 1.17 2004/09/11 03:03:33 warnes Exp $' - - import UserList - import base64 diff --git a/libraries/SOAPpy/slack-desc b/libraries/SOAPpy/slack-desc deleted file mode 100644 index db03288ff9..0000000000 --- a/libraries/SOAPpy/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------------------------------------------------------| -SOAPpy: SOAPpy (SOAP library for Python) -SOAPpy: -SOAPpy: The goal of the SOAPpy team is to provide a full-featured SOAP library -SOAPpy: for Python that is very simple to use and that fully supports dynamic -SOAPpy: interaction between clients and servers. -SOAPpy: -SOAPpy: -SOAPpy: -SOAPpy: -SOAPpy: -SOAPpy: diff --git a/libraries/cddb-py/README b/libraries/cddb-py/README deleted file mode 100644 index 7bccd8839f..0000000000 --- a/libraries/cddb-py/README +++ /dev/null @@ -1,5 +0,0 @@ -This is actually a set of three modules to access the CDDB and FreeDB -online databases of audio CD track titles and information. It includes a C -extension module to fetch track lengths under Linux, FreeBSD, OpenBSD, Mac -OS X, Solaris, and Win32, which is easily ported to other operating systems. - diff --git a/libraries/cddb-py/cddb-py.SlackBuild b/libraries/cddb-py/cddb-py.SlackBuild deleted file mode 100644 index 8d3ce53a9a..0000000000 --- a/libraries/cddb-py/cddb-py.SlackBuild +++ /dev/null @@ -1,73 +0,0 @@ -#!/bin/sh - -# Slackware build script for cddb-py - -# Written by Mihai Militaru <mihai.militaru@gmx.com> -# March 2009 - -PRGNAM=cddb-py -ORIGNAM=CDDB -VERSION=${VERSION:-1.4} -BUILD=${BUILD:-1} -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} - -DOCS="COPYING CHANGES README" - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $PRGNAM-$VERSION -tar xvf $CWD/$ORIGNAM.tar.gz -cd $ORIGNAM-$VERSION -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 install --root $PKG - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION - -cp -a \ - $DOCS \ - $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/libraries/cddb-py/cddb-py.info b/libraries/cddb-py/cddb-py.info deleted file mode 100644 index 57425a15b5..0000000000 --- a/libraries/cddb-py/cddb-py.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="cddb-py" -VERSION="1.4" -HOMEPAGE="http://cddb-py.sourceforge.net/" -DOWNLOAD="http://cddb-py.sourceforge.net/CDDB.tar.gz" -MD5SUM="254698082bafe3030d07d88fb7e13fe2" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Mihai Militaru" -EMAIL="mihai.militaru@gmx.com" -APPROVED="dsomero" diff --git a/libraries/cddb-py/slack-desc b/libraries/cddb-py/slack-desc deleted file mode 100644 index 2215028cbc..0000000000 --- a/libraries/cddb-py/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------------------------------------------------| -cddb-py: cddb-py (CDDB and FreeDB audio CD track info access in Python) -cddb-py: -cddb-py: This is actually a set of three modules to access the CDDB and -cddb-py: FreeDB online databases of audio CD track titles and information. -cddb-py: It includes a C extension module to fetch track lengths under -cddb-py: Linux, FreeBSD, OpenBSD, Mac OS X, Solaris, and Win32, which is -cddb-py: easily ported to other operating systems. -cddb-py: -cddb-py: Homepage: http://cddb-py.sourceforge.net/ -cddb-py: -cddb-py: diff --git a/libraries/dnspython/README b/libraries/dnspython/README deleted file mode 100644 index 5190a47b0b..0000000000 --- a/libraries/dnspython/README +++ /dev/null @@ -1,10 +0,0 @@ -dnspython is a DNS toolkit for Python. It supports almost all record -types. It can be used for queries, zone transfers, and dynamic updates. -It supports TSIG authenticated messages and EDNS0. - -dnspython provides both high and low level access to DNS. The high -level classes perform queries for data of a given name, type, and -class, and return an answer set. The low level classes allow direct -manipulation of DNS zones, messages, names, and records. - -Optionally, dnspython can use pycrypto for DNSSEC functionality. diff --git a/libraries/dnspython/dnspython.SlackBuild b/libraries/dnspython/dnspython.SlackBuild deleted file mode 100644 index af553b0c96..0000000000 --- a/libraries/dnspython/dnspython.SlackBuild +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh -# Slackware build script for dnspython -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=dnspython -VERSION=1.9.2 -BUILD=${BUILD:-1} -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 -e - -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 . \ - \( -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - ChangeLog LICENSE README TODO \ - $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/libraries/dnspython/dnspython.info b/libraries/dnspython/dnspython.info deleted file mode 100644 index 139c9dc67a..0000000000 --- a/libraries/dnspython/dnspython.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="dnspython" -VERSION="1.9.2" -HOMEPAGE="http://www.dnspython.org/" -DOWNLOAD="http://www.dnspython.org/kits/1.9.2/dnspython-1.9.2.tar.gz" -MD5SUM="26426043e619d34b47c7c30dc0a02f1c" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja[at]gmail[dot]com" -APPROVED="dsomero,Niels Horn" diff --git a/libraries/dnspython/slack-desc b/libraries/dnspython/slack-desc deleted file mode 100644 index 095d3cd5fe..0000000000 --- a/libraries/dnspython/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------------------------------------------------------| -dnspython: dnspython (Python API for DNS) -dnspython: -dnspython: dnspython is a DNS toolkit for Python. It supports almost all record -dnspython: types. It can be used for queries, zone transfers, and dynamic -dnspython: updates. It supports TSIG authenticated messages and EDNS0. -dnspython: -dnspython: Homepage: http://www.dnspython.org/ -dnspython: -dnspython: -dnspython: -dnspython: diff --git a/libraries/gnome-python-desktop/README b/libraries/gnome-python-desktop/README deleted file mode 100644 index e2bbce27e8..0000000000 --- a/libraries/gnome-python-desktop/README +++ /dev/null @@ -1,6 +0,0 @@ -gnome-python-desktop contains a few python modules for GNOME. - -This requires gnome-python. - -gnome-keyring is required if you want to execute rhythmbox without errors. -evince, gnome-media, metacity, and totem-pl-parser are optional dependencies. diff --git a/libraries/gnome-python-desktop/gnome-python-desktop.SlackBuild b/libraries/gnome-python-desktop/gnome-python-desktop.SlackBuild deleted file mode 100644 index 6660cae18c..0000000000 --- a/libraries/gnome-python-desktop/gnome-python-desktop.SlackBuild +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/sh - -# Slackware build script for gnome-python-desktop - -# Written by crocket (crockabiscuit@yahoo.com) - -PRGNAM=gnome-python-desktop -VERSION=${VERSION:-2.26.0} -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -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 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --infodir=/usr/info \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --enable-allbindings \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - AUTHORS COPYING* ChangeLog INSTALL* MAINTAINERS NEWS README \ - $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/libraries/gnome-python-desktop/gnome-python-desktop.info b/libraries/gnome-python-desktop/gnome-python-desktop.info deleted file mode 100644 index e5be9a2a8f..0000000000 --- a/libraries/gnome-python-desktop/gnome-python-desktop.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="gnome-python-desktop" -VERSION="2.26.0" -HOMEPAGE="ftp://ftp.gnome.org/pub/GNOME/sources/gnome-python-desktop" -DOWNLOAD="ftp://ftp.gnome.org/pub/GNOME/sources/gnome-python-desktop/2.26/gnome-python-desktop-2.26.0.tar.bz2" -MD5SUM="6760c51aabddc56c1326d3ba4f03c0f0" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="crocket" -EMAIL="crockabiscuit@yahoo.com" -APPROVED="rworkman" diff --git a/libraries/gnome-python-desktop/slack-desc b/libraries/gnome-python-desktop/slack-desc deleted file mode 100644 index 9fa444844e..0000000000 --- a/libraries/gnome-python-desktop/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------------------------------------------------------| -gnome-python-desktop: gnome-python-desktop (python modules for GNOME) -gnome-python-desktop: -gnome-python-desktop: gnome-pythong-desktop contains a few python modules for GNOME. -gnome-python-desktop: -gnome-python-desktop: -gnome-python-desktop: -gnome-python-desktop: -gnome-python-desktop: -gnome-python-desktop: -gnome-python-desktop: -gnome-python-desktop: diff --git a/libraries/gnome-python/README b/libraries/gnome-python/README deleted file mode 100644 index 59105d374f..0000000000 --- a/libraries/gnome-python/README +++ /dev/null @@ -1,5 +0,0 @@ -gnome-python is a set of bindings for the Gnome platform -libraries. It builds on top of the PyGTK bindings for GTK and -the PyORBit bindings for ORBit2. - -Requires libgnome, available at SlackBuilds.org diff --git a/libraries/gnome-python/gnome-python.SlackBuild b/libraries/gnome-python/gnome-python.SlackBuild deleted file mode 100644 index 2b2aaf0036..0000000000 --- a/libraries/gnome-python/gnome-python.SlackBuild +++ /dev/null @@ -1,91 +0,0 @@ -#!/bin/sh -# -# Slackware build script for gnome-python -# -# Copyright 2009 Erik W. Hanson, Minneapolis, 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. - -PRGNAM=gnome-python -VERSION=2.22.3 -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 -eu - -rm -rf $PKG -mkdir -p $TMP $PKG -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 -cd $PRGNAM-$VERSION -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 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./waf configure --prefix=/usr --libdir=/usr/lib${LIBDIRSUFFIX} -./waf build -./waf install --destdir=$PKG - -find $PKG | xargs file | egrep "ELF.*shared object" | cut -f 1 -d : \ - | xargs strip --strip-unneeded 2> /dev/null - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION $PKG/install -cp -a AUTHORS COPYING ChangeLog ChangeLog.pre-2-0 INSTALL INSTALL.WAF \ - NEWS README $PKG/usr/doc/$PRGNAM-$VERSION - -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -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/libraries/gnome-python/gnome-python.info b/libraries/gnome-python/gnome-python.info deleted file mode 100644 index f128dc30e9..0000000000 --- a/libraries/gnome-python/gnome-python.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="gnome-python" -VERSION="2.22.3" -HOMEPAGE="http://www.gnome.org/" -DOWNLOAD="http://ftp.gnome.org/pub/GNOME/sources/gnome-python/2.22/gnome-python-2.22.3.tar.bz2" -MD5SUM="ab12d94954a57de39b25eb7903d8429c" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Erik Hanson" -EMAIL="erik@slackbuilds.org" -APPROVED="dsomero" diff --git a/libraries/gnome-python/slack-desc b/libraries/gnome-python/slack-desc deleted file mode 100644 index 3ec230dd2e..0000000000 --- a/libraries/gnome-python/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------------------------------------------------------| -gnome-python: gnome-python (Python bindings for GNOME) -gnome-python: -gnome-python: gnome-python is a set of bindings for the Gnome platform -gnome-python: libraries. It builds on top of the PyGTK bindings for GTK and -gnome-python: the PyORBit bindings for ORBit2. -gnome-python: -gnome-python: -gnome-python: -gnome-python: -gnome-python: -gnome-python: diff --git a/libraries/gst-python/README b/libraries/gst-python/README deleted file mode 100644 index 6b1fda0f2e..0000000000 --- a/libraries/gst-python/README +++ /dev/null @@ -1,2 +0,0 @@ -GStreamer python bindings. You can find API docs for the Python -bindings at http://pygstdocs.berlios.de/. diff --git a/libraries/gst-python/gst-python.SlackBuild b/libraries/gst-python/gst-python.SlackBuild deleted file mode 100644 index 0bef59981b..0000000000 --- a/libraries/gst-python/gst-python.SlackBuild +++ /dev/null @@ -1,85 +0,0 @@ -#!/bin/sh - -# Slackware build script for gst-python -# Author: Thiago Coutinho <thiagocoutinho1 at gmail.com> - -# Modified by the slackbuilds.org project. - -# Maintained by Binh Nguyen <binhnguyen@fastmail.fm> -# from version 0.10.19 - -PRGNAM=gst-python -VERSION=${VERSION:-0.10.19} -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 -cd $PRGNAM-$VERSION -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 {} \; - -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 -make install DESTDIR=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - AUTHORS COPYING ChangeLog INSTALL NEWS README RELEASE TODO \ - $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/libraries/gst-python/gst-python.info b/libraries/gst-python/gst-python.info deleted file mode 100644 index 408feccbe4..0000000000 --- a/libraries/gst-python/gst-python.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="gst-python" -VERSION="0.10.19" -HOMEPAGE="http://gstreamer.freedesktop.org/modules/gst-python.html" -DOWNLOAD="http://gstreamer.freedesktop.org/src/gst-python/gst-python-0.10.19.tar.bz2" -MD5SUM="ddcef7d00bd88b0591cd6d910c36ec4b" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Binh Nguyen" -EMAIL="binhnguyen@fastmail.fm" -APPROVED="Niels Horn" diff --git a/libraries/gst-python/slack-desc b/libraries/gst-python/slack-desc deleted file mode 100644 index 119d7fe0ff..0000000000 --- a/libraries/gst-python/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------------------------------------------------------| -gst-python: gst-python (GStreamer python bindings) -gst-python: -gst-python: Python bindings for the GStreamer multimedia framework. -gst-python: -gst-python: Homepage: http://gstreamer.freedesktop.org/modules/gst-python.html -gst-python: -gst-python: -gst-python: -gst-python: -gst-python: -gst-python: diff --git a/libraries/json-py/README b/libraries/json-py/README deleted file mode 100644 index 4c62e5fa90..0000000000 --- a/libraries/json-py/README +++ /dev/null @@ -1,6 +0,0 @@ -json-py is a simple, pure-python implementation of a JSON (http://json.org) -reader and writer. JSON is used to exchange data across systems written -in various languages. It is particularly suited to dynamic languages -like Python, Javascript, etc. JSON = Javascript Object Notation implies -it is suitable for AJAX applications that exchange data from servers to -Javascript applications running on web browser clients. diff --git a/libraries/json-py/json-py.SlackBuild b/libraries/json-py/json-py.SlackBuild deleted file mode 100644 index 85e22f62ff..0000000000 --- a/libraries/json-py/json-py.SlackBuild +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/sh - -# Slackware build script for json-py. -# -# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it> -# 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=json-py -VERSION=3.4 -BUILD=${BUILD:-1} -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} - -SRCVERSION=3_4 -SRCNAM=json -DOCS="license.txt readme.txt" - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -mkdir $PRGNAM-$VERSION -cd $PRGNAM-$VERSION -unzip $CWD/$PRGNAM-$SRCVERSION.zip - -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 {} \; -# fix txts permissions -chmod 644 *.txt - -# Add setup.py -cat $CWD/setup.py > setup.py - -python setup.py install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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/libraries/json-py/json-py.info b/libraries/json-py/json-py.info deleted file mode 100644 index 9e5619a76d..0000000000 --- a/libraries/json-py/json-py.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="json-py" -VERSION="3.4" -HOMEPAGE="http://sourceforge.net/projects/json-py/" -DOWNLOAD="http://downloads.sourceforge.net/sourceforge/json-py/json-py-3_4.zip" -MD5SUM="921ebfede886a10ff32d6d4b4e216f8f" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="dsomero" diff --git a/libraries/json-py/setup.py b/libraries/json-py/setup.py deleted file mode 100644 index 02f58089ac..0000000000 --- a/libraries/json-py/setup.py +++ /dev/null @@ -1,13 +0,0 @@ -from distutils.core import setup - -import json - -setup(name="json", - version="3.4", - description="JSON (http://json.org) reader and writer.", - author="Patrick D. Logan", - author_email="patrickdlogan@stardecisions.com", - url = "http://sourceforge.net/projects/json-py/", - py_modules=['json'] - ) - diff --git a/libraries/json-py/slack-desc b/libraries/json-py/slack-desc deleted file mode 100644 index d8a71b6f31..0000000000 --- a/libraries/json-py/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------------------------------------------------------| -json-py: json-py (pure-python implementation of a JSON) -json-py: -json-py: json-py is a simple, pure-python implementation of a JSON -json-py: (http://json.org) reader and writer. -json-py: -json-py: -json-py: -json-py: -json-py: -json-py: -json-py: diff --git a/libraries/mmpython/README b/libraries/mmpython/README deleted file mode 100644 index c74667cdb9..0000000000 --- a/libraries/mmpython/README +++ /dev/null @@ -1,6 +0,0 @@ -MMPython is a Media Meta Data retrieval framework. It retrieves metadata -from mp3, ogg, avi, jpg, tiff and other file formats. Among others it -thereby parses ID3v2, ID3v1, EXIF, IPTC and Vorbis data into an object -oriented struture. - -Requires lsdvd and PyXML.
\ No newline at end of file diff --git a/libraries/mmpython/mmpython-0.4.10-stdint.patch b/libraries/mmpython/mmpython-0.4.10-stdint.patch deleted file mode 100644 index 6752216921..0000000000 --- a/libraries/mmpython/mmpython-0.4.10-stdint.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- disc/ifomodule.c~ 2004-07-17 10:46:52.000000000 +0200 -+++ disc/ifomodule.c 2006-04-11 07:59:38.030697690 +0200 -@@ -9,6 +9,7 @@ - #include <unistd.h> - #include <assert.h> - #include <inttypes.h> -+#include <stdint.h> - - #include <dvdread/dvd_reader.h> - #include <dvdread/ifo_types.h> ---- disc/cdrommodule.c~ 2003-06-23 21:26:16.000000000 +0200 -+++ disc/cdrommodule.c 2006-04-11 07:58:02.463087444 +0200 -@@ -36,6 +36,7 @@ - #include "Python.h" - #include <fcntl.h> - #include <sys/ioctl.h> -+#include <stdint.h> - - #ifdef __linux__ - #include <linux/cdrom.h> diff --git a/libraries/mmpython/mmpython.SlackBuild b/libraries/mmpython/mmpython.SlackBuild deleted file mode 100644 index f9d15f208b..0000000000 --- a/libraries/mmpython/mmpython.SlackBuild +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh - -# Slackware build script for mmpython - -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=mmpython -VERSION=${VERSION:-0.4.10} -BUILD=${BUILD:-1} -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 -e - -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 . \ - \( -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 {} \; - -# Add stdint.h headers -patch -p0 < $CWD/mmpython-0.4.10-stdint.patch - -python setup.py build - -python setup.py install --prefix="$PKG/usr" - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING CREDITS PKG-INFO README $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/libraries/mmpython/mmpython.info b/libraries/mmpython/mmpython.info deleted file mode 100644 index 7c861d7469..0000000000 --- a/libraries/mmpython/mmpython.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="mmpython" -VERSION="0.4.10" -HOMEPAGE="http://mmpython.sourceforge.net/" -DOWNLOAD="http://downloads.sourceforge.net/mmpython/mmpython-0.4.10.tar.gz" -MD5SUM="3a1f2e754308ac8cacd266c1350dcf34" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja[at]gmail[dot]com" -APPROVED="michiel" diff --git a/libraries/mmpython/slack-desc b/libraries/mmpython/slack-desc deleted file mode 100644 index e66ffd4062..0000000000 --- a/libraries/mmpython/slack-desc +++ /dev/null @@ -1,21 +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------------------------------------------------------| -mmpython: mmpython (Media Metadata for Python) -mmpython: -mmpython: MMPython is a Media Meta Data retrieval framework. It retrieves -mmpython: metadata from mp3, ogg, avi, jpg, tiff and other file formats. Among -mmpython: others it thereby parses ID3v2, ID3v1, EXIF, IPTC and Vorbis data -mmpython: into an object oriented struture. -mmpython: -mmpython: Homepage: http://mmpython.sourceforge.net/ -mmpython: -mmpython: -mmpython: - - diff --git a/libraries/p4python/README b/libraries/p4python/README deleted file mode 100644 index 0e9f74ecd5..0000000000 --- a/libraries/p4python/README +++ /dev/null @@ -1,6 +0,0 @@ -Perforce is the fast SCM system at www.perforce.com. -This package provides a simple interface from Python wrapping the -Perforce C++ API to gain performance and ease of coding. -Similar to interfaces available for Ruby and Perl. - -This requires p4api. diff --git a/libraries/p4python/p4python.SlackBuild b/libraries/p4python/p4python.SlackBuild deleted file mode 100644 index dfb79e9f4d..0000000000 --- a/libraries/p4python/p4python.SlackBuild +++ /dev/null @@ -1,71 +0,0 @@ -#!/bin/sh - -# SlackBuild for p4python, Andy Bailey <bailey@akamai.com - -LOCALVER=`tar tf p4python.tgz 2> /dev/null | head -1 | cut -d- -f 2 | cut -d/ -f1` -PRGNAM=p4python -VERSION=${VERSION:-$LOCALVER} -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 P4Python-$VERSION -tar xvf $CWD/$PRGNAM.tgz -cd P4Python-$VERSION -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 {} \; - -echo "[p4python_config]" > setup.cfg -echo "p4_api=/usr/lib$LIBDIRSUFFIX/p4" >> setup.cfg -python setup.py install --root=$PKG - -# Strip binaries and libraries. -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - LICENSE.txt README.txt RELNOTES.txt \ - $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/libraries/p4python/p4python.info b/libraries/p4python/p4python.info deleted file mode 100644 index 08d3de716f..0000000000 --- a/libraries/p4python/p4python.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="p4python" -VERSION="2010.1" -HOMEPAGE="http://www.perforce.com/perforce/loadsupp.html" -DOWNLOAD="ftp://ftp.perforce.com/perforce/r10.1/bin.tools/p4python.tgz" -MD5SUM="d9af612a506da5f6bc655410a67446e1" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Andy Bailey" -EMAIL="bailey@akamai.com" -APPROVED="dsomero" diff --git a/libraries/p4python/slack-desc b/libraries/p4python/slack-desc deleted file mode 100644 index bd81786838..0000000000 --- a/libraries/p4python/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------------------------------------------------------| -p4python: p4python (python bindings for Perforce api) -p4python: -p4python: Perforce is the fast SCM system at www.perforce.com. -p4python: This package provides a simple interface from Python wrapping the -p4python: Perforce C++ API to gain performance and ease of coding. -p4python: Similar to interfaces available for Ruby and Perl. -p4python: -p4python: -p4python: -p4python: -p4python:
\ No newline at end of file diff --git a/libraries/pyOpenSSL/README b/libraries/pyOpenSSL/README deleted file mode 100644 index 70e1a0d826..0000000000 --- a/libraries/pyOpenSSL/README +++ /dev/null @@ -1,4 +0,0 @@ -Python wrapper around a small subset of the OpenSSL library. Includes: -X509 Certificates, SSL Context objects, SSL Connection objects using -Python sockets as transport layer. The Connection object wraps all the -socket methods and can therefore be used in. diff --git a/libraries/pyOpenSSL/pyOpenSSL.SlackBuild b/libraries/pyOpenSSL/pyOpenSSL.SlackBuild deleted file mode 100644 index a74c278316..0000000000 --- a/libraries/pyOpenSSL/pyOpenSSL.SlackBuild +++ /dev/null @@ -1,74 +0,0 @@ -#!/bin/sh - -# Slackware build script for pyOpenSSL. -# -# Copyright 2010-2011 Marco Bonetti <sid77@slackware.it> -# 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=pyOpenSSL -VERSION=0.10 -BUILD=${BUILD:-1} -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} - -DOCS="COPYING PKG-INFO README" - -set -e - -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 . \ - \( -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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/libraries/pyOpenSSL/pyOpenSSL.info b/libraries/pyOpenSSL/pyOpenSSL.info deleted file mode 100644 index 1d1be8f057..0000000000 --- a/libraries/pyOpenSSL/pyOpenSSL.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pyOpenSSL" -VERSION="0.10" -HOMEPAGE="http://pypi.python.org/pypi/pyOpenSSL" -DOWNLOAD="http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-0.10.tar.gz" -MD5SUM="34db8056ec53ce80c7f5fc58bee9f093" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="Erik Hanson" diff --git a/libraries/pyOpenSSL/slack-desc b/libraries/pyOpenSSL/slack-desc deleted file mode 100644 index 02f8c98f76..0000000000 --- a/libraries/pyOpenSSL/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------------------------------------------------------| -pyOpenSSL: pyOpenSSL (Python wrapper for OpenSSL) -pyOpenSSL: -pyOpenSSL: This module is a rather thin wrapper around (a subset of) the OpenSSL -pyOpenSSL: library. With thin wrapper I mean that a lot of the object methods do -pyOpenSSL: nothing more than calling a corresponding function in the OpenSSL -pyOpenSSL: library -pyOpenSSL: -pyOpenSSL: -pyOpenSSL: -pyOpenSSL: -pyOpenSSL: diff --git a/libraries/pyPdf/README b/libraries/pyPdf/README deleted file mode 100644 index 50e3c592a6..0000000000 --- a/libraries/pyPdf/README +++ /dev/null @@ -1,12 +0,0 @@ -A Pure-Python library built as a PDF toolkit. It is capable of: - * extracting document information (title, author, ...), - * splitting documents page by page, - * merging documents page by page, - * cropping pages, - * merging multiple pages into a single page, - * encrypting and decrypting PDF files. - -By being Pure-Python, it should run on any Python platform without any -dependencies on external libraries. It can also work entirely on StringIO -objects rather than file streams, allowing for PDF manipulation in memory. It is -therefore a useful tool for websites that manage or manipulate PDFs. diff --git a/libraries/pyPdf/pyPdf.SlackBuild b/libraries/pyPdf/pyPdf.SlackBuild deleted file mode 100644 index 124da91835..0000000000 --- a/libraries/pyPdf/pyPdf.SlackBuild +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/sh - -# Slackware build script for pyPdf. -# -# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it> -# 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=pyPdf -VERSION=1.12 -BUILD=${BUILD:-1} -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} - -DOCS="PKG-INFO README" - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION - -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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/libraries/pyPdf/pyPdf.info b/libraries/pyPdf/pyPdf.info deleted file mode 100644 index 0ab66057ff..0000000000 --- a/libraries/pyPdf/pyPdf.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pyPdf" -VERSION="1.12" -HOMEPAGE="http://pybrary.net/pyPdf/" -DOWNLOAD="http://pybrary.net/pyPdf/pyPdf-1.12.tar.gz" -MD5SUM="7be5f7f4659f64fd194e9eb9a38ad425" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="dsomero" diff --git a/libraries/pyPdf/slack-desc b/libraries/pyPdf/slack-desc deleted file mode 100644 index 5417a1afc3..0000000000 --- a/libraries/pyPdf/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------------------------------------------------------| -pyPdf: pyPdf (Python PDF toolkit) -pyPdf: -pyPdf: A Pure-Python library built as a PDF toolkit. -pyPdf: -pyPdf: -pyPdf: -pyPdf: -pyPdf: -pyPdf: -pyPdf: -pyPdf: diff --git a/libraries/pybluez/README b/libraries/pybluez/README deleted file mode 100644 index 90f6019f56..0000000000 --- a/libraries/pybluez/README +++ /dev/null @@ -1 +0,0 @@ -Python extension module allowing access to system Bluetooth resources. diff --git a/libraries/pybluez/pybluez.SlackBuild b/libraries/pybluez/pybluez.SlackBuild deleted file mode 100644 index 2436a80e0b..0000000000 --- a/libraries/pybluez/pybluez.SlackBuild +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/sh - -# Slackware build script for pybluez - -# Copyright 2009-2010 Heinz Wiesinger, Amsterdam, The Netherlands -# 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. - -SRCNAM=PyBluez -PRGNAM=$(echo $SRCNAM | tr [:upper:] [:lower:]) -VERSION=0.18 -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" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $SRCNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz -cd $SRCNAM-$VERSION -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a CHANGELOG COPYING PKG-INFO README $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/libraries/pybluez/pybluez.info b/libraries/pybluez/pybluez.info deleted file mode 100644 index 1be3b2f71c..0000000000 --- a/libraries/pybluez/pybluez.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pybluez" -VERSION="0.18" -HOMEPAGE="http://code.google.com/p/pybluez/" -DOWNLOAD="http://pybluez.googlecode.com/files/PyBluez-0.18.tar.gz" -MD5SUM="be8c8ce615c3189fda1aaf3d568314b2" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Heinz Wiesinger" -EMAIL="pprkut@liwjatan.at" -APPROVED="Erik Hanson" diff --git a/libraries/pybluez/slack-desc b/libraries/pybluez/slack-desc deleted file mode 100644 index a903b0681e..0000000000 --- a/libraries/pybluez/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-----------------------------------------------------| -pybluez: pybluez (Python BlueZ bindings) -pybluez: -pybluez: Python extension module allowing access to system Bluetooth -pybluez: resources. -pybluez: -pybluez: Homepage: http://code.google.com/p/pybluez/ -pybluez: -pybluez: -pybluez: -pybluez: -pybluez: diff --git a/libraries/pychart/README b/libraries/pychart/README deleted file mode 100644 index 0c45ddadcc..0000000000 --- a/libraries/pychart/README +++ /dev/null @@ -1,4 +0,0 @@ -PyChart is a Python library for creating high quality Encapsulated -Postscript, PDF, PNG, or SVG charts. It currently supports line -plots, bar plots, range-fill plots, and pie charts. Because it is -based on Python, you can make full use of Python's scripting power. diff --git a/libraries/pychart/pychart.SlackBuild b/libraries/pychart/pychart.SlackBuild deleted file mode 100644 index 03ad6f93c7..0000000000 --- a/libraries/pychart/pychart.SlackBuild +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/sh - -# Slackware build script for pychart - -# Copyright 2009 Heinz Wiesinger <pprkut@liwjatan.at> -# 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=pychart -VERSION=1.39 -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRCNAM=PyChart - -# 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 -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $SRCNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz -cd $SRCNAM-$VERSION -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING PKG-INFO README \ - $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/libraries/pychart/pychart.info b/libraries/pychart/pychart.info deleted file mode 100644 index 5db652308d..0000000000 --- a/libraries/pychart/pychart.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pychart" -VERSION="1.39" -HOMEPAGE="http://home.gna.org/pychart/" -DOWNLOAD="http://download.gna.org/pychart/PyChart-1.39.tar.gz" -MD5SUM="f1f509a1c4623056c8e780bb7c9a05c5" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="pprkut" -EMAIL="pprkut@liwjatan.at" -APPROVED="rworkman" diff --git a/libraries/pychart/slack-desc b/libraries/pychart/slack-desc deleted file mode 100644 index b91f775fea..0000000000 --- a/libraries/pychart/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----------------------------------------------------| -pychart: pychart (Python charts library) -pychart: -pychart: PyChart is a Python library for creating high quality Encapsulated -pychart: Postscript, PDF, PNG, or SVG charts. It currently supports line -pychart: plots, bar plots, range-fill plots, and pie charts. Because it is -pychart: based on Python, you can make full use of Python's scripting power. -pychart: -pychart: Homepage: http://home.gna.org/pychart/ -pychart: -pychart: -pychart: diff --git a/libraries/pychm/README b/libraries/pychm/README deleted file mode 100644 index 6a4e251f36..0000000000 --- a/libraries/pychm/README +++ /dev/null @@ -1,4 +0,0 @@ -PyCHM is a package that provides bindings for Jed Wing's CHMLIB -library. The chm package contains four modules, namely chm.chm, -chm.chmlib, chm.extra and chm._chmlib. chm.chmlib is a low level -wrapper module around the API provided by the C library chmlib. diff --git a/libraries/pychm/pychm.SlackBuild b/libraries/pychm/pychm.SlackBuild deleted file mode 100644 index f001b098af..0000000000 --- a/libraries/pychm/pychm.SlackBuild +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/sh - -# Slackware build script for PyCHM - -# Written by João Felipe Santos (joao.eel@gmail.com) - -# Copyright (c) 2009 João Felipe Santos -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -PRGNAM=pychm -VERSION=${VERSION:-0.8.4} -BUILD=${BUILD:-1} -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 -e - -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 . \ - \( -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 -python setup.py install --root $PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING ChangeLog NEWS PKG-INFO README $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/libraries/pychm/pychm.info b/libraries/pychm/pychm.info deleted file mode 100644 index e7d0b8a167..0000000000 --- a/libraries/pychm/pychm.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pychm" -VERSION="0.8.4" -HOMEPAGE="http://gnochm.sourceforge.net/pychm.html" -DOWNLOAD="http://downloads.sourceforge.net/gnochm/pychm-0.8.4.tar.gz" -MD5SUM="ff7f0baf94290c44263a1618e7e6a116" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="João Felipe Santos" -EMAIL="joao.eel[at]gmail.com" -APPROVED="rworkman" diff --git a/libraries/pychm/slack-desc b/libraries/pychm/slack-desc deleted file mode 100644 index ce8923d0e3..0000000000 --- a/libraries/pychm/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------------------------------------------------------| -pychm: PyCHM (Python bindings for CHMLIB) -pychm: PyCHM is a package that provides bindings for Jed Wing's CHMLIB -pychm: library. The chm package contains four modules, namely chm.chm, -pychm: chm.chmlib, chm.extra and chm._chmlib. chm.chmlib is a low level -pychm: wrapper module around the API provided by the C library chmlib. -pychm: -pychm: Homepage: http://gnochm.sourceforge.net/pychm.html -pychm: -pychm: -pychm: -pychm: diff --git a/libraries/pycontrol/README b/libraries/pycontrol/README deleted file mode 100644 index 699197a4de..0000000000 --- a/libraries/pycontrol/README +++ /dev/null @@ -1,7 +0,0 @@ -pyControl is a Python-based library that integrates with F5's BIG-IP -iControl management API. - -The source at the F5 site requires a free registraton and login. -For simplicity, I have the source available at my personal site. - -This requires python-suds. diff --git a/libraries/pycontrol/pycontrol.SlackBuild b/libraries/pycontrol/pycontrol.SlackBuild deleted file mode 100644 index 5c5e2dc19c..0000000000 --- a/libraries/pycontrol/pycontrol.SlackBuild +++ /dev/null @@ -1,58 +0,0 @@ -#!/bin/sh - -# Slackware build script for pycontrol -# Written by Joey Trungale <joey@trungale.net> - -PRGNAM=pycontrol -VERSION=${VERSION:-2.0} -BUILD=${BUILD:-1} -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 -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf trunk -tar xvf $CWD/$PRGNAM.tar.gz - -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 {} \; - -# Remove SVN directories -rm -rf trunk/pycontrol/.svn -rm -rf trunk/pycontrol/samples/.svn -rm -rf trunk/.svn - -cd trunk -python setup.py install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -ar $PRGNAM/README $PRGNAM/samples $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/libraries/pycontrol/pycontrol.info b/libraries/pycontrol/pycontrol.info deleted file mode 100644 index c2c1a83522..0000000000 --- a/libraries/pycontrol/pycontrol.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pycontrol" -VERSION="2.0" -HOMEPAGE="http://devcentral.f5.com/Community/GroupDetails/tabid/1082223/asg/4/Default.aspx" -DOWNLOAD="http://trungale.net/pycontrol.tar.gz" -MD5SUM="e9e11c5fdf05bf877522b89b28e94ed1" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Joey Trungale" -EMAIL="joey@trungale.net" -APPROVED="rworkman" diff --git a/libraries/pycontrol/slack-desc b/libraries/pycontrol/slack-desc deleted file mode 100644 index 006208353d..0000000000 --- a/libraries/pycontrol/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----------------------------------------------------| -pycontrol: pycontrol (Python library for the F5 iControl API) -pycontrol: -pycontrol: pyControl is a Python-based library that integrates with F5's BIG-IP -pycontrol: iControl management API. -pycontrol: -pycontrol: -pycontrol: -pycontrol: -pycontrol: -pycontrol: -pycontrol: diff --git a/libraries/pycryptopp/README b/libraries/pycryptopp/README deleted file mode 100644 index ad21ac3363..0000000000 --- a/libraries/pycryptopp/README +++ /dev/null @@ -1,4 +0,0 @@ -pycryptopp is a set of Python wrappers for a few of the best crypto algorithms -from the Crypto++ library. - -This package requires pysetuptools, darcsver and cryptopp. diff --git a/libraries/pycryptopp/pycryptopp.SlackBuild b/libraries/pycryptopp/pycryptopp.SlackBuild deleted file mode 100644 index e931bdacd5..0000000000 --- a/libraries/pycryptopp/pycryptopp.SlackBuild +++ /dev/null @@ -1,85 +0,0 @@ -#!/bin/sh - -# Slackware build script for pycryptopp. - -# Copyright 2010-2011 Marco Bonetti <sid77@slackware.it> -# 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=pycryptopp -VERSION=${VERSION:-0.5.17} -BUILD=${BUILD:-1} -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} - -DOCS="COPYING.GPL COPYING.TGPPL.html README.txt" - -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" -fi - -set -e - -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 . \ - \( -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 || exit 1 -python setup.py install --root=$PKG || exit 1 - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/slack-desc > $PKG/usr/doc/$PRGNAM-$VERSION/slack-desc -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/libraries/pycryptopp/pycryptopp.info b/libraries/pycryptopp/pycryptopp.info deleted file mode 100644 index 794998b73c..0000000000 --- a/libraries/pycryptopp/pycryptopp.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pycryptopp" -VERSION="0.5.17" -HOMEPAGE="http://allmydata.org/trac/pycryptopp" -DOWNLOAD="http://pypi.python.org/packages/source/p/pycryptopp/pycryptopp-0.5.17.tar.gz" -MD5SUM="b3d19e7203531f8bd241ae58062f99e4" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="dsomero" diff --git a/libraries/pycryptopp/slack-desc b/libraries/pycryptopp/slack-desc deleted file mode 100644 index d78bf85167..0000000000 --- a/libraries/pycryptopp/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----------------------------------------------------| -pycryptopp: pycryptopp (Python wrappers for Crypto++) -pycryptopp: -pycryptopp: pycryptopp is a set of Python wrappers for a few of the best crypto -pycryptopp: algorithms from the Crypto++ library. -pycryptopp: -pycryptopp: Homepage: http://allmydata.org/trac/pycryptopp -pycryptopp: -pycryptopp: -pycryptopp: -pycryptopp: -pycryptopp: diff --git a/libraries/pycurl/README b/libraries/pycurl/README deleted file mode 100644 index f8b0bfb2c3..0000000000 --- a/libraries/pycurl/README +++ /dev/null @@ -1,19 +0,0 @@ -PycURL is a Python interface to libcurl. PycURL can be used to fetch -objects identified by a URL from a Python program, similar to the urllib -Python module. PycURL is mature, very fast, and supports a lot of features. -Overview - - * libcurl is a free and easy-to-use client-side URL transfer library, - supporting FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE and - LDAP. libcurl supports HTTPS certificates, HTTP POST, HTTP PUT, - FTP uploading, kerberos, HTTP form based upload, proxies, cookies, - user+password authentication, file transfer resume, http proxy tunneling - and more! - - * libcurl is highly portable, it builds and works identically on - numerous platforms, including Solaris, NetBSD, FreeBSD, OpenBSD, - Darwin, HPUX, IRIX, AIX, Tru64, Linux, Windows, Amiga, OS/2, BeOs, - Mac OS X, Ultrix, QNX, OpenVMS, RISC OS, Novell NetWare, DOS and more... - - * libcurl is free, thread-safe, IPv6 compatible, feature rich, well - supported and fast. diff --git a/libraries/pycurl/pycurl.SlackBuild b/libraries/pycurl/pycurl.SlackBuild deleted file mode 100644 index 5a2f5f981d..0000000000 --- a/libraries/pycurl/pycurl.SlackBuild +++ /dev/null @@ -1,72 +0,0 @@ -#!/bin/sh - -# Slackware build script for pycurl - -# Written by Grissiom chaos.proton@gmail.com - -PRGNAM=pycurl -VERSION=${VERSION:-7.19.0} -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 # 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 . \ - \( -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p ${PKG}/usr/doc/$PRGNAM-$VERSION -mv ${PKG}/usr/share/doc/${PRGNAM}/* -t ${PKG}/usr/doc/$PRGNAM-$VERSION -rm -rf ${PKG}/usr/share - -cp PKG-INFO $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/libraries/pycurl/pycurl.info b/libraries/pycurl/pycurl.info deleted file mode 100644 index 2e51c2b32e..0000000000 --- a/libraries/pycurl/pycurl.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pycurl" -VERSION="7.19.0" -HOMEPAGE="http://pycurl.sourceforge.net/" -DOWNLOAD="http://pycurl.sourceforge.net/download/pycurl-7.19.0.tar.gz" -MD5SUM="919d58fe37e69fe87ce4534d8b6a1c7b" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="grissiom" -EMAIL="chaos.proton@gmail.com" -APPROVED="dsomero" diff --git a/libraries/pycurl/slack-desc b/libraries/pycurl/slack-desc deleted file mode 100644 index 6d91ef6e87..0000000000 --- a/libraries/pycurl/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------------------------------------------------------| -pycurl: PycURL (Python interface to libcurl). -pycurl: -pycurl: libcurl is a free and easy-to-use client-side URL transfer library, -pycurl: supporting FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE and -pycurl: LDAP. libcurl supports HTTPS certificates, HTTP POST, HTTP PUT, -pycurl: FTP uploading, kerberos, HTTP form based upload, proxies, cookies, -pycurl: user+password authentication, file transfer resume, http proxy -pycurl: tunneling and more! -pycurl: -pycurl: Homepage:http://pycurl.sourceforge.net/ -pycurl: diff --git a/libraries/pydot/README b/libraries/pydot/README deleted file mode 100644 index 1db185812e..0000000000 --- a/libraries/pydot/README +++ /dev/null @@ -1,5 +0,0 @@ -pydot allows to easily create both directed and non directed graphs -from Python. Currently all attributes implemented in the Dot -language are supported (up to Graphviz 2.16). - -This requires pyparsing and graphviz. diff --git a/libraries/pydot/pydot.SlackBuild b/libraries/pydot/pydot.SlackBuild deleted file mode 100644 index a52d53da03..0000000000 --- a/libraries/pydot/pydot.SlackBuild +++ /dev/null @@ -1,77 +0,0 @@ -#!/bin/sh - -# Slackware build script for pydot - -# Copyright 2009 Heinz Wiesinger <pprkut@liwjatan.at> -# 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=pydot -VERSION=1.0.2 -BUILD=${BUILD:-1} -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 -e - -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 . \ - \( -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 install --root=$PKG - -# remove wrongly installed docs -rm -f $PKG/usr/{ChangeLog,LICENSE,README} - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a ChangeLog LICENSE PKG-INFO README \ - $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/libraries/pydot/pydot.info b/libraries/pydot/pydot.info deleted file mode 100644 index 715844a8b5..0000000000 --- a/libraries/pydot/pydot.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pydot" -VERSION="1.0.2" -HOMEPAGE="http://code.google.com/p/pydot/" -DOWNLOAD="http://pydot.googlecode.com/files/pydot-1.0.2.tar.gz" -MD5SUM="e5cbbe7ef3d221c05c96e4bd4bcf95f9" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="pprkut" -EMAIL="pprkut@liwjatan.at" -APPROVED="rworkman" diff --git a/libraries/pydot/slack-desc b/libraries/pydot/slack-desc deleted file mode 100644 index 4ad4f38af1..0000000000 --- a/libraries/pydot/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----------------------------------------------------| -pydot: pydot (Python interface to Graphviz's Dot language) -pydot: -pydot: pydot allows to easily create both directed and non directed graphs -pydot: from Python. Currently all attributes implemented in the Dot -pydot: language are supported (up to Graphviz 2.16). -pydot: -pydot: Homepage: http://code.google.com/p/pydot/ -pydot: -pydot: -pydot: -pydot: diff --git a/libraries/pyffmpeg/README b/libraries/pyffmpeg/README deleted file mode 100644 index 3585ec5eee..0000000000 --- a/libraries/pyffmpeg/README +++ /dev/null @@ -1,6 +0,0 @@ -PyFFmpeg is a wrapper around FFmpeg's libavcodec, libavformat and -libavutil libraries whose main purpose is to provide access to -individual frames of video files of various formats (including MPEG -and DIVX encoded videos), and, also in latest beta,to audio data. - -This requires Numpy, Cython, and ffmpeg. diff --git a/libraries/pyffmpeg/pyffmpeg.SlackBuild b/libraries/pyffmpeg/pyffmpeg.SlackBuild deleted file mode 100644 index 934c08feac..0000000000 --- a/libraries/pyffmpeg/pyffmpeg.SlackBuild +++ /dev/null @@ -1,72 +0,0 @@ -#!/bin/sh -# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST -# Copyright 2009-2010 Eric Hameleers, Eindhoven, Netherlands - -# Slackware build script for pyffmpeg -# Written by Lionel Young <redtricycle@gmail.com> -# Based on http://slackbuilds.org/template.SlackBuild - - -PRGNAM=pyffmpeg -VERSION=${VERSION:-2.0} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) export ARCH=i486 ;; - arm*) export ARCH=arm ;; - *) export ARCH=$( uname -m ) ;; - esac -fi - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -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 -python setup.py install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING $PKG/usr/doc/$PRGNAM-$VERSION -cp -aR examples $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/libraries/pyffmpeg/pyffmpeg.info b/libraries/pyffmpeg/pyffmpeg.info deleted file mode 100644 index 2188c06d08..0000000000 --- a/libraries/pyffmpeg/pyffmpeg.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pyffmpeg" -VERSION="2.0" -HOMEPAGE="http://code.google.com/p/pyffmpeg/" -DOWNLOAD="http://pyffmpeg.googlecode.com/files/pyffmpeg-2.0.tar.gz" -MD5SUM="fee69342f9c7909bc0586c3e3cd4a6c2" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Lionel Young" -EMAIL="redtricycle@gmail.com" -APPROVED="dsomero" diff --git a/libraries/pyffmpeg/slack-desc b/libraries/pyffmpeg/slack-desc deleted file mode 100644 index 172682956c..0000000000 --- a/libraries/pyffmpeg/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------------------------------------------------------| -pyffmpeg: pyffmpeg (FFmpeg wrapper) -pyffmpeg: -pyffmpeg: PyFFmpeg is a wrapper around FFmpeg's libavcodec, libavformat -pyffmpeg: and libavutil libraries whose main purpose is to provide access to -pyffmpeg: individual frames of video files of various formats (including MPEG -pyffmpeg: and DIVX encoded videos), and, also in latest beta,to audio data. -pyffmpeg: Requires: Cython, Numpy, and ffmpeg -pyffmpeg: -pyffmpeg: Homepage: http://code.google.com/p/pyffmpeg/ -pyffmpeg: -pyffmpeg: diff --git a/libraries/pyfltk/README b/libraries/pyfltk/README deleted file mode 100644 index 511b55f79d..0000000000 --- a/libraries/pyfltk/README +++ /dev/null @@ -1,4 +0,0 @@ -PyFLTK provides a convenient wrapper for the FLTK GUI library for use in -Python programs. - -This requires fltk. diff --git a/libraries/pyfltk/pyfltk.SlackBuild b/libraries/pyfltk/pyfltk.SlackBuild deleted file mode 100644 index b6223fec46..0000000000 --- a/libraries/pyfltk/pyfltk.SlackBuild +++ /dev/null @@ -1,89 +0,0 @@ -#!/bin/sh - -# Slackware build script for pyfltk - -# Copyright 2006-2010 LukenShiro <lukenshiro@ngi.it> -# 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=pyfltk -VERSION=${VERSION:-1.1.5} -BUILD=${BUILD:-1} -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} - -SRC_PRGNAM=pyFltk -DOCFILES="CHANGES PKG-INFO INSTALL TODO COPYING README" - -# html files are now located in fltk/ subdirectory -HTMLDOCS="fltk/docs/*" - -set -e - -# SLKCFLAGS are not necessary, it builds using fltk-config flags - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $SRC_PRGNAM-$VERSION -tar -xvf $CWD/$SRC_PRGNAM-$VERSION.tar.gz -cd $SRC_PRGNAM-$VERSION -chown -R root:root . -chmod -R u+w,go+r-w,a-s . - -# Copy documentation files -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCFILES $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -# Move html files and python test examples in order to preserve and install them -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/docs -mv $HTMLDOCS $PKG/usr/doc/$PRGNAM-$VERSION/docs/ - -# build from swig interface files -cd python -python ./MakeSwig.py - -cd $TMP/$SRC_PRGNAM-$VERSION -python setup.py build -# --install-data= flag is ignored now -python setup.py install --prefix=/usr/ --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -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/libraries/pyfltk/pyfltk.info b/libraries/pyfltk/pyfltk.info deleted file mode 100644 index 534bd4b338..0000000000 --- a/libraries/pyfltk/pyfltk.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pyfltk" -VERSION="1.1.5" -HOMEPAGE="http://pyfltk.sourceforge.net/" -DOWNLOAD="http://downloads.sourceforge.net/pyfltk/pyFltk-1.1.5.tar.gz" -MD5SUM="3250ea44a184d28178aad845de11c6bb" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="LukenShiro" -EMAIL="lukenshiro@ngi.it" -APPROVED="dsomero" diff --git a/libraries/pyfltk/slack-desc b/libraries/pyfltk/slack-desc deleted file mode 100644 index 5cea104fb7..0000000000 --- a/libraries/pyfltk/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--------------------------------------------------------| -pyfltk: pyfltk (FLTK Bindings for Python) -pyfltk: -pyfltk: PyFLTK provides a convenient wrapper for the FLTK GUI library for use -pyfltk: in Python programs. It is now written by Andreas Held. -pyfltk: -pyfltk: -pyfltk: -pyfltk: -pyfltk: -pyfltk: Homepage: http://pyfltk.sourceforge.net/ -pyfltk: diff --git a/libraries/pygame/README b/libraries/pygame/README deleted file mode 100644 index 8e7cbc387a..0000000000 --- a/libraries/pygame/README +++ /dev/null @@ -1,5 +0,0 @@ -Pygame is a set of Python modules designed for writing games. - -It is written on top of the excellent SDL library. This allows you to create -fully featured games and multimedia programs in the python language. Pygame -is highly portable and runs on nearly every platform and operating system. diff --git a/libraries/pygame/pygame.SlackBuild b/libraries/pygame/pygame.SlackBuild deleted file mode 100644 index e0242ddbe6..0000000000 --- a/libraries/pygame/pygame.SlackBuild +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh - -## Written by hollywoodb (hollywoodb@fastmail.fm) -# Modified by the SlackBuilds.org project - -NAME=pygame -VERSION=1.7.1 -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-$NAME -OUTPUT=${OUTPUT:-/tmp} - -SRCVERSION=${VERSION}release - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP || exit 1 -rm -rf $NAME-$SRCVERSION -tar xvf $CWD/$NAME-$SRCVERSION.tar.?z* || exit 1 -cd $NAME-$SRCVERSION || exit 1 -chown -R root:root . -chmod -R u+w,go+r-w,a-s . - -# Python programs use the CFLAGS specified used by python itself -python -u config.py || exit 1 -python setup.py install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$NAME-$VERSION -cp -a PKG-INFO WHATSNEW install.html readme.txt docs/* examples \ - $PKG/usr/doc/$NAME-$VERSION -cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n -p $OUTPUT/$NAME-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/libraries/pygame/pygame.info b/libraries/pygame/pygame.info deleted file mode 100644 index 9568a4b20b..0000000000 --- a/libraries/pygame/pygame.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pygame" -VERSION="1.7.1" -HOMEPAGE="http://www.pygame.org/" -DOWNLOAD="http://www.pygame.org/ftp/pygame-1.7.1release.tar.gz" -MD5SUM="05d86d1af446f79411359400951053b7" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="hollywoodb" -EMAIL="hollywoodb@fastmail.fm" -APPROVED="rworkman" diff --git a/libraries/pygame/slack-desc b/libraries/pygame/slack-desc deleted file mode 100644 index 17d175b84a..0000000000 --- a/libraries/pygame/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-------------------------------------------------------| -pygame: pygame (a set of Python modules designed for writing games) -pygame: -pygame: pygame is written on top of the excellent SDL library. This allows you -pygame: to create fully featured games and multimedia programs in the python -pygame: language. Pygame is highly portable and runs on nearly every platform -pygame: and operating system. -pygame: -pygame: Pygame is free. Released under the LGPL licence, you can create open -pygame: source, free, freeware, shareware, and commercial games with it. -pygame: -pygame: diff --git a/libraries/pygoocanvas/README b/libraries/pygoocanvas/README deleted file mode 100644 index aa2e203640..0000000000 --- a/libraries/pygoocanvas/README +++ /dev/null @@ -1,6 +0,0 @@ -PyGoocanvas are the python bindings for GooCanvas which is a canvas widget for GTK+ that uses the cairo 2D library for drawing. - -Requirements: -python (included in slackware) -pygtk (included in slackware) -goocanvas (found on slackbuilds)
\ No newline at end of file diff --git a/libraries/pygoocanvas/pygoocanvas.SlackBuild b/libraries/pygoocanvas/pygoocanvas.SlackBuild deleted file mode 100644 index 7ce1ce0dc4..0000000000 --- a/libraries/pygoocanvas/pygoocanvas.SlackBuild +++ /dev/null @@ -1,107 +0,0 @@ -#!/bin/bash - -# Copyright 2009, Jonathan Larsen (agentc0re), SLC, UT -# Contact Info: agentc0re 'AT' learnix 'DOT' net -# 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. - -# Mar 3rd, 2010 -# Change to build "2", fixed the "strip" for bash 4 compatability -# there were no man pages to be built, removed that section -# - -PRGNAM=pygoocanvas -VERSION=0.14.1 -BUILD=${BUILD:-2} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1 -cd $PRGNAM-$VERSION -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 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var/lib \ - --mandir=/usr/man \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --build=$ARCH-slackware-linux \ - --disable-static \ - --enable-shared - -make -make install DESTDIR=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cd $TMP/$PRGNAM-$VERSION -cp -a \ - AUTHORS COPYING ChangeLog INSTALL NEWS \ - $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/libraries/pygoocanvas/pygoocanvas.info b/libraries/pygoocanvas/pygoocanvas.info deleted file mode 100644 index b4c067e877..0000000000 --- a/libraries/pygoocanvas/pygoocanvas.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pygoocanvas" -VERSION="0.14.1" -HOMEPAGE="http://live.gnome.org/PyGoocanvas" -DOWNLOAD="http://ftp.gnome.org/pub/GNOME/sources/pygoocanvas/0.14/pygoocanvas-0.14.1.tar.bz2" -MD5SUM="e0e7b694af2f81a78b0838555d150252" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Jonathan Larsen" -EMAIL="agentc0re@learnix.net" -APPROVED="dsomero"
\ No newline at end of file diff --git a/libraries/pygoocanvas/slack-desc b/libraries/pygoocanvas/slack-desc deleted file mode 100644 index 70a93d9eef..0000000000 --- a/libraries/pygoocanvas/slack-desc +++ /dev/null @@ -1,12 +0,0 @@ - |-----handy-ruler------------------------------------------------------| -pygoocanvas: pygoocanvas (Python Bindings for GooCanvas) -pygoocanvas: -pygoocanvas: GooCanvas is a new canvas widget for GTK+ that uses the cairo 2D -pygoocanvas: library for drawing. It has a model/view split, and uses interfaces -pygoocanvas: for canvas items and views, so you can easily turn any application -pygoocanvas: object into canvas items. -pygoocanvas: -pygoocanvas: This package contains Python bindings for GooCanvas. -pygoocanvas: -pygoocanvas: -pygoocanvas: diff --git a/libraries/pygoogle/README b/libraries/pygoogle/README deleted file mode 100644 index 5934af36fa..0000000000 --- a/libraries/pygoogle/README +++ /dev/null @@ -1,5 +0,0 @@ -This module is a wrapper for the Google Web APIs. It allows you to do Google -searches, retrieve pages from the Google cache, and ask Google for spelling -suggestions. - -It requires SOAPpy, which is avalaible at SlackBuilds.org. diff --git a/libraries/pygoogle/pygoogle.SlackBuild b/libraries/pygoogle/pygoogle.SlackBuild deleted file mode 100644 index e10b8ce5f7..0000000000 --- a/libraries/pygoogle/pygoogle.SlackBuild +++ /dev/null @@ -1,81 +0,0 @@ -#!/bin/sh - -# Slackware build script for PyGoogle. -# -# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it> -# 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=pygoogle -VERSION=0.6 -BUILD=${BUILD:-1} -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} - -DOCS="readme.txt doc" - -set -e - -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 . \ - \( -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 {} \; -# fix README permissions (755) -chmod 644 readme.txt - -# Fix version in setup.py -patch -p1 < $CWD/version.patch - -python setup.py install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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/libraries/pygoogle/pygoogle.info b/libraries/pygoogle/pygoogle.info deleted file mode 100644 index cce55a6c38..0000000000 --- a/libraries/pygoogle/pygoogle.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pygoogle" -VERSION="0.6" -HOMEPAGE="http://pygoogle.sourceforge.net/" -DOWNLOAD="http://downloads.sourceforge.net/pygoogle/pygoogle-0.6.tar.gz" -MD5SUM="334e2d9e5a765ffa9769e2c4cdfcd110" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="dsomero" diff --git a/libraries/pygoogle/slack-desc b/libraries/pygoogle/slack-desc deleted file mode 100644 index 235c3da80a..0000000000 --- a/libraries/pygoogle/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------------------------------------------------------| -pygoogle: pygoogle (Python Interface to the Google API) -pygoogle: -pygoogle: A Python Interface to the Google API. -pygoogle: -pygoogle: -pygoogle: -pygoogle: -pygoogle: -pygoogle: -pygoogle: -pygoogle: diff --git a/libraries/pygoogle/version.patch b/libraries/pygoogle/version.patch deleted file mode 100644 index add7c6b47d..0000000000 --- a/libraries/pygoogle/version.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Naur pygoogle-0.6.orig/setup.py pygoogle-0.6/setup.py ---- pygoogle-0.6.orig/setup.py 2004-02-26 00:54:23.000000000 +0100 -+++ pygoogle-0.6/setup.py 2009-03-13 14:37:38.000000000 +0100 -@@ -3,7 +3,7 @@ - import os
-
- setup (name = "pygoogle",
-- version = "0.5",
-+ version = "0.6",
- description= "Simple interface to Google",
- long_description = "This module lets you search the Google search engine programmatically. See http://www.google.com/apis/ for details." ,
- author = 'Brian Landers (origianlly by Mark Pilgrim and contributors)',
diff --git a/libraries/pygtksourceview/README b/libraries/pygtksourceview/README deleted file mode 100644 index 441647d52c..0000000000 --- a/libraries/pygtksourceview/README +++ /dev/null @@ -1,3 +0,0 @@ -Pygtksourceview provides python bindings for gtksourceview. - -This requires gtksourceview. diff --git a/libraries/pygtksourceview/pygtksourceview.SlackBuild b/libraries/pygtksourceview/pygtksourceview.SlackBuild deleted file mode 100644 index b0f6c43dd6..0000000000 --- a/libraries/pygtksourceview/pygtksourceview.SlackBuild +++ /dev/null @@ -1,80 +0,0 @@ -#!/bin/sh - -# Slackware build script for pygtksourceview - -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=pygtksourceview -VERSION=2.10.1 -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 -cd $PRGNAM-$VERSION -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 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - AUTHORS ChangeLog COPYING INSTALL NEWS README \ - $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/libraries/pygtksourceview/pygtksourceview.info b/libraries/pygtksourceview/pygtksourceview.info deleted file mode 100644 index 9a80f963ff..0000000000 --- a/libraries/pygtksourceview/pygtksourceview.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pygtksourceview" -VERSION="2.10.1" -HOMEPAGE="http://www.pygtk.org/" -DOWNLOAD="http://ftp.gnome.org/pub/gnome/sources/pygtksourceview/2.10/pygtksourceview-2.10.1.tar.bz2" -MD5SUM="2654354d61422fb79d8375fc3a3b5393" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja[at]gmail[dot]com" -APPROVED="rworkman" diff --git a/libraries/pygtksourceview/slack-desc b/libraries/pygtksourceview/slack-desc deleted file mode 100644 index 41afd4c1c5..0000000000 --- a/libraries/pygtksourceview/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------------------------------------------------------| -pygtksourceview: pygtksourceview (Python bindings for gtksourceview) -pygtksourceview: -pygtksourceview: Pygtksourceview provides python bindings for gtksourceview. -pygtksourceview: -pygtksourceview: Homepage: http://www.pygtk.org/ -pygtksourceview: -pygtksourceview: -pygtksourceview: -pygtksourceview: -pygtksourceview: -pygtksourceview: diff --git a/libraries/pyicu/README b/libraries/pyicu/README deleted file mode 100644 index 66dd14c9d3..0000000000 --- a/libraries/pyicu/README +++ /dev/null @@ -1,4 +0,0 @@ -PyICU is a Python extension wrapping IBM's International -Components for Unicode C++ library (ICU). - -This requires icu4c. diff --git a/libraries/pyicu/pyicu.SlackBuild b/libraries/pyicu/pyicu.SlackBuild deleted file mode 100644 index c1227c114c..0000000000 --- a/libraries/pyicu/pyicu.SlackBuild +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/sh - -# Slackware build script for pyicu - -# Copyright 2009-2010 Heinz Wiesinger, Amsterdam, The Netherlands -# 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=pyicu -VERSION=0.9 -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRCNAM=PyICU - -# 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 -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $SRCNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz -cd $SRCNAM-$VERSION -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a CHANGES CREDITS LICENSE PKG-INFO README \ - $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/libraries/pyicu/pyicu.info b/libraries/pyicu/pyicu.info deleted file mode 100644 index edceb54c21..0000000000 --- a/libraries/pyicu/pyicu.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pyicu" -VERSION="0.9" -HOMEPAGE="http://pyicu.osafoundation.org/" -DOWNLOAD="http://pypi.python.org/packages/source/P/PyICU/PyICU-0.9.tar.gz" -MD5SUM="944e697f5f9554a68f92619c0a3f69e2" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Heinz Wiesinger" -EMAIL="pprkut@liwjatan.at" -APPROVED="dsomero" diff --git a/libraries/pyicu/slack-desc b/libraries/pyicu/slack-desc deleted file mode 100644 index bd6f4aea04..0000000000 --- a/libraries/pyicu/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----------------------------------------------------| -pyicu: pyicu (python wrapper for icu4c) -pyicu: -pyicu: PyICU is a Python extension wrapping IBM's International -pyicu: Components for Unicode C++ library (ICU). -pyicu: -pyicu: Homepage: http://pyicu.osafoundation.org/ -pyicu: -pyicu: -pyicu: -pyicu: -pyicu: diff --git a/libraries/pylirc/README b/libraries/pylirc/README deleted file mode 100644 index 4892569e50..0000000000 --- a/libraries/pylirc/README +++ /dev/null @@ -1,4 +0,0 @@ -pyLirc is a module for Python that interacts with lirc to give Python -programs the ability to receive commands from remote controls. - -This requires lirc. diff --git a/libraries/pylirc/pylirc.SlackBuild b/libraries/pylirc/pylirc.SlackBuild deleted file mode 100644 index d5e98c03d7..0000000000 --- a/libraries/pylirc/pylirc.SlackBuild +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/sh - -# Slackware build script for pylirc - -# Written by Pablo Santamaria (pablosantamaria@gmail.com) - -PRGNAM=pylirc -VERSION=${VERSION:-0.0.5} -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $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/libraries/pylirc/pylirc.info b/libraries/pylirc/pylirc.info deleted file mode 100644 index c4a80504b6..0000000000 --- a/libraries/pylirc/pylirc.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pylirc" -VERSION="0.0.5" -HOMEPAGE="http://pylirc.mccabe.nu/" -DOWNLOAD="http://downloads.sourceforge.net/sourceforge/pylirc/pylirc-0.0.5.tar.gz" -MD5SUM="4e3b6b50485610e273fededdb25b47ad" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Pablo Santamaria" -EMAIL="pablosantamaria@gmail.com" -APPROVED="dsomero" diff --git a/libraries/pylirc/slack-desc b/libraries/pylirc/slack-desc deleted file mode 100644 index b49da3fd03..0000000000 --- a/libraries/pylirc/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------------------------------------------------------| -pylirc: pylirc (Python lirc module) -pylirc: -pylirc: pyLirc is a module for Python that interacts with lirc to give Python -pylirc: programs the ability to receive commands from remote controls. -pylirc: -pylirc: -pylirc: -pylirc: -pylirc: -pylirc: -pylirc: diff --git a/libraries/pynzb/README b/libraries/pynzb/README deleted file mode 100644 index 5dde33e53d..0000000000 --- a/libraries/pynzb/README +++ /dev/null @@ -1,12 +0,0 @@ -NZB is an XML-based file format for retrieving posts from NNTP (Usenet) -servers. Since NZB is XML-based, it's relatively easy to build one-off -parsers to parse NZB files. This project is an attempt to consolidate -those many one-off NZB parsers into one simple interface. - -This package includes three implementations: one based on expat, another -based on ElementTree, and a final implementation based on lxml. The order -in which they were listed is in order of compatibility. The expat version -should work on all versions of Python > 2.0, the lxml one will work on -all versions > 2.5, and lxml will only work if you have lxml installed. - -This requires pysetuptools. diff --git a/libraries/pynzb/pynzb.SlackBuild b/libraries/pynzb/pynzb.SlackBuild deleted file mode 100644 index 32038b4441..0000000000 --- a/libraries/pynzb/pynzb.SlackBuild +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/sh -# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST -# Copyright 2009-2010 Eric Hameleers, Eindhoven, Netherlands -# Slackware build script for pynzb -# Written by Lionel Young <redtricycle@gmail.com> -# Based on http://slackbuilds.org/template.SlackBuild - -PRGNAM=pynzb -VERSION=${VERSION:-0.1.0} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) export ARCH=i486 ;; - arm*) export ARCH=arm ;; - *) export ARCH=$( uname -m ) ;; - esac -fi - -set -e - -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 . \ - \( -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 || exit 1 -python setup.py install --root=$PKG || exit 1 - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - PKG-INFO \ - $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/libraries/pynzb/pynzb.info b/libraries/pynzb/pynzb.info deleted file mode 100644 index 62ea9c83bc..0000000000 --- a/libraries/pynzb/pynzb.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pynzb" -VERSION="0.1.0" -HOMEPAGE="https://github.com/ericflo/pynzb" -DOWNLOAD="http://pypi.python.org/packages/source/p/pynzb/pynzb-0.1.0.tar.gz" -MD5SUM="63c74a36348ac28aa99732dcb8be8c59" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Lionel Young" -EMAIL="redtricycle@gmail.com" -APPROVED="Niels Horn" diff --git a/libraries/pynzb/slack-desc b/libraries/pynzb/slack-desc deleted file mode 100644 index 78873d62df..0000000000 --- a/libraries/pynzb/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------------------------------------------------------| -pynzb: pynzb (NZB file format parser) -pynzb: -pynzb: NZB is an XML-based file format for retrieving posts from NNTP -pynzb: (Usenet) servers. Since NZB is XML-based, it's relatively -pynzb: easy to build one-off parsers to parse NZB files. This project is -pynzb: an attempt to consolidate those many one-off NZB parsers into one -pynzb: simple interface. -pynzb: -pynzb: Home: https://github.com/ericflo/pynzb -pynzb: -pynzb: diff --git a/libraries/pyorbit/README b/libraries/pyorbit/README deleted file mode 100644 index 2a469ef506..0000000000 --- a/libraries/pyorbit/README +++ /dev/null @@ -1,7 +0,0 @@ -PyORBit is a binding for the ORBit2 CORBA ORB. It aims to be -compatible with the Python language mapping standard, implementing -both the client side and server side bindings. PyORBit is capable of -calling methods of in-process ORBit servers implemented in C, and -being called by C code. - -Requires ORBit2, available at SlackBuilds.org diff --git a/libraries/pyorbit/pyorbit.SlackBuild b/libraries/pyorbit/pyorbit.SlackBuild deleted file mode 100644 index 5add939819..0000000000 --- a/libraries/pyorbit/pyorbit.SlackBuild +++ /dev/null @@ -1,95 +0,0 @@ -#!/bin/sh -# -# Slackware build script for pyorbit -# -# Copyright 2009 Erik W. Hanson, Minneapolis, 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. - -PRGNAM=pyorbit -VERSION=2.24.0 -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 -eu - -rm -rf $PKG -mkdir -p $TMP $PKG -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 -cd $PRGNAM-$VERSION -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 {} \; - -CFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var/lib \ - --mandir=/usr/man \ - --disable-static \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --build=$ARCH-slackware-linux - -make -make install-strip DESTDIR=$PKG - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION $PKG/install -cp -a AUTHORS COPYING ChangeLog ChangeLog.pre-2-0 INSTALL MAINTAINERS NEWS \ - README TODO $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -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/libraries/pyorbit/pyorbit.info b/libraries/pyorbit/pyorbit.info deleted file mode 100644 index 583cfc9c5b..0000000000 --- a/libraries/pyorbit/pyorbit.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pyorbit" -VERSION="2.24.0" -HOMEPAGE="http://www.pygtk.org/" -DOWNLOAD="http://ftp.gnome.org/pub/GNOME/sources/pyorbit/2.24/pyorbit-2.24.0.tar.bz2" -MD5SUM="574593815e75ee6e98062c75d6d1581f" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Erik Hanson" -EMAIL="erik@slackbuilds.org" -APPROVED="dsomero" diff --git a/libraries/pyorbit/slack-desc b/libraries/pyorbit/slack-desc deleted file mode 100644 index 60dc909204..0000000000 --- a/libraries/pyorbit/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------------------------------------------------------| -pyorbit: PyORBit (Python bindings for the ORBit2 CORBA ORB) -pyorbit: -pyorbit: PyORBit is a binding for the ORBit2 CORBA ORB. It aims to be -pyorbit: compatible with the Python language mapping standard, implementing -pyorbit: both the client side and server side bindings. PyORBit is capable of -pyorbit: calling methods of in-process ORBit servers implemented in C, and -pyorbit: being called by C code. -pyorbit: -pyorbit: -pyorbit: -pyorbit: diff --git a/libraries/pypoppler/README b/libraries/pypoppler/README deleted file mode 100644 index 988b9d2f1f..0000000000 --- a/libraries/pypoppler/README +++ /dev/null @@ -1 +0,0 @@ -Python bindings for the Poppler PDF rendering library (glib). diff --git a/libraries/pypoppler/pypoppler.SlackBuild b/libraries/pypoppler/pypoppler.SlackBuild deleted file mode 100644 index 3daca31ae4..0000000000 --- a/libraries/pypoppler/pypoppler.SlackBuild +++ /dev/null @@ -1,73 +0,0 @@ -#!/bin/sh - -# Slackware build script for pypoppler - -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=pypoppler -VERSION=0.12.1 -BUILD=${BUILD:-1} -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} - -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" - LIBDIRSUFFIX="" -fi - -set -e - -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 . \ - \( -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 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - AUTHORS ChangeLog COPYING INSTALL NEWS \ - $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/libraries/pypoppler/pypoppler.info b/libraries/pypoppler/pypoppler.info deleted file mode 100644 index c38ebc8cf0..0000000000 --- a/libraries/pypoppler/pypoppler.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pypoppler" -VERSION="0.12.1" -HOMEPAGE="https://launchpad.net/poppler-python" -DOWNLOAD="http://launchpad.net/poppler-python/trunk/development/+download/pypoppler-0.12.1.tar.gz" -MD5SUM="1a89e5ed3042afc81bbd4d02e0cf640a" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja[at]gmail[dot]com" -APPROVED="rworkman" diff --git a/libraries/pypoppler/slack-desc b/libraries/pypoppler/slack-desc deleted file mode 100644 index e58e2e8907..0000000000 --- a/libraries/pypoppler/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------------------------------------------------------| -pypoppler: pypoppler (python bindings for poppler) -pypoppler: -pypoppler: Python bindings for the Poppler PDF rendering library (glib). -pypoppler: -pypoppler: Homepage: https://launchpad.net/poppler-python -pypoppler: -pypoppler: -pypoppler: -pypoppler: -pypoppler: -pypoppler: diff --git a/libraries/pyquery/README b/libraries/pyquery/README deleted file mode 100644 index cc2788340c..0000000000 --- a/libraries/pyquery/README +++ /dev/null @@ -1,12 +0,0 @@ -pyquery (a jquery-like library for python) - -pyquery allows you to make jquery queries on xml documents. The API is -as much as possible the similar to jquery. pyquery uses lxml for fast -xml and html manipulation. - -It can be used for many purposes, one idea that I might try in the -future is to use it for templating with pure http templates that you -modify using pyquery. I can also be used for web scrapping or for -theming applications. - -Requires lxml. diff --git a/libraries/pyquery/pyquery.SlackBuild b/libraries/pyquery/pyquery.SlackBuild deleted file mode 100644 index 5284aaedcf..0000000000 --- a/libraries/pyquery/pyquery.SlackBuild +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh - -# Slackware build script for pyquery -# Written by Å ime Ramov <s@ramov.com> - -PRGNAM=pyquery -VERSION=${VERSION:-0.6.1} -BUILD=${BUILD:-1} -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 -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xzf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -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 -python setup.py install --root=$PKG - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a README.txt CHANGES.txt $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/libraries/pyquery/pyquery.info b/libraries/pyquery/pyquery.info deleted file mode 100644 index 366e28f508..0000000000 --- a/libraries/pyquery/pyquery.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pyquery" -VERSION="0.6.1" -HOMEPAGE="http://www.bitbucket.org/olauzanne/pyquery/" -DOWNLOAD="http://pypi.python.org/packages/source/p/pyquery/pyquery-0.6.1.tar.gz" -MD5SUM="2a677d7c52b1aa89f5aaa70427e36b70" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Å ime Ramov" -EMAIL="s@ramov.com" -APPROVED="Erik Hanson" diff --git a/libraries/pyquery/slack-desc b/libraries/pyquery/slack-desc deleted file mode 100644 index e5905e9902..0000000000 --- a/libraries/pyquery/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------------------------------------------------------| -pyquery: pyquery (a jquery-like library for python) -pyquery: -pyquery: pyquery allows you to make jquery queries on xml documents. The API -pyquery: is as much as possible the similar to jquery. pyquery uses lxml for -pyquery: fast xml and html manipulation. -pyquery: -pyquery: It can be used for many purposes, one idea that I might try in the -pyquery: future is to use it for templating with pure http templates that you -pyquery: modify using pyquery. I can also be used for web scrapping or for -pyquery: theming applications. -pyquery: diff --git a/libraries/pyside/README b/libraries/pyside/README deleted file mode 100644 index d1fdf8c450..0000000000 --- a/libraries/pyside/README +++ /dev/null @@ -1,9 +0,0 @@ -PySide is a LGPL licensed python binding that allow access of Qt libraries, -making them available just using the import command. - -The build process is comprised of two stages: in a first moment the bindings -source code are created from the Qt 4.6 headers by calling the Generator Runner -with appropriate parameters; the generated files are then compiled and linked -together to form the bindings libraries. - -This requires generatorrunner and shiboken. diff --git a/libraries/pyside/pyside.SlackBuild b/libraries/pyside/pyside.SlackBuild deleted file mode 100644 index 26d0e2c2c1..0000000000 --- a/libraries/pyside/pyside.SlackBuild +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/sh - -# Slackware build script for pyside - -# Written by Grissiom <chaos.proton@gmail.com> - -PRGNAM=pyside -VERSION=${VERSION:-qt4.6+0.4.1} -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 -cd $PRGNAM-$VERSION -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 {} \; - -mkdir -p build -cd build - cmake \ - -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DLIB_SUFFIX=${LIBDIRSUFFIX} \ - -DMAN_INSTALL_DIR=/usr/man \ - -DBUILD_TESTS:BOOL=OFF \ - -DENABLE_GCC_OPTIMIZATION:BOOL=ON \ - -DCMAKE_BUILD_TYPE=Release \ - .. - make - make install DESTDIR=$PKG -cd .. - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a ChangeLog COPYING \ - $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/libraries/pyside/pyside.info b/libraries/pyside/pyside.info deleted file mode 100644 index 2384ed2b01..0000000000 --- a/libraries/pyside/pyside.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pyside" -VERSION="qt4.6+0.4.1" -HOMEPAGE="http://www.pyside.org/" -DOWNLOAD="http://www.pyside.org/files/pyside-qt4.6+0.4.1.tar.bz2" -MD5SUM="dbc34efa904458f792df128df738d554" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Grissiom" -EMAIL="chaos.proton@gmail.com" -APPROVED="pprkut" diff --git a/libraries/pyside/slack-desc b/libraries/pyside/slack-desc deleted file mode 100644 index 9d3aa2eae9..0000000000 --- a/libraries/pyside/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------------------------------------------------------| -pyside: PySide (LGPL python bindings for Qt) -pyside: -pyside: PySide is a LGPL licensed python binding that allow access of Qt -pyside: libraries, making them available just using the import command. -pyside: -pyside: Homepage: http://www.pyside.org/ -pyside: -pyside: -pyside: -pyside: -pyside: diff --git a/libraries/pytables/README b/libraries/pytables/README deleted file mode 100644 index 22120c6a4a..0000000000 --- a/libraries/pytables/README +++ /dev/null @@ -1,19 +0,0 @@ -PyTables is a package for managing hierarchical datasets -and designed to efficiently and easily cope with extremely -large amounts of data. It optimizes memory and disk resources -so that data takes much less space than other solutions such -as relational or object oriented databases. - -PyTables has been designed to fulfill the next requirements: - 1. Allow to structure your data in a hierarchical way. - 2. Easy to use. It implements the NaturalNaming scheme for - allowing convenient access to the data. - 3. All the cells in datasets can be multidimensional entities. - 4. Most of the I/O operations speed should be only limited by - the underlying I/O subsystem. - 5. Enable the end user to save large datasets in a efficient - way, i.e. each single byte of data on disk has to be - represented by one byte plus a small fraction when loaded - in memory. - -This requires numpy, numexpr, hdf5 and Cython. diff --git a/libraries/pytables/pytables.SlackBuild b/libraries/pytables/pytables.SlackBuild deleted file mode 100644 index 27c070852d..0000000000 --- a/libraries/pytables/pytables.SlackBuild +++ /dev/null @@ -1,96 +0,0 @@ -#!/bin/sh - -# Slackware build script for pytables - -# Copyright 2007-2010 LukenShiro <lukenshiro@ngi.it> -# 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=pytables -VERSION=${VERSION:-2.2} -BUILD=${BUILD:-1} -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} - -SRC_PRGNAM=tables -DOCFILES="RELEASE_NOTES.txt LICENSES/ MIGRATING_TO_2.x.txt THANKS \ - ANNOUNCE.txt LICENSE.txt PKG-INFO README.txt doc/html doc/scripts \ - doc/text doc/usersguide.pdf" - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $SRC_PRGNAM-$VERSION -tar xvf $CWD/$SRC_PRGNAM-$VERSION.tar.gz -cd $SRC_PRGNAM-$VERSION -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 {} \; - -CFLAGS="$SLKCFLAGS" python setup.py build install --prefix=/usr --root=$PKG - -# Copy examples, contrib, and bench files -mkdir -p $PKG/usr/share/$PRGNAM/ -cp -a examples contrib bench $PKG/usr/share/$PRGNAM/ - -# Copy documentation files -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCFILES $PKG/usr/doc/$PRGNAM-$VERSION -cp $CWD/pytablesmanual-$VERSION.pdf $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -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/libraries/pytables/pytables.info b/libraries/pytables/pytables.info deleted file mode 100644 index 2b441328bd..0000000000 --- a/libraries/pytables/pytables.info +++ /dev/null @@ -1,13 +0,0 @@ -PRGNAM="pytables" -VERSION="2.2" -HOMEPAGE="http://www.pytables.org/moin" -DOWNLOAD="http://www.pytables.org/download/pytables-2.2/tables-2.2.tar.gz \ - http://www.pytables.org/download/pytables-2.2/pytablesmanual-2.2.pdf" -MD5SUM="b95ebb5e501296f30fd75254a689d57b \ - 61609ed51b1bfab0689dbbc3ca636cb3" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="LukenShiro" -EMAIL="lukenshiro@ngi.it" -APPROVED="Niels Horn" - diff --git a/libraries/pytables/slack-desc b/libraries/pytables/slack-desc deleted file mode 100644 index ecf9f8542a..0000000000 --- a/libraries/pytables/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----------------------------------------------------| -pytables: pytables (Hierarchical datasets in Python) -pytables: -pytables: PyTables is a package for managing hierarchical datasets -pytables: and designed to efficiently and easily cope with extremely -pytables: large amounts of data. It optimizes memory and disk resources -pytables: so that data takes much less space than other solutions such -pytables: as relational or object oriented databases. -pytables: -pytables: Homepage: http://www.pytables.org/moin -pytables: -pytables: diff --git a/libraries/python-bigfloat/README b/libraries/python-bigfloat/README deleted file mode 100644 index a66784f717..0000000000 --- a/libraries/python-bigfloat/README +++ /dev/null @@ -1,16 +0,0 @@ -The bigfloat module is a Python wrapper for the MPFR library for arbitrary -precision floating-point reliable arithmetic. - -The MPFR library is a well-known portable C library for arbitrary-precision -arithmetic on floating-point numbers. It provides precise control over -precisions and rounding modes and gives correctly-rounded reproducible -platform-independent results. - -The bigfloat module aims to provide a convenient and friendly Python -interface to the operations and functions provided by the MPFR library. The -main class, BigFloat, gives an immutable multiple-precision floating-point -type that can be freely mixed with Python integers and floats. The Context -class, when used in conjunction with Pythons with statement, gives a simple -way of controlling precisions and rounding modes. Additional module-level -functions provide various standard mathematical operations. There is full -support for IEEE 754 signed zeros, nans, infinities and subnormals. diff --git a/libraries/python-bigfloat/doinst.sh b/libraries/python-bigfloat/doinst.sh deleted file mode 100644 index c9ae7e166c..0000000000 --- a/libraries/python-bigfloat/doinst.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -python -m bigfloat.test.test_bigfloat diff --git a/libraries/python-bigfloat/python-bigfloat.SlackBuild b/libraries/python-bigfloat/python-bigfloat.SlackBuild deleted file mode 100644 index d509011a3e..0000000000 --- a/libraries/python-bigfloat/python-bigfloat.SlackBuild +++ /dev/null @@ -1,73 +0,0 @@ -#!/bin/sh - -# Slackware build script for python-bigfloat - -# Written by John Tyree <johntyree@gmail.com> - -PRGNAM=python-bigfloat -VERSION=${VERSION:-0.2.1} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRCNAM=$(echo $PRGNAM | cut -d- -f2) - -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $PRGNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz -mv $SRCNAM-$VERSION $PRGNAM-$VERSION -cd $PRGNAM-$VERSION -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 install --root=$PKG - -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 - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - README PKG-INFO CHANGELOG \ - $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 -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -p -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/libraries/python-bigfloat/python-bigfloat.info b/libraries/python-bigfloat/python-bigfloat.info deleted file mode 100644 index e7f5d53846..0000000000 --- a/libraries/python-bigfloat/python-bigfloat.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-bigfloat" -VERSION="0.2.1" -HOMEPAGE="http://bitbucket.org/dickinsm/bigfloat" -DOWNLOAD="http://pypi.python.org/packages/source/b/bigfloat/bigfloat-0.2.1.tar.gz" -MD5SUM="5260728c060ce511b6e23018b76fc2e0" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="John Tyree" -EMAIL="johntyree+removethis@gmail.com" -APPROVED="Niels Horn" diff --git a/libraries/python-bigfloat/slack-desc b/libraries/python-bigfloat/slack-desc deleted file mode 100644 index fa8a0ca230..0000000000 --- a/libraries/python-bigfloat/slack-desc +++ /dev/null @@ -1,20 +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------------------------------------------------------| -python-bigfloat: python-bigfloat (Arbitrary precision floating point arithmetic) -python-bigfloat: -python-bigfloat: The bigfloat module is a Python wrapper for the MPFR library for -python-bigfloat: arbitrary precision floating-point reliable arithmetic. -python-bigfloat: -python-bigfloat: The MPFR library is a well-known portable C library for -python-bigfloat: arbitrary-precision arithmetic on floating-point numbers. It provides -python-bigfloat: precise control over precisions and rounding modes and gives -python-bigfloat: correctly-rounded reproducible platform-independent results. -python-bigfloat: -python-bigfloat: - diff --git a/libraries/python-cluster/README b/libraries/python-cluster/README deleted file mode 100644 index a074818a16..0000000000 --- a/libraries/python-cluster/README +++ /dev/null @@ -1,3 +0,0 @@ -python-cluster is a package that allows grouping a list of arbitrary objects -into related groups (clusters). Simply give it a list of data and a function -to determine the similarity between two items and you're done. diff --git a/libraries/python-cluster/python-cluster.SlackBuild b/libraries/python-cluster/python-cluster.SlackBuild deleted file mode 100644 index fa065d91bc..0000000000 --- a/libraries/python-cluster/python-cluster.SlackBuild +++ /dev/null @@ -1,77 +0,0 @@ -#!/bin/sh - -# Slackware build script for python-cluster. -# -# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it> -# 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=python-cluster -SRCNAM=cluster -VERSION=1.1.1b3 -BUILD=${BUILD:-1} -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} - -DOCS="LICENSE PKG-INFO README" - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $SRCNAM-$VERSION -tar -xzvf $CWD/$SRCNAM-$VERSION.tar.gz -cd $SRCNAM-$VERSION - -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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/libraries/python-cluster/python-cluster.info b/libraries/python-cluster/python-cluster.info deleted file mode 100644 index c099497716..0000000000 --- a/libraries/python-cluster/python-cluster.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-cluster" -VERSION="1.1.1b3" -HOMEPAGE="http://python-cluster.sourceforge.net/" -DOWNLOAD="http://downloads.sourceforge.net/python-cluster/cluster-1.1.1b3.tar.gz" -MD5SUM="a549edf712328540b08d394c79af2506" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="dsomero" diff --git a/libraries/python-cluster/slack-desc b/libraries/python-cluster/slack-desc deleted file mode 100644 index b60632f013..0000000000 --- a/libraries/python-cluster/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------------------------------------------------------| -python-cluster: python-cluster (allows grouping a list of arbitrary objects) -python-cluster: -python-cluster: python-cluster is a package that allows grouping a list of arbitrary -python-cluster: objects into related groups (clusters). Simply give it a list of data -python-cluster: and a function to determine the similarity between two items and -python-cluster: you're done. -python-cluster: -python-cluster: -python-cluster: -python-cluster: -python-cluster: diff --git a/libraries/python-cmdln/README b/libraries/python-cmdln/README deleted file mode 100644 index af5dcdcb71..0000000000 --- a/libraries/python-cmdln/README +++ /dev/null @@ -1,3 +0,0 @@ -cmdln.py fixes some of the design flaws in cmd.py and takes advantage -of new Python stdlib modules (e.g. optparse) so that it is more useful -(and convenient) for implementing command-line scripts/shells. diff --git a/libraries/python-cmdln/python-cmdln.SlackBuild b/libraries/python-cmdln/python-cmdln.SlackBuild deleted file mode 100644 index bcd5978418..0000000000 --- a/libraries/python-cmdln/python-cmdln.SlackBuild +++ /dev/null @@ -1,87 +0,0 @@ -#!/bin/sh - -# Slackware build script for python-cmdln - -# Copyright 2011 Robby Workman, Northport, Alabama, 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. - -PRGNAM=python-cmdln -VERSION=${VERSION:-1.1.2} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -SRCNAM=cmdln - -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $SRCNAM-$VERSION -unzip $CWD/$SRCNAM-$VERSION.zip -cd $SRCNAM-$VERSION -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 install --root=$PKG - -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 - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a *.txt docs/* examples $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/libraries/python-cmdln/python-cmdln.info b/libraries/python-cmdln/python-cmdln.info deleted file mode 100644 index 29f6d53957..0000000000 --- a/libraries/python-cmdln/python-cmdln.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-cmdln" -VERSION="1.1.2" -HOMEPAGE="https://code.google.com/p/cmdln/" -DOWNLOAD="http://cmdln.googlecode.com/files/cmdln-1.1.2.zip" -MD5SUM="d40a36d0c7b2a23c65a6ab1f213ddc0a" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Robby Workman" -EMAIL="rw@rlworkman.net" -APPROVED="Niels Horn" diff --git a/libraries/python-cmdln/slack-desc b/libraries/python-cmdln/slack-desc deleted file mode 100644 index b0e722e417..0000000000 --- a/libraries/python-cmdln/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------------------------------------------------------| -python-cmdln: python-cmdln (enhanced cmdln module for python) -python-cmdln: -python-cmdln: cmdln.py fixes some of the design flaws in cmd.py and takes -python-cmdln: advantage of new Python stdlib modules (e.g. optparse) so that -python-cmdln: it is more useful (and convenient) for implementing command-line -python-cmdln: scripts/shells. -python-cmdln: -python-cmdln: -python-cmdln: -python-cmdln: -python-cmdln: diff --git a/libraries/python-dateutil/README b/libraries/python-dateutil/README deleted file mode 100644 index 160b6683b5..0000000000 --- a/libraries/python-dateutil/README +++ /dev/null @@ -1,4 +0,0 @@ -The dateutil module provides powerful extensions to the -standard datetime module. - -This requires pysetuptools. diff --git a/libraries/python-dateutil/python-dateutil.SlackBuild b/libraries/python-dateutil/python-dateutil.SlackBuild deleted file mode 100644 index f8f949ce34..0000000000 --- a/libraries/python-dateutil/python-dateutil.SlackBuild +++ /dev/null @@ -1,55 +0,0 @@ -#!/bin/sh - -# Slackware build script for python-dateutil - -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=python-dateutil -VERSION=1.5 -BUILD=${BUILD:-1} -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 -e - -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 . \ - \( -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a LICENSE NEWS README $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/libraries/python-dateutil/python-dateutil.info b/libraries/python-dateutil/python-dateutil.info deleted file mode 100644 index 546d4fb4a6..0000000000 --- a/libraries/python-dateutil/python-dateutil.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-dateutil" -VERSION="1.5" -HOMEPAGE="http://labix.org/python-dateutil" -DOWNLOAD="http://labix.org/download/python-dateutil/python-dateutil-1.5.tar.gz" -MD5SUM="35f3732db3f2cc4afdc68a8533b60a52" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja[at]gmail[dot]com" -APPROVED="rworkman" diff --git a/libraries/python-dateutil/slack-desc b/libraries/python-dateutil/slack-desc deleted file mode 100644 index 4c4a4aa91d..0000000000 --- a/libraries/python-dateutil/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------------------------------------------------------| -python-dateutil: python-dateutil (extensions to the standard datetime module) -python-dateutil: -python-dateutil: The dateutil module provides powerful extensions to the standard -python-dateutil: datetime module. -python-dateutil: -python-dateutil: Hompage: http://labix.org/python-dateutil -python-dateutil: -python-dateutil: -python-dateutil: -python-dateutil: -python-dateutil: diff --git a/libraries/python-distutils-extra/README b/libraries/python-distutils-extra/README deleted file mode 100644 index 4a0757d99b..0000000000 --- a/libraries/python-distutils-extra/README +++ /dev/null @@ -1,6 +0,0 @@ -Python-distutils-extra allows to easily integrate themable icons, -scrollkeeper based documentation and gettext based translations in -your python install and build tools. It can be used with python's -distutils or the enhanced setuptools. - -This requires pysetuptools. diff --git a/libraries/python-distutils-extra/python-distutils-extra.SlackBuild b/libraries/python-distutils-extra/python-distutils-extra.SlackBuild deleted file mode 100644 index 365401b382..0000000000 --- a/libraries/python-distutils-extra/python-distutils-extra.SlackBuild +++ /dev/null @@ -1,55 +0,0 @@ -#!/bin/sh - -# Slackware build script for python-distutils-extra - -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=python-distutils-extra -VERSION=2.23 -BUILD=${BUILD:-1} -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 -e - -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 . \ - \( -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - LICENSE PKG-INFO doc/{FAQ,README} \ - $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/libraries/python-distutils-extra/python-distutils-extra.info b/libraries/python-distutils-extra/python-distutils-extra.info deleted file mode 100644 index ab5610a241..0000000000 --- a/libraries/python-distutils-extra/python-distutils-extra.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-distutils-extra" -VERSION="2.23" -HOMEPAGE="https://launchpad.net/python-distutils-extra" -DOWNLOAD="http://launchpad.net/python-distutils-extra/trunk/2.23/+download/python-distutils-extra-2.23.tar.gz" -MD5SUM="9964f888f58097827cbeb9dc9269274a" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja[at]gmail[dot]com" -APPROVED="Erik Hanson" diff --git a/libraries/python-distutils-extra/slack-desc b/libraries/python-distutils-extra/slack-desc deleted file mode 100644 index 76b07b6085..0000000000 --- a/libraries/python-distutils-extra/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------------------------------------------------------| -python-distutils-extra: python-distutils-extra -python-distutils-extra: -python-distutils-extra: Python-distutils-extra allows to easily integrate themable icons, -python-distutils-extra: scrollkeeper based documentation and gettext based translations in -python-distutils-extra: your python install and build tools. It can be used with python's -python-distutils-extra: distutils or the enhanced setuptools. -python-distutils-extra: -python-distutils-extra: Homepage: https://launchpad.net/python-distutils-extra -python-distutils-extra: -python-distutils-extra: -python-distutils-extra: diff --git a/libraries/python-elementtree/README b/libraries/python-elementtree/README deleted file mode 100644 index e0c761f808..0000000000 --- a/libraries/python-elementtree/README +++ /dev/null @@ -1,7 +0,0 @@ -The Element type is a simple but flexible container object, designed -to store hierarchical data structures, such as simplified XML -infosets, in memory. The element type can be described as a cross -between a Python list and a Python dictionary. - -The ElementTree wrapper type adds code to load XML files as trees of -Element objects, and save them back again. diff --git a/libraries/python-elementtree/python-elementtree.SlackBuild b/libraries/python-elementtree/python-elementtree.SlackBuild deleted file mode 100644 index fead173deb..0000000000 --- a/libraries/python-elementtree/python-elementtree.SlackBuild +++ /dev/null @@ -1,89 +0,0 @@ -#!/bin/sh - -# Slackware build script for elementtree -# Copyright 2010 David Woodfall <dave@dawoodfall.net> -# 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. - -SRCNAM=elementtree -PRGNAM=python-$SRCNAM -VERSION=${VERSION:-1.2.7-20070827-preview} -ARCVERSION=$VERSION -VERSION=$(echo $VERSION | tr - _) -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $SRCNAM-$ARCVERSION -unzip $CWD/$SRCNAM-$ARCVERSION.zip -cd $SRCNAM-$ARCVERSION -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - CHANGES README \ - $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/libraries/python-elementtree/python-elementtree.info b/libraries/python-elementtree/python-elementtree.info deleted file mode 100644 index 1b8beab3c0..0000000000 --- a/libraries/python-elementtree/python-elementtree.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-elementtree" -VERSION="1.2.7_20070827_preview" -HOMEPAGE="http://effbot.org/zone/element-index.htm" -DOWNLOAD="http://effbot.org/media/downloads/elementtree-1.2.7-20070827-preview.zip" -MD5SUM="30e2fe5edd143f347e03a8baf5d60f8a" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="David Woodfall" -EMAIL="dave@dawoodfall.net" -APPROVED="dsomero" diff --git a/libraries/python-elementtree/slack-desc b/libraries/python-elementtree/slack-desc deleted file mode 100644 index a23f6dc591..0000000000 --- a/libraries/python-elementtree/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------------------------------------------------------| -python-elementtree: elementtree ( Python library wrapper for XML ) -python-elementtree: -python-elementtree: The Element type is a simple but flexible container object, designed -python-elementtree: to store hierarchical data structures, such as simplified XML -python-elementtree: infosets, in memory. The element type can be described as a cross -python-elementtree: between a Python list and a Python dictionary. -python-elementtree: -python-elementtree: The ElementTree wrapper type adds code to load XML files as trees of -python-elementtree: Element objects, and save them back again. -python-elementtree: -python-elementtree: Homepage: http://effbot.org/zone/element-index.htm diff --git a/libraries/python-lastfm/README b/libraries/python-lastfm/README deleted file mode 100644 index f043600b95..0000000000 --- a/libraries/python-lastfm/README +++ /dev/null @@ -1,2 +0,0 @@ -A python interface to the last.fm web services API. Its under development -now and the code in SVN is incomplete. diff --git a/libraries/python-lastfm/nostdeb.diff b/libraries/python-lastfm/nostdeb.diff deleted file mode 100644 index 83d1ea07bc..0000000000 --- a/libraries/python-lastfm/nostdeb.diff +++ /dev/null @@ -1,15 +0,0 @@ -*** setup.py 2009-03-04 09:34:14.000000000 +0200 ---- setup1.py 2009-03-04 09:36:03.000000000 +0200 -*************** -*** 1,5 **** - #!/usr/bin/env python -! import stdeb - __author__ = "Abhinav Sarkar <abhinav@abhinavsarkar.net>" - __version__ = "0.1" - __license__ = "GNU Lesser General Public License" ---- 1,5 ---- - #!/usr/bin/env python -! - __author__ = "Abhinav Sarkar <abhinav@abhinavsarkar.net>" - __version__ = "0.1" - __license__ = "GNU Lesser General Public License" diff --git a/libraries/python-lastfm/python-lastfm.SlackBuild b/libraries/python-lastfm/python-lastfm.SlackBuild deleted file mode 100644 index 9a8fde69f5..0000000000 --- a/libraries/python-lastfm/python-lastfm.SlackBuild +++ /dev/null @@ -1,69 +0,0 @@ -#!/bin/sh - -# Slackware build script for python-lastfm - -# Written by Mihai Militaru <mihai.militaru@gmx.com> -# March 2009 - -PRGNAM=python-lastfm -ORIGNAM=lastfm -VERSION=${VERSION:-0.1} -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $PRGNAM-$VERSION -tar xvf $CWD/$ORIGNAM-$VERSION.tar.gz -cd $ORIGNAM-$VERSION -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 {} \; - -patch -p0 < $CWD/nostdeb.diff - -python setup.py install --root $PKG - -mkdir -p $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/libraries/python-lastfm/python-lastfm.info b/libraries/python-lastfm/python-lastfm.info deleted file mode 100644 index 8cbb544aba..0000000000 --- a/libraries/python-lastfm/python-lastfm.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-lastfm" -VERSION="0.1" -HOMEPAGE="http://code.google.com/p/python-lastfm/" -DOWNLOAD="http://python-lastfm.googlecode.com/svn/trunk/dist/lastfm-0.1.tar.gz" -MD5SUM="11c85f85fd1bd3a73dbe80473609a151" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Mihai Militaru" -EMAIL="mihai.militaru@gmx.com" -APPROVED="dsomero" diff --git a/libraries/python-lastfm/slack-desc b/libraries/python-lastfm/slack-desc deleted file mode 100644 index 463f7e833b..0000000000 --- a/libraries/python-lastfm/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------------------------------------------------| -python-lastfm: python-lastfm (python interface to last.fm) -python-lastfm: -python-lastfm: A python interface to the last.fm web services API. Its under -python-lastfm: development now and the code in SVN is incomplete. -python-lastfm: -python-lastfm: -python-lastfm: -python-lastfm: -python-lastfm: Homepage: http://code.google.com/p/python-lastfm/ -python-lastfm: -python-lastfm: diff --git a/libraries/python-mpd/README b/libraries/python-mpd/README deleted file mode 100644 index 79d738c24b..0000000000 --- a/libraries/python-mpd/README +++ /dev/null @@ -1 +0,0 @@ -Python-mpd is a MPD client library written in pure Python. diff --git a/libraries/python-mpd/python-mpd.SlackBuild b/libraries/python-mpd/python-mpd.SlackBuild deleted file mode 100644 index aae2322c24..0000000000 --- a/libraries/python-mpd/python-mpd.SlackBuild +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/sh - -# Slackware build script for python-mpd - -# Copyright 2008-2011 Andrew Brouwers <abrouwers@gmail.com> -# 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=python-mpd -VERSION=0.3.0 -BUILD=${BUILD:-1} -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-python-mpd -OUTPUT=${OUTPUT:-/tmp} - -DOCS="CHANGES.txt LICENSE.txt README.txt doc/commands.txt" - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "s390" ]; then - SLKCFLAGS="-O2" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP || exit 1 -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION || exit 1 -chown -R root:root . -chmod -R u+w,go+r-w,a-s . - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -python setup.py install --root=$PKG || exit 1 - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION - -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/libraries/python-mpd/python-mpd.info b/libraries/python-mpd/python-mpd.info deleted file mode 100644 index dcf29460bd..0000000000 --- a/libraries/python-mpd/python-mpd.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-mpd" -VERSION="0.3.0" -HOMEPAGE="http://pypi.python.org/pypi/python-mpd/" -DOWNLOAD="http://pypi.python.org/packages/source/p/python-mpd/python-mpd-0.3.0.tar.gz" -MD5SUM="5b3849b131e2fb12f251434597d65635" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Andrew Brouwers" -EMAIL="abrouwers@gmail.com" -APPROVED="Niels Horn" diff --git a/libraries/python-mpd/slack-desc b/libraries/python-mpd/slack-desc deleted file mode 100644 index ebd763d22f..0000000000 --- a/libraries/python-mpd/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------------------------------------------------------| -python-mpd: Python-MPD (python based mpd client library) -python-mpd: -python-mpd: Python-mpd is a MPD client library written in pure Python. -python-mpd: -python-mpd: Homepage: http://pypi.python.org/pypi/python-mpd/ -python-mpd: -python-mpd: -python-mpd: -python-mpd: -python-mpd: -python-mpd: diff --git a/libraries/python-musicbrainz2/README b/libraries/python-musicbrainz2/README deleted file mode 100644 index 1af8a6c558..0000000000 --- a/libraries/python-musicbrainz2/README +++ /dev/null @@ -1,9 +0,0 @@ -Python Bindings for the MusicBrainz XML Web Service. - -This python package contains various modules for accessing the MusicBrainz -web service, as well as parsing the MusicBrainz Metadata XML (MMD), or -calculating DiscIDs from Audio CDs. - -If you'd like to generate and install the python-musicbrainz2 API documents, -then install epydoc (available at slackbuild.org) and pass MAKE_DOCS=yes -to the Slackbuild. diff --git a/libraries/python-musicbrainz2/python-musicbrainz2.SlackBuild b/libraries/python-musicbrainz2/python-musicbrainz2.SlackBuild deleted file mode 100644 index 50852bf3f6..0000000000 --- a/libraries/python-musicbrainz2/python-musicbrainz2.SlackBuild +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh - -# Slackware build script for python-muzicbrainz2 - -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=python-musicbrainz2 -VERSION=${VERSION:-0.7.2} -BUILD=${BUILD:-1} -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 -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -chmod 0755 $PRGNAM-$VERSION -cd $PRGNAM-$VERSION -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 {} \; - -# Optional API documentation generation. -if [ "${MAKE_DOCS:-no}" == "yes" ]; then - python setup.py docs -fi - -python setup.py install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a *.txt $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -[ -d html ] && cp -a html $PKG/usr/doc/$PRGNAM-$VERSION/ - -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/libraries/python-musicbrainz2/python-musicbrainz2.info b/libraries/python-musicbrainz2/python-musicbrainz2.info deleted file mode 100644 index 8f81fcfe94..0000000000 --- a/libraries/python-musicbrainz2/python-musicbrainz2.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-musicbrainz2" -VERSION="0.7.2" -HOMEPAGE="http://musicbrainz.org/doc/PythonMusicBrainz2" -DOWNLOAD="http://ftp.musicbrainz.org/pub/musicbrainz/python-musicbrainz2/python-musicbrainz2-0.7.2.tar.gz" -MD5SUM="89fa67121973014dec8629f2cc75b826" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja[at]gmail[dot]com" -APPROVED="Erik Hanson" diff --git a/libraries/python-musicbrainz2/slack-desc b/libraries/python-musicbrainz2/slack-desc deleted file mode 100644 index 2be86fb96a..0000000000 --- a/libraries/python-musicbrainz2/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------------------------------------------------------| -python-musicbrainz2: Python-Musicbrainz2 -python-musicbrainz2: -python-musicbrainz2: Python Bindings for the MusicBrainz XML Web Service. -python-musicbrainz2: -python-musicbrainz2: Homepage: http://musicbrainz.org/doc/PythonMusicBrainz2 -python-musicbrainz2: -python-musicbrainz2: -python-musicbrainz2: -python-musicbrainz2: -python-musicbrainz2: -python-musicbrainz2: diff --git a/libraries/python-openid/README b/libraries/python-openid/README deleted file mode 100644 index a88bb6bf31..0000000000 --- a/libraries/python-openid/README +++ /dev/null @@ -1 +0,0 @@ -Python OpenID library. diff --git a/libraries/python-openid/python-openid.SlackBuild b/libraries/python-openid/python-openid.SlackBuild deleted file mode 100644 index 01ab455291..0000000000 --- a/libraries/python-openid/python-openid.SlackBuild +++ /dev/null @@ -1,71 +0,0 @@ -#!/bin/sh -# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST -# Copyright 2009 Eric Hameleers <alien@slackware.com>, Eindhoven, Netherlands - -# Slackware build script for python-openid - -# Written by Lionel Young <redtricycle@gmail.com> - -PRGNAM=python-openid -SRCNAM=openid-python-openid -SRCNAMSUF=b666238 -VERSION=${VERSION:-2.2.5} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) export ARCH=i486 ;; - arm*) export ARCH=arm ;; - *) export ARCH=$( uname -m ) ;; - esac -fi -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" - 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 $PRGNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION-0-g$SRCNAMSUF.tar.gz -cd $SRCNAM-$SRCNAMSUF -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 -python setup.py install --root=$PKG - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - CHANGES-2.2.0 LICENSE README NOTICE README \ - $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/libraries/python-openid/python-openid.info b/libraries/python-openid/python-openid.info deleted file mode 100644 index b2fb745b5b..0000000000 --- a/libraries/python-openid/python-openid.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-openid" -VERSION="2.2.5" -HOMEPAGE="https://github.com/openid/python-openid" -DOWNLOAD="https://download.github.com/openid-python-openid-2.2.5-0-gb666238.tar.gz" -MD5SUM="7bb24dc6abd941ebff6a83c1ac7e4370" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Lionel Young" -EMAIL="redtricycle@gmail.com" -APPROVED="Niels Horn" diff --git a/libraries/python-openid/slack-desc b/libraries/python-openid/slack-desc deleted file mode 100644 index b1ffe78921..0000000000 --- a/libraries/python-openid/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------------------------------------------------------| -python-openid: python-openid (python openid library) -python-openid: -python-openid: Python OpenID library. -python-openid: -python-openid: Home: https://github.com/openid/python-openid -python-openid: -python-openid: -python-openid: -python-openid: -python-openid: -python-openid: diff --git a/libraries/python-pydns/README b/libraries/python-pydns/README deleted file mode 100644 index 3e7fd0524a..0000000000 --- a/libraries/python-pydns/README +++ /dev/null @@ -1 +0,0 @@ -PyDNS provides a module for performing DNS queries from python applications. diff --git a/libraries/python-pydns/python-pydns.SlackBuild b/libraries/python-pydns/python-pydns.SlackBuild deleted file mode 100644 index 525ca9e018..0000000000 --- a/libraries/python-pydns/python-pydns.SlackBuild +++ /dev/null @@ -1,94 +0,0 @@ -#!/bin/sh - -# Slackware build script for DKIMproxy - -# Copyright 2010, Steven King <kingrst@gmail.com> -# 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=python-pydns -VERSION=${VERSION:-2.3.4} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -ORIGNAM=$(echo $PRGNAM | cut -f2 -d-) - -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $ORIGNAM-$VERSION -tar vxzf $CWD/$ORIGNAM-$VERSION.tar.gz -cd $ORIGNAM-$VERSION - -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 {} \; - -/usr/bin/python setup.py build - -/usr/bin/python setup.py install --root $PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION - -cp -a \ - CREDITS.txt PKG-INFO MANIFEST.in README-guido.txt README.txt pydns.spec python-pydns.spec \ - $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/libraries/python-pydns/python-pydns.info b/libraries/python-pydns/python-pydns.info deleted file mode 100644 index 9dd391bb6e..0000000000 --- a/libraries/python-pydns/python-pydns.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-pydns" -VERSION="2.3.4" -HOMEPAGE="http://sourceforge.net/projects/pydns" -DOWNLOAD="http://downloads.sourceforge.net/pydns/pydns-2.3.4.tar.gz" -MD5SUM="f2cd357a101ad7dd2b3f353a8dad51b8" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Steven King" -EMAIL="kingrst@gmail.com" -APPROVED="Niels Horn" diff --git a/libraries/python-pydns/slack-desc b/libraries/python-pydns/slack-desc deleted file mode 100644 index b37ec19110..0000000000 --- a/libraries/python-pydns/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------------------------------------------------------| -python-pydns: PyDNS (Python DNS library) -python-pydns: -python-pydns: PyDNS provides a module for performing DNS queries from -python-pydns: python applications. -python-pydns: -python-pydns: Homepage: http://sourceforge.net/projects/pydns/ -python-pydns: -python-pydns: -python-pydns: -python-pydns: -python-pydns: diff --git a/libraries/python-pyspf/README b/libraries/python-pyspf/README deleted file mode 100644 index 9db055dbbc..0000000000 --- a/libraries/python-pyspf/README +++ /dev/null @@ -1,5 +0,0 @@ -Pyspf is a Python implementation of the SPF (Sender Policy Framework) -specification. Pyspf can be used with any milter script for Sendmail, -Postfix or another MTA. - -This requires python-pydns. diff --git a/libraries/python-pyspf/python-pyspf.SlackBuild b/libraries/python-pyspf/python-pyspf.SlackBuild deleted file mode 100644 index b98688ba0f..0000000000 --- a/libraries/python-pyspf/python-pyspf.SlackBuild +++ /dev/null @@ -1,94 +0,0 @@ -#!/bin/sh - -# Slackware build script for DKIMproxy - -# Copyright 2010, Steven King <kingrst@gmail.com> -# 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=python-pyspf -VERSION=${VERSION:-2.0.5} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -ORIGNAM=$(echo $PRGNAM | cut -f2 -d-) - -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $ORIGNAM-$VERSION -tar vxzf $CWD/$ORIGNAM-$VERSION.tar.gz -cd $ORIGNAM-$VERSION - -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 {} \; - -./setup.py build - -./setup.py install --root $PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION - -cp -a \ - CHANGELOG README PKG-INFO python-pyspf.spec \ - $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/libraries/python-pyspf/python-pyspf.info b/libraries/python-pyspf/python-pyspf.info deleted file mode 100644 index a95c024b42..0000000000 --- a/libraries/python-pyspf/python-pyspf.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-pyspf" -VERSION="2.0.5" -HOMEPAGE="http://sourceforge.net/projects/pymilter" -DOWNLOAD="http://downloads.sourceforge.net/pymilter/pyspf-2.0.5.tar.gz" -MD5SUM="7e3f53362e3ad52ec8a496445085a34f" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Steven King" -EMAIL="kingrst@gmail.com" -APPROVED="Niels Horn" diff --git a/libraries/python-pyspf/slack-desc b/libraries/python-pyspf/slack-desc deleted file mode 100644 index 866c1a1305..0000000000 --- a/libraries/python-pyspf/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------------------------------------------------------| -python-pyspf: pyspf (Sender-Policy-Framework queries in Python) -python-pyspf: -python-pyspf: SPF does email sender validation. For more information about SPF, -python-pyspf: please see http://www.openspf.org/ -python-pyspf: -python-pyspf: Homepage: http://sourceforge.net/projects/pymilter/ -python-pyspf: -python-pyspf: -python-pyspf: -python-pyspf: -python-pyspf: diff --git a/libraries/python-spidermonkey/README b/libraries/python-spidermonkey/README deleted file mode 100644 index 9d6d6dd69a..0000000000 --- a/libraries/python-spidermonkey/README +++ /dev/null @@ -1,7 +0,0 @@ -Python/JavaScript bridge module, making use of Mozilla's spidermonkey -JavaScript implementation. Allows implementation of JavaScript classes, -objects and functions in Python, and evaluation and calling of JavaScript -scripts and functions respectively. Borrows heavily from Claes Jacobssen's -Javascript Perl module, in turn based on Mozilla's 'PerlConnect' Perl binding. - -This requires pysetuptools, nose, and js. diff --git a/libraries/python-spidermonkey/README.md b/libraries/python-spidermonkey/README.md deleted file mode 100644 index 1ddc3d1fe4..0000000000 --- a/libraries/python-spidermonkey/README.md +++ /dev/null @@ -1,200 +0,0 @@ -Execute arbitrary JavaScript code from Python. Allows you to reference -arbitrary Python objects and functions in the JavaScript VM - -Having issues? -============== - -The project support site can be found at [lighthouseapp.com][lh]. - -Requirements -============ - -Pkg-Config ----------- - -Mac OS X: - -This should be installed by default. If not there is a port package: - - $ sudo port install pkgconfig - -Debian/Ubuntu: - -This is also generally installed by default, but I have reports of it being -otherwise. - - $ sudo apt-get install pkg-config - -Gentoo: - - $ sudo emerge dev-util/pkgconfig - -Python Development Files ------------------------- - -Mac OS X: - -If you installed Python via port then the headers should already be installed. -I have not heard reports of problems from people using the bundled -interpreters. - -Debian/Ubuntu: - - $ sudo apt-get install pythonX.X-dev - -Where X.X is the version of Python you are using. I have not tested -python-spidermonkey on Py3K so it may be horribly broken there. - -Gentoo: - -If you have python installed, then the headers should already be installed. - -Netscape Portable Runtime (nspr) --------------------------------- - -The nspr library is required for building the Spidermonkey sources. You should -be able to grab it from your package manager of choice with something like the -following: - -Mac OS X: - - $ sudo port install nspr - -Debian/Ubuntu: - - $ sudo apt-get install libnspr4-dev - -Gentoo: - - $ sudo emerge dev-libs/nspr - -Alternatively you can build from [source][nspr]. If you choose this route make -sure that the nspr-config command is on your $PATH when running the install -commands below. - -If you choose this route make -sure that the pkg-config command is on your `$PATH` when running the install -commands below. Additionally, make sure that `$PKG_CONFIG_PATH` is properly -set. - -XULRunner (optional) --------------------- -You can optionally build the extension linked to your system's spidermonkey -library, which is installed with XULRunner. You should be able to grab it from -your package manager of choice with something like the following: - -Mac OS X: - - $ sudo port install xulrunner - -Debian/Ubuntu: - - $ sudo apt-get install xulrunner-1.9-dev - -Gentoo: - - $ sudo emerge net-libs/xulrunner - -As with [nspr][nspr], you can also build [xulrunner][xulrunner] from source. And as with [nspr][nspr] you need to make sure hat `$PATH` and `$PKG_CONFIG_PATH` are properly set when building the module. - -Installation -============ - - $ git clone git://github.com/davisp/python-spidermonkey.git - $ cd python-spidermonkey - $ python setup.py build - $ python setup.py test - - $ sudo python setup.py install - - *OR* - - $ sudo python setup.py develop - -If you want to build with the system spidermonkey library, replace the build -command with the following: - - $ python setup.py --system-library build - -Examples -======== - -Basics ------- - - >>> import spidermonkey - >>> rt = spidermonkey.Runtime() - >>> cx = rt.new_context() - >>> cx.execute("var x = 3; x *= 4; x;") - 12 - >>> class Orange(object): - ... def is_ripe(self,arg): - ... return "ripe %s" % arg - ... - >>> fruit = Orange() - >>> cx.add_global("apple", fruit) - >>> cx.execute('"Show me the " + apple.is_ripe("raisin");') - u'Show me the ripe raisin' - - -Playing with Classes --------------------- - - >>> import spidermonkey - >>> class Monkey(object): - ... def __init__(self): - ... self.baz = "blammo" - ... def wrench(self, arg): - ... return "%s now wrenched" % arg - ... - >>> rt = spidermonkey.Runtime() - >>> cx = rt.new_context() - >>> cx.add_global("Monkey", Monkey) - >>> monkey = cx.execute('var x = new Monkey(); x.baz = "schmammo"; x;') - >>> monkey.baz - u'schmammo' - >>> monkey.__class__.__name__ - 'Monkey' - - -JavaScript Functions --------------------- - - >>> import spidermonkey - >>> rt = spidermonkey.Runtime() - >>> cx = rt.new_context() - >>> func = cx.execute('function(val) {return "whoosh: " + val;}') - >>> func("zipper!"); - u'whoosh: zipper!' - - -Filtering access to Python --------------------------- - - >>> import spidermonkey - >>> rt = spidermonkey.Runtime() - >>> def checker(obj, name): - ... return not name.startswith("_") - ... - >>> cx = rt.new_context(access=checker) - >>> # Alternatively: - >>> cx.set_access() #doctest: +ELLIPSIS - <function checker at ...> - >>> cx.set_access(checker) #doctest: +ELLIPSIS - <function checker at ...> - >>> cx.add_global("fish", {"gold": "gone", "_old_lady": "huzza"}) - >>> cx.execute('fish["_old_lady"];') - Traceback (most recent call last): - ... - JSError: Error executing JavaScript. - - -Previous Authors -================ - -* John J. Lee -* Atul Varma - -[lh]: http://davisp.lighthouseapp.com/projects/26898-python-spidermonkey/overview -[nspr]: ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases -[xulrunner]: ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases diff --git a/libraries/python-spidermonkey/python-spidermonkey.SlackBuild b/libraries/python-spidermonkey/python-spidermonkey.SlackBuild deleted file mode 100644 index d4d7d3851d..0000000000 --- a/libraries/python-spidermonkey/python-spidermonkey.SlackBuild +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh - -# Slackware build script for python-spidermonkey - -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=python-spidermonkey -VERSION=${VERSION:-0.0.8} -BUILD=${BUILD:-1} -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 -e - -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 . \ - \( -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 {} \; - -# Get rid of ez_setup. -sed -i '/ez_setup/d' setup.py MANIFEST.in - -python setup.py install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a LICENSE $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/README.md > $PKG/usr/doc/$PRGNAM-$VERSION/README.md -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -chmod 0644 $PKG/usr/doc/$PRGNAM-$VERSION/* - -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/libraries/python-spidermonkey/python-spidermonkey.info b/libraries/python-spidermonkey/python-spidermonkey.info deleted file mode 100644 index fd538a7421..0000000000 --- a/libraries/python-spidermonkey/python-spidermonkey.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-spidermonkey" -VERSION="0.0.8" -HOMEPAGE="http://pypi.python.org/pypi/python-spidermonkey" -DOWNLOAD="http://pypi.python.org/packages/source/p/python-spidermonkey/python-spidermonkey-0.0.8.tar.gz" -MD5SUM="035ffc4650e2193a09dd4f81bc30fafd" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja[at]gmail[dot]com" -APPROVED="rworkman" diff --git a/libraries/python-spidermonkey/slack-desc b/libraries/python-spidermonkey/slack-desc deleted file mode 100644 index a0a5b01d18..0000000000 --- a/libraries/python-spidermonkey/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------------------------------------------------------| -python-spidermonkey: python-spidermonkey -python-spidermonkey: -python-spidermonkey: Python/JavaScript bridge module, making use of Mozilla's spidermonkey -python-spidermonkey: JavaScript implementation. -python-spidermonkey: -python-spidermonkey: Homepage: http://pypi.python.org/pypi/python-spidermonkey -python-spidermonkey: -python-spidermonkey: -python-spidermonkey: -python-spidermonkey: -python-spidermonkey: diff --git a/libraries/python-transaction/README b/libraries/python-transaction/README deleted file mode 100644 index f80fdb9017..0000000000 --- a/libraries/python-transaction/README +++ /dev/null @@ -1,8 +0,0 @@ -This package contains a generic transaction implementation for Python. It -is mainly used by the ZODB, though. - -Note that the data manager API, transaction.interfaces.IDataManager, is -syntactically simple, but semantically complex. The semantics were not -easy to express in the interface. This could probably use more work. The -semantics are presented in detail through examples of a sample data manager -in transaction.tests.test_SampleDataManager. diff --git a/libraries/python-transaction/python-transaction.SlackBuild b/libraries/python-transaction/python-transaction.SlackBuild deleted file mode 100644 index d3c6b7a2d6..0000000000 --- a/libraries/python-transaction/python-transaction.SlackBuild +++ /dev/null @@ -1,75 +0,0 @@ -#!/bin/sh -# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST -# Copyright 2009 Eric Hameleers <alien@slackware.com>, Eindhoven, Netherlands - -# Slackware build script for python-transaction - -# Written by Lionel Young <redtricycle@gmail.com> - -PRGNAM=python-transaction -SRCNAM=transaction -VERSION=${VERSION:-1.0.0} -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $PRGNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz -cd $SRCNAM-$VERSION -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 || exit 1 -python setup.py install --root=$PKG || exit 1 - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - CHANGES.txt LICENSE.txt README.txt COPYRIGHT.txt \ - $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/libraries/python-transaction/python-transaction.info b/libraries/python-transaction/python-transaction.info deleted file mode 100644 index 6e5145c61d..0000000000 --- a/libraries/python-transaction/python-transaction.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-transaction" -VERSION="1.0.0" -HOMEPAGE="http://pypi.python.org/pypi/transaction/1.0.0" -DOWNLOAD="http://pypi.python.org/packages/source/t/transaction/transaction-1.0.0.tar.gz" -MD5SUM="10b5d02dcded26f6f265771e6d68fc06" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Lionel Young" -EMAIL="redtricycle@gmail.com" -APPROVED="dsomero" diff --git a/libraries/python-transaction/slack-desc b/libraries/python-transaction/slack-desc deleted file mode 100644 index 1621c3eab2..0000000000 --- a/libraries/python-transaction/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------------------------------------------------------| -python-transaction: python-transaction (Python Transaction Management) -python-transaction: -python-transaction: This is a generic transaction implementation for Python. It -python-transaction: is mainly used by the ZODB. Note that the data manager API, -python-transaction: transaction.interfaces.IDataManager, is syntactically simple, but -python-transaction: semantically complex. The semantics were not easy to express in the -python-transaction: interface. The semantics are presented in detail through examples -python-transaction: of a sample data manager in transaction.tests.test_SampleDataManager. -python-transaction: -python-transaction: -python-transaction: Homepage: http://pypi.python.org/pypi/transaction/1.0.0 diff --git a/libraries/python-twitter/README b/libraries/python-twitter/README deleted file mode 100644 index 5d2d398bb1..0000000000 --- a/libraries/python-twitter/README +++ /dev/null @@ -1,8 +0,0 @@ -This library provides a pure python interface for the Twitter API. - -Twitter (http://twitter.com) provides a service that allows people -to connect via the web, IM, and SMS. Twitter exposes a web services -API (http://twitter.com/help/api) and this library is intended to -make it even easier for python programmers to use. - -This requires simplejson. diff --git a/libraries/python-twitter/python-twitter.SlackBuild b/libraries/python-twitter/python-twitter.SlackBuild deleted file mode 100644 index f6a6c30727..0000000000 --- a/libraries/python-twitter/python-twitter.SlackBuild +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/sh - -# Slackware build script for python-twitter -# Written by Steven Pledger <piratesmack@ymail.com> - -PRGNAM=python-twitter -VERSION=${VERSION:-0.6} -BUILD=${BUILD:-1} -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 -e - -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 . \ - \( -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - CHANGES COPYING LICENSE NOTICE README doc/* examples \ - $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/libraries/python-twitter/python-twitter.info b/libraries/python-twitter/python-twitter.info deleted file mode 100644 index 9a8f5ff289..0000000000 --- a/libraries/python-twitter/python-twitter.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-twitter" -VERSION="0.6" -HOMEPAGE="http://code.google.com/p/python-twitter/" -DOWNLOAD="http://python-twitter.googlecode.com/files/python-twitter-0.6.tar.gz" -MD5SUM="e1f5c50c60c74944d29ce28178972b95" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Steven Pledger" -EMAIL="piratesmack@ymail.com" -APPROVED="rworkman" diff --git a/libraries/python-twitter/slack-desc b/libraries/python-twitter/slack-desc deleted file mode 100644 index b277876756..0000000000 --- a/libraries/python-twitter/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------------------------------------------------------| -python-twitter: python-twitter (python wrapper around the Twitter API) -python-twitter: -python-twitter: This library provides a pure python interface for the Twitter API. -python-twitter: -python-twitter: Homepage: http://code.google.com/p/python-twitter/ -python-twitter: -python-twitter: -python-twitter: -python-twitter: -python-twitter: -python-twitter: diff --git a/libraries/python-xlib/README b/libraries/python-xlib/README deleted file mode 100644 index 49962b13a9..0000000000 --- a/libraries/python-xlib/README +++ /dev/null @@ -1,6 +0,0 @@ -The Python X library is intended to be a fully functional X client for Python -programs. It is written entirely in Python, in ontrast to earlier X libraries -for Python. This is possible to do since X client programs communicate with -the X server via the X protocol. The communication takes over TCP/IP, Unix -sockets, or any other streaming network protocol. - diff --git a/libraries/python-xlib/python-xlib.SlackBuild b/libraries/python-xlib/python-xlib.SlackBuild deleted file mode 100644 index 866f54be3e..0000000000 --- a/libraries/python-xlib/python-xlib.SlackBuild +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh - -# Slackware build script for python-xlib -# Written by Vasilis Papavasileiou <el03020 at mail dot ntua dot gr> - -# Modified by the SlackBuilds.org project - -PRGNAM=python-xlib -VERSION=0.14 -BUILD=${BUILD:-1} -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} - -DOCS="COPYING NEWS PKG-INFO README TODO" - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP || exit 1 -rm -rf $PRGNAM-$VERSION -tar -xzvf $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 . - -python setup.py install --root $PKG || exit 1 - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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/libraries/python-xlib/python-xlib.info b/libraries/python-xlib/python-xlib.info deleted file mode 100644 index 597f28f6bc..0000000000 --- a/libraries/python-xlib/python-xlib.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python-xlib" -VERSION="0.14" -HOMEPAGE="http://python-xlib.sourceforge.net/" -DOWNLOAD="http://downloads.sourceforge.net/python-xlib/python-xlib-0.14.tar.gz" -MD5SUM="a038c2f410d8445f3fa8f6dcd45659c5" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Vasilis Papavasileiou" -EMAIL="el03020@mail.ntua.gr" -APPROVED="rworkman" diff --git a/libraries/python-xlib/slack-desc b/libraries/python-xlib/slack-desc deleted file mode 100644 index 8e4e0d54e4..0000000000 --- a/libraries/python-xlib/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------------------------------------------------------| -python-xlib: python-xlib (X Library module for Python) -python-xlib: -python-xlib: The Python X library is intended to be a fully functional X -python-xlib: client for Python programs. It is written entirely in Python, in -python-xlib: contrast to earlier X libraries for Python. This is possible to -python-xlib: do since X client programs communicate with the X server via the -python-xlib: X protocol. The communication takes over TCP/IP, Unix sockets, or -python-xlib: any other streaming network protocol. -python-xlib: -python-xlib: Homepage: http://python-xlib.sourceforge.net/ -python-xlib: diff --git a/libraries/python2-chardet/README b/libraries/python2-chardet/README deleted file mode 100644 index c834c08942..0000000000 --- a/libraries/python2-chardet/README +++ /dev/null @@ -1 +0,0 @@ -Character encoding auto-detection in Python for Python 2.x. diff --git a/libraries/python2-chardet/python2-chardet.SlackBuild b/libraries/python2-chardet/python2-chardet.SlackBuild deleted file mode 100644 index 9873cf3b3b..0000000000 --- a/libraries/python2-chardet/python2-chardet.SlackBuild +++ /dev/null @@ -1,55 +0,0 @@ -#!/bin/sh - -# Slackware build script for python2-chardet - -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=python2-chardet -VERSION=${VERSION:-2.0.1} -BUILD=${BUILD:-1} -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 -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tgz -cd $PRGNAM-$VERSION -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING docs/* $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/libraries/python2-chardet/python2-chardet.info b/libraries/python2-chardet/python2-chardet.info deleted file mode 100644 index 907dd5669e..0000000000 --- a/libraries/python2-chardet/python2-chardet.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="python2-chardet" -VERSION="2.0.1" -HOMEPAGE="http://chardet.feedparser.org/" -DOWNLOAD="http://chardet.feedparser.org/download/python2-chardet-2.0.1.tgz" -MD5SUM="ec771971bab5dd1943a10362ebd2fd4c" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja[at]gmail[dot]com" -APPROVED="rworkman" diff --git a/libraries/python2-chardet/slack-desc b/libraries/python2-chardet/slack-desc deleted file mode 100644 index bc59e604d6..0000000000 --- a/libraries/python2-chardet/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------------------------------------------------------| -python2-chardet: python2-chardet (autodetection of character encoding in python) -python2-chardet: -python2-chardet: Character encoding auto-detection in Python for Python 2.x. -python2-chardet: -python2-chardet: Homepage: http://chardet.feedparser.org/ -python2-chardet: -python2-chardet: -python2-chardet: -python2-chardet: -python2-chardet: -python2-chardet: diff --git a/libraries/pytz/README b/libraries/pytz/README deleted file mode 100644 index 354f8ea02c..0000000000 --- a/libraries/pytz/README +++ /dev/null @@ -1,5 +0,0 @@ -pytz brings the Olson tz database into Python. This library allows -accurate and cross platform timezone calculations using Python 2.3 -or higher. It also solves the issue of ambiguous times at the end -of daylight savings, which you can read more about in the Python -Library Reference (datetime.tzinfo). diff --git a/libraries/pytz/pytz.SlackBuild b/libraries/pytz/pytz.SlackBuild deleted file mode 100644 index 27d8fb5cd5..0000000000 --- a/libraries/pytz/pytz.SlackBuild +++ /dev/null @@ -1,74 +0,0 @@ -#!/bin/sh - -# Slackware build script for pytz - -# Copyright 2009 Heinz Wiesinger, Amsterdam, The Netherlands -# 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=pytz -VERSION=2009n -BUILD=${BUILD:-1} -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 -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 -cd $PRGNAM-$VERSION -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a CHANGES.txt LICENSE.txt PKG-INFO README.txt \ - $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/libraries/pytz/pytz.info b/libraries/pytz/pytz.info deleted file mode 100644 index 24ce6093c0..0000000000 --- a/libraries/pytz/pytz.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pytz" -VERSION="2009n" -HOMEPAGE="https://launchpad.net/pytz" -DOWNLOAD="http://pypi.python.org/packages/source/p/pytz/pytz-2009n.tar.bz2" -MD5SUM="7f069d7221bbe0a580c2300677e204ce" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Heinz Wiesinger" -EMAIL="pprkut@liwjatan.at" -APPROVED="rworkman" diff --git a/libraries/pytz/slack-desc b/libraries/pytz/slack-desc deleted file mode 100644 index a875d79ef7..0000000000 --- a/libraries/pytz/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----------------------------------------------------| -pytz: pytz (World timezone definitions for Python) -pytz: -pytz: pytz brings the Olson tz database into Python. This library allows -pytz: accurate and cross platform timezone calculations using Python 2.3 -pytz: or higher. It also solves the issue of ambiguous times at the end -pytz: of daylight savings, which you can read more about in the Python -pytz: Library Reference (datetime.tzinfo). -pytz: -pytz: Homepage: https://launchpad.net/pytz -pytz: -pytz: diff --git a/libraries/pyusb/README b/libraries/pyusb/README deleted file mode 100644 index c93b48b72b..0000000000 --- a/libraries/pyusb/README +++ /dev/null @@ -1,3 +0,0 @@ -PyUSB is a native Python module written in C which provides easy USB access -to Python. The module contains classes and methods to support most USB -operations. diff --git a/libraries/pyusb/pyusb.SlackBuild b/libraries/pyusb/pyusb.SlackBuild deleted file mode 100644 index c7b73e018b..0000000000 --- a/libraries/pyusb/pyusb.SlackBuild +++ /dev/null @@ -1,75 +0,0 @@ -#!/bin/sh - -# Slackware build script for pyusb -# Written by Kyle Guinn <elyk03@gmail.com> - -PRGNAM=pyusb -VERSION=${VERSION:-0.4.1} -BUILD=${BUILD:-1} -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-$VERSION -OUTPUT=${OUTPUT:-/tmp} - -DOCS="PKG-INFO README license.txt" - -if [ $ARCH = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $PRGNAM-$VERSION -tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -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 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -python ./setup.py install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -# Normalize line endings -sed -i "s/\xd$//g" README - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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/libraries/pyusb/pyusb.info b/libraries/pyusb/pyusb.info deleted file mode 100644 index 09b9b8432c..0000000000 --- a/libraries/pyusb/pyusb.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pyusb" -VERSION="0.4.1" -HOMEPAGE="http://pyusb.berlios.de/" -DOWNLOAD="http://downloads.sourceforge.net/pyusb/pyusb-0.4.1.tar.gz" -MD5SUM="9576c3e471e40e021fa44f36712bbd04" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Kyle Guinn" -EMAIL="elyk03@gmail.com" -APPROVED="dsomero" diff --git a/libraries/pyusb/slack-desc b/libraries/pyusb/slack-desc deleted file mode 100644 index 6062d08814..0000000000 --- a/libraries/pyusb/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------------------------------------------------------| -pyusb: PyUSB (USB module for Python) -pyusb: -pyusb: PyUSB is a native Python module written in C which provides easy USB -pyusb: access to Python. The module contains classes and methods to -pyusb: support most USB operations. -pyusb: -pyusb: -pyusb: -pyusb: -pyusb: -pyusb: diff --git a/libraries/pyutil/README b/libraries/pyutil/README deleted file mode 100644 index f206473186..0000000000 --- a/libraries/pyutil/README +++ /dev/null @@ -1,4 +0,0 @@ -A collection of functions and data structures from allmydata.org. - -This package requires pysetuptools, argparse and zbase32. Note that the -last one is a circular dependency, however it will only be needed at runtime. diff --git a/libraries/pyutil/pyutil.SlackBuild b/libraries/pyutil/pyutil.SlackBuild deleted file mode 100644 index 8242370786..0000000000 --- a/libraries/pyutil/pyutil.SlackBuild +++ /dev/null @@ -1,85 +0,0 @@ -#!/bin/sh - -# Slackware build script for pyutil. - -# Copyright 2010-2011 Marco Bonetti <sid77@slackware.it> -# 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=pyutil -VERSION=${VERSION:-1.7.1} -BUILD=${BUILD:-1} -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} - -DOCS="COPYING.GPL COPYING.TGPPL.html README.txt" - -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" -fi - -set -e - -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 . \ - \( -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 || exit 1 -python setup.py install --root=$PKG || exit 1 - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/slack-desc > $PKG/usr/doc/$PRGNAM-$VERSION/slack-desc -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/libraries/pyutil/pyutil.info b/libraries/pyutil/pyutil.info deleted file mode 100644 index 5993863765..0000000000 --- a/libraries/pyutil/pyutil.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pyutil" -VERSION="1.7.1" -HOMEPAGE="http://allmydata.org/trac/pyutil" -DOWNLOAD="http://pypi.python.org/packages/source/p/pyutil/pyutil-1.7.1.tar.gz" -MD5SUM="d6efa4b42a3e6d2d602f6b72b40a62e8" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Marco Bonetti" -EMAIL="sid77@slackware.it" -APPROVED="dsomero" diff --git a/libraries/pyutil/slack-desc b/libraries/pyutil/slack-desc deleted file mode 100644 index a667506f30..0000000000 --- a/libraries/pyutil/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----------------------------------------------------| -pyutil: pyutil (Python utilities) -pyutil: -pyutil: A collection of functions and data structures from allmydata.org -pyutil: -pyutil: Homepage: http://allmydata.org/trac/pyutil -pyutil: -pyutil: -pyutil: -pyutil: -pyutil: -pyutil: diff --git a/libraries/pywebkitgtk/README b/libraries/pywebkitgtk/README deleted file mode 100644 index fb38d0edf6..0000000000 --- a/libraries/pywebkitgtk/README +++ /dev/null @@ -1,4 +0,0 @@ -PyWebKitGtk allows Python (Gtk) developers to create software -on top of the WebKitGtk rendering engine. - -This package requires webkitgtk. diff --git a/libraries/pywebkitgtk/pywebkitgtk.SlackBuild b/libraries/pywebkitgtk/pywebkitgtk.SlackBuild deleted file mode 100644 index 66f8e0d3df..0000000000 --- a/libraries/pywebkitgtk/pywebkitgtk.SlackBuild +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/sh - -# Slackware build script for pywebkitgtk - -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=pywebkitgtk -VERSION=1.1.8 -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 -cd $PRGNAM-$VERSION -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 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --enable-static=no \ - --disable-dependency-tracking \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - AUTHORS ChangeLog COPYING MAINTAINERS NEWS README \ - $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/libraries/pywebkitgtk/pywebkitgtk.info b/libraries/pywebkitgtk/pywebkitgtk.info deleted file mode 100644 index 4d4ffdacb2..0000000000 --- a/libraries/pywebkitgtk/pywebkitgtk.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pywebkitgtk" -VERSION="1.1.8" -HOMEPAGE="http://code.google.com/p/pywebkitgtk/" -DOWNLOAD="http://pywebkitgtk.googlecode.com/files/pywebkitgtk-1.1.8.tar.bz2" -MD5SUM="19f3c184eebcfde1c9d1ce56bbe75cf2" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja[at]gmail[dot]com" -APPROVED="Erik Hanson" diff --git a/libraries/pywebkitgtk/slack-desc b/libraries/pywebkitgtk/slack-desc deleted file mode 100644 index 6fe646ba61..0000000000 --- a/libraries/pywebkitgtk/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------------------------------------------------------| -pywebkitgtk: PyWebkitGTK -pywebkitgtk: -pywebkitgtk: PyWebKitGtk allows Python (Gtk) developers to create software on top -pywebkitgtk: of the WebKitGtk rendering engine. -pywebkitgtk: -pywebkitgtk: Homepage: http://code.google.com/p/pywebkitgtk/ -pywebkitgtk: -pywebkitgtk: -pywebkitgtk: -pywebkitgtk: -pywebkitgtk: diff --git a/libraries/pyxdg/README b/libraries/pyxdg/README deleted file mode 100644 index 485a238ba1..0000000000 --- a/libraries/pyxdg/README +++ /dev/null @@ -1 +0,0 @@ -PyXDG contains implementations of freedesktop.org standards in python. diff --git a/libraries/pyxdg/pyxdg.SlackBuild b/libraries/pyxdg/pyxdg.SlackBuild deleted file mode 100644 index 07d51b256b..0000000000 --- a/libraries/pyxdg/pyxdg.SlackBuild +++ /dev/null @@ -1,88 +0,0 @@ -#!/bin/sh - -# Slackware build script for PyXDG - -# Copyright 2008-2009 Frank Caraballo <fecaraballo{at}gmail{dot}com> -# 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=pyxdg -VERSION=${VERSION:-0.18} -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -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 install --root $PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS ChangeLog COPYING INSTALL PKG-INFO README TODO \ - $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/libraries/pyxdg/pyxdg.info b/libraries/pyxdg/pyxdg.info deleted file mode 100644 index dbd3264018..0000000000 --- a/libraries/pyxdg/pyxdg.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pyxdg" -VERSION="0.18" -HOMEPAGE="http://freedesktop.org/wiki/Software/pyxdg" -DOWNLOAD="http://www.freedesktop.org/~lanius/pyxdg-0.18.tar.gz" -MD5SUM="076b57722e91dab8ab83028c6ef9dcea" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Frank Caraballo" -EMAIL="fecaraballo{at}gmail{dot}com" -APPROVED="rworkman" diff --git a/libraries/pyxdg/slack-desc b/libraries/pyxdg/slack-desc deleted file mode 100644 index 0b61589cfd..0000000000 --- a/libraries/pyxdg/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------------------------------------------------------| -pyxdg: PyXDG (Python Library) -pyxdg: -pyxdg: PyXDG contains implementations of freedesktop.org standards in python. -pyxdg: -pyxdg: Homepage: http://freedesktop.org/wiki/Software/pyxdg -pyxdg: -pyxdg: -pyxdg: -pyxdg: -pyxdg: -pyxdg: diff --git a/libraries/sexy-python/README b/libraries/sexy-python/README deleted file mode 100644 index d35d497a27..0000000000 --- a/libraries/sexy-python/README +++ /dev/null @@ -1,3 +0,0 @@ -Sexy-python is a set of Python bindings around libsexy. - -Requires libsexy available at SlackBuilds.org.
\ No newline at end of file diff --git a/libraries/sexy-python/fix-sexy_tooltip_position_to_rect.patch b/libraries/sexy-python/fix-sexy_tooltip_position_to_rect.patch deleted file mode 100644 index 93b45e93d1..0000000000 --- a/libraries/sexy-python/fix-sexy_tooltip_position_to_rect.patch +++ /dev/null @@ -1,50 +0,0 @@ -diff -Nur sexy-python-0.1.9/sexy/sexy.override sexy-python-0.1.9.new/sexy/sexy.override ---- sexy-python-0.1.9/sexy/sexy.override 2006-03-18 22:48:12.000000000 +0100 -+++ sexy-python-0.1.9.new/sexy/sexy.override 2007-03-08 11:11:46.000000000 +0100 -@@ -163,5 +163,46 @@ - return 0; - } - %% -+override sexy_tooltip_position_to_rect kwargs -+ -+/* Stock pygdk_rectangle_from_pyobject crashes with (at least) PyGTK 2.6.8 */ -+static gboolean -+_gimmie_pygdk_rectangle_from_pyobject(PyObject *object, GdkRectangle *rectangle) -+{ -+ g_return_val_if_fail(rectangle != NULL, FALSE); -+ -+ if (pyg_boxed_check(object, GDK_TYPE_RECTANGLE)) { -+ *rectangle = *pyg_boxed_get(object, GdkRectangle); -+ return TRUE; -+ } -+ if (PyArg_ParseTuple(object, "iiii", &rectangle->x, &rectangle->y, -+ &rectangle->width, &rectangle->height)) { -+ return TRUE; -+ } -+ PyErr_Clear(); -+ PyErr_SetString(PyExc_TypeError, "could not convert to GdkRectangle"); -+ return FALSE; -+} -+ -+static PyObject * -+_wrap_sexy_tooltip_position_to_rect(PyGObject *self, PyObject *args, PyObject *kwargs) -+{ -+ static char *kwlist[] = { "rect", "screen", NULL }; -+ PyObject *py_rect; -+ PyGObject *screen; -+ GdkRectangle rect = { 0, 0, 0, 0 }; -+ -+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "OO!:SexyTooltip.position_to_rect", kwlist, &py_rect, &PyGdkScreen_Type, &screen)) -+ return NULL; -+ -+ /* FIXME: Force the use of a newer version which does not crash */ -+ if (!_gimmie_pygdk_rectangle_from_pyobject(py_rect, &rect)) -+ return NULL; -+ -+ sexy_tooltip_position_to_rect(SEXY_TOOLTIP(self->obj), &rect, GDK_SCREEN(screen->obj)); -+ Py_INCREF(Py_None); -+ return Py_None; -+} -+%% - init - pyg_set_object_has_new_constructor(SEXY_TYPE_URL_LABEL); diff --git a/libraries/sexy-python/sexy-python.SlackBuild b/libraries/sexy-python/sexy-python.SlackBuild deleted file mode 100644 index 48fd61775e..0000000000 --- a/libraries/sexy-python/sexy-python.SlackBuild +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/sh - -# Slackware build script for sexy-python - -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=sexy-python -VERSION=${VERSION:-0.1.9} -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -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 {} \; - -patch -p1 < $CWD/fix-sexy_tooltip_position_to_rect.patch - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --disable-dependency-tracking \ - --build=$ARCH-slackware-linux - -make -make install-strip DESTDIR=$PKG - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS ChangeLog COPYING INSTALL NEWS README \ - $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/libraries/sexy-python/sexy-python.info b/libraries/sexy-python/sexy-python.info deleted file mode 100644 index 646906385c..0000000000 --- a/libraries/sexy-python/sexy-python.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="sexy-python" -VERSION="0.1.9" -HOMEPAGE="http://www.chipx86.com/w/index.php/Libsexy" -DOWNLOAD="http://releases.chipx86.com/libsexy/sexy-python/sexy-python-0.1.9.tar.gz" -MD5SUM="313f11e98555b0e9eea28219564e5063" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja[at]gmail[dot]com" -APPROVED="dsomero" diff --git a/libraries/sexy-python/slack-desc b/libraries/sexy-python/slack-desc deleted file mode 100644 index f53104545f..0000000000 --- a/libraries/sexy-python/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------------------------------------------------------| -sexy-python: sexy-python (Python bindings for libsexy) -sexy-python: -sexy-python: Sexy-python is a set of Python bindings around libsexy. -sexy-python: -sexy-python: Homepage: http://www.chipx86.com/w/index.php/Libsexy -sexy-python: -sexy-python: -sexy-python: -sexy-python: -sexy-python: -sexy-python: diff --git a/libraries/subvertpy/README b/libraries/subvertpy/README deleted file mode 100644 index 7414605457..0000000000 --- a/libraries/subvertpy/README +++ /dev/null @@ -1,3 +0,0 @@ -Alternative Python bindings for Subversion, split out from bzr-svn. -The goal is to have complete, portable and "Pythonic" Python -bindings. diff --git a/libraries/subvertpy/slack-desc b/libraries/subvertpy/slack-desc deleted file mode 100644 index 7f6139b6db..0000000000 --- a/libraries/subvertpy/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------------------------------------------------------| -subvertpy: subvertpy (Alternative Python bindings for Subversion) -subvertpy: -subvertpy: Alternative Python bindings for Subversion, split out from bzr-svn. -subvertpy: The goal is to have complete, portable and "Pythonic" Python -subvertpy: bindings. -subvertpy: -subvertpy: Homepage: http://samba.org/~jelmer/subvertpy/ -subvertpy: -subvertpy: -subvertpy: -subvertpy: diff --git a/libraries/subvertpy/subvertpy.SlackBuild b/libraries/subvertpy/subvertpy.SlackBuild deleted file mode 100644 index 2d6874be6c..0000000000 --- a/libraries/subvertpy/subvertpy.SlackBuild +++ /dev/null @@ -1,55 +0,0 @@ -#!/bin/sh - -# Slackware build script for subvertpy - -# Written by Mikko Värri (vmj@linuxbox.fi) -# Public domain. - -PRGNAM=subvertpy -VERSION=${VERSION:-0.7.5} -BUILD=${BUILD:-1} -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 -e - -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 . \ - \( -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 install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS COPYING INSTALL NEWS TODO examples $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/libraries/subvertpy/subvertpy.info b/libraries/subvertpy/subvertpy.info deleted file mode 100644 index 17f39a61e1..0000000000 --- a/libraries/subvertpy/subvertpy.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="subvertpy" -VERSION="0.7.5" -HOMEPAGE="http://samba.org/~jelmer/subvertpy/" -DOWNLOAD="http://samba.org/~jelmer/subvertpy/subvertpy-0.7.5.tar.gz" -MD5SUM="2e84979c7380a396d6beec278f2d6104" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Mikko Värri" -EMAIL="vmj@linuxbox.fi" -APPROVED="dsomero,Niels Horn" diff --git a/libraries/tagpy/README b/libraries/tagpy/README deleted file mode 100644 index 1561d0c25e..0000000000 --- a/libraries/tagpy/README +++ /dev/null @@ -1,5 +0,0 @@ -TagPy is a set of Python bindings for Scott Wheeler's TagLib. It -builds upon Boost.Python, a wrapper generation library which is -part of the Boost set of C++ libraries. - -pysetuptools (available at SBo) is required to build TagPy. diff --git a/libraries/tagpy/slack-desc b/libraries/tagpy/slack-desc deleted file mode 100644 index d4489ebfba..0000000000 --- a/libraries/tagpy/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------------------------------------------------------| -tagpy: TagPy (Python Bindings for TagLib) -tagpy: -tagpy: TagPy is a set of Python bindings for Scott Wheeler's TagLib. It -tagpy: builds upon Boost.Python, a wrapper generation library which is -tagpy: part of the Boost set of C++ libraries. -tagpy: -tagpy: Homepage: http://mathema.tician.de/software/tagpy -tagpy: -tagpy: -tagpy: -tagpy: diff --git a/libraries/tagpy/tagpy.SlackBuild b/libraries/tagpy/tagpy.SlackBuild deleted file mode 100644 index 0ca35aa015..0000000000 --- a/libraries/tagpy/tagpy.SlackBuild +++ /dev/null @@ -1,93 +0,0 @@ -#!/bin/sh - -# Slackware build script for TagPy - -# Copyright 2008 Frank Caraballo <fecaraballo{at}gmail{dot}com> -# 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=tagpy -VERSION=${VERSION:-0.94.5} -BUILD=${BUILD:-1} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -fi - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP || exit 1 -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.?z* || exit 1 -cd $PRGNAM-$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 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --boost-inc-dir=/usr/include/boost \ - --boost-lib-dir=/usr/lib \ - --boost-python-libname=boost_python \ - --taglib-inc-dir=/usr/include/taglib \ - || exit 1 - -python setup.py build || exit 1 -python setup.py install --root $PKG || exit 1 - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a LICENSE PKG-INFO README* \ - $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/libraries/tagpy/tagpy.info b/libraries/tagpy/tagpy.info deleted file mode 100644 index c813a1e5fd..0000000000 --- a/libraries/tagpy/tagpy.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="tagpy" -VERSION="0.94.5" -HOMEPAGE="http://mathema.tician.de/software/tagpy" -DOWNLOAD="http://pypi.python.org/packages/source/t/tagpy/tagpy-0.94.5.tar.gz" -MD5SUM="84d7862786ad7bab91d0d45ded15a875" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Frank Caraballo" -EMAIL="fecaraballo{at}gmail{dot}com" -APPROVED="dsomero" |