wok-current annotate python-paste/receipt @ rev 25659
Update expat CVE-2023-52425,CVE-2023-52426, patch libxml2 CVE-2024-25062
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Sun Feb 18 10:03:28 2024 +0000 (10 months ago) |
parents | 076f424196b2 |
children |
rev | line source |
---|---|
pankso@3379 | 1 # SliTaz package receipt. |
pankso@3379 | 2 |
pankso@3379 | 3 PACKAGE="python-paste" |
Hans-G?nter@25213 | 4 VERSION="3.5.0" |
pankso@3379 | 5 CATEGORY="development" |
Hans-G?nter@23523 | 6 TAGS="python" |
pankso@3379 | 7 SHORT_DESC="Tools for using a Web Server Gateway Interface stack." |
pankso@3379 | 8 MAINTAINER="pankso@slitaz.org" |
pascal@15379 | 9 LICENSE="MIT" |
Hans-G?nter@23523 | 10 WEB_SITE="https://pypi.org/project/Paste/" |
Hans-G?nter@25213 | 11 REPOLOGY="python:paste" |
Hans-G?nter@23523 | 12 |
pankso@3379 | 13 SOURCE="Paste" |
pankso@3379 | 14 TARBALL="$SOURCE-$VERSION.tar.gz" |
Hans-G?nter@23523 | 15 WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" |
pascal@15379 | 16 |
pankso@3379 | 17 DEPENDS="python" |
pascal@21582 | 18 BUILD_DEPENDS="python python-dev python-setuptools" |
pankso@3379 | 19 |
Hans-G?nter@23523 | 20 HOST_ARCH="i486 arm" |
Hans-G?nter@23523 | 21 |
pascal@24383 | 22 # What is the latest version available today? |
pascal@24288 | 23 current_version() |
pascal@24288 | 24 { |
pascal@24383 | 25 wget -O - $WEB_SITE 2>/dev/null | sed "/$SOURCE [0-9]/!d;s|.*$SOURCE ||;s|<.*||" |
pascal@24288 | 26 } |
pascal@24288 | 27 |
pankso@3379 | 28 # Rules to configure and make the package. |
pankso@3379 | 29 compile_rules() |
pankso@3379 | 30 { |
pascal@15379 | 31 python setup.py install --root=$DESTDIR |
pankso@3379 | 32 } |
pankso@3379 | 33 |
pankso@3379 | 34 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@3379 | 35 genpkg_rules() |
pankso@3379 | 36 { |
Hans-G?nter@23523 | 37 cp -a $install/usr $fs |
pankso@3379 | 38 } |