csv-mode 1.22-1 source package in Ubuntu

Changelog

csv-mode (1.22-1) unstable; urgency=medium

  [ Debian Janitor ]
  * Remove constraints unnecessary since buster (oldstable):
    + elpa-csv-mode: Drop versioned constraint on emacs in Recommends.

  [ Nicholas D Steeves ]
  * Update upstream signing keys.  Yes, plural.  GNU ELPA now uses two, and
    both are required for signature verification.
  * New upstream release.
  * Update upstream copyright ranges (upstream and my own).
  * Declare Standards-Version 4.6.2. (no further changes required).

 -- Nicholas D Steeves <email address hidden>  Tue, 14 Feb 2023 16:18:02 -0500

Upload details

Uploaded by:
Debian Emacsen team
Uploaded to:
Sid
Original maintainer:
Debian Emacsen team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

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

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
csv-mode_1.22-1.dsc 1.9 KiB 9e46e8280f4888339fbbe66f9bd6e237de55710d9d82928bd7b1afab94a2ee16
csv-mode_1.22.orig.tar.xz 20.3 KiB 3fc56b84b4b674ddb1e72a692aae8a63d6cd712eaf47e33c213ab30e4d86a40b
csv-mode_1.22-1.debian.tar.xz 4.7 KiB c65f1a3a219ce7c31bb128d1ccd7857ab860e3268b16cf959540689d2a6664bc

Available diffs

No changes file available.

Binary packages built by this source

elpa-csv-mode: Emacs major mode for editing comma, char, and tab separated values

 This package implements CSV mode, a major mode for editing records in
 a generalised CSV (character-separated values) format. It also
 features support for TSV (tab-separated values). CSV mode supports
 operations such as the following:
 .
   * sort lexicographically and numerically on a specified
     field or column.
   * kill and yank by field or column. C-c C-k can kill more than one
     field at once, but multiple killed fields can be yanked only as a
     fixed group equivalent to a single field.
   * align fields into columns.
   * interchange between rows and columns.
 .
 CSV mode can recognise fields separated by a number of individual
 characters, configurable in `csv-separators'. CSV data fields can be
 delimited with quote characters. This implementation supports quoted
 fields, where all permitted quote characters are specified in the
 customisable user option `csv-field-quotes'. By default, the only
 separator is a comma and the only field quote is a double quote.
 .
 The global minor mode `csv-field-index-mode' displays the current
 field index in the mode line, cf. `line-number-mode' and
 `column-number-mode'. It is on by default.