7bd0ffc67a
py-whisper is a fixed-size database, similar in design and purpose to RRD (round-robin-database). It provides fast, reliable storage of numeric data over time. Whisper allows for higher resolution (seconds per point) of recent data to degrade into lower resolutions for long-term retention of historical data. ok aja@
32 lines
726 B
Makefile
32 lines
726 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/10/09 13:26:54 jasper Exp $
|
|
|
|
COMMENT= fixed size round-robin style database
|
|
|
|
MODPY_EGG_VERSION= 0.9.10
|
|
|
|
DISTNAME= whisper-${MODPY_EGG_VERSION}
|
|
PKGNAME= py-${DISTNAME}
|
|
CATEGORIES= databases
|
|
|
|
# Apache
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODULES= lang/python
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=w/whisper/}
|
|
|
|
RUN_DEPENDS= net/rrdtool,-python
|
|
|
|
BIN_FILES= rrd2whisper.py whisper-create.py whisper-dump.py \
|
|
whisper-fetch.py whisper-info.py whisper-merge.py \
|
|
whisper-resize.py whisper-set-aggregation-method.py \
|
|
whisper-update.py
|
|
|
|
.for b in ${BIN_FILES}
|
|
MODPY_ADJ_FILES+= bin/$b
|
|
.endfor
|
|
|
|
.include <bsd.port.mk> |