mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
python/PyGreSQL: Updated for version 6.0
Signed-off-by: Christoph Willing <chris.willing@linux.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
cbc5ad6009
commit
4878e16a1d
3 changed files with 7 additions and 19 deletions
|
@ -25,7 +25,7 @@
|
|||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=PyGreSQL
|
||||
VERSION=${VERSION:-5.2.5}
|
||||
VERSION=${VERSION:-6.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
@ -47,20 +47,6 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -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 -ev
|
||||
|
||||
rm -rf $PKG
|
||||
|
@ -77,7 +63,6 @@ find -L . \
|
|||
-exec chmod 644 {} \;
|
||||
|
||||
# Build & install
|
||||
python2 setup.py install --root=$PKG
|
||||
python3 setup.py install --root=$PKG
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="PyGreSQL"
|
||||
VERSION="5.2.5"
|
||||
VERSION="6.0"
|
||||
HOMEPAGE="http://www.pygresql.org"
|
||||
DOWNLOAD="https://github.com/PyGreSQL/PyGreSQL/archive/5.2.5/PyGreSQL-5.2.5.tar.gz"
|
||||
MD5SUM="60ceff99d8614be345f345159bdaceb5"
|
||||
DOWNLOAD="https://github.com/PyGreSQL/PyGreSQL/archive/6.0/PyGreSQL-6.0.tar.gz"
|
||||
MD5SUM="5506a20d736b9fe014a790826bdb2090"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="postgresql"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
PyGreSQL is an open-source 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.
|
||||
|
||||
For version 6.0, only Python versions 3.7 to 3.12 and
|
||||
PostgreSQL versions 10 to 16 on the server are supported.
|
||||
|
|
Loading…
Reference in a new issue