From owner-cvs-all@FreeBSD.ORG Mon Jan 31 11:43:02 2011 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66D3E106566B; Mon, 31 Jan 2011 11:43:02 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3D74A8FC13; Mon, 31 Jan 2011 11:43:02 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p0VBh23J079863; Mon, 31 Jan 2011 11:43:02 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p0VBh2vo079862; Mon, 31 Jan 2011 11:43:02 GMT (envelope-from miwi) Message-Id: <201101311143.p0VBh2vo079862@repoman.freebsd.org> From: Martin Wilke Date: Mon, 31 Jan 2011 11:43:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases Makefile ports/databases/hiredis Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Jan 2011 11:43:02 -0000 miwi 2011-01-31 11:43:02 UTC FreeBSD ports repository Modified files: databases Makefile Added files: databases/hiredis Makefile distinfo pkg-descr pkg-plist Log: Hiredis is a minimalistic C client library for the Redis database. It is minimalistic because it just adds minimal support for the protocol, but at the same time it uses an high level printf-alike API in order to make it much higher level than otherwise suggested by its minimal code base and the lack of explicit bindings for every Redis command. Apart from supporting sending commands and receiving replies, it comes with a reply parser that is decoupled from the I/O layer. It is a stream parser designed for easy reusability, which can for instance be used in higher level language bindings for efficient reply parsing. Hiredis only supports the binary-safe Redis protocol, so you can use it with any Redis version >= 1.2.0. The library comes with multiple APIs. There is the synchronous API, the asynchronous API and the reply parsing API. WWW: https://github.com/antirez/hiredis PR: ports/153535 Submitted by: Grzegorz Blach Feature safe: yes Revision Changes Path 1.947 +1 -0 ports/databases/Makefile 1.1 +27 -0 ports/databases/hiredis/Makefile (new) 1.1 +2 -0 ports/databases/hiredis/distinfo (new) 1.1 +19 -0 ports/databases/hiredis/pkg-descr (new) 1.1 +9 -0 ports/databases/hiredis/pkg-plist (new)