Index: Makefile =================================================================== --- Makefile +++ Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pip -PORTVERSION= 9.0.3 +PORTVERSION= 10.0.1 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -37,8 +37,6 @@ USE_GITHUB= yes USE_PYTHON= autoplist concurrent distutils -SHEBANG_FILES= pip/__init__.py - GH_ACCOUNT= pypa NO_ARCH= yes Index: distinfo =================================================================== --- distinfo +++ distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1521810422 -SHA256 (pypa-pip-9.0.3_GH0.tar.gz) = a582a1b8649828b57c23788879bd5263b9ff4f12083c52fb73ff20ca3531056d -SIZE (pypa-pip-9.0.3_GH0.tar.gz) = 6249079 +TIMESTAMP = 1526330994 +SHA256 (pypa-pip-10.0.1_GH0.tar.gz) = 2c39367b8529f50746b399d7e4563df48a148b8558ae6f7236b51c155359365a +SIZE (pypa-pip-10.0.1_GH0.tar.gz) = 6180298 Index: files/patch-setup.cfg =================================================================== --- files/patch-setup.cfg +++ files/patch-setup.cfg @@ -1,9 +1,10 @@ ---- setup.cfg.orig 2015-08-22 22:46:55 UTC +--- setup.cfg.orig 2018-04-19 18:50:10 UTC +++ setup.cfg -@@ -1,5 +1,6 @@ - [pytest] - addopts = --ignore pip/_vendor --ignore tests/tests_cache +@@ -10,6 +10,7 @@ known_first_party = + tests + default_section = THIRDPARTY + include_trailing_comma = true +norecursedirs = .tox build dist node_modules *.egg-info - [wheel] - universal=1 + [flake8] + # Ignoring unused imports since mypy would warn of that. Index: files/patch-setup.py =================================================================== --- files/patch-setup.py +++ files/patch-setup.py @@ -1,11 +1,11 @@ ---- setup.py.orig 2015-11-14 14:08:36 UTC +--- setup.py.orig 2018-04-19 18:50:10 UTC +++ setup.py -@@ -78,8 +78,6 @@ setup( +@@ -77,8 +77,6 @@ setup( entry_points={ "console_scripts": [ - "pip=pip:main", -- "pip%s=pip:main" % sys.version[:1], -- "pip%s=pip:main" % sys.version[:3], + "pip=pip._internal:main", +- "pip%s=pip._internal:main" % sys.version[:1], +- "pip%s=pip._internal:main" % sys.version[:3], ], }, tests_require=tests_require,