jline2 2.12.1-1 source package in Ubuntu

Changelog

jline2 (2.12.1-1) unstable; urgency=medium

  * New upstream version 2.12.1 (Closes: #784061)
  * Use debhelper 10.
  * Update Vcs URLs
  * Update Homepage to refer to Github page
  * Remove Eugenio Cano-Manuel Mendoza from Uploaders
  * Add myself to uploaders.
  * Bump Standards-Version to 4.1.3

 -- tony mancill <email address hidden>  Tue, 09 Jan 2018 18:48:31 -0800

Upload details

Uploaded by:
Debian Java Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Java Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
jline2_2.12.1-1.dsc 2.0 KiB 4483e350d3ec081988f3fa1d9d17a5b4b5e0975d23d00afe925bbb6632b679a6
jline2_2.12.1.orig.tar.gz 95.0 KiB 41c03847f862c7eceb3c5b1cef9bc89f62db43c53f3328e46a6257bebcc7d68d
jline2_2.12.1-1.debian.tar.xz 4.2 KiB ca4f331ed56f0c55d181d0f7cfd9e11efd379b4d3b642f138d4854ce3f327b2d

Available diffs

No changes file available.

Binary packages built by this source

libjline2-java: console input handling in Java

 JLine is a Java library for handling console input. It is similar in
 functionality to BSD editline and GNU readline. People familiar with the
 readline/editline capabilities for modern shells (such as bash and tcsh) will
 find most of the command editing features of JLine to be familiar.
 .
 Jline2 suppors the current features:
 .
  * Command history - Lines that have been previously entered may be recalled
  and edited and can be persisted so that they are available across sessions
  of your program.
  * Line editing - JLine allows full editing of the current command line and
  attempts to mimic as much of the behavior of GNU Readline as possible,
  including support for both emacs and vi key mappings.
  * Completion - JLine provides a pluggable mechanism for implementing
  command line tab completion (of course completion can be bound to any key
  you wish).
  * Custom Key bindings - Keys may be arbitrarily remapped to perform a
  specific action, and JLine attempts to honor any mapping that is set in
  your existing readline .inputrc file.
  * Character Masking - Input may be gathered from the user without any
  visual feedback. This is useful for prompting for passwords.
  * 99.99% Java - The vast portion of JLine is all Java, using only some
  small bit of native code, provided by the Jansi project, to support
  Windows.