diff options
-rw-r--r-- | libraries/bsddb3/README | 12 | ||||
-rw-r--r-- | libraries/bsddb3/bsddb3.SlackBuild | 53 | ||||
-rw-r--r-- | libraries/bsddb3/bsddb3.info | 10 | ||||
-rw-r--r-- | libraries/bsddb3/slack-desc | 19 |
4 files changed, 0 insertions, 94 deletions
diff --git a/libraries/bsddb3/README b/libraries/bsddb3/README deleted file mode 100644 index 92fd8d6996ed..000000000000 --- a/libraries/bsddb3/README +++ /dev/null @@ -1,12 +0,0 @@ -Python interface for Berkeley DB - -This module provides a nearly complete wrapping of the -Oracle/Sleepycat C API for the Database Environment, Database, -Cursor, Sequence and Transaction objects, and each of these is -exposed as a Python type in the bsddb3.db module. The database -objects can use various access methods: btree, hash, recno, and -queue. Complete support of Berkeley DB distributed transactions. -Complete support for Berkeley DB Replication Manager. Complete -support for Berkeley DB Base Replication. Support for RPC. - -pysetuptools is an optional dependency. diff --git a/libraries/bsddb3/bsddb3.SlackBuild b/libraries/bsddb3/bsddb3.SlackBuild deleted file mode 100644 index 9eb44629eadf..000000000000 --- a/libraries/bsddb3/bsddb3.SlackBuild +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh -# Slackware build script for bsddb3 -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=bsddb3 -VERSION=${VERSION:-4.7.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 ChangeLog *.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/bsddb3/bsddb3.info b/libraries/bsddb3/bsddb3.info deleted file mode 100644 index c3b5c6ed759a..000000000000 --- a/libraries/bsddb3/bsddb3.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="bsddb3" -VERSION="4.7.6" -HOMEPAGE="http://www.jcea.es/programacion/pybsddb.htm" -DOWNLOAD="http://pypi.python.org/packages/source/b/bsddb3/bsddb3-4.7.6.tar.gz" -MD5SUM="53c06e0247b2aa4d8523d52e53378cb5" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja[at]gmail[dot]com" diff --git a/libraries/bsddb3/slack-desc b/libraries/bsddb3/slack-desc deleted file mode 100644 index 9b3efc3db967..000000000000 --- a/libraries/bsddb3/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------------------------------------------------------| -bsddb3: bsddb3 (Python interface for Berkeley DB) -bsddb3: -bsddb3: This module provides a nearly complete wrapping of the -bsddb3: Oracle/Sleepycat C API for the Database Environment, Database, Cursor, -bsddb3: Sequence and Transaction objects, and each of these is exposed as a -bsddb3: Python type in the bsddb3.db module. The database objects can use -bsddb3: various access methods: btree, hash, recno, and queue. Complete -bsddb3: support of Berkeley DB distributed transactions. -bsddb3: -bsddb3: Homepage: http://www.jcea.es/programacion/pybsddb.htm -bsddb3: |