Received: by mail.netbsd.org (Postfix, from userid 605) id 35F0384F1C; Wed, 30 Nov 2022 14:26:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 66FB884F1B for ; Wed, 30 Nov 2022 14:26:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id UCTPcIpUH8yn for ; Wed, 30 Nov 2022 14:26:19 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B39EA84D24 for ; Wed, 30 Nov 2022 14:26:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AD321FA90; Wed, 30 Nov 2022 14:26:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1669818379194640" MIME-Version: 1.0 Date: Wed, 30 Nov 2022 14:26:19 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-tty-logger To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20221130142619.AD321FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1669818379194640 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Wed Nov 30 14:26:19 UTC 2022 Added Files: pkgsrc/devel/ruby-tty-logger: DESCR Makefile PLIST distinfo Log Message: devel/ruby-tty-logger: add pacakge version 0.6.0 This package is required by new ruby-review package. TTY::Logger > A readable, structured and beautiful logging for the terminal TTY::Logger provides independent logging component for TTY toolkit. ## Features * Intuitive console output for an increased readability * Ability to stream data to any IO object * Supports structured data logging * Filters sensitive data * Allows to define custom log types * Formats and truncates messages to avoid clogging logging output * Customizable styling of labels and symbols for console output * Includes metadata information: time, location, scope * Handles multiple logging outputs To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/ruby-tty-logger/DESCR \ pkgsrc/devel/ruby-tty-logger/Makefile pkgsrc/devel/ruby-tty-logger/PLIST \ pkgsrc/devel/ruby-tty-logger/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1669818379194640 Content-Disposition: inline Content-Length: 3068 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/ruby-tty-logger/DESCR diff -u /dev/null pkgsrc/devel/ruby-tty-logger/DESCR:1.1 --- /dev/null Wed Nov 30 14:26:19 2022 +++ pkgsrc/devel/ruby-tty-logger/DESCR Wed Nov 30 14:26:19 2022 @@ -0,0 +1,17 @@ +TTY::Logger + +> A readable, structured and beautiful logging for the terminal + +TTY::Logger provides independent logging component for TTY toolkit. + +## Features + +* Intuitive console output for an increased readability +* Ability to stream data to any IO object +* Supports structured data logging +* Filters sensitive data +* Allows to define custom log types +* Formats and truncates messages to avoid clogging logging output +* Customizable styling of labels and symbols for console output +* Includes metadata information: time, location, scope +* Handles multiple logging outputs Index: pkgsrc/devel/ruby-tty-logger/Makefile diff -u /dev/null pkgsrc/devel/ruby-tty-logger/Makefile:1.1 --- /dev/null Wed Nov 30 14:26:19 2022 +++ pkgsrc/devel/ruby-tty-logger/Makefile Wed Nov 30 14:26:19 2022 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2022/11/30 14:26:19 taca Exp $ + +DISTNAME= tty-logger-0.6.0 +CATEGORIES= devel + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://ttytoolkit.org/ +COMMENT= Readable, structured and beautiful terminal logging +LICENSE= mit + +DEPENDS+= ${RUBY_PKGPREFIX}-pastel>=0.8<1:../../devel/ruby-pastel + +USE_LANGUAGES= # none + +.include "../../lang/ruby/gem.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/ruby-tty-logger/PLIST diff -u /dev/null pkgsrc/devel/ruby-tty-logger/PLIST:1.1 --- /dev/null Wed Nov 30 14:26:19 2022 +++ pkgsrc/devel/ruby-tty-logger/PLIST Wed Nov 30 14:26:19 2022 @@ -0,0 +1,19 @@ +@comment $NetBSD: PLIST,v 1.1 2022/11/30 14:26:19 taca Exp $ +${GEM_HOME}/cache/${GEM_NAME}.gem +${GEM_LIBDIR}/CHANGELOG.md +${GEM_LIBDIR}/LICENSE.txt +${GEM_LIBDIR}/README.md +${GEM_LIBDIR}/lib/tty-logger.rb +${GEM_LIBDIR}/lib/tty/logger.rb +${GEM_LIBDIR}/lib/tty/logger/config.rb +${GEM_LIBDIR}/lib/tty/logger/data_filter.rb +${GEM_LIBDIR}/lib/tty/logger/event.rb +${GEM_LIBDIR}/lib/tty/logger/formatters/json.rb +${GEM_LIBDIR}/lib/tty/logger/formatters/text.rb +${GEM_LIBDIR}/lib/tty/logger/handlers/base.rb +${GEM_LIBDIR}/lib/tty/logger/handlers/console.rb +${GEM_LIBDIR}/lib/tty/logger/handlers/null.rb +${GEM_LIBDIR}/lib/tty/logger/handlers/stream.rb +${GEM_LIBDIR}/lib/tty/logger/levels.rb +${GEM_LIBDIR}/lib/tty/logger/version.rb +${GEM_HOME}/specifications/${GEM_NAME}.gemspec Index: pkgsrc/devel/ruby-tty-logger/distinfo diff -u /dev/null pkgsrc/devel/ruby-tty-logger/distinfo:1.1 --- /dev/null Wed Nov 30 14:26:19 2022 +++ pkgsrc/devel/ruby-tty-logger/distinfo Wed Nov 30 14:26:19 2022 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2022/11/30 14:26:19 taca Exp $ + +BLAKE2s (tty-logger-0.6.0.gem) = ab66bfea4e8779521200d258aa26f1815f97a9148560403996c79b66e6827bbd +SHA512 (tty-logger-0.6.0.gem) = 83727cff71b83f13b5ee484fbcd70ffa3eefdc130c7e052888ced423eed31c89d9335c30b37be46d2390b52d018b74ca1848347625ac4e025fd7781bea0211c2 +Size (tty-logger-0.6.0.gem) = 20992 bytes --_----------=_1669818379194640--