Date: Wed, 8 Dec 2021 11:13:32 GMT From: Wen Heping <wen@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 4a27ee6c239e - main - www/py-django40: Add new port, repocopied from www/py-django32 Message-ID: <202112081113.1B8BDWgZ011847@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by wen: URL: https://cgit.FreeBSD.org/ports/commit/?id=4a27ee6c239e2c12ff1b07ec0426ba6adc194ecd commit 4a27ee6c239e2c12ff1b07ec0426ba6adc194ecd Author: Wen Heping <wen@FreeBSD.org> AuthorDate: 2021-12-08 10:53:10 +0000 Commit: Wen Heping <wen@FreeBSD.org> CommitDate: 2021-12-08 10:53:10 +0000 www/py-django40: Add new port, repocopied from www/py-django32 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/ --- www/Makefile | 1 + www/py-django40/Makefile | 71 +++++++++++++++++++++++++++++++++++++++++++++++ www/py-django40/distinfo | 3 ++ www/py-django40/pkg-descr | 10 +++++++ 4 files changed, 85 insertions(+) diff --git a/www/Makefile b/www/Makefile index b43b86bd3462..4ddb0b5c93bc 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1588,6 +1588,7 @@ SUBDIR += py-django22 SUBDIR += py-django31 SUBDIR += py-django32 + SUBDIR += py-django40 SUBDIR += py-django_compressor SUBDIR += py-djangocms-admin-style SUBDIR += py-djangoql diff --git a/www/py-django40/Makefile b/www/py-django40/Makefile new file mode 100644 index 000000000000..190bf08348bb --- /dev/null +++ b/www/py-django40/Makefile @@ -0,0 +1,71 @@ +# Created by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> + +PORTNAME= django +PORTVERSION= 4.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP \ + https://www.djangoproject.com/m/releases/${PORTVERSION}/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +PKGNAMESUFFIX= 40 +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}backports.zoneinfo>0:devel/py-backports.zoneinfo@${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.8+ 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/conf/project_template/manage.py-tpl + +CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}django22 \ + ${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> diff --git a/www/py-django40/distinfo b/www/py-django40/distinfo new file mode 100644 index 000000000000..2f8b944d8399 --- /dev/null +++ b/www/py-django40/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1638944369 +SHA256 (python/Django-4.0.tar.gz) = d5a8a14da819a8b9237ee4d8c78dfe056ff6e8a7511987be627192225113ee75 +SIZE (python/Django-4.0.tar.gz) = 9980403 diff --git a/www/py-django40/pkg-descr b/www/py-django40/pkg-descr new file mode 100644 index 000000000000..0ea493b87ab6 --- /dev/null +++ b/www/py-django40/pkg-descr @@ -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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202112081113.1B8BDWgZ011847>