From owner-svn-ports-all@freebsd.org Sun Mar 5 20:08:46 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA907CFA8A1; Sun, 5 Mar 2017 20:08:46 +0000 (UTC) (envelope-from tobik@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 mx1.freebsd.org (Postfix) with ESMTPS id BFF8E1D04; Sun, 5 Mar 2017 20:08:46 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v25K8j1q044234; Sun, 5 Mar 2017 20:08:45 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v25K8jtO044229; Sun, 5 Mar 2017 20:08:45 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201703052008.v25K8jtO044229@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sun, 5 Mar 2017 20:08:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435503 - in head/devel: . ksql X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 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: Sun, 05 Mar 2017 20:08:47 -0000 Author: tobik Date: Sun Mar 5 20:08:45 2017 New Revision: 435503 URL: https://svnweb.freebsd.org/changeset/ports/435503 Log: New port: devel/ksql Ksql is a "lazy man's" wrapper for the SQLite C API. It is written to make sure sloppy programming won't cause your SQLite database to be inconsistent (transactions and statements open on exit and certain signals). Specifically, it exits on any database errors; and upon exit (or signal), cleans up open statements, transactions, and databases. WWW: https://kristaps.bsd.lv/ksql/ Approved by: lme (mentor) Differential Revision: https://reviews.freebsd.org/D9896 Added: head/devel/ksql/ head/devel/ksql/Makefile (contents, props changed) head/devel/ksql/distinfo (contents, props changed) head/devel/ksql/pkg-descr (contents, props changed) head/devel/ksql/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Mar 5 20:05:56 2017 (r435502) +++ head/devel/Makefile Sun Mar 5 20:08:45 2017 (r435503) @@ -1199,6 +1199,7 @@ SUBDIR += kickassembler SUBDIR += kimwitu SUBDIR += kore + SUBDIR += ksql SUBDIR += kyra SUBDIR += kyua SUBDIR += lasi Added: head/devel/ksql/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ksql/Makefile Sun Mar 5 20:08:45 2017 (r435503) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= ksql +PORTVERSION= 0.0.9 +CATEGORIES= devel databases +MASTER_SITES= http://kristaps.bsd.lv/ksql/snapshots/ + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Lazy man's wrapper for the SQLite C API + +LICENSE= ISCL + +LIB_DEPENDS= libsqlite3.so:databases/sqlite3 + +USES= localbase +MAKE_ARGS= PREFIX="${STAGEDIR}${PREFIX}" +ALL_TARGET= libksql.a + +.include Added: head/devel/ksql/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ksql/distinfo Sun Mar 5 20:08:45 2017 (r435503) @@ -0,0 +1,3 @@ +TIMESTAMP = 1488715533 +SHA256 (ksql-0.0.9.tar.gz) = 052706ece35ca780be87ec2b645d91e62366d3bc8ee7acad50ddb12a35b2da08 +SIZE (ksql-0.0.9.tar.gz) = 11669 Added: head/devel/ksql/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ksql/pkg-descr Sun Mar 5 20:08:45 2017 (r435503) @@ -0,0 +1,8 @@ +Ksql is a "lazy man's" wrapper for the SQLite C API. It is written to +make sure sloppy programming won't cause your SQLite database to be +inconsistent (transactions and statements open on exit and certain +signals). Specifically, it exits on any database errors; and upon +exit (or signal), cleans up open statements, transactions, and +databases. + +WWW: https://kristaps.bsd.lv/ksql/ Added: head/devel/ksql/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ksql/pkg-plist Sun Mar 5 20:08:45 2017 (r435503) @@ -0,0 +1,16 @@ +include/ksql.h +lib/libksql.a +man/man3/ksql.3.gz +man/man3/ksql_alloc.3.gz +man/man3/ksql_bind_double.3.gz +man/man3/ksql_close.3.gz +man/man3/ksql_exec.3.gz +man/man3/ksql_free.3.gz +man/man3/ksql_lastid.3.gz +man/man3/ksql_open.3.gz +man/man3/ksql_stmt_alloc.3.gz +man/man3/ksql_stmt_double.3.gz +man/man3/ksql_stmt_free.3.gz +man/man3/ksql_stmt_reset.3.gz +man/man3/ksql_trans_commit.3.gz +man/man3/ksql_trans_open.3.gz