Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 40F2E7A21A for ; Sat, 8 Oct 2016 12:57:09 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E927C85E99; Sat, 8 Oct 2016 12:57:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 79CB085E88 for ; Sat, 8 Oct 2016 12:57:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 8kNZRZwVQ-RM for ; Sat, 8 Oct 2016 12:57:08 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 09B2C84C86 for ; Sat, 8 Oct 2016 12:57:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 034C2FBD2; Sat, 8 Oct 2016 12:57:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_14759314277540" MIME-Version: 1.0 Date: Sat, 8 Oct 2016 12:57:07 +0000 From: "Kamil Rytarowski" Subject: CVS commit: pkgsrc/databases/lua-sql-sqlite To: pkgsrc-changes@NetBSD.org Reply-To: kamil@netbsd.org X-Mailer: log_accum Message-Id: <20161008125708.034C2FBD2@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_14759314277540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kamil Date: Sat Oct 8 12:57:07 UTC 2016 Added Files: pkgsrc/databases/lua-sql-sqlite: DESCR Makefile PLIST Log Message: Import SQLite 2.x luasql 2.3.2 as databases/lua-sql-sqlite LuaSQL is a simple interface from Lua to a DBMS. It enables a Lua program to: * Connect to ODBC, Oracle, MySQL and PostgreSQL databases; * Execute arbitrary SQL statements; * Retrieve results in a row-by-row cursor fashion; This package provides access to SQLite 2.x. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/databases/lua-sql-sqlite/DESCR \ pkgsrc/databases/lua-sql-sqlite/Makefile \ pkgsrc/databases/lua-sql-sqlite/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_14759314277540 Content-Disposition: inline Content-Length: 1648 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/databases/lua-sql-sqlite/DESCR diff -u /dev/null pkgsrc/databases/lua-sql-sqlite/DESCR:1.1 --- /dev/null Sat Oct 8 12:57:07 2016 +++ pkgsrc/databases/lua-sql-sqlite/DESCR Sat Oct 8 12:57:07 2016 @@ -0,0 +1,6 @@ +LuaSQL is a simple interface from Lua to a DBMS. It enables a Lua program to: + * Connect to ODBC, Oracle, MySQL and PostgreSQL databases; + * Execute arbitrary SQL statements; + * Retrieve results in a row-by-row cursor fashion; + +This package provides access to SQLite 2.x. Index: pkgsrc/databases/lua-sql-sqlite/Makefile diff -u /dev/null pkgsrc/databases/lua-sql-sqlite/Makefile:1.1 --- /dev/null Sat Oct 8 12:57:07 2016 +++ pkgsrc/databases/lua-sql-sqlite/Makefile Sat Oct 8 12:57:07 2016 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2016/10/08 12:57:07 kamil Exp $ + +.include "../../databases/lua-sql-mysql/Makefile.common" + +PKGNAME= ${LUA_PKGPREFIX}-${DISTNAME:S/luasql/sql-sqlite/} + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= SQLite 2.x bindings for Lua + +BUILD_TARGET= sqlite + +MAKE_FLAGS+= DRIVER_LIBS_sqlite="${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.sqlite}/lib -L${BUILDLINK_PREFIX.sqlite}/lib -lsqlite" +MAKE_FLAGS+= DRIVER_INCS_sqlite=-I${BUILDLINK_PREFIX.sqlite}/includel + +.include "../../databases/sqlite/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/databases/lua-sql-sqlite/PLIST diff -u /dev/null pkgsrc/databases/lua-sql-sqlite/PLIST:1.1 --- /dev/null Sat Oct 8 12:57:07 2016 +++ pkgsrc/databases/lua-sql-sqlite/PLIST Sat Oct 8 12:57:07 2016 @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1 2016/10/08 12:57:07 kamil Exp $ +${LUA_CDIR}/luasql/sqlite.so --_----------=_14759314277540--