freetable 2.3-4.4 source package in Ubuntu

Changelog

freetable (2.3-4.4) unstable; urgency=medium

  * Non-maintainer upload.
  * debian/control:
    + Apply "wrap-and-sort -abst".
    + Bump Standards-Version to 4.6.1.
    + Move perl from Build-Depends-Indep to Build-Depends.
      This package only builds an arch:all package anyway.
    + Bump debhelper compat to v13.
    + Replace hardcoded perl dependency with ${perl:Depends}.
    + Add missing ${misc:Depends} placeholder for dependency field.
  * debian/source/format: Convert to "3.0 (quilt)". (Closes: #1007039)
  * debian/patches: Add patch to reflect previous direct changes.
  * debian/rules: Convert to dh sequencer. (Closes: #998943)
    + Force non-parallel build to circumvent pod2man race condition.

 -- Boyuan Yang <email address hidden>  Wed, 25 May 2022 02:04:00 -0400

Upload details

Uploaded by:
Felipe Augusto van de Wiel (faw)
Uploaded to:
Sid
Original maintainer:
Felipe Augusto van de Wiel (faw)
Architectures:
all
Section:
web
Urgency:
Medium Urgency

See full publishing history Publishing

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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
freetable_2.3-4.4.dsc 1.7 KiB 6b24f86a7271132c059fc25c40231f67e530a536589f007c88f9447f71af9602
freetable_2.3.orig.tar.gz 20.3 KiB b36ec6fd2cc625c4486b25bd4a5e02495895eb5acd9d42c59ce6893b0f791d83
freetable_2.3-4.4.debian.tar.xz 11.6 KiB 7c2204f7a6e34c159c253787ff28e2029caead4dc5fe8e7956aed85bed37f260

Available diffs

No changes file available.

Binary packages built by this source

freetable: Facilitates production of HTML tables

 Freetable is a perl script that aims to make the production of HTML
 tables a little easier. This script works as a filter, reading stdin
 and writing to stdout.
 .
 The input syntax is as roughly follows:
 .
       <wwwtable table-options...>
         initial text (e.g. <caption> ... </caption>).
         (X, Y) options for cell (X, Y)
         text for cell (X,Y)...
         ((X,Y)) options for header cell X,Y
         text for header cell (X,Y)...
       </wwwtable>
 .
 Rows and cells may be specified in any order, numbering starts at 1.
 X and/or Y may be replaced by regular expression, explicit range
 or even arbitrary Perl code to indicate rows or columns.
 Options or text (or both) may be omitted for cells. Cells
 may be omitted completely if they are empty or fall under the
 rowspan/colspan specifications of another cell. Cells may contain
 arbitrary HTML text, including other freetable tables.