View | Details | Raw Unified | Return to bug 227671
Collapse All | Expand All

(-)www/py-django-treebeard/Makefile (+34 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	django-treebeard
4
DISTVERSION=	4.3
5
CATEGORIES=	www python
6
MASTER_SITES=	CHEESESHOP
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
9
MAINTAINER=	freebsd_ports@k-worx.org
10
COMMENT=	Efficient tree implementations for Django
11
12
LICENSE=	APACHE20
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
15
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django111>0:www/py-django111@${PY_FLAVOR}
16
17
USES=		python
18
USE_PYTHON=	distutils autoplist
19
NO_ARCH=	yes
20
PORTDOCS=	*
21
22
OPTIONS_DEFINE=	DOCS
23
DOCS_BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django111>0:www/py-django111@${PY_FLAVOR} \
24
			${PYTHON_PKGNAMEPREFIX}graphviz>0:graphics/py-graphviz@${PY_FLAVOR} \
25
			${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx@${PY_FLAVOR}
26
DOCS_VARS=		PYDISTUTILS_BUILD_TARGET+="build_sphinx -a -E"
27
28
post-install-DOCS-on:
29
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
30
	@(cd ${WRKSRC}/build/sphinx/html && \
31
	${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} \
32
		"! -name .buildinfo -and ! -name objects.inv")
33
34
.include <bsd.port.mk>
(-)www/py-django-treebeard/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1524164190
2
SHA256 (django-treebeard-4.3.tar.gz) = c21db06a8d4943bf2a28d9d7a119058698fb76116df2679ecbf15a46a501de42
3
SIZE (django-treebeard-4.3.tar.gz) = 310617
(-)www/py-django-treebeard/pkg-descr (+16 lines)
Line 0 Link Here
1
django-treebeard is a library that implements efficient tree implementations for
2
the Django Web Framework 1.8 and later.
3
4
Features:
5
6
- Flexible: Includes 3 different tree implementations with the same API:
7
  * Adjacency List
8
  * Materialized Path
9
  * Nested Sets
10
- Fast: Optimized non-naive tree operations
11
- Easy: Uses Django Model Inheritance with abstract classes to define your own
12
	models.
13
- Clean: Testable and well tested code base. Code/branch test coverage is
14
	 above 96%.
15
16
WWW: https://github.com/django-treebeard/django-treebeard

Return to bug 227671