Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 17 Jan 2020 19:00:03 +0000 (UTC)
From:      Dmitri Goutnik <dmgk@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r523350 - in head/textproc: . codesearch
Message-ID:  <202001171900.00HJ03O2022592@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dmgk
Date: Fri Jan 17 19:00:02 2020
New Revision: 523350
URL: https://svnweb.freebsd.org/changeset/ports/523350

Log:
  New port: textproc/codesearch
  
  Code Search is a tool for indexing and then performing regular expression
  searches over large bodies of source code. It is a set of command-line programs
  written in Go.
  
  WWW: https://github.com/google/codesearch
  
  PR:		243273
  Submitted by:	eborisch+FreeBSD@gmail.com

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Fri Jan 17 18:58:24 2020	(r523349)
+++ head/textproc/Makefile	Fri Jan 17 19:00:02 2020	(r523350)
@@ -92,6 +92,7 @@
     SUBDIR += cmark
     SUBDIR += coccigrep
     SUBDIR += code2html
+    SUBDIR += codesearch
     SUBDIR += codespell
     SUBDIR += colordiff
     SUBDIR += confetti

Added: head/textproc/codesearch/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/codesearch/Makefile	Fri Jan 17 19:00:02 2020	(r523350)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+PORTNAME=	codesearch
+DISTVERSIONPREFIX=	v
+DISTVERSION=	1.1.0
+CATEGORIES=	textproc
+
+MAINTAINER=	eborisch@gmail.com
+COMMENT=	Fast (indexed) text search tool from Google
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		go
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	google
+
+GO_PKGNAME=	github.com/google/codesearch
+GO_TARGET=	./cmd/cgrep \
+		./cmd/cindex \
+		./cmd/csearch
+
+CONFLICTS_INSTALL=	hs-cgrep
+
+PLIST_FILES=	${GO_TARGET:C/.\/cmd/bin/}
+
+.include <bsd.port.mk>

Added: head/textproc/codesearch/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/codesearch/distinfo	Fri Jan 17 19:00:02 2020	(r523350)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1578920429
+SHA256 (google-codesearch-v1.1.0_GH0.tar.gz) = b177021d1da1ddfc333fcbfc679eadd62c8677a6ae6119f25c4ad6b912bcdd7e
+SIZE (google-codesearch-v1.1.0_GH0.tar.gz) = 34076

Added: head/textproc/codesearch/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/codesearch/pkg-descr	Fri Jan 17 19:00:02 2020	(r523350)
@@ -0,0 +1,5 @@
+Code Search is a tool for indexing and then performing regular expression
+searches over large bodies of source code. It is a set of command-line programs
+written in Go.
+
+WWW: https://github.com/google/codesearch



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