golang-github-thomasrooney-gexpect 0.0~git20161231.5482f03-4 source package in Ubuntu

Changelog

golang-github-thomasrooney-gexpect (0.0~git20161231.5482f03-4) unstable; urgency=medium

  * Source only upload (accidentally uploaded amd-changes for 3rd revision)

 -- Peymaneh <email address hidden>  Sun, 18 Dec 2022 21:42:17 +0100

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-thomasrooney-gexpect_0.0~git20161231.5482f03-4.dsc 1.8 KiB ba98a61ea74869619257b797dd66b7aa748f167e4da4d5fced584d0ad51da595
golang-github-thomasrooney-gexpect_0.0~git20161231.5482f03.orig.tar.gz 8.0 KiB 233394b1795c58cafaf21153053c559fec0e87923fccb0e72b99da4f03770106
golang-github-thomasrooney-gexpect_0.0~git20161231.5482f03-4.debian.tar.xz 2.8 KiB c0672e70b17498ad15d6f6d55955a477e76dc1a183ae6a225673ceb0df895186

No changes file available.

Binary packages built by this source

golang-github-thomasrooney-gexpect-dev: pure golang expect library

 Gexpect is a pure golang expect-like module. It provides the following
 functions for simpler creation and control of other terminal applications:
 .
  - ReadLine, ReadUntil and SendLine send strings from/to stdout/stdin
  - Wait and Close allow for graceful and ungraceful termination.
  - AsyncInteractChannels spawns two go routines to pipe into and from
    stdout/stdin, allowing for some usecases to be a little simpler.
  - ExpectRegex uses golang's internal regex engine to wait until a match from
    the process with the given regular expression (or an error on process
    termination with no match)
  - ExpectRegexFind allows for groups to be extracted from process stdout.