From owner-svn-ports-head@FreeBSD.ORG Fri Jun 19 16:35:07 2015 Return-Path: Delivered-To: svn-ports-head@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1E15E70E; Fri, 19 Jun 2015 16:35:07 +0000 (UTC) (envelope-from vg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0BF18F8A; Fri, 19 Jun 2015 16:35:07 +0000 (UTC) (envelope-from vg@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5JGZ6MW023490; Fri, 19 Jun 2015 16:35:06 GMT (envelope-from vg@FreeBSD.org) Received: (from vg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5JGZ5eX023479; Fri, 19 Jun 2015 16:35:05 GMT (envelope-from vg@FreeBSD.org) Message-Id: <201506191635.t5JGZ5eX023479@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: vg set sender to vg@FreeBSD.org using -f From: Veniamin Gvozdikov Date: Fri, 19 Jun 2015 16:35:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390124 - in head/devel: . msgpuck msgpuck/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 16:35:07 -0000 Author: vg Date: Fri Jun 19 16:35:04 2015 New Revision: 390124 URL: https://svnweb.freebsd.org/changeset/ports/390124 Log: New port: devel/msgpuck MsgPuck is a simple and efficient MsgPack binary serialization library in a self-contained header file. * Can be easily incorporated into your project * Is very easy to use (see examples below) * Is fully tested and documented * Has clean and readable C source code * Is published under the very liberal license (BSD-2) Added: head/devel/msgpuck/ head/devel/msgpuck/Makefile (contents, props changed) head/devel/msgpuck/distinfo (contents, props changed) head/devel/msgpuck/files/ head/devel/msgpuck/files/patch-CMakeLists.txt (contents, props changed) head/devel/msgpuck/pkg-descr (contents, props changed) head/devel/msgpuck/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jun 19 16:12:18 2015 (r390123) +++ head/devel/Makefile Fri Jun 19 16:35:04 2015 (r390124) @@ -1376,6 +1376,7 @@ SUBDIR += mph SUBDIR += mq4cpp SUBDIR += msgpack + SUBDIR += msgpuck SUBDIR += msp430-binutils SUBDIR += msp430-gcc SUBDIR += msp430-gdb Added: head/devel/msgpuck/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/msgpuck/Makefile Fri Jun 19 16:35:04 2015 (r390124) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= msgpuck +PORTVERSION= 1.0.0 +CATEGORIES= devel + +MAINTAINER= vg@FreeBSD.org +COMMENT= MsgPack binary serialization library in a self-contained header + +LICENSE= BSD2CLAUSE + +USE_GITHUB= yes +GH_PROJECT= msgpuck +GH_ACCOUNT= tarantool + +USES= cmake + +.include Added: head/devel/msgpuck/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/msgpuck/distinfo Fri Jun 19 16:35:04 2015 (r390124) @@ -0,0 +1,2 @@ +SHA256 (tarantool-msgpuck-1.0.0_GH0.tar.gz) = f9caff62f6deb2909b7294223231556ed9332dfbc57061750f652d397f5df9ed +SIZE (tarantool-msgpuck-1.0.0_GH0.tar.gz) = 41350 Added: head/devel/msgpuck/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/msgpuck/files/patch-CMakeLists.txt Fri Jun 19 16:35:04 2015 (r390124) @@ -0,0 +1,13 @@ +--- CMakeLists.txt.orig 2015-06-19 08:57:12 UTC ++++ CMakeLists.txt +@@ -1,6 +1,10 @@ + project(msgpuck) + cmake_minimum_required(VERSION 2.6) + ++if(POLICY CMP0037) ++ cmake_policy(SET CMP0037 OLD) ++endif(POLICY CMP0037) ++ + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99") + set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -pg -Wall -Wextra") + Added: head/devel/msgpuck/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/msgpuck/pkg-descr Fri Jun 19 16:35:04 2015 (r390124) @@ -0,0 +1,11 @@ +MsgPuck is a simple and efficient MsgPack binary serialization library in +a self-contained header file. + +* Can be easily incorporated into your project +* Is very easy to use (see examples below) +* Is fully tested and documented +* Has clean and readable C source code +* Is published under the very liberal license (BSD-2) + + +WWW: https://github.com/tarantool/msgpuck Added: head/devel/msgpuck/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/msgpuck/pkg-plist Fri Jun 19 16:35:04 2015 (r390124) @@ -0,0 +1,4 @@ +include/msgpuck.h +lib/libmsgpuck.so +lib/libmsgpuck.so.0 +lib/libmsgpuck.so.0.1