From owner-svn-ports-all@freebsd.org Tue Jun 2 18:42:01 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 49D672F6F6C; Tue, 2 Jun 2020 18:42:01 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49c19P1K6zz4Tpy; Tue, 2 Jun 2020 18:42:01 +0000 (UTC) (envelope-from lwhsu@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 2850C21237; Tue, 2 Jun 2020 18:42:01 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 052Ig0bD073756; Tue, 2 Jun 2020 18:42:00 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 052Ig0OP073749; Tue, 2 Jun 2020 18:42:00 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <202006021842.052Ig0OP073749@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Tue, 2 Jun 2020 18:42:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r537568 - in head/www: . logswan X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: in head/www: . logswan X-SVN-Commit-Revision: 537568 X-SVN-Commit-Repository: ports 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.33 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: Tue, 02 Jun 2020 18:42:01 -0000 Author: lwhsu Date: Tue Jun 2 18:41:59 2020 New Revision: 537568 URL: https://svnweb.freebsd.org/changeset/ports/537568 Log: Add www/logswan: Fast Web log analyzer PR: 245231 Submitted by: Juraj Lutter Added: head/www/logswan/ head/www/logswan/Makefile (contents, props changed) head/www/logswan/distinfo (contents, props changed) head/www/logswan/pkg-descr (contents, props changed) head/www/logswan/pkg-message (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Jun 2 18:36:35 2020 (r537567) +++ head/www/Makefile Tue Jun 2 18:41:59 2020 (r537568) @@ -311,6 +311,7 @@ SUBDIR += linux-opera SUBDIR += litmus SUBDIR += ljdeps + SUBDIR += logswan SUBDIR += logtools SUBDIR += lua-resty-core SUBDIR += lua-resty-lrucache Added: head/www/logswan/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/logswan/Makefile Tue Jun 2 18:41:59 2020 (r537568) @@ -0,0 +1,23 @@ +# Created by: Juraj Lutter +# $FreeBSD$ + +PORTNAME= logswan +PORTVERSION= 2.1.4 +CATEGORIES= www + +MAINTAINER= juraj@lutter.sk +COMMENT= Fast Web log analyzer + +LICENSE= BSD2CLAUSE + +LIB_DEPENDS= libjansson.so:devel/jansson \ + libmaxminddb.so:net/libmaxminddb + +USES= cmake +USE_GITHUB= yes +GH_ACCOUNT= fcambus + +PLIST_FILES= bin/${PORTNAME} \ + man/man1/${PORTNAME}.1.gz + +.include Added: head/www/logswan/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/logswan/distinfo Tue Jun 2 18:41:59 2020 (r537568) @@ -0,0 +1,3 @@ +TIMESTAMP = 1585739226 +SHA256 (fcambus-logswan-2.1.4_GH0.tar.gz) = 25bfa62d6eedaad28198c31f596e786006fd8fc6511d020450e702c198be746f +SIZE (fcambus-logswan-2.1.4_GH0.tar.gz) = 20482 Added: head/www/logswan/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/logswan/pkg-descr Tue Jun 2 18:41:59 2020 (r537568) @@ -0,0 +1,8 @@ +Logswan is a fast Web log analyzer using probabilistic data structures. It is +targeted at very large log files, typically APIs logs. It has constant memory +usage regardless of the log file size, and takes approximatively 4MB of RAM. + +Project design goals include: speed, memory-usage efficiency, and keeping +the code as simple as possible. + +WWW: https://www.logswan.org Added: head/www/logswan/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/logswan/pkg-message Tue Jun 2 18:41:59 2020 (r537568) @@ -0,0 +1,10 @@ +[ +{ type: install + message: <