svn commit: r350751 - head/devel/py-pip
Nicola Vitale
nivit at FreeBSD.org
Thu Apr 10 00:34:19 UTC 2014
Author: nivit
Date: Thu Apr 10 00:34:17 2014
New Revision: 350751
URL: http://svnweb.freebsd.org/changeset/ports/350751
QAT: https://qat.redports.org/buildarchive/r350751/
Log:
- Update to 1.5.4
- Use GitHub as download site, so we can build docs
- Build docs as HTML format with Sphinx
- Add a regression-test target (not active at the moment, because
some tests fail)
- Update pkg-descr
Release Notes: http://www.pip-installer.org/en/latest/news.html
Modified:
head/devel/py-pip/Makefile
head/devel/py-pip/distinfo
head/devel/py-pip/pkg-descr
head/devel/py-pip/pkg-plist
Modified: head/devel/py-pip/Makefile
==============================================================================
--- head/devel/py-pip/Makefile Thu Apr 10 00:04:16 2014 (r350750)
+++ head/devel/py-pip/Makefile Thu Apr 10 00:34:17 2014 (r350751)
@@ -2,9 +2,8 @@
# $FreeBSD$
PORTNAME= pip
-PORTVERSION= 1.5.2
+PORTVERSION= 1.5.4
CATEGORIES= devel python
-MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= nivit at FreeBSD.org
@@ -12,24 +11,47 @@ COMMENT= Tool for installing and managin
LICENSE= MIT
+GH_ACCOUNT= pypa
+GH_COMMIT= e3f9e25
+
OPTIONS_DEFINE= DOCS
-USES= shebangfix
-USE_PYTHON= yes
+USES= shebangfix
+USE_GITHUB= yes
+USE_PYTHON= yes
USE_PYDISTUTILS= yes
PYDISTUTILS_AUTOPLIST= yes
+# This port installs the following file in shared dirs
+# PLIST_FILES= bin/pip
+
SHEBANG_FILES= pip/__init__.py
-python_OLD_CMD= /usr/bin/env python
+python_OLD_CMD= ${SETENV} python
python_CMD= ${PYTHON_CMD}
+.if 0
+TEST_DEPENDS= tox:${PORTSDIR}/devel/py-tox
+TOX_CMD= ${LOCALBASE}/bin/tox
+.endif
+
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
+BUILD_DEPENDS+= sphinx-build:${PORTSDIR}/textproc/py-sphinx
DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
+MAKE_ENV+= HOME=${WRKDIR}
+PYDISTUTILS_BUILD_TARGET+= build_sphinx -n --all-files --fresh-env
+
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
- @cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
+ (cd ${WRKSRC}/build/sphinx/html && \
+ ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} "! -name .buildinfo -and ! -name objects.inv")
+.endif
+
+.if 0
+regression-test: build
+ @cd ${WRKSRC} && \
+ ${TOX_CMD} -e py${PYTHON_SUFFIX},docs
.endif
.include <bsd.port.mk>
Modified: head/devel/py-pip/distinfo
==============================================================================
--- head/devel/py-pip/distinfo Thu Apr 10 00:04:16 2014 (r350750)
+++ head/devel/py-pip/distinfo Thu Apr 10 00:34:17 2014 (r350751)
@@ -1,2 +1,2 @@
-SHA256 (pip-1.5.2.tar.gz) = 2a8a3e08e652d3a40edbb39264bf01f8ff3c32520a79113357cca1f30533f738
-SIZE (pip-1.5.2.tar.gz) = 1079904
+SHA256 (pip-1.5.4.tar.gz) = 349c6a982ce4f2dc54afcb2f278de0e90bd9b3154f05f2716acfd27803b1a766
+SIZE (pip-1.5.4.tar.gz) = 7856822
Modified: head/devel/py-pip/pkg-descr
==============================================================================
--- head/devel/py-pip/pkg-descr Thu Apr 10 00:04:16 2014 (r350750)
+++ head/devel/py-pip/pkg-descr Thu Apr 10 00:34:17 2014 (r350751)
@@ -1,3 +1,5 @@
+The PyPA recommended tool for installing and managing Python packages.
+
pip is a replacement for easy_install. It uses mostly the same techniques
for finding packages, so packages that were made easy_installable should
be pip-installable as well.
Modified: head/devel/py-pip/pkg-plist
==============================================================================
--- head/devel/py-pip/pkg-plist Thu Apr 10 00:04:16 2014 (r350750)
+++ head/devel/py-pip/pkg-plist Thu Apr 10 00:34:17 2014 (r350751)
@@ -1,11 +1,67 @@
-%%PORTDOCS%%%%DOCSDIR%%/configuration.rst
-%%PORTDOCS%%%%DOCSDIR%%/cookbook.rst
-%%PORTDOCS%%%%DOCSDIR%%/development.rst
-%%PORTDOCS%%%%DOCSDIR%%/index.rst
-%%PORTDOCS%%%%DOCSDIR%%/installing.rst
-%%PORTDOCS%%%%DOCSDIR%%/logic.rst
-%%PORTDOCS%%%%DOCSDIR%%/news.rst
-%%PORTDOCS%%%%DOCSDIR%%/other-tools.rst
-%%PORTDOCS%%%%DOCSDIR%%/quickstart.rst
-%%PORTDOCS%%%%DOCSDIR%%/usage.rst
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
+%%PORTDOCS%%%%DOCSDIR%%/_sources/configuration.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/cookbook.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/development.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/distribute_setuptools.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/index.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/installing.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/logic.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/news.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/quickstart.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/reference/index.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/reference/pip.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/reference/pip_freeze.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/reference/pip_install.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/reference/pip_list.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/reference/pip_search.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/reference/pip_show.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/reference/pip_uninstall.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/reference/pip_wheel.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/usage.txt
+%%PORTDOCS%%%%DOCSDIR%%/_sources/user_guide.txt
+%%PORTDOCS%%%%DOCSDIR%%/_static/ajax-loader.gif
+%%PORTDOCS%%%%DOCSDIR%%/_static/basic.css
+%%PORTDOCS%%%%DOCSDIR%%/_static/comment-bright.png
+%%PORTDOCS%%%%DOCSDIR%%/_static/comment-close.png
+%%PORTDOCS%%%%DOCSDIR%%/_static/comment.png
+%%PORTDOCS%%%%DOCSDIR%%/_static/default.css
+%%PORTDOCS%%%%DOCSDIR%%/_static/doctools.js
+%%PORTDOCS%%%%DOCSDIR%%/_static/down-pressed.png
+%%PORTDOCS%%%%DOCSDIR%%/_static/down.png
+%%PORTDOCS%%%%DOCSDIR%%/_static/file.png
+%%PORTDOCS%%%%DOCSDIR%%/_static/jquery.js
+%%PORTDOCS%%%%DOCSDIR%%/_static/minus.png
+%%PORTDOCS%%%%DOCSDIR%%/_static/plus.png
+%%PORTDOCS%%%%DOCSDIR%%/_static/pygments.css
+%%PORTDOCS%%%%DOCSDIR%%/_static/searchtools.js
+%%PORTDOCS%%%%DOCSDIR%%/_static/sidebar.js
+%%PORTDOCS%%%%DOCSDIR%%/_static/underscore.js
+%%PORTDOCS%%%%DOCSDIR%%/_static/up-pressed.png
+%%PORTDOCS%%%%DOCSDIR%%/_static/up.png
+%%PORTDOCS%%%%DOCSDIR%%/_static/websupport.js
+%%PORTDOCS%%%%DOCSDIR%%/configuration.html
+%%PORTDOCS%%%%DOCSDIR%%/cookbook.html
+%%PORTDOCS%%%%DOCSDIR%%/development.html
+%%PORTDOCS%%%%DOCSDIR%%/distribute_setuptools.html
+%%PORTDOCS%%%%DOCSDIR%%/index.html
+%%PORTDOCS%%%%DOCSDIR%%/installing.html
+%%PORTDOCS%%%%DOCSDIR%%/logic.html
+%%PORTDOCS%%%%DOCSDIR%%/news.html
+%%PORTDOCS%%%%DOCSDIR%%/quickstart.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/index.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/pip.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/pip_freeze.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/pip_install.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/pip_list.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/pip_search.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/pip_show.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/pip_uninstall.html
+%%PORTDOCS%%%%DOCSDIR%%/reference/pip_wheel.html
+%%PORTDOCS%%%%DOCSDIR%%/search.html
+%%PORTDOCS%%%%DOCSDIR%%/searchindex.js
+%%PORTDOCS%%%%DOCSDIR%%/usage.html
+%%PORTDOCS%%%%DOCSDIR%%/user_guide.html
+%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/reference
+%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/_static
+%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/_sources/reference
+%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/_sources
+%%PORTDOCS%%@dirrmtry %%DOCSDIR%%
More information about the svn-ports-all
mailing list