mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
75a5f7f076
- Repocopy textproc/py-sphinx to textproc/py-sphinx18 Update it to 1.8.5 (latest version from 1.8.X). This version supports Python 2 and 3. Add test target. - textproc/py-sphinx: Update to 3.0.2 Python 3 only (3.5+). Add test target. - Mk/Uses/python.mk: Add PY_SPHINX Shared macro to use with flavors and not break ports with USES=python (all versions). Python >=3.5 --> textproc/py-sphinx (v3.0.2) Python < 3.5 --> textproc/py-sphinx18 (v1.8.5) All ports that uses sphinx were changed to use the new variable ${PY_SPHINX} in the dependency line, exceptions: * Ports that fails to build with sphinx 3.0.2 because of code. They are pointing to textproc/py-sphinx18 directly. There aren't many ports. * Ports that doesn't know Python flavors. - Add several patches to fix Sphinx consumers The most common issues are related with pkg-plist, the output files from Sphinx changes between versions, keep this dynamically is the better approach. This will save time in future sphinx updates. PR: 245629 Exp-run by: antoine
69 lines
2.0 KiB
Makefile
69 lines
2.0 KiB
Makefile
# Created by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
|
|
# $FreeBSD$
|
|
#
|
|
# Remember to update www/py-django along with this port.
|
|
|
|
PORTNAME= django
|
|
PORTVERSION= 1.11.29
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP \
|
|
https://www.djangoproject.com/m/releases/${PORTVERSION}/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
PKGNAMESUFFIX= 111
|
|
DISTNAME= Django-${PORTVERSION}
|
|
DIST_SUBDIR= python
|
|
|
|
MAINTAINER= python@FreeBSD.org
|
|
COMMENT= High-level Python Web Framework
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
DEPRECATED= Django 1.11 is End-of-Life since April 2020. Switch to Django 2.2+ as soon as possible.
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz@${PY_FLAVOR}
|
|
|
|
NO_ARCH= yes
|
|
USES= cpe python${PY_MYSQL} shebangfix
|
|
USE_PYTHON= autoplist distutils
|
|
SHEBANG_FILES= django/bin/django-admin.py \
|
|
django/conf/project_template/manage.py-tpl
|
|
|
|
CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}django2[0-2] ${PYTHON_PKGNAMEPREFIX}django30
|
|
CPE_VENDOR= djangoproject
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/py-django
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS HTMLDOCS
|
|
OPTIONS_DEFAULT= SQLITE
|
|
|
|
OPTIONS_GROUP= DATABASE
|
|
OPTIONS_GROUP_DATABASE= PGSQL MYSQL SQLITE
|
|
|
|
HTMLDOCS_DESC= Install HTML documentation (requires Sphinx)
|
|
|
|
PLIST_FILES= man/man1/django-admin.1.gz
|
|
|
|
HTMLDOCS_BUILD_DEPENDS= ${PY_SPHINX}
|
|
HTMLDOCS_IMPLIES= DOCS
|
|
PGSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>0:databases/py-psycopg2@${PY_FLAVOR}
|
|
MYSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1.2.2:databases/py-MySQLdb@${PY_FLAVOR}
|
|
MYSQL_VARS= PY_MYSQL=:2.7
|
|
SQLITE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR}
|
|
|
|
post-build-HTMLDOCS-on:
|
|
cd ${WRKSRC}/docs && ${MAKE} html SPHINXBUILD=sphinx-build-${PYTHON_VER}
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/docs/man/* ${STAGEDIR}/${MAN1PREFIX}/man/man1
|
|
@${ECHO_MSG} ""
|
|
@${ECHO_MSG} " * See http://docs.djangoproject.com/ for complete documentation"
|
|
@${ECHO_MSG} ""
|
|
|
|
post-install-HTMLDOCS-on:
|
|
${MKDIR} ${STAGEDIR}/${DOCSDIR}
|
|
${CP} -R ${WRKSRC}/docs/_build/html ${STAGEDIR}/${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|