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

(-)Makefile (+20 lines)
Line 0 Link Here
1
# Created by: 
2
# $FreeBSD$
3
4
PORTNAME=	django-hierarkey
5
PORTVERSION=	1.0.3
6
CATEGORIES=	www python
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
10
MAINTAINER=	alex@xanderio.de
11
COMMENT=	Hierarchical key-value store for django
12
13
LICENSE=	APACHE20
14
15
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}dateutil>=2.8.0:devel/py-dateutil@${PY_FLAVOR}
16
17
USES=		python:3.4+ # 3.4, 3.5, 3.6
18
USE_PYTHON=	autoplist distutils
19
20
.include <bsd.port.mk>
(-)distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1562670444
2
SHA256 (django-hierarkey-1.0.3.tar.gz) = 95073a4bb0e521f88118e21c818fbb1aef844666a79884cf4336daae64e44ec8
3
SIZE (django-hierarkey-1.0.3.tar.gz) = 7146
(-)pkg-descr (+17 lines)
Line 0 Link Here
1
django-hierarkey -- Hierarchical key-value store
2
3
This package allows you to attach a key-value store to a model, e.g. to store
4
preferences of an user or a customer. The package supports arbitrary datatypes,
5
defaults and model hierarchies, i.e. you can define a different model instance
6
as your instance's parent and the values of the parent instance will be used as
7
default values for the child instances.
8
9
This approach has been in use in pretix for quite a while, so it has been tested
10
in production.
11
12
This project is maintained by Raphael Michel <mail@raphaelmichel.de>. See the
13
AUTHORS file for a list of all the awesome folks who contributed to this
14
project.
15
16
17
WWW: https://github.com/raphaelm/django-hierarkey

Return to bug 239059