From owner-svn-ports-all@freebsd.org Fri Feb 15 23:25:11 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3751214ED754; Fri, 15 Feb 2019 23:25:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 74EC78B5CC; Fri, 15 Feb 2019 23:25:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 643A025A3C; Fri, 15 Feb 2019 23:25:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1FNPAUP034122; Fri, 15 Feb 2019 23:25:10 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1FNP9BN034117; Fri, 15 Feb 2019 23:25:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201902152325.x1FNP9BN034117@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 15 Feb 2019 23:25:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493014 - in head/devel: . libcbor X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . libcbor X-SVN-Commit-Revision: 493014 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 74EC78B5CC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Feb 2019 23:25:11 -0000 Author: sunpoet Date: Fri Feb 15 23:25:09 2019 New Revision: 493014 URL: https://svnweb.freebsd.org/changeset/ports/493014 Log: Add libcbor 0.5.0 libcbor is a C library for parsing and generating CBOR, the general-purpose schema-less binary data format. Main features: - Complete RFC conformance - Robust C99 implementation - Layered architecture offers both control and convenience - Flexible memory management - No shared global state - threading friendly - Proper handling of UTF-8 - Full support for streams & incremental processing - Extensive documentation and test suite - No runtime dependencies, small footprint WWW: http://libcbor.org/ Added: head/devel/libcbor/ head/devel/libcbor/Makefile (contents, props changed) head/devel/libcbor/distinfo (contents, props changed) head/devel/libcbor/pkg-descr (contents, props changed) head/devel/libcbor/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Feb 15 23:22:05 2019 (r493013) +++ head/devel/Makefile Fri Feb 15 23:25:09 2019 (r493014) @@ -1382,6 +1382,7 @@ SUBDIR += libbonobo-reference SUBDIR += libbson SUBDIR += libburn + SUBDIR += libcbor SUBDIR += libccid SUBDIR += libcfg SUBDIR += libcfu Added: head/devel/libcbor/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libcbor/Makefile Fri Feb 15 23:25:09 2019 (r493014) @@ -0,0 +1,28 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= libcbor +PORTVERSION= 0.5.0 +DISTVERSIONPREFIX= v +CATEGORIES= devel + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= CBOR protocol implementation for C and others + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +LIB_DEPENDS= libcjson.so:devel/libcjson + +USES= cmake + +CMAKE_OFF= CBOR_CUSTOM_ALLOC COVERAGE HUGE_FUZZ PRINT_FUZZ SANE_MALLOC WITH_TESTS +CMAKE_ON= CBOR_PRETTY_PRINTER + +GH_ACCOUNT= PJK +USE_GITHUB= yes + +post-patch: + @${REINPLACE_CMD} -e 's|-flto||; /subdirs(examples)/d' ${WRKSRC}/CMakeLists.txt + +.include Added: head/devel/libcbor/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libcbor/distinfo Fri Feb 15 23:25:09 2019 (r493014) @@ -0,0 +1,3 @@ +TIMESTAMP = 1550248218 +SHA256 (PJK-libcbor-v0.5.0_GH0.tar.gz) = 9bbec94bb385bad3cd2f65482e5d343ddb97e9ffe261123ea0faa3bfea51d320 +SIZE (PJK-libcbor-v0.5.0_GH0.tar.gz) = 719348 Added: head/devel/libcbor/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libcbor/pkg-descr Fri Feb 15 23:25:09 2019 (r493014) @@ -0,0 +1,15 @@ +libcbor is a C library for parsing and generating CBOR, the general-purpose +schema-less binary data format. + +Main features: +- Complete RFC conformance +- Robust C99 implementation +- Layered architecture offers both control and convenience +- Flexible memory management +- No shared global state - threading friendly +- Proper handling of UTF-8 +- Full support for streams & incremental processing +- Extensive documentation and test suite +- No runtime dependencies, small footprint + +WWW: http://libcbor.org/ Added: head/devel/libcbor/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libcbor/pkg-plist Fri Feb 15 23:25:09 2019 (r493014) @@ -0,0 +1,26 @@ +include/cbor.h +include/cbor/arrays.h +include/cbor/bytestrings.h +include/cbor/callbacks.h +include/cbor/common.h +include/cbor/configuration.h +include/cbor/data.h +include/cbor/encoding.h +include/cbor/floats_ctrls.h +include/cbor/internal/builder_callbacks.h +include/cbor/internal/encoders.h +include/cbor/internal/loaders.h +include/cbor/internal/memory_utils.h +include/cbor/internal/stack.h +include/cbor/internal/unicode.h +include/cbor/ints.h +include/cbor/maps.h +include/cbor/serialization.h +include/cbor/streaming.h +include/cbor/strings.h +include/cbor/tags.h +lib/libcbor.a +lib/libcbor.so +lib/libcbor.so.0 +lib/libcbor.so.0.0.0 +libdata/pkgconfig/libcbor.pc