# HG changeset patch # User Hans-G?nter Theisgen # Date 1656684809 -3600 # Node ID d32d64bc318e140fb3621e2df92e8b9be6028cb3 # Parent 97eb61f0546019dafd24b438ec56ed9a4b0c5e60 updated python-click (7.1.1 -> 7.1.2) diff -r 97eb61f05460 -r d32d64bc318e python-click/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-click/description.txt Fri Jul 01 15:13:29 2022 +0100 @@ -0,0 +1,14 @@ +Click is a Python package for creating beautiful command line interfaces +in a composable way with as little code as necessary. +It's the "Command Line Interface Creation Kit". +It's highly configurable but comes with sensible defaults out of the box. + +It aims to make the process of writing command line tools quick and fun +while also preventing any frustration caused by the inability to implement +an intended CLI API. + +Click in three points: + +- Arbitrary nesting of commands +- Automatic help page generation +- Supports lazy loading of subcommands at runtime diff -r 97eb61f05460 -r d32d64bc318e python-click/receipt --- a/python-click/receipt Fri Jul 01 14:57:06 2022 +0100 +++ b/python-click/receipt Fri Jul 01 15:13:29 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="python-click" -VERSION="7.1.1" +VERSION="7.1.2" CATEGORY="development" SHORT_DESC="Composable command line interface toolkit." MAINTAINER="pascal.bellard@slitaz.org" @@ -10,7 +10,7 @@ SOURCE="click" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://files.pythonhosted.org/packages/source/c/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python python-setuptools" @@ -23,11 +23,14 @@ # 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 lib }