wok-next view feedparser/receipt @ rev 21338

OpenSSL 1.0.2t -> 1.0.2u: overflow bug CVE-2019-1551
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Dec 21 08:55:46 2019 +0000 (2019-12-21)
parents 6befec62b46c
children 77461670a2c6
line source
1 # SliTaz package receipt.
3 PACKAGE="feedparser"
4 VERSION="5.1.3"
5 CATEGORY="misc"
6 SHORT_DESC="Parse RSS and Atom feeds in Python"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://github.com/kurtmckee/feedparser"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://feedparser.googlecode.com/files/$TARBALL"
14 BUILD_DEPENDS="libxml2-dev python-dev"
16 compile_rules() {
17 python -B setup.py install --root=$install
18 }
20 genpkg_rules() {
21 mkdir -p $fs/usr/lib
22 cp -a $install/usr/lib/python* $fs/usr/lib
23 DEPENDS="libxml2 python"
24 }