system/pygresql: Removed from 13.0 repository
This commit is contained in:
parent
a49c966ac7
commit
2b1f2b6f72
|
@ -1,12 +0,0 @@
|
|||
PyGreSQL is a PostgreSQL access for Python.
|
||||
|
||||
PyGreSQL is a Python module that interfaces to a PostgreSQL database. It
|
||||
embeds the PostgreSQL query library to allow easy use of the powerful
|
||||
PostgreSQL features from a Python script.
|
||||
|
||||
PyGreSQL provides two different APIs, the "classic" interface provided by the
|
||||
pg module and the newer DB-API 2.0 compliant interface provided by the pgdb
|
||||
module.
|
||||
|
||||
This SlackBuild requires that PostgreSQL is installed to build, and to be
|
||||
useful. A PostgreSQL SlackBuild is available from SlackBuilds.org.
|
|
@ -1,52 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for pygresql
|
||||
# Written by Vasilis Papavasileiou <el03020 at mail dot ntua dot gr>
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=pygresql
|
||||
ORIG_PRGNAM=PyGreSQL
|
||||
VERSION=3.8.1
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $ORIG_PRGNAM-$VERSION
|
||||
tar -xzvf $CWD/$ORIG_PRGNAM.tgz
|
||||
cd $ORIG_PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
# there is a module in C
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
python setup.py build || exit 1
|
||||
python setup.py install --root $PKG || exit 1
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
mkdir $PKG/usr/doc -p
|
||||
mv docs $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
mv tutorial $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
|
@ -1,8 +0,0 @@
|
|||
PRGNAM="pygresql"
|
||||
VERSION="3.8.1"
|
||||
HOMEPAGE="http://www.pygresql.org"
|
||||
DOWNLOAD="ftp://ftp.pygresql.org/pub/distrib/PyGreSQL.tgz"
|
||||
MD5SUM="5575979dac93c9c5795d7693a8f91c86"
|
||||
MAINTAINER="Vasilis Papavasileiou"
|
||||
EMAIL="el03020@mail.ntua.gr"
|
||||
APPROVED="BP{k}"
|
|
@ -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------------------------------------------------------|
|
||||
pygresql: pygresql (PostgreSQL access for Python)
|
||||
pygresql:
|
||||
pygresql: PyGreSQL is a Python module that interfaces to a PostgreSQL
|
||||
pygresql: database. It embeds the PostgreSQL query library to allow easy use
|
||||
pygresql: of the powerful PostgreSQL features from a Python script.
|
||||
pygresql:
|
||||
pygresql: Homepage: http://www.pygresql.org
|
||||
pygresql:
|
||||
pygresql:
|
||||
pygresql:
|
||||
pygresql:
|
Loading…
Reference in New Issue