wok-next rev 21646
updated feedparser (5.1.3 -> 5.2.1)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Jun 26 16:55:26 2020 +0100 (2020-06-26) |
parents | d08555dee273 |
children | b813d96bb65f |
files | feedparser/receipt |
line diff
1.1 --- a/feedparser/receipt Fri Jun 26 16:45:54 2020 +0100 1.2 +++ b/feedparser/receipt Fri Jun 26 16:55:26 2020 +0100 1.3 @@ -1,24 +1,27 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="feedparser" 1.7 -VERSION="5.1.3" 1.8 +VERSION="5.2.1" 1.9 CATEGORY="misc" 1.10 SHORT_DESC="Parse RSS and Atom feeds in Python" 1.11 -MAINTAINER="devel@slitaz.org" 1.12 +MAINTAINER="maintainer@slitaz.org" 1.13 LICENSE="MIT" 1.14 WEB_SITE="https://github.com/kurtmckee/feedparser" 1.15 1.16 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.17 -WGET_URL="http://feedparser.googlecode.com/files/$TARBALL" 1.18 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.19 +WGET_URL="$WEB_SITE/archive/$VERSION/$TARBALL" 1.20 1.21 BUILD_DEPENDS="libxml2-dev python-dev" 1.22 1.23 -compile_rules() { 1.24 +compile_rules() 1.25 +{ 1.26 python -B setup.py install --root=$install 1.27 } 1.28 1.29 -genpkg_rules() { 1.30 +genpkg_rules() 1.31 +{ 1.32 mkdir -p $fs/usr/lib 1.33 - cp -a $install/usr/lib/python* $fs/usr/lib 1.34 + cp -a $install/usr/lib/python* $fs/usr/lib 1.35 + 1.36 DEPENDS="libxml2 python" 1.37 }