Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 68EAC1A9239 for ; Mon, 1 Nov 2021 14:15:45 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 7F21984D82; Mon, 1 Nov 2021 14:15:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BA2DD84D6A for ; Mon, 1 Nov 2021 14:15:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id I2o-EA_5As7i for ; Mon, 1 Nov 2021 14:15:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 1036584D43 for ; Mon, 1 Nov 2021 14:15:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 09B6FFAEC; Mon, 1 Nov 2021 14:15:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1635776143285290" MIME-Version: 1.0 Date: Mon, 1 Nov 2021 14:15:43 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/devel/sfsexp To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20211101141543.09B6FFAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1635776143285290 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Mon Nov 1 14:15:42 UTC 2021 Added Files: pkgsrc/devel/sfsexp: DESCR Makefile PLIST buildlink3.mk distinfo Log Message: devel/sfsexp: import sfsexp-1.3.1pre20211025 This library is intended for developers who wish to manipulate (read, parse, modify, and create) symbolic expressions from C or C++ programs. A symbolic expression, or s-expression, is essentially a LISP-like expression such as (a (b c)). S-expressions are able to represent complex, structured data without requiring additional meta-data describing the structure. They are recursively defined: an s-expression is a list of either atoms or s-expressions. In the example above, the expression contains an atom "a" and an s-expression, which in turn contains two atoms, "b" and "c". They are simple, useful, and well understood. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/sfsexp/DESCR pkgsrc/devel/sfsexp/Makefile \ pkgsrc/devel/sfsexp/PLIST pkgsrc/devel/sfsexp/buildlink3.mk \ pkgsrc/devel/sfsexp/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1635776143285290 Content-Disposition: inline Content-Length: 3445 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/sfsexp/DESCR diff -u /dev/null pkgsrc/devel/sfsexp/DESCR:1.1 --- /dev/null Mon Nov 1 14:15:42 2021 +++ pkgsrc/devel/sfsexp/DESCR Mon Nov 1 14:15:42 2021 @@ -0,0 +1,10 @@ +This library is intended for developers who wish to manipulate (read, +parse, modify, and create) symbolic expressions from C or C++ +programs. A symbolic expression, or s-expression, is essentially a +LISP-like expression such as (a (b c)). S-expressions are able to +represent complex, structured data without requiring additional +meta-data describing the structure. They are recursively defined: an +s-expression is a list of either atoms or s-expressions. In the +example above, the expression contains an atom "a" and an +s-expression, which in turn contains two atoms, "b" and "c". They are +simple, useful, and well understood. Index: pkgsrc/devel/sfsexp/Makefile diff -u /dev/null pkgsrc/devel/sfsexp/Makefile:1.1 --- /dev/null Mon Nov 1 14:15:42 2021 +++ pkgsrc/devel/sfsexp/Makefile Mon Nov 1 14:15:42 2021 @@ -0,0 +1,27 @@ +# $NetBSD: Makefile,v 1.1 2021/11/01 14:15:42 ryoon Exp $ + +GITHUB_PROJECT= sfsexp +DISTNAME= sexpr-1.3.1pre20211025 +PKGNAME= ${DISTNAME:S/sexpr-/sfsexp-/} +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_GITHUB:=mjsottile/} +GITHUB_TAG= 30739f9544cfa43212769bb3b4eabfaba44b8ff6 + +MAINTAINER= ryoon@NetBSD.org +HOMEPAGE= https://github.com/mjsottile/sfsexp/ +COMMENT= Small Fast S-Expression Library +LICENSE= gnu-lgpl-v2.1 + +GNU_CONFIGURE= yes +USE_LIBTOOL= yes +USE_LANGUAGES= c c++ +USE_TOOLS+= automake + +PKGCONFIG_OVERRIDE= sfsexp.pc.in + +pre-configure: + set -e; cd ${WRKSRC}; \ + ${MKDIR} m4; \ + aclocal; libtoolize; autoheader; automake -a --foreign -i; autoconf + +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/sfsexp/PLIST diff -u /dev/null pkgsrc/devel/sfsexp/PLIST:1.1 --- /dev/null Mon Nov 1 14:15:42 2021 +++ pkgsrc/devel/sfsexp/PLIST Mon Nov 1 14:15:42 2021 @@ -0,0 +1,10 @@ +@comment $NetBSD: PLIST,v 1.1 2021/11/01 14:15:42 ryoon Exp $ +include/cstring.h +include/faststack.h +include/sexp.h +include/sexp_errors.h +include/sexp_memory.h +include/sexp_ops.h +include/sexp_vis.h +lib/libsexp.la +lib/pkgconfig/sfsexp.pc Index: pkgsrc/devel/sfsexp/buildlink3.mk diff -u /dev/null pkgsrc/devel/sfsexp/buildlink3.mk:1.1 --- /dev/null Mon Nov 1 14:15:42 2021 +++ pkgsrc/devel/sfsexp/buildlink3.mk Mon Nov 1 14:15:42 2021 @@ -0,0 +1,12 @@ +# $NetBSD: buildlink3.mk,v 1.1 2021/11/01 14:15:42 ryoon Exp $ + +BUILDLINK_TREE+= sfsexp + +.if !defined(SFSEXP_BUILDLINK3_MK) +SFSEXP_BUILDLINK3_MK:= + +BUILDLINK_API_DEPENDS.sfsexp+= sfsexp>=1.3.1pre20210719 +BUILDLINK_PKGSRCDIR.sfsexp?= ../../devel/sfsexp +.endif # SFSEXP_BUILDLINK3_MK + +BUILDLINK_TREE+= -sfsexp Index: pkgsrc/devel/sfsexp/distinfo diff -u /dev/null pkgsrc/devel/sfsexp/distinfo:1.1 --- /dev/null Mon Nov 1 14:15:42 2021 +++ pkgsrc/devel/sfsexp/distinfo Mon Nov 1 14:15:42 2021 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2021/11/01 14:15:42 ryoon Exp $ + +BLAKE2s (sexpr-1.3.1pre20211025-30739f9544cfa43212769bb3b4eabfaba44b8ff6.tar.gz) = f2563ac2b68126e4fca2f5f664fb23bf4e21b248f8f9341f308df22af6b1054d +SHA512 (sexpr-1.3.1pre20211025-30739f9544cfa43212769bb3b4eabfaba44b8ff6.tar.gz) = 41c070d67ca317042b9bb4d149f9b52f9966767d1f213a200831277a15a67d414ccbdc5f9665e60a8e3aa8ec774787123a17b9007b8aaebc6c384582f562d3a5 +Size (sexpr-1.3.1pre20211025-30739f9544cfa43212769bb3b4eabfaba44b8ff6.tar.gz) = 115585 bytes --_----------=_1635776143285290--