From owner-svn-ports-all@freebsd.org Thu Sep 20 11:19:15 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 372E110989E9; Thu, 20 Sep 2018 11:19:15 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D97C888876; Thu, 20 Sep 2018 11:19:14 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CDC321D350; Thu, 20 Sep 2018 11:19:14 +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 w8KBJECA042207; Thu, 20 Sep 2018 11:19:14 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8KBJDc9042201; Thu, 20 Sep 2018 11:19:13 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201809201119.w8KBJDc9042201@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Thu, 20 Sep 2018 11:19:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480165 - in head/databases: . opendbviewer opendbviewer/files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/databases: . opendbviewer opendbviewer/files X-SVN-Commit-Revision: 480165 X-SVN-Commit-Repository: ports 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.27 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: Thu, 20 Sep 2018 11:19:15 -0000 Author: tobik Date: Thu Sep 20 11:19:13 2018 New Revision: 480165 URL: https://svnweb.freebsd.org/changeset/ports/480165 Log: New port: databases/opendbviewer OpenDBViewer is a simple database explorer for SQLite, MySQL, and PostgreSQL databases. It contains: - SQL syntax highlightings - Multi database, table, and worksheet view - Big database loading - Open SQLite table directly with drag'n drop - History of last connection - Edit database directly from the table view WWW: https://github.com/Jet1oeil/opendbviewer PR: 231473 Submitted by: lbartoletti@tuxfamily.org (based on) Added: head/databases/opendbviewer/ head/databases/opendbviewer/Makefile (contents, props changed) head/databases/opendbviewer/distinfo (contents, props changed) head/databases/opendbviewer/files/ head/databases/opendbviewer/files/patch-CMakeLists.txt (contents, props changed) head/databases/opendbviewer/pkg-descr (contents, props changed) head/databases/opendbviewer/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Thu Sep 20 10:58:04 2018 (r480164) +++ head/databases/Makefile Thu Sep 20 11:19:13 2018 (r480165) @@ -252,6 +252,7 @@ SUBDIR += ocaml-mysql SUBDIR += ocaml-sqlite3 SUBDIR += openark-kit + SUBDIR += opendbviewer SUBDIR += opendbx SUBDIR += opentsdb SUBDIR += ora2pg Added: head/databases/opendbviewer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/opendbviewer/Makefile Thu Sep 20 11:19:13 2018 (r480165) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= opendbviewer +PORTVERSION= 1.1.0 +CATEGORIES= databases + +MAINTAINER= lbartoletti@tuxfamily.org +COMMENT= Simple database explorer + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= convert:graphics/ImageMagick + +USES= cmake:outsource compiler:c++11-lang qt:5 +USE_GITHUB= yes +GH_ACCOUNT= Jet1oeil +USE_QT= core gui network sql sql-sqlite3 testlib widgets \ + buildtools_build linguisttools_build qmake_build + +OPTIONS_DEFINE= DOCS PGSQL MYSQL +OPTIONS_DEFAULT= PGSQL + +PGSQL_USE= QT=sql-pgsql +MYSQL_USE= QT=sql-mysql + +.include Added: head/databases/opendbviewer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/opendbviewer/distinfo Thu Sep 20 11:19:13 2018 (r480165) @@ -0,0 +1,3 @@ +TIMESTAMP = 1537298361 +SHA256 (Jet1oeil-opendbviewer-1.1.0_GH0.tar.gz) = 3226c3b1cc00560dfae5c607eef5c517480553acda2d709147cd9c13fa18e6ee +SIZE (Jet1oeil-opendbviewer-1.1.0_GH0.tar.gz) = 2082815 Added: head/databases/opendbviewer/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/opendbviewer/files/patch-CMakeLists.txt Thu Sep 20 11:19:13 2018 (r480165) @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2018-09-19 13:46:09 UTC ++++ CMakeLists.txt +@@ -58,7 +58,7 @@ elseif(APPLE) + else(WIN32) + set(INSTALL_PATH_BIN "bin/") + set(INSTALL_PATH_SHARE "share/${APPLICATION_PACKAGE_NAME}") +- set(INSTALL_PATH_DOC "share/${APPLICATION_PACKAGE_NAME}/doc") ++ set(INSTALL_PATH_DOC "share/doc/${APPLICATION_PACKAGE_NAME}") + set(INSTALL_PATH_APPLICATIONS "share/applications") + set(INSTALL_PATH_ICONS "share/icons/") + endif(WIN32) Added: head/databases/opendbviewer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/opendbviewer/pkg-descr Thu Sep 20 11:19:13 2018 (r480165) @@ -0,0 +1,11 @@ +OpenDBViewer is a simple database explorer for SQLite, MySQL, and +PostgreSQL databases. It contains: + +- SQL syntax highlightings +- Multi database, table, and worksheet view +- Big database loading +- Open SQLite table directly with drag'n drop +- History of last connection +- Edit database directly from the table view + +WWW: https://github.com/Jet1oeil/opendbviewer Added: head/databases/opendbviewer/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/opendbviewer/pkg-plist Thu Sep 20 11:19:13 2018 (r480165) @@ -0,0 +1,34 @@ +bin/opendbviewer +share/applications/opendbviewer.desktop +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/README +%%DATADIR%%/icons_themes/app_default/actions/128/database-add.png +%%DATADIR%%/icons_themes/app_default/actions/128/database.png +%%DATADIR%%/icons_themes/app_default/actions/128/folder.png +%%DATADIR%%/icons_themes/app_default/actions/128/history.png +%%DATADIR%%/icons_themes/app_default/actions/16/database-add.png +%%DATADIR%%/icons_themes/app_default/actions/16/database.png +%%DATADIR%%/icons_themes/app_default/actions/16/folder.png +%%DATADIR%%/icons_themes/app_default/actions/16/history.png +%%DATADIR%%/icons_themes/app_default/actions/22/database-add.png +%%DATADIR%%/icons_themes/app_default/actions/22/database.png +%%DATADIR%%/icons_themes/app_default/actions/22/folder.png +%%DATADIR%%/icons_themes/app_default/actions/22/history.png +%%DATADIR%%/icons_themes/app_default/actions/24/database-add.png +%%DATADIR%%/icons_themes/app_default/actions/24/database.png +%%DATADIR%%/icons_themes/app_default/actions/24/folder.png +%%DATADIR%%/icons_themes/app_default/actions/24/history.png +%%DATADIR%%/icons_themes/app_default/actions/32/database-add.png +%%DATADIR%%/icons_themes/app_default/actions/32/database.png +%%DATADIR%%/icons_themes/app_default/actions/32/folder.png +%%DATADIR%%/icons_themes/app_default/actions/32/history.png +%%DATADIR%%/icons_themes/app_default/actions/48/database-add.png +%%DATADIR%%/icons_themes/app_default/actions/48/database.png +%%DATADIR%%/icons_themes/app_default/actions/48/folder.png +%%DATADIR%%/icons_themes/app_default/actions/48/history.png +%%DATADIR%%/icons_themes/app_default/actions/64/database-add.png +%%DATADIR%%/icons_themes/app_default/actions/64/database.png +%%DATADIR%%/icons_themes/app_default/actions/64/folder.png +%%DATADIR%%/icons_themes/app_default/actions/64/history.png +%%DATADIR%%/icons_themes/app_default/author +%%DATADIR%%/icons_themes/app_default/index.theme