From owner-svn-ports-all@freebsd.org Mon Apr 18 14:06:53 2016 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 77DF4B12656; Mon, 18 Apr 2016 14:06:53 +0000 (UTC) (envelope-from mat@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 4AAB810D6; Mon, 18 Apr 2016 14:06:53 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3IE6qmb080662; Mon, 18 Apr 2016 14:06:52 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3IE6qxC080658; Mon, 18 Apr 2016 14:06:52 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201604181406.u3IE6qxC080658@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 18 Apr 2016 14:06:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413574 - in head/databases: luasql-mysql luasql-postgres luasql-sqlite3 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.21 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: Mon, 18 Apr 2016 14:06:53 -0000 Author: mat Date: Mon Apr 18 14:06:51 2016 New Revision: 413574 URL: https://svnweb.freebsd.org/changeset/ports/413574 Log: Update to 2.3.1. PR: 208864 Submitted by: tkato432 yahoo com Sponsored by: Absolight Modified: head/databases/luasql-mysql/Makefile (contents, props changed) head/databases/luasql-mysql/distinfo (contents, props changed) head/databases/luasql-postgres/Makefile (contents, props changed) head/databases/luasql-sqlite3/Makefile (contents, props changed) Modified: head/databases/luasql-mysql/Makefile ============================================================================== --- head/databases/luasql-mysql/Makefile Mon Apr 18 14:06:44 2016 (r413573) +++ head/databases/luasql-mysql/Makefile Mon Apr 18 14:06:51 2016 (r413574) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= luasql -PORTVERSION= 2.3.0 +PORTVERSION= 2.3.1 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION?= 0 CATEGORIES= databases PKGNAMESUFFIX= -${LUASQL_DRIVER} @@ -17,7 +17,7 @@ USE_GITHUB= yes GH_ACCOUNT= keplerproject USES= lua gmake -ALL_TARGET= lib +ALL_TARGET= ${LUASQL_DRIVER} LUASQL_DRIVER?= mysql @@ -37,18 +37,18 @@ PLIST_SUB+= LUA_MIDLIBDIR=${LUA_MODLIBDI .if ${LUASQL_DRIVER} == "mysql" COMMENT= Lua interface to MySQL USE_MYSQL= yes -MAKE_ARGS+= DRIVER_LIBS="-L ${LOCALBASE}/lib/mysql -lmysqlclient" \ - DRIVER_INCS="-I ${LOCALBASE}/include/mysql" +MAKE_ARGS+= DRIVER_LIBS_mysql="-L ${LOCALBASE}/lib/mysql -lmysqlclient" \ + DRIVER_INCS_mysql="-I ${LOCALBASE}/include/mysql" .elif ${LUASQL_DRIVER} == "postgres" COMMENT= Lua interface to PostgreSQL USES+= pgsql -MAKE_ARGS+= DRIVER_LIBS="-L ${LOCALBASE}/lib -lpq" \ - DRIVER_INCS="-I ${LOCALBASE}/include" +MAKE_ARGS+= DRIVER_LIBS_postgres="-L ${LOCALBASE}/lib -lpq" \ + DRIVER_INCS_postgres="-I ${LOCALBASE}/include" .elif ${LUASQL_DRIVER} == "sqlite3" COMMENT= Lua interface to SQLite3 -USE_SQLITE= 3 -MAKE_ARGS+= DRIVER_LIBS="-L ${LOCALBASE}/lib -lsqlite3" \ - DRIVER_INCS="-I ${LOCALBASE}/include" +USES+= sqlite +MAKE_ARGS+= DRIVER_LIBS_sqlite3="-L ${LOCALBASE}/lib -lsqlite3" \ + DRIVER_INCS_sqlite3="-I ${LOCALBASE}/include" .else IGNORE= unknown or unsupported luasql driver .endif Modified: head/databases/luasql-mysql/distinfo ============================================================================== --- head/databases/luasql-mysql/distinfo Mon Apr 18 14:06:44 2016 (r413573) +++ head/databases/luasql-mysql/distinfo Mon Apr 18 14:06:51 2016 (r413574) @@ -1,2 +1,2 @@ -SHA256 (keplerproject-luasql-v2.3.0_GH0.tar.gz) = e173ff7b17a2757951b4b2f67d3b1bfe04caad7185b68cffa7758ce822e25e9f -SIZE (keplerproject-luasql-v2.3.0_GH0.tar.gz) = 80809 +SHA256 (keplerproject-luasql-v2.3.1_GH0.tar.gz) = 281f4d2c7d563551145169e2da41b5942a7aa15f4aedbcd73d53a8f8589c49e8 +SIZE (keplerproject-luasql-v2.3.1_GH0.tar.gz) = 101048 Modified: head/databases/luasql-postgres/Makefile ============================================================================== --- head/databases/luasql-postgres/Makefile Mon Apr 18 14:06:44 2016 (r413573) +++ head/databases/luasql-postgres/Makefile Mon Apr 18 14:06:51 2016 (r413574) @@ -1,8 +1,6 @@ # Created by: Martin Matuska # $FreeBSD$ -PORTNAME= luasql - LUASQL_DRIVER= postgres MASTERDIR= ${.CURDIR}/../luasql-mysql Modified: head/databases/luasql-sqlite3/Makefile ============================================================================== --- head/databases/luasql-sqlite3/Makefile Mon Apr 18 14:06:44 2016 (r413573) +++ head/databases/luasql-sqlite3/Makefile Mon Apr 18 14:06:51 2016 (r413574) @@ -1,8 +1,6 @@ # Created by: Martin Matuska # $FreeBSD$ -PORTNAME= luasql - LUASQL_DRIVER= sqlite3 MASTERDIR= ${.CURDIR}/../luasql-mysql