goawk 1.29.0-1 source package in Ubuntu

Changelog

goawk (1.29.0-1) unstable; urgency=medium

  * New upstream version 1.29.0.
  * d/goawk.scd: Document new -c option.

 -- Guilherme Puida Moreira <email address hidden>  Wed, 18 Sep 2024 18:46:40 -0300

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Questing release universe misc
Plucky release universe misc

Downloads

File Size SHA-256 Checksum
goawk_1.29.0-1.dsc 2.1 KiB 9bdf6d90f2509b043a5fa5ed283b85c1bad29f8b568ef3e8ed83c673c3227185
goawk_1.29.0.orig.tar.gz 1.6 MiB 91bf708ad6776bea7e1fbd1a0969042de8ebc3139b89468a2a1f5405f3401f54
goawk_1.29.0-1.debian.tar.xz 5.1 KiB 7cd6d2a8de2f0c33fff9688c9add41301f2984a945e2277a46d7a6e9cf1a9ad5

Available diffs

No changes file available.

Binary packages built by this source

goawk: POSIX-compliant AWK interpreter written in Go, with CSV support (program)

 GoAWK is a POSIX-compatible version of AWK, and additionally has a CSV
 mode for reading and writing CSV and TSV files.
 .
 Additional features GoAWK has over AWK:
 .
  * It has proper support for CSV and TSV files.
  * It's the only AWK implementation with a code coverage feature.
  * It supports negative field indexes to access fields from the right,
    for example, $-1 refers to the last field.
  * It's embeddable in your Go programs! You can even call custom Go
    functions from your AWK scripts.
  * Most AWK scripts are faster than awk and on a par with gawk, though
    usually slower than mawk.
  * The parser supports 'single-quoted strings' in addition to "double-
    quoted strings", primarily to make Windows one-liners easier when using
    the cmd.exe shell (which uses " as the quote character).
 .
 This package provides the CLI interface to goawk.

golang-github-benhoyt-goawk-dev: POSIX-compliant AWK interpreter written in Go, with CSV support (library)

 GoAWK is a POSIX-compatible version of AWK, and additionally has a CSV
 mode for reading and writing CSV and TSV files.
 .
 Additional features GoAWK has over AWK:
 .
  * It has proper support for CSV and TSV files.
  * It's the only AWK implementation with a code coverage feature.
  * It supports negative field indexes to access fields from the right,
    for example, $-1 refers to the last field.
  * It's embeddable in your Go programs! You can even call custom Go
    functions from your AWK scripts.
  * Most AWK scripts are faster than awk and on a par with gawk, though
    usually slower than mawk.
  * The parser supports 'single-quoted strings' in addition to "double-
    quoted strings", primarily to make Windows one-liners easier when using
    the cmd.exe shell (which uses " as the quote character).
 .
 This package provides the goawk library.