From owner-svn-ports-head@freebsd.org Sat Nov 24 22:28:28 2018 Return-Path: Delivered-To: svn-ports-head@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 47E8B113BD3B; Sat, 24 Nov 2018 22:28:28 +0000 (UTC) (envelope-from sunpoet@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 DDCAD8EF97; Sat, 24 Nov 2018 22:28:27 +0000 (UTC) (envelope-from sunpoet@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 122F51417D; Sat, 24 Nov 2018 22:28:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wAOMSP5N076524; Sat, 24 Nov 2018 22:28:25 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wAOMSPWe076521; Sat, 24 Nov 2018 22:28:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201811242228.wAOMSPWe076521@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Nov 2018 22:28:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485802 - in head/textproc: . sift X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/textproc: . sift X-SVN-Commit-Revision: 485802 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DDCAD8EF97 X-Spamd-Result: default: False [1.72 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_LONG(0.66)[0.661,0]; NEURAL_SPAM_MEDIUM(0.66)[0.657,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_SPAM_SHORT(0.40)[0.400,0] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Nov 2018 22:28:28 -0000 Author: sunpoet Date: Sat Nov 24 22:28:25 2018 New Revision: 485802 URL: https://svnweb.freebsd.org/changeset/ports/485802 Log: Add sift 0.9.0 sift has a slightly different focus than most other grep alternatives. Code search, log search / digital forensics and data processing are the main use cases, but the primary goal is to provide safe defaults and to make it easily configurable for a specific use case. Among the features are: - Stable releases, cross platform support - Safe defaults: sift searches everywhere if not configured otherwise - Complete & working .gitignore support - High performance for many uses cases - Support for adding custom file types to narrow down searches - Multiline support - Support for big files: >50GB, >5,000,000,000 lines and >5,000,000,000 matches successfully tested WWW: https://github.com/svent/sift Added: head/textproc/sift/ head/textproc/sift/Makefile (contents, props changed) head/textproc/sift/distinfo (contents, props changed) head/textproc/sift/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sat Nov 24 22:28:20 2018 (r485801) +++ head/textproc/Makefile Sat Nov 24 22:28:25 2018 (r485802) @@ -1715,6 +1715,7 @@ SUBDIR += sgmls SUBDIR += sgrep SUBDIR += sgrep2 + SUBDIR += sift SUBDIR += sigil SUBDIR += silvercity SUBDIR += simplexml Added: head/textproc/sift/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/sift/Makefile Sat Nov 24 22:28:25 2018 (r485802) @@ -0,0 +1,31 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= sift +PORTVERSION= 0.9.0 +DISTVERSIONPREFIX= v +CATEGORIES= textproc + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Fast and powerful open source alternative to grep + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go + +GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT} + +PLIST_FILES= bin/sift + +GH_ACCOUNT= svent +GH_TUPLE= golang:crypto:3d3f9f4:golang_crypto/../src/golang.org/x/crypto \ + golang:sys:62eef0e:golang_sys/../src/golang.org/x/sys \ + svent:go-flags:4bcbad3:svent_goflags/../src/github.com/svent/go-flags \ + svent:go-nbreader:7cef48d:svent_gonbreader/../src/github.com/svent/go-nbreader +USE_GITHUB= yes + +do-install: + ${INSTALL_PROGRAM} ${GO_WRKDIR_BIN}/sift ${STAGEDIR}${PREFIX}/bin/sift + +.include Added: head/textproc/sift/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/sift/distinfo Sat Nov 24 22:28:25 2018 (r485802) @@ -0,0 +1,11 @@ +TIMESTAMP = 1543074658 +SHA256 (svent-sift-v0.9.0_GH0.tar.gz) = bbbd5c472c36b78896cd7ae673749d3943621a6d5523d47973ed2fc6800ae4c8 +SIZE (svent-sift-v0.9.0_GH0.tar.gz) = 37442 +SHA256 (golang-crypto-3d3f9f4_GH0.tar.gz) = 4cac408ad0b69d6117d973764bc8dab1f9cf5bee6bf7c78041459241afa0b414 +SIZE (golang-crypto-3d3f9f4_GH0.tar.gz) = 1644646 +SHA256 (golang-sys-62eef0e_GH0.tar.gz) = ad3c32771a961d18cb8a1ae96c56e8927f49bc97f281a3f6333c05c4ee32d005 +SIZE (golang-sys-62eef0e_GH0.tar.gz) = 1115440 +SHA256 (svent-go-flags-4bcbad3_GH0.tar.gz) = 8fb342e5d1ad220c7040a6f185f39a38679f9c88e24716fcc6f2fef2ee09825a +SIZE (svent-go-flags-4bcbad3_GH0.tar.gz) = 45988 +SHA256 (svent-go-nbreader-7cef48d_GH0.tar.gz) = 62e0248ba434aa54461f554afc532cd5a4393ce55c35fdf750175fa14f997448 +SIZE (svent-go-nbreader-7cef48d_GH0.tar.gz) = 2777 Added: head/textproc/sift/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/sift/pkg-descr Sat Nov 24 22:28:25 2018 (r485802) @@ -0,0 +1,14 @@ +sift has a slightly different focus than most other grep alternatives. Code +search, log search / digital forensics and data processing are the main use +cases, but the primary goal is to provide safe defaults and to make it easily +configurable for a specific use case. Among the features are: +- Stable releases, cross platform support +- Safe defaults: sift searches everywhere if not configured otherwise +- Complete & working .gitignore support +- High performance for many uses cases +- Support for adding custom file types to narrow down searches +- Multiline support +- Support for big files: >50GB, >5,000,000,000 lines and >5,000,000,000 matches + successfully tested + +WWW: https://github.com/svent/sift