wok diff python-html2text/receipt @ rev 25452
BootProg: typos
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Sep 15 10:06:54 2022 +0000 (2022-09-15) |
parents | 5ea0ce1cecc0 |
children | 0262035dc1e7 |
line diff
1.1 --- a/python-html2text/receipt Tue Jun 08 08:46:05 2021 +0000 1.2 +++ b/python-html2text/receipt Thu Sep 15 10:06:54 2022 +0000 1.3 @@ -1,15 +1,17 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="python-html2text" 1.7 -VERSION="2017.10.4" 1.8 -SOURCE="html2text" 1.9 +VERSION="2019.8.11" 1.10 CATEGORY="network" 1.11 SHORT_DESC="Convert HTML into clean, easy-to-read markdown-formatted text." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="GPL3" 1.14 -TARBALL="${SOURCE}-${VERSION}.tar.gz" 1.15 -WEB_SITE="http://alir3z4.github.io/html2text" 1.16 -WGET_URL="https://github.com/Alir3z4/html2text/archive/$VERSION.tar.gz" 1.17 +WEB_SITE="https://pypi.org/project/html2text/" 1.18 +REPOLOGY="python:html2text" 1.19 + 1.20 +SOURCE="html2text" 1.21 +TARBALL="$SOURCE-$VERSION.tar.gz" 1.22 +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" 1.23 1.24 DEPENDS="python" 1.25 BUILD_DEPENDS="python-dev python-distribute python-setuptools" 1.26 @@ -29,9 +31,13 @@ 1.27 # Rules to gen a SliTaz package suitable for Tazpkg. 1.28 genpkg_rules() 1.29 { 1.30 - mkdir -p $fs/usr $install/usr/share 1.31 - cp -a $install/usr/lib $fs/usr 1.32 - cp -a $install/usr/bin $fs/usr 1.33 - cp -a $src/docs $install/usr/share/doc 1.34 - cp -a $src/COP* $src/RE* $install/usr/share/doc 1.35 + mkdir -p $fs/usr 1.36 + mkdir -p $install/usr/share 1.37 + 1.38 + cp -a $install/usr/lib $fs/usr 1.39 + cp -a $install/usr/bin $fs/usr 1.40 + # 2019.8.11 not available 1.41 +# cp -a $src/docs $install/usr/share/doc 1.42 + cp -a $src/COP* $install/usr/share/doc 1.43 + cp -a $src/RE* $install/usr/share/doc 1.44 }