Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Jan 2021 14:55:00 +0000 (UTC)
From:      Rainer Hurling <rhurlin@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r560778 - in head/databases: . py-rrdtool
Message-ID:  <202101081455.108Et0oO080978@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rhurlin
Date: Fri Jan  8 14:55:00 2021
New Revision: 560778
URL: https://svnweb.freebsd.org/changeset/ports/560778

Log:
  databases/py-rrdtool: New port, version 0.1.15
  
  As the successor to the deprecated port databases/py-rrdtool_lgpl [1],
  this port is intended to inherit its functionality, but comes from a
  different source [2][3] and is also named differently.
  
  [1] https://sourceforge.net/projects/py-rrdtool/files/
  [2] http://www.nongnu.org/py-rrdtool/
  [3] https://github.com/commx/python-rrdtool
  
  PR:		251126
  Submitted by:	darius@dons.net.au (new maintainer)
  Approved by:	arrowd (mentor)
  Differential Revision:	https://reviews.freebsd.org/D28038

Added:
  head/databases/py-rrdtool/
  head/databases/py-rrdtool/Makefile   (contents, props changed)
  head/databases/py-rrdtool/distinfo   (contents, props changed)
  head/databases/py-rrdtool/pkg-descr   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Fri Jan  8 14:53:46 2021	(r560777)
+++ head/databases/Makefile	Fri Jan  8 14:55:00 2021	(r560778)
@@ -800,6 +800,7 @@
     SUBDIR += py-rb
     SUBDIR += py-redis
     SUBDIR += py-redis2
+    SUBDIR += py-rrdtool
     SUBDIR += py-sispy
     SUBDIR += py-south
     SUBDIR += py-sqlalchemy-json

Added: head/databases/py-rrdtool/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-rrdtool/Makefile	Fri Jan  8 14:55:00 2021	(r560778)
@@ -0,0 +1,25 @@
+# Created by: Daniel O'Connor
+# $FreeBSD$
+
+PORTNAME=	rrdtool
+DISTVERSION=	0.1.15
+CATEGORIES=	databases python
+MASTER_SITES=	CHEESESHOP
+# Bindings name is different from https://pypi.org/project/rrdtool/
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	darius@dons.net.au
+COMMENT=	Python interface to RRDTool, the graphing and logging utility
+
+LICENSE=	LGPL21+
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+LIB_DEPENDS=	librrd.so:databases/rrdtool
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/rrdtool.so
+
+.include <bsd.port.mk>

Added: head/databases/py-rrdtool/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-rrdtool/distinfo	Fri Jan  8 14:55:00 2021	(r560778)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1607259691
+SHA256 (rrdtool-0.1.15.tar.gz) = 951d2c23121dbe94859ea46bc9ed54e908e2f2ee60eff3c505db0778a3212732
+SIZE (rrdtool-0.1.15.tar.gz) = 21864

Added: head/databases/py-rrdtool/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/py-rrdtool/pkg-descr	Fri Jan  8 14:55:00 2021	(r560778)
@@ -0,0 +1,12 @@
+The python-rrdtool provides an interface to rrdtool, the
+wonderful graphing and logging utility. This wrapper
+implementation has worked from the scratch (without SWIG),
+and it's under LGPL.
+
+The bindings are based on the code of the original Python 2
+bindings module for rrdtool by Hye-Shik Chang and are now
+shipped with the RRDtool distribution. This project is
+maintained separately to provide a more pythonic way to
+install those bindings via PyPI.
+
+WWW: https://github.com/commx/python-rrdtool



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101081455.108Et0oO080978>