wok rev 25225
updated python-pyflakes (2.1.1 -> 2.4.0)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Jul 13 16:33:48 2022 +0100 (2022-07-13) |
parents | f5163fecf441 |
children | 47003b5bbbaf |
files | python-pyflakes/description.txt python-pyflakes/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/python-pyflakes/description.txt Wed Jul 13 16:33:48 2022 +0100 1.3 @@ -0,0 +1,5 @@ 1.4 +A simple program which checks Python source files for errors. 1.5 + 1.6 +Pyflakes analyses programs and detects various errors. 1.7 +It works by parsing the source file, not importing it, so it is safe 1.8 +to use on modules with side effects. It's also much faster.
2.1 --- a/python-pyflakes/receipt Wed Jul 13 16:29:49 2022 +0100 2.2 +++ b/python-pyflakes/receipt Wed Jul 13 16:33:48 2022 +0100 2.3 @@ -1,16 +1,17 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="python-pyflakes" 2.7 -VERSION="2.1.1" 2.8 +VERSION="2.4.0" 2.9 CATEGORY="development" 2.10 SHORT_DESC="A simple program which checks Python source files for errors." 2.11 MAINTAINER="paul@slitaz.org" 2.12 LICENSE="MIT" 2.13 -WEB_SITE="https://github.com/pyflakes/pyflakes" 2.14 +WEB_SITE="https://pypi.org/project/pyflakes/" 2.15 +REPOLOGY="python:pyflakes" 2.16 2.17 SOURCE="pyflakes" 2.18 TARBALL="$SOURCE-$VERSION.tar.gz" 2.19 -WGET_URL="https://github.com/PyCQA/pyflakes/archive/$VERSION.tar.gz" 2.20 +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" 2.21 2.22 DEPENDS="python" 2.23 BUILD_DEPENDS="python python-dev python-setuptools"