python/feedparser: Updated for version 6.0.11

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 08:25:39 +10:00 committed by Willy Sudiarto Raharjo
parent c23c4a4557
commit 0c1d6c3720
No known key found for this signature in database
GPG Key ID: 3F617144D7238786
3 changed files with 5 additions and 26 deletions

View File

@ -1,9 +1,2 @@
feedparser is a Python utility library to parse RSS and Atom feeds.
Since update to version 6.0.8, along with sgmllib being dropped from
python3 it is now necessary to manually add necessary sgml support by
running (as root):
python3 -m pip install sgmllib3k
This will enable 'import feedparser' to work as expected with python3
until a SlackBuild for sgmllib3k is able to be included at SBo.

View File

@ -2,7 +2,7 @@
# Slackware build script for feedparser
# Modified by Luis Henrique <lmello.009@gmail.com>
# Maintained 2014-2022 by Christoph Willing <chris.willing@linux.com>
# Maintained 2014-2023 by Christoph Willing <chris.willing@linux.com>
# Copyright 2008-2009 Chess Griffin <chess@chessgriffin.com>
# All rights reserved.
@ -27,7 +27,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=feedparser
VERSION=${VERSION:-6.0.10}
VERSION=${VERSION:-6.0.11}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@ -51,20 +51,6 @@ OUTPUT=${OUTPUT:-/tmp}
DOCS="LICENSE NEWS README.rst"
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 -e
rm -rf $PKG

View File

@ -1,8 +1,8 @@
PRGNAM="feedparser"
VERSION="6.0.10"
VERSION="6.0.11"
HOMEPAGE="https://github.com/kurtmckee/feedparser"
DOWNLOAD="https://github.com/kurtmckee/feedparser/archive/6.0.10/feedparser-6.0.10.tar.gz"
MD5SUM="d69e59156dfe7b64842befdc1c621a2d"
DOWNLOAD="https://github.com/kurtmckee/feedparser/archive/6.0.11/feedparser-6.0.11.tar.gz"
MD5SUM="bbb8814240ef30c930ad8ea8eeb8e80b"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="python3-sgmllib3k"