Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 May 2017 10:37:26 +0000 (UTC)
From:      Pietro Cerutti <gahr@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r440551 - in head/databases: . retcl
Message-ID:  <201705101037.v4AAbQdQ086104@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gahr
Date: Wed May 10 10:37:26 2017
New Revision: 440551
URL: https://svnweb.freebsd.org/changeset/ports/440551

Log:
  New port: databases/retcl
  
  Retcl is an event-driven, object-oriented, Redis client library targetting the
  Tcl scripting language. The library consists of a single Tcl Module file, which
  makes it extremely easy to deploy or integrate into existing projects.
  
  WWW: https://github.com/gahr/retcl

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

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Wed May 10 09:29:15 2017	(r440550)
+++ head/databases/Makefile	Wed May 10 10:37:26 2017	(r440551)
@@ -845,6 +845,7 @@
     SUBDIR += redigo
     SUBDIR += redis
     SUBDIR += redis-devel
+    SUBDIR += retcl
     SUBDIR += riak
     SUBDIR += riak2
     SUBDIR += rocksdb

Added: head/databases/retcl/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/retcl/Makefile	Wed May 10 10:37:26 2017	(r440551)
@@ -0,0 +1,28 @@
+# Created by: gahr
+# $FreeBSD$
+
+PORTNAME=	retcl
+PORTVERSION=	0.2.0
+CATEGORIES=	databases
+
+MAINTAINER=	gahr@FreeBSD.org
+COMMENT=	Tcl client library for Redis
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		tcl:run
+USE_GITHUB=	yes
+GH_ACCOUNT=	gahr
+
+NO_BUILD=	yes
+
+LIBDIR=		${TCL_LIBDIR:S/${LOCALBASE}/${PREFIX}/}
+PLIST_FILES=	${LIBDIR}/${PORTNAME}-${DISTVERSION}.tm
+
+do-install:
+	${MKDIR} ${STAGEDIR}${LIBDIR}
+	${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.tm \
+	    ${STAGEDIR}${LIBDIR}/${PORTNAME}-${DISTVERSION}.tm
+
+.include <bsd.port.mk>

Added: head/databases/retcl/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/retcl/distinfo	Wed May 10 10:37:26 2017	(r440551)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1494409318
+SHA256 (gahr-retcl-0.2.0_GH0.tar.gz) = 2e2d1f7c90b14c92cb66b66bbf289568cd3f03daef907c3ae8403c74e728aa8d
+SIZE (gahr-retcl-0.2.0_GH0.tar.gz) = 11467

Added: head/databases/retcl/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/retcl/pkg-descr	Wed May 10 10:37:26 2017	(r440551)
@@ -0,0 +1,5 @@
+Retcl is an event-driven, object-oriented, Redis client library targetting the
+Tcl scripting language. The library consists of a single Tcl Module file, which
+makes it extremely easy to deploy or integrate into existing projects.
+
+WWW: https://github.com/gahr/retcl



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