From owner-svn-ports-all@freebsd.org Wed Dec 21 06:20:21 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 E0B42C8A9EC; Wed, 21 Dec 2016 06:20:21 +0000 (UTC) (envelope-from wen@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 A157E1E2B; Wed, 21 Dec 2016 06:20:21 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBL6KKNl089619; Wed, 21 Dec 2016 06:20:20 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBL6KKKB089616; Wed, 21 Dec 2016 06:20:20 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201612210620.uBL6KKKB089616@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 21 Dec 2016 06:20:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429043 - head/databases/sqlitestudio 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: Wed, 21 Dec 2016 06:20:22 -0000 Author: wen Date: Wed Dec 21 06:20:20 2016 New Revision: 429043 URL: https://svnweb.freebsd.org/changeset/ports/429043 Log: - Update to 3.1.1 - Update pkg-descr PR: 214181 Submitted by: yuri@rawbw.com(maintainer) Modified: head/databases/sqlitestudio/Makefile head/databases/sqlitestudio/distinfo head/databases/sqlitestudio/pkg-descr Modified: head/databases/sqlitestudio/Makefile ============================================================================== --- head/databases/sqlitestudio/Makefile Wed Dec 21 05:53:30 2016 (r429042) +++ head/databases/sqlitestudio/Makefile Wed Dec 21 06:20:20 2016 (r429043) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sqlitestudio -PORTVERSION= 3.1.0 +PORTVERSION= 3.1.1 CATEGORIES= databases MASTER_SITES= http://sqlitestudio.pl/files/sqlitestudio3/complete/tar/ @@ -55,65 +55,37 @@ post-patch: @${REINPLACE_CMD} -e 's|^include(.*|include($$$$PWD/../../SQLiteStudio3/plugins.pri)|' \ ${WRKDIR}/Plugins/DbSqliteCipher/DbSqliteCipher.pro -.include - PLUGIN_DIRS= -.if ${PORT_OPTIONS:MPLUGIN_CSV_IMPORT} -PLUGIN_DIRS += CsvImport -.endif -.if ${PORT_OPTIONS:MPLUGIN_CSV_EXPORT} -PLUGIN_DIRS += CsvExport -.endif -.if ${PORT_OPTIONS:MPLUGIN_DB_SQLITE_CIPHER} -PLUGIN_DIRS += DbSqliteCipher -USE_OPENSSL= yes -.endif -.if ${PORT_OPTIONS:MPLUGIN_HTML_EXPORT} -PLUGIN_DIRS += HtmlExport -.endif -.if ${PORT_OPTIONS:MPLUGIN_JSON_EXPORT} -PLUGIN_DIRS += JsonExport -.endif -.if ${PORT_OPTIONS:MPLUGIN_PDF_EXPORT} -PLUGIN_DIRS += PdfExport -.endif -.if ${PORT_OPTIONS:MPLUGIN_PRINTING} -PLUGIN_DIRS += Printing -USE_QT5+= printsupport -.endif -.if ${PORT_OPTIONS:MPLUGIN_REGEXP_IMPORT} -PLUGIN_DIRS += RegExpImport -.endif -.if ${PORT_OPTIONS:MPLUGIN_SQL_ENTERPRISE_FORMATTER} -PLUGIN_DIRS += SqlEnterpriseFormatter -.endif -.if ${PORT_OPTIONS:MPLUGIN_SQL_EXPORT} -PLUGIN_DIRS += SqlExport -.endif -.if ${PORT_OPTIONS:MPLUGIN_SQL_FORMATTER_SIMPLE} -PLUGIN_DIRS += SqlFormatterSimple -.endif -.if ${PORT_OPTIONS:MPLUGIN_XML_EXPORT} -PLUGIN_DIRS += XmlExport -.endif +PLUGIN_CSV_IMPORT_VARS= PLUGIN_DIRS+=CsvImport +PLUGIN_CSV_EXPORT_VARS= PLUGIN_DIRS+=CsvExport +PLUGIN_DB_SQLITE_CIPHER_VARS= PLUGIN_DIRS+=DbSqliteCipher USES+=ssl +PLUGIN_HTML_EXPORT_VARS= PLUGIN_DIRS+=HtmlExport +PLUGIN_JSON_EXPORT_VARS= PLUGIN_DIRS+=JsonExport +PLUGIN_PDF_EXPORT_VARS= PLUGIN_DIRS+=PdfExport +PLUGIN_PRINTING_VARS= PLUGIN_DIRS+=Printing USE_QT5+=printsupport +PLUGIN_REGEXP_IMPORT_VARS= PLUGIN_DIRS+=RegExpImport +PLUGIN_SQL_ENTERPRISE_FORMATTER_VARS= PLUGIN_DIRS+=SqlEnterpriseFormatter +PLUGIN_SQL_EXPORT_VARS= PLUGIN_DIRS+=SqlExport +PLUGIN_SQL_FORMATTER_SIMPLE_VARS= PLUGIN_DIRS+=SqlFormatterSimple +PLUGIN_XML_EXPORT_VARS= PLUGIN_DIRS+=XmlExport post-configure: # Fix for a suspected bug in qmake: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210418 @${REINPLACE_CMD} -E 's|SUBLIBS) -L[^ ]+|SUBLIBS) |' ${WRKSRC}/sqlitestudio/Makefile @${REINPLACE_CMD} -E 's|LIBS)$$|LIBS) -L${PREFIX}/lib|' ${WRKSRC}/sqlitestudio/Makefile -.for plugin in ${PLUGIN_DIRS} - @cd ${WRKDIR}/Plugins/${plugin} && \ - ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${QMAKE_SOURCE_PATH} -.endfor + @for plugin in ${PLUGIN_DIRS}; do \ + cd ${WRKDIR}/Plugins/$$plugin && \ + ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${QMAKE_SOURCE_PATH}; \ + done; post-build: -.for plugin in ${PLUGIN_DIRS} - @cd ${WRKDIR}/Plugins/${plugin} && \ - ${DO_MAKE_BUILD} ${ALL_TARGET} -.endfor + @for plugin in ${PLUGIN_DIRS}; do \ + cd ${WRKDIR}/Plugins/$$plugin && \ + ${DO_MAKE_BUILD} ${ALL_TARGET}; \ + done; post-install: -.for plugin in ${PLUGIN_DIRS} - @cd ${WRKDIR}/Plugins/${plugin} && \ - ${SETENV} ${MAKE_ENV} ${FAKEROOT} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET} -.endfor + @for plugin in ${PLUGIN_DIRS}; do \ + cd ${WRKDIR}/Plugins/$$plugin && \ + ${SETENV} ${MAKE_ENV} ${FAKEROOT} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}; \ + done; .include Modified: head/databases/sqlitestudio/distinfo ============================================================================== --- head/databases/sqlitestudio/distinfo Wed Dec 21 05:53:30 2016 (r429042) +++ head/databases/sqlitestudio/distinfo Wed Dec 21 06:20:20 2016 (r429043) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466103045 -SHA256 (sqlitestudio-3.1.0.tar.gz) = e36690e71825a21d4274de730932a05a029b01dad28728b2c45f9fce0cfe9894 -SIZE (sqlitestudio-3.1.0.tar.gz) = 4565170 +TIMESTAMP = 1481570258 +SHA256 (sqlitestudio-3.1.1.tar.gz) = f757a82466e97137addd70dd5323a1a7ba7cad7841dc138812a2da2799f92c6c +SIZE (sqlitestudio-3.1.1.tar.gz) = 8610037 Modified: head/databases/sqlitestudio/pkg-descr ============================================================================== --- head/databases/sqlitestudio/pkg-descr Wed Dec 21 05:53:30 2016 (r429042) +++ head/databases/sqlitestudio/pkg-descr Wed Dec 21 06:20:20 2016 (r429043) @@ -3,7 +3,7 @@ SQLiteStudio is a SQLite database manage * Powerful, yet light and fast * Exporting to various formats (SQL statements, CSV, HTML, XML, PDF, JSON) * Importing data from various formats (CSV, custom text files) -* Numerous small additions, like formatting code, history of queries executed +* Numerous small additions, like formatting code, history of executed queries, in editor windows, on-the-fly syntax checking, and more * Unicode support * Configurable colors, fonts and shortcuts