pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/ruby-tty-reader devel/ruby-tty-reader: add versi...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/5e364fd3e3a4
branches:  trunk
changeset: 409678:5e364fd3e3a4
user:      taca <taca%pkgsrc.org@localhost>
date:      Sun Jan 19 14:53:44 2020 +0000

description:
devel/ruby-tty-reader: add version 0.7.0 package

Add ruby-tty-reader version 0.7.0 package.


TTY::Reader

> A pure Ruby library that provides a set of methods for processing keyboard
  input in character, line and multiline modes. It maintains history of
  entered input with an ability to recall and re-edit those inputs. It lets
  you register to listen for keystroke events and trigger custom key events
  yourself.

TTY::Reader provides independent reader component for TTY
(https://github.com/piotrmurach/tty) toolkit.

diffstat:

 devel/ruby-tty-reader/DESCR    |  10 ++++++++++
 devel/ruby-tty-reader/Makefile |  18 ++++++++++++++++++
 devel/ruby-tty-reader/PLIST    |  42 ++++++++++++++++++++++++++++++++++++++++++
 devel/ruby-tty-reader/distinfo |   6 ++++++
 4 files changed, 76 insertions(+), 0 deletions(-)

diffs (92 lines):

diff -r 81db0c277b88 -r 5e364fd3e3a4 devel/ruby-tty-reader/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ruby-tty-reader/DESCR       Sun Jan 19 14:53:44 2020 +0000
@@ -0,0 +1,10 @@
+TTY::Reader
+
+> A pure Ruby library that provides a set of methods for processing keyboard
+  input in character, line and multiline modes. It maintains history of
+  entered input with an ability to recall and re-edit those inputs. It lets
+  you register to listen for keystroke events and trigger custom key events
+  yourself.
+
+TTY::Reader provides independent reader component for TTY
+(https://github.com/piotrmurach/tty) toolkit.
diff -r 81db0c277b88 -r 5e364fd3e3a4 devel/ruby-tty-reader/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ruby-tty-reader/Makefile    Sun Jan 19 14:53:44 2020 +0000
@@ -0,0 +1,18 @@
+# $NetBSD: Makefile,v 1.1 2020/01/19 14:53:44 taca Exp $
+
+DISTNAME=      tty-reader-0.7.0
+CATEGORIES=    devel
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://piotrmurach.github.io/tty
+COMMENT=       Set of methods for processing keyboard input
+LICENSE=       mit
+
+DEPENDS+=      ${RUBY_PKGPREFIX}-wisper>=2.0.0<2.1:../../devel/ruby-wisper
+DEPENDS+=      ${RUBY_PKGPREFIX}-tty-screen>=0.7<1:../../devel/ruby-tty-screen
+DEPENDS+=      ${RUBY_PKGPREFIX}-tty-cursor>=0.7<1:../../devel/ruby-tty-cursor
+
+USE_LANGUAGES= # none
+
+.include "../../lang/ruby/gem.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 81db0c277b88 -r 5e364fd3e3a4 devel/ruby-tty-reader/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ruby-tty-reader/PLIST       Sun Jan 19 14:53:44 2020 +0000
@@ -0,0 +1,42 @@
+@comment $NetBSD: PLIST,v 1.1 2020/01/19 14:53:44 taca Exp $
+${GEM_HOME}/cache/${GEM_NAME}.gem
+${GEM_LIBDIR}/CHANGELOG.md
+${GEM_LIBDIR}/LICENSE.txt
+${GEM_LIBDIR}/README.md
+${GEM_LIBDIR}/Rakefile
+${GEM_LIBDIR}/benchmarks/speed_read_char.rb
+${GEM_LIBDIR}/benchmarks/speed_read_line.rb
+${GEM_LIBDIR}/bin/console
+${GEM_LIBDIR}/bin/setup
+${GEM_LIBDIR}/examples/keypress.rb
+${GEM_LIBDIR}/examples/keypress_nonblock.rb
+${GEM_LIBDIR}/examples/line.rb
+${GEM_LIBDIR}/examples/multi_prompt.rb
+${GEM_LIBDIR}/examples/multiline.rb
+${GEM_LIBDIR}/examples/noecho.rb
+${GEM_LIBDIR}/examples/shell.rb
+${GEM_LIBDIR}/lib/tty-reader.rb
+${GEM_LIBDIR}/lib/tty/reader.rb
+${GEM_LIBDIR}/lib/tty/reader/console.rb
+${GEM_LIBDIR}/lib/tty/reader/history.rb
+${GEM_LIBDIR}/lib/tty/reader/key_event.rb
+${GEM_LIBDIR}/lib/tty/reader/keys.rb
+${GEM_LIBDIR}/lib/tty/reader/line.rb
+${GEM_LIBDIR}/lib/tty/reader/mode.rb
+${GEM_LIBDIR}/lib/tty/reader/version.rb
+${GEM_LIBDIR}/lib/tty/reader/win_api.rb
+${GEM_LIBDIR}/lib/tty/reader/win_console.rb
+${GEM_LIBDIR}/spec/spec_helper.rb
+${GEM_LIBDIR}/spec/unit/history_spec.rb
+${GEM_LIBDIR}/spec/unit/key_event_spec.rb
+${GEM_LIBDIR}/spec/unit/line_spec.rb
+${GEM_LIBDIR}/spec/unit/publish_keypress_event_spec.rb
+${GEM_LIBDIR}/spec/unit/read_keypress_spec.rb
+${GEM_LIBDIR}/spec/unit/read_line_spec.rb
+${GEM_LIBDIR}/spec/unit/read_multiline_spec.rb
+${GEM_LIBDIR}/spec/unit/subscribe_spec.rb
+${GEM_LIBDIR}/tasks/console.rake
+${GEM_LIBDIR}/tasks/coverage.rake
+${GEM_LIBDIR}/tasks/spec.rake
+${GEM_LIBDIR}/tty-reader.gemspec
+${GEM_HOME}/specifications/${GEM_NAME}.gemspec
diff -r 81db0c277b88 -r 5e364fd3e3a4 devel/ruby-tty-reader/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ruby-tty-reader/distinfo    Sun Jan 19 14:53:44 2020 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2020/01/19 14:53:44 taca Exp $
+
+SHA1 (tty-reader-0.7.0.gem) = ee0dad40fc7fc4a837bfdb031786f70619ce0cf4
+RMD160 (tty-reader-0.7.0.gem) = 5c3bc6221bfb4386ca8f30f3c1b0c811493dac04
+SHA512 (tty-reader-0.7.0.gem) = 29f41a15ff9d86300d9cb6067028a2bf540d258d8a8ca11892e26d40e423854ce32706a33a5cb75037d99d8d30d42998ecc6876a99f3c30bbddacffe61fbf70e
+Size (tty-reader-0.7.0.gem) = 25600 bytes



Home | Main Index | Thread Index | Old Index