Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Mar 2020 11:46:21 +0000 (UTC)
From:      Hajimu UMEMOTO <ume@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r528028 - in head/textproc: . textql
Message-ID:  <202003081146.028BkL0r065831@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ume
Date: Sun Mar  8 11:46:21 2020
New Revision: 528028
URL: https://svnweb.freebsd.org/changeset/ports/528028

Log:
  New port: TextQL - Execute SQL against structured text like CSV or TSV

Added:
  head/textproc/textql/
  head/textproc/textql/Makefile   (contents, props changed)
  head/textproc/textql/distinfo   (contents, props changed)
  head/textproc/textql/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Sun Mar  8 10:56:36 2020	(r528027)
+++ head/textproc/Makefile	Sun Mar  8 11:46:21 2020	(r528028)
@@ -1746,6 +1746,7 @@
     SUBDIR += texi2html
     SUBDIR += texi2mdoc
     SUBDIR += textogif
+    SUBDIR += textql
     SUBDIR += the_silver_searcher
     SUBDIR += ti-hunspell
     SUBDIR += tidyp

Added: head/textproc/textql/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/textql/Makefile	Sun Mar  8 11:46:21 2020	(r528028)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+PORTNAME=	textql
+PORTVERSION=	g20200203
+#PORTREVISION=	0
+CATEGORIES=	textproc
+
+MAINTAINER=	ume@FreeBSD.org
+COMMENT=	Execute SQL against structured text like CSV or TSV
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		go
+USE_GITHUB=	yes
+GH_ACCOUNT=	dinedal
+GH_TAGNAME=	1d6fef5
+
+GO_TARGET=	textql/main.go:textql
+
+PLIST_FILES=	bin/textql \
+		man/man1/textql.1.gz
+
+post-install:
+	${INSTALL_MAN} ${WRKSRC}/man/textql.1 \
+		${STAGEDIR}${MANPREFIX}/man/man1
+
+.include <bsd.port.mk>

Added: head/textproc/textql/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/textql/distinfo	Sun Mar  8 11:46:21 2020	(r528028)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1583662685
+SHA256 (dinedal-textql-g20200203-1d6fef5_GH0.tar.gz) = 0fc48f0a1d9e28513dab105527816e42eaf9c24c7610711446b13109d7364c74
+SIZE (dinedal-textql-g20200203-1d6fef5_GH0.tar.gz) = 508460

Added: head/textproc/textql/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/textql/pkg-descr	Sun Mar  8 11:46:21 2020	(r528028)
@@ -0,0 +1,4 @@
+TextQL - Allows you to easily execute SQL against structured text like
+CSV or TSV.
+
+WWW: https://github.com/dinedal/textql/



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