Skip to content

Commit

Permalink
Add new port: www/py-django32
Browse files Browse the repository at this point in the history
Update CONFLICTS
  • Loading branch information
wenheping committed Apr 11, 2021
1 parent dbbf0f4 commit 0ee9911
Show file tree
Hide file tree
Showing 8 changed files with 90 additions and 4 deletions.
1 change: 1 addition & 0 deletions www/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1554,6 +1554,7 @@
SUBDIR += py-django22
SUBDIR += py-django30
SUBDIR += py-django31
SUBDIR += py-django32
SUBDIR += py-django_compressor
SUBDIR += py-djangocms-admin-style
SUBDIR += py-djangoql
Expand Down
2 changes: 1 addition & 1 deletion www/py-django111/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ 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}django3[0-1]
CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}django22 ${PYTHON_PKGNAMEPREFIX}django3[0-2]
CPE_VENDOR= djangoproject

DOCSDIR= ${PREFIX}/share/doc/py-django
Expand Down
2 changes: 1 addition & 1 deletion www/py-django22/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ SHEBANG_FILES= django/bin/django-admin.py \
django/conf/project_template/manage.py-tpl

CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}django111 ${PYTHON_PKGNAMEPREFIX}django30 \
${PYTHON_PKGNAMEPREFIX}django31
${PYTHON_PKGNAMEPREFIX}django31 ${PYTHON_PKGNAMEPREFIX}django32

CPE_VENDOR= djangoproject

Expand Down
2 changes: 1 addition & 1 deletion www/py-django30/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ SHEBANG_FILES= django/bin/django-admin.py \
django/conf/project_template/manage.py-tpl

CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}django111 ${PYTHON_PKGNAMEPREFIX}django22 \
${PYTHON_PKGNAMEPREFIX}django31
${PYTHON_PKGNAMEPREFIX}django31 ${PYTHON_PKGNAMEPREFIX}django32

CPE_VENDOR= djangoproject

Expand Down
2 changes: 1 addition & 1 deletion www/py-django31/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ SHEBANG_FILES= django/bin/django-admin.py \
django/conf/project_template/manage.py-tpl

CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}django111 ${PYTHON_PKGNAMEPREFIX}django22 \
${PYTHON_PKGNAMEPREFIX}django30
${PYTHON_PKGNAMEPREFIX}django30 ${PYTHON_PKGNAMEPREFIX}django32

CPE_VENDOR= djangoproject

Expand Down
72 changes: 72 additions & 0 deletions www/py-django32/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# Created by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>

PORTNAME= django
PORTVERSION= 3.2
CATEGORIES= www python
MASTER_SITES= CHEESESHOP \
https://www.djangoproject.com/m/releases/${PORTVERSION}/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
PKGNAMESUFFIX= 32
DISTNAME= Django-${PORTVERSION}
DIST_SUBDIR= python

MAINTAINER= python@FreeBSD.org
COMMENT= High-level Python Web Framework

LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE

RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}asgiref>0:www/py-asgiref@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}sqlparse>=0:databases/py-sqlparse@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tblib>0:devel/py-tblib@${PY_FLAVOR}

USES= cpe python:3.6+ shebangfix
USE_PYTHON= autoplist distutils

NO_ARCH= yes

DOCSDIR= ${PREFIX}/share/doc/py-django
PLIST_FILES= man/man1/django-admin.1.gz
PORTDOCS= *

SHEBANG_FILES= django/bin/django-admin.py \
django/conf/project_template/manage.py-tpl

CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}django111 ${PYTHON_PKGNAMEPREFIX}django22 \
${PYTHON_PKGNAMEPREFIX}django30 ${PYTHON_PKGNAMEPREFIX}django31

CPE_VENDOR= djangoproject

# Upstream archive contains files with UTF-8 names
EXTRACT_CMD= ${SETENV} LC_ALL=en_US.UTF-8 /usr/bin/bsdtar

OPTIONS_DEFINE= DOCS HTMLDOCS
OPTIONS_GROUP= DATABASE
OPTIONS_GROUP_DATABASE= PGSQL MYSQL SQLITE
OPTIONS_DEFAULT=SQLITE
HTMLDOCS_DESC= Install HTML documentation (requires Sphinx)

HTMLDOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=0,1:textproc/py-sphinx@${PY_FLAVOR}
HTMLDOCS_IMPLIES= DOCS
PGSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>0:databases/py-psycopg2@${PY_FLAVOR}
MYSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mysqlclient>=1.3.13:databases/py-mysqlclient@${PY_FLAVOR}
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}

do-test:
@cd ${WRKSRC} && ${PYTHON_CMD} tests/runtests.py --settings=test_sqlite

.include <bsd.port.mk>
3 changes: 3 additions & 0 deletions www/py-django32/distinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
TIMESTAMP = 1618184183
SHA256 (python/Django-3.2.tar.gz) = 21f0f9643722675976004eb683c55d33c05486f94506672df3d6a141546f389d
SIZE (python/Django-3.2.tar.gz) = 9819119
10 changes: 10 additions & 0 deletions www/py-django32/pkg-descr
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Django is a high-level Python Web framework that encourages rapid development
and clean, pragmatic design.

Developed and used over the past two years by a fast-moving online-news
operation, Django was designed from scratch to handle two challenges: the
intensive deadlines of a newsroom and the stringent requirements of experienced
Web developers. It has convenient niceties for developing content-management
systems, but it's an excellent tool for building any Web site.

WWW: https://www.djangoproject.com/

0 comments on commit 0ee9911

Please sign in to comment.