# HG changeset patch # User Hans-G?nter Theisgen # Date 1656692219 -3600 # Node ID a44b366afa2561a51c4f76b2d7d350d23501a444 # Parent d56de587d8e8d7cfd214749203ae4ca8955600e5 updated python-flask (1.1.2 -> 1.1.4) diff -r d56de587d8e8 -r a44b366afa25 python-flask/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-flask/description.txt Fri Jul 01 17:16:59 2022 +0100 @@ -0,0 +1,10 @@ +Flask is a lightweight WSGI web application framework. +It is designed to make getting started quick and easy, with the ability +to scale up to complex applications. +It began as a simple wrapper around Werkzeug and Jinja and has become +one of the most popular Python web application frameworks. + +Flask offers suggestions, but doesn't enforce any dependencies or project +layout. It is up to the developer to choose the tools and libraries they +want to use. There are many extensions provided by the community that make +adding new functionality easy. diff -r d56de587d8e8 -r a44b366afa25 python-flask/receipt --- a/python-flask/receipt Fri Jul 01 17:05:43 2022 +0100 +++ b/python-flask/receipt Fri Jul 01 17:16:59 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="python-flask" -VERSION="1.1.2" +VERSION="1.1.4" # last version with support for Python 2 CATEGORY="development" SHORT_DESC="A simple framework for building complex web applications." MAINTAINER="pascal.bellard@slitaz.org" @@ -10,7 +10,7 @@ SOURCE="Flask" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://files.pythonhosted.org/packages/source/F/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python-click python-itsdangerous" BUILD_DEPENDS="python python-setuptools" @@ -25,11 +25,15 @@ # Rules to configure and make the package. compile_rules() { - python setup.py install --prefix=/usr --root=$DESTDIR + python setup.py \ + install \ + --prefix=/usr \ + --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/usr $fs + cook_copy_folders bin + cook_copy_folders lib }