NOTICE: This package has been removed from pkgsrc

./devel/p5-Term-ReadLine, Interface to the GNU Readline Library

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 1.36nb2, Package name: p5-Term-ReadLine-1.36nb2, Maintainer: pkgsrc-users

Term::ReadLine::Gnu (TRG) is an implementation of the interface to
the GNU Readline Library. This module gives you input line editing
facility, input history management facility, word completion
facility, etc. It uses the real GNU Readline Library and has the
interface with the almost all variables and functions which are
documented in the GNU Readline/History Library. So you can program
your custom editing function, your custom completion function, and
so on with Perl. TRG may be useful for prototyping before programming
with C.


Required to run:
[lang/perl5] [devel/readline]

Required to build:
[pkgtools/cwrappers]

Master sites: (Expand)

SHA1: 1c79b6b2f9b1256313b5bf262682e42ecf9d13ea
RMD160: 4f7b090100a108e22f763931f334ff6911640c98
Filesize: 125.328 KB

Version history: (Expand)


CVS history: (Expand)


   2020-08-31 20:13:29 by Thomas Klausner | Files touched by this commit (3631)
Log message:
*: bump PKGREVISION for perl-5.32.
   2019-08-29 21:45:07 by Amitai Schleier | Files touched by this commit (3)
Log message:
Don't try to detect TERMCAP_LIB, let BROKEN_READLINE_DETECTION tell
us. Fixes at least Ubuntu builds. Tested on Ubuntu 16, NetBSD 8,
macOS 10.14.
   2019-08-11 15:25:21 by Thomas Klausner | Files touched by this commit (3557)
Log message:
Bump PKGREVISIONs for perl 5.30.0
   2019-06-30 22:17:50 by Nia Alarie | Files touched by this commit (1816)
Log message:
Update packages using a search.cpan.org HOMEPAGE to metacpan.org.

The former now redirects to the latter.

This covers the most simple cases where http://search.cpan.org/dist/name
can be changed to https://metacpan.org/release/name.

Reviewed by hand to hopefully make sure no unwanted changes sneak in.
   2019-01-26 08:42:00 by Wen Heping | Files touched by this commit (2)
Log message:
Update to 1.36

Upstream changes:
1.36  2019-01-14
        - readline-8.0 support
            new function
                rl_empty_keymap
                rl_set_keymap_name
                rl_check_signals
            new variable
                history_quoting_state
            rl_function_of_keyseq uses rl_function_of_keyseq_len to
            support an arbitrary key sequence that may include NULs.
        - new() checks the number of arguments.
        - make 'use Term::ReadLine::Gnu' fail if $TERM is not set or
          on a dumb terminal.  'use Term::ReadLine' uses
          Term::ReadLine::Stub instead. [rt.cpan.org #123398]
        - Makefile.PL: checks the tinfo library for Debian.
        - add t/01test_use.t and t/02test_use.t.
        - comment out a hack for the CPAN Test on OpenBSD added on
          TRG 1.22.
        - t/utf8_binary.t, t/utf8_text.t: skipped on Perl 5.8.
   2018-08-22 11:48:07 by Thomas Klausner | Files touched by this commit (3558)
Log message:
Recursive bump for perl5-5.28.0
   2017-06-05 16:25:36 by Ryo ONODERA | Files touched by this commit (2298)
Log message:
Recursive revbump from lang/perl5 5.26.0
   2016-11-07 15:04:33 by Makoto Fujiwara | Files touched by this commit (2)
Log message:
Update devel/p5-Term-ReadLine to 1.35
-------------------------------------
1.35  2016-11-03
        - readline-7.0 support
            new function
                rl_clear_visible_line
                rl_tty_set_echoing
                rl_pending_signal
            new variable
                rl_persistent_signal_handlers
        - Gnu.xs: fix a bug of rl_readline_state variable causing on a
          big-endian, sizeof(int)==4, and sizeof(long)==8 platform
          with the GNU Readline Library 7.0. [rt.cpan.org #118371]