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:
Christoph Willing 2023-12-30 19:26:46 +10:00 committed by Willy Sudiarto Raharjo
parent cbc5ad6009
commit 4878e16a1d
No known key found for this signature in database
GPG key ID: 3F617144D7238786
3 changed files with 7 additions and 19 deletions

View file

@ -25,7 +25,7 @@
cd $(dirname $0) ; CWD=$(pwd) cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=PyGreSQL PRGNAM=PyGreSQL
VERSION=${VERSION:-5.2.5} VERSION=${VERSION:-6.0}
BUILD=${BUILD:-1} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz} PKGTYPE=${PKGTYPE:-tgz}
@ -47,20 +47,6 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp} 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 set -ev
rm -rf $PKG rm -rf $PKG
@ -77,7 +63,6 @@ find -L . \
-exec chmod 644 {} \; -exec chmod 644 {} \;
# Build & install # Build & install
python2 setup.py install --root=$PKG
python3 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 \ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \

View file

@ -1,8 +1,8 @@
PRGNAM="PyGreSQL" PRGNAM="PyGreSQL"
VERSION="5.2.5" VERSION="6.0"
HOMEPAGE="http://www.pygresql.org" HOMEPAGE="http://www.pygresql.org"
DOWNLOAD="https://github.com/PyGreSQL/PyGreSQL/archive/5.2.5/PyGreSQL-5.2.5.tar.gz" DOWNLOAD="https://github.com/PyGreSQL/PyGreSQL/archive/6.0/PyGreSQL-6.0.tar.gz"
MD5SUM="60ceff99d8614be345f345159bdaceb5" MD5SUM="5506a20d736b9fe014a790826bdb2090"
DOWNLOAD_x86_64="" DOWNLOAD_x86_64=""
MD5SUM_x86_64="" MD5SUM_x86_64=""
REQUIRES="postgresql" REQUIRES="postgresql"

View file

@ -1,3 +1,6 @@
PyGreSQL is an open-source Python module that interfaces to a PyGreSQL is an open-source Python module that interfaces to a
PostgreSQL database. It embeds the PostgreSQL query library to allow PostgreSQL database. It embeds the PostgreSQL query library to allow
easy use of the powerful PostgreSQL features from a Python script. 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.