trscripts 1.18+nmu3 source package in Ubuntu

Changelog

trscripts (1.18+nmu3) unstable; urgency=medium

  * Add missing unicode charmaps (Closes: #767442)
  * Modernize packaging:
    - use dh
    - don't install package source
    - switch to source format 3.0 (native)
    - reformat d/copyright

 -- Jochen Sprickerhof <email address hidden>  Sun, 19 Sep 2021 21:18:58 +0200

Upload details

Uploaded by:
Anton Zinoviev
Uploaded to:
Sid
Original maintainer:
Anton Zinoviev
Architectures:
all
Section:
utils
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe utils
Noble release universe utils
Mantic release universe utils
Lunar release universe utils
Jammy release universe utils

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
trscripts_1.18+nmu3.dsc 1.4 KiB 51b3d15c88f6c5dc9268653df08f726731c5a2733feb3b94238e81f7a490d0fa
trscripts_1.18+nmu3.tar.xz 97.2 KiB 4b53edff0dbec21ab6c9997b08460b3852b36bcc5420ca18f26b4bb4fea4c7c8

Available diffs

No changes file available.

Binary packages built by this source

trscripts: Scripts for reencoding text files and BDF-fonts

 The script `trbdf' can convert a BDF font from one codeset
 to another.
 .
 The script `trcs' reencodes text files from one codeset to another.
 It can generate scripts for `tr'. For example the command
  trcs --from cp1252 --to latin1 --gen-script
 gives you the following output:
  #!/bin/sh
 .
  trap "exit 0" PIPE
 .
  cat "$@" | tr \
  '\200''\201''\202''\203''\204''\205''\206''\207''\210''\211''\212'\
  '\213''\214''\215''\216''\217''\220''\221''\222''\223''\224''\225'\
  '\226''\227''\230''\231''\232''\233''\234''\235''\236''\237' \
  '\105''\77''\47''\146''\42''\267''\53''\77''\136''\77''\123'\
  '\253''\117''\77''\132''\77''\77''\47''\47''\42''\42''\267'\
  '\-''\-''\176''\77''\163''\273''\157''\77''\172''\131'
 .
 Both scripts try to approximate the missing from the target codeset
 symbols.
 .
 It is easy to add support of other character sets.