pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/ruby-tty-table devel/ruby-tty-table: add version...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1c3838c16446
branches:  trunk
changeset: 444673:1c3838c16446
user:      taca <taca%pkgsrc.org@localhost>
date:      Mon Jan 11 13:30:38 2021 +0000

description:
devel/ruby-tty-table: add version 0.12.0

Add ruby-tty-table package version 0.12.0.


TTY::Table

TTY::Table provides independent table formatting component for TTY toolkit
(https://github.com/piotrmurach/tty).

## Features

* Table behaves like an array with familiar API
* Create table once and render using custom view renderers
* Rendering provides many display options
* Easy custom border creation
* Supports multibyte character encodings

diffstat:

 devel/ruby-tty-table/DESCR    |  12 ++++++++++++
 devel/ruby-tty-table/Makefile |  18 ++++++++++++++++++
 devel/ruby-tty-table/PLIST    |  42 ++++++++++++++++++++++++++++++++++++++++++
 devel/ruby-tty-table/distinfo |   6 ++++++
 4 files changed, 78 insertions(+), 0 deletions(-)

diffs (94 lines):

diff -r a2d2c98c959f -r 1c3838c16446 devel/ruby-tty-table/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ruby-tty-table/DESCR        Mon Jan 11 13:30:38 2021 +0000
@@ -0,0 +1,12 @@
+TTY::Table
+
+TTY::Table provides independent table formatting component for TTY toolkit
+(https://github.com/piotrmurach/tty).
+
+## Features
+
+* Table behaves like an array with familiar API
+* Create table once and render using custom view renderers
+* Rendering provides many display options
+* Easy custom border creation
+* Supports multibyte character encodings
diff -r a2d2c98c959f -r 1c3838c16446 devel/ruby-tty-table/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ruby-tty-table/Makefile     Mon Jan 11 13:30:38 2021 +0000
@@ -0,0 +1,18 @@
+# $NetBSD: Makefile,v 1.1 2021/01/11 13:30:38 taca Exp $
+
+DISTNAME=      tty-table-0.12.0
+CATEGORIES=    devel
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://ttytoolkit.org/
+COMMENT=       Flexible and intuitive table generator
+LICENSE=       mit
+
+DEPENDS+=      ${RUBY_PKGPREFIX}-pastel>=0.8<1:../../devel/ruby-pastel
+DEPENDS+=      ${RUBY_PKGPREFIX}-strings>=0.2.0<0.3:../../textproc/ruby-strings
+DEPENDS+=      ${RUBY_PKGPREFIX}-tty-screen>=0.8<1:../../devel/ruby-tty-screen
+
+USE_LANGUAGES= # none
+
+.include "../../lang/ruby/gem.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r a2d2c98c959f -r 1c3838c16446 devel/ruby-tty-table/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ruby-tty-table/PLIST        Mon Jan 11 13:30:38 2021 +0000
@@ -0,0 +1,42 @@
+@comment $NetBSD: PLIST,v 1.1 2021/01/11 13:30:38 taca Exp $
+${GEM_HOME}/cache/${GEM_NAME}.gem
+${GEM_LIBDIR}/CHANGELOG.md
+${GEM_LIBDIR}/LICENSE.txt
+${GEM_LIBDIR}/README.md
+${GEM_LIBDIR}/lib/tty-table.rb
+${GEM_LIBDIR}/lib/tty/table.rb
+${GEM_LIBDIR}/lib/tty/table/alignment_set.rb
+${GEM_LIBDIR}/lib/tty/table/border.rb
+${GEM_LIBDIR}/lib/tty/table/border/ascii.rb
+${GEM_LIBDIR}/lib/tty/table/border/null.rb
+${GEM_LIBDIR}/lib/tty/table/border/row_line.rb
+${GEM_LIBDIR}/lib/tty/table/border/unicode.rb
+${GEM_LIBDIR}/lib/tty/table/border_dsl.rb
+${GEM_LIBDIR}/lib/tty/table/border_options.rb
+${GEM_LIBDIR}/lib/tty/table/column_constraint.rb
+${GEM_LIBDIR}/lib/tty/table/columns.rb
+${GEM_LIBDIR}/lib/tty/table/empty.rb
+${GEM_LIBDIR}/lib/tty/table/error.rb
+${GEM_LIBDIR}/lib/tty/table/field.rb
+${GEM_LIBDIR}/lib/tty/table/header.rb
+${GEM_LIBDIR}/lib/tty/table/indentation.rb
+${GEM_LIBDIR}/lib/tty/table/operation/alignment.rb
+${GEM_LIBDIR}/lib/tty/table/operation/escape.rb
+${GEM_LIBDIR}/lib/tty/table/operation/filter.rb
+${GEM_LIBDIR}/lib/tty/table/operation/padding.rb
+${GEM_LIBDIR}/lib/tty/table/operation/truncation.rb
+${GEM_LIBDIR}/lib/tty/table/operation/wrapped.rb
+${GEM_LIBDIR}/lib/tty/table/operations.rb
+${GEM_LIBDIR}/lib/tty/table/options.rb
+${GEM_LIBDIR}/lib/tty/table/orientation.rb
+${GEM_LIBDIR}/lib/tty/table/orientation/horizontal.rb
+${GEM_LIBDIR}/lib/tty/table/orientation/vertical.rb
+${GEM_LIBDIR}/lib/tty/table/renderer.rb
+${GEM_LIBDIR}/lib/tty/table/renderer/ascii.rb
+${GEM_LIBDIR}/lib/tty/table/renderer/basic.rb
+${GEM_LIBDIR}/lib/tty/table/renderer/unicode.rb
+${GEM_LIBDIR}/lib/tty/table/row.rb
+${GEM_LIBDIR}/lib/tty/table/transformation.rb
+${GEM_LIBDIR}/lib/tty/table/validatable.rb
+${GEM_LIBDIR}/lib/tty/table/version.rb
+${GEM_HOME}/specifications/${GEM_NAME}.gemspec
diff -r a2d2c98c959f -r 1c3838c16446 devel/ruby-tty-table/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ruby-tty-table/distinfo     Mon Jan 11 13:30:38 2021 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2021/01/11 13:30:38 taca Exp $
+
+SHA1 (tty-table-0.12.0.gem) = a49b1223aaee59a45df54fe92bf918d0ed7911a5
+RMD160 (tty-table-0.12.0.gem) = 8fe078331676b8cd7caefec42bbf05eafd8031a5
+SHA512 (tty-table-0.12.0.gem) = 2ee507fd10c714736d46cd2dcee9477bafb29f2f3fb4ea78caba6c5cf1123d7c06f73b42ff0c29f077d72789825fb596cd507719ba06cf7e6f96f1c0f7075510
+Size (tty-table-0.12.0.gem) = 29696 bytes



Home | Main Index | Thread Index | Old Index