python/et_xmlfile: Update for 1.1.0

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Isaac Yu 2022-02-13 15:20:32 -08:00 committed by Willy Sudiarto Raharjo
parent 85dd12d322
commit 077c4d91b3
No known key found for this signature in database
GPG key ID: 3F617144D7238786
2 changed files with 8 additions and 8 deletions

View file

@ -1,8 +1,8 @@
#!/bin/bash
#!/bin/sh
# Slackware build script for et_xmlfile
# Copyright 2020 Isaac Yu <isaacyu1@isaacyu1.com>
# Copyright 2020-2022 Isaac Yu <isaacyu1@isaacyu1.com>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -25,7 +25,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=et_xmlfile
VERSION=${VERSION:-1.0.1}
VERSION=${VERSION:-1.1.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@ -65,7 +65,7 @@ set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-VERSION
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
@ -76,7 +76,7 @@ find -L . \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
# Python 2 and Python 3 support
python2 setup.py install --root=$PKG
python 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 \

View file

@ -1,8 +1,8 @@
PRGNAM="et_xmlfile"
VERSION="1.0.1"
VERSION="1.1.0"
HOMEPAGE="https://et-xmlfile.readthedocs.io/en/latest/"
DOWNLOAD="https://pypi.python.org/packages/source/e/et_xmlfile/et_xmlfile-1.0.1.tar.gz"
MD5SUM="f47940fd9d556375420b2e276476cfaf"
DOWNLOAD="https://pypi.python.org/packages/source/e/et_xmlfile/et_xmlfile-1.1.0.tar.gz"
MD5SUM="8fbae9b969eac28c02f5073febefc445"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="lxml"