From owner-svn-ports-all@freebsd.org Sun Mar 5 20:05:57 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 BBAFECFA821; Sun, 5 Mar 2017 20:05:57 +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 93C371BF7; Sun, 5 Mar 2017 20:05:57 +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 v25K5uQL043970; Sun, 5 Mar 2017 20:05:56 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v25K5up8043966; Sun, 5 Mar 2017 20:05:56 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201703052005.v25K5up8043966@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:05:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435502 - in head/databases: . sqliteconvert 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:05:57 -0000 Author: tobik Date: Sun Mar 5 20:05:56 2017 New Revision: 435502 URL: https://svnweb.freebsd.org/changeset/ports/435502 Log: New port: databases/sqliteconvert Sqliteconvert is a set of tools to convert SQLite3 schema files into documentation. It includes sqlite2dot(1), which converts into a graphviz file; sqlite2html(1), which converts into an HTML5 fragment; and sqliteconvert(1), which pulls these tools together with some sane default templates. WWW: https://kristaps.bsd.lv/sqliteconvert/ Approved by: lme (mentor) Differential Revision: https://reviews.freebsd.org/D9895 Added: head/databases/sqliteconvert/ head/databases/sqliteconvert/Makefile (contents, props changed) head/databases/sqliteconvert/distinfo (contents, props changed) head/databases/sqliteconvert/pkg-descr (contents, props changed) head/databases/sqliteconvert/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Sun Mar 5 20:01:41 2017 (r435501) +++ head/databases/Makefile Sun Mar 5 20:05:56 2017 (r435502) @@ -965,6 +965,7 @@ SUBDIR += sqlite3 SUBDIR += sqlitebrowser SUBDIR += sqlitebrowser-qt5 + SUBDIR += sqliteconvert SUBDIR += sqliteman SUBDIR += sqlitemanager SUBDIR += sqliteodbc Added: head/databases/sqliteconvert/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/sqliteconvert/Makefile Sun Mar 5 20:05:56 2017 (r435502) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= sqliteconvert +DISTVERSIONPREFIX= VERSION_ +DISTVERSION= 0_1_2 +CATEGORIES= databases + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Tools to convert SQLite3 schema files into documentation + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +RUN_DEPENDS= dot:graphics/graphviz + +USE_GITHUB= yes +GH_ACCOUNT= kristapsdz + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sqlite2html \ + ${STAGEDIR}${PREFIX}/bin/sqlite2dot + +.include Added: head/databases/sqliteconvert/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/sqliteconvert/distinfo Sun Mar 5 20:05:56 2017 (r435502) @@ -0,0 +1,3 @@ +TIMESTAMP = 1488713412 +SHA256 (kristapsdz-sqliteconvert-VERSION_0_1_2_GH0.tar.gz) = df89d3e858dcd0aa4e16fce28ce6075df0e6594932b1dcca238d34c5d3a044e0 +SIZE (kristapsdz-sqliteconvert-VERSION_0_1_2_GH0.tar.gz) = 26833 Added: head/databases/sqliteconvert/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/sqliteconvert/pkg-descr Sun Mar 5 20:05:56 2017 (r435502) @@ -0,0 +1,7 @@ +Sqliteconvert is a set of tools to convert SQLite3 schema files into +documentation. It includes sqlite2dot(1), which converts into a +graphviz file; sqlite2html(1), which converts into an HTML5 fragment; +and sqliteconvert(1), which pulls these tools together with some sane +default templates. + +WWW: https://kristaps.bsd.lv/sqliteconvert/ Added: head/databases/sqliteconvert/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/sqliteconvert/pkg-plist Sun Mar 5 20:05:56 2017 (r435502) @@ -0,0 +1,7 @@ +bin/sqlite2dot +bin/sqlite2html +bin/sqliteconvert +man/man1/sqlite2dot.1.gz +man/man1/sqlite2html.1.gz +man/man1/sqliteconvert.1.gz +%%DATADIR%%/schema.xml