# HG changeset patch # User Hans-G?nter Theisgen # Date 1657726428 -3600 # Node ID eec5fc514f23e1703ec2cce2d558b980a041d458 # Parent f5163fecf441f602ce4cdd18624f82f2288f07ba updated python-pyflakes (2.1.1 -> 2.4.0) diff -r f5163fecf441 -r eec5fc514f23 python-pyflakes/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-pyflakes/description.txt Wed Jul 13 16:33:48 2022 +0100 @@ -0,0 +1,5 @@ +A simple program which checks Python source files for errors. + +Pyflakes analyses programs and detects various errors. +It works by parsing the source file, not importing it, so it is safe +to use on modules with side effects. It's also much faster. diff -r f5163fecf441 -r eec5fc514f23 python-pyflakes/receipt --- a/python-pyflakes/receipt Wed Jul 13 16:29:49 2022 +0100 +++ b/python-pyflakes/receipt Wed Jul 13 16:33:48 2022 +0100 @@ -1,16 +1,17 @@ # SliTaz package receipt. PACKAGE="python-pyflakes" -VERSION="2.1.1" +VERSION="2.4.0" CATEGORY="development" SHORT_DESC="A simple program which checks Python source files for errors." MAINTAINER="paul@slitaz.org" LICENSE="MIT" -WEB_SITE="https://github.com/pyflakes/pyflakes" +WEB_SITE="https://pypi.org/project/pyflakes/" +REPOLOGY="python:pyflakes" SOURCE="pyflakes" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://github.com/PyCQA/pyflakes/archive/$VERSION.tar.gz" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python python-dev python-setuptools"