Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Jan 2017 11:01:31 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r431942 - in head/devel/py-flake8: . files
Message-ID:  <201701201101.v0KB1VAo083630@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Fri Jan 20 11:01:30 2017
New Revision: 431942
URL: https://svnweb.freebsd.org/changeset/ports/431942

Log:
  - Relax dependency version requirement for pyflakes, fixing the runtime failure:
  
  The 'pyflakes<1.1,>=0.8.1' distribution was not found and is required by flake8
  
  - Update WWW
  
  PR:		213960
  Submitted by:	pete@nomadlogic.org
  Approved by:	maintainer timeout (wg, 5 weeks)
  MFH:		2017Q1

Added:
  head/devel/py-flake8/files/
  head/devel/py-flake8/files/patch-flake8.egg-info_requires.txt   (contents, props changed)
  head/devel/py-flake8/files/patch-setup.py   (contents, props changed)
Modified:
  head/devel/py-flake8/Makefile
  head/devel/py-flake8/pkg-descr

Modified: head/devel/py-flake8/Makefile
==============================================================================
--- head/devel/py-flake8/Makefile	Fri Jan 20 09:40:39 2017	(r431941)
+++ head/devel/py-flake8/Makefile	Fri Jan 20 11:01:30 2017	(r431942)
@@ -3,6 +3,7 @@
 
 PORTNAME=	flake8
 PORTVERSION=	2.5.4
+PORTREVISION=	1
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}

Added: head/devel/py-flake8/files/patch-flake8.egg-info_requires.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-flake8/files/patch-flake8.egg-info_requires.txt	Fri Jan 20 11:01:30 2017	(r431942)
@@ -0,0 +1,7 @@
+--- flake8.egg-info/requires.txt.orig	2016-02-11 17:54:19 UTC
++++ flake8.egg-info/requires.txt
+@@ -1,3 +1,3 @@
+-pyflakes >= 0.8.1, < 1.1
++pyflakes >= 0.8.1
+ pep8 >= 1.5.7, != 1.6.0, != 1.6.1, != 1.6.2
+ mccabe >= 0.2.1, < 0.5

Added: head/devel/py-flake8/files/patch-setup.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-flake8/files/patch-setup.py	Fri Jan 20 11:01:30 2017	(r431942)
@@ -0,0 +1,11 @@
+--- setup.py.orig	2016-02-10 22:07:13 UTC
++++ setup.py
+@@ -49,7 +49,7 @@ setup(
+     url="https://gitlab.com/pycqa/flake8",
+     packages=["flake8", "flake8.tests"],
+     install_requires=[
+-        "pyflakes >= 0.8.1, < 1.1",
++        "pyflakes >= 0.8.1",
+         "pep8 >= 1.5.7, != 1.6.0, != 1.6.1, != 1.6.2",
+         "mccabe >= 0.2.1, < 0.5",
+     ],

Modified: head/devel/py-flake8/pkg-descr
==============================================================================
--- head/devel/py-flake8/pkg-descr	Fri Jan 20 09:40:39 2017	(r431941)
+++ head/devel/py-flake8/pkg-descr	Fri Jan 20 11:01:30 2017	(r431942)
@@ -8,4 +8,4 @@ Flake8 runs all tools by launching the s
 and PyFlakes extended options and just uses defaults. It displays the warnings
 in a per-file, merged output.
 
-WWW: https://bitbucket.org/tarek/flake8
+WWW: https://gitlab.com/pycqa/flake8



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701201101.v0KB1VAo083630>