Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Mar 2017 20:05:56 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r435502 - in head/databases: . sqliteconvert
Message-ID:  <201703052005.v25K5up8043966@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703052005.v25K5up8043966>