golang-github-vbatts-tar-split 0.10.2-1 source package in Ubuntu

Changelog

golang-github-vbatts-tar-split (0.10.2-1) unstable; urgency=medium

  [ Paul Tagliamonte ]
  * Team upload.
  * Use a secure transport for the Vcs-Git and Vcs-Browser URL
  * Remove Built-Using from arch:all -dev package

  [ Tim Potter ]
  * Add me to uploaders

  [ Dr. Tobias Quathamer ]
  * New upstream version 0.10.2
    - Fixes FTBFS with header mismatch. Closes: #876818
    - Refresh patch
  * Use debhelper v10
  * Update team name
  * Update to Standards-Version 4.1.1
    - Use HTTPS URL for d/copyright
    - Use Priority: optional
  * Use golang-any instead of golang-go
  * Update build dependencies
  * Use wrap-and-sort for d/control
  * Update d/copyright
  * Fix typo in description, spotted by lintian
  * Remove unneeded extra license file

 -- Dr. Tobias Quathamer <email address hidden>  Thu, 30 Nov 2017 21:21:16 +0100

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
Bionic release universe misc

Downloads

File Size SHA-256 Checksum
golang-github-vbatts-tar-split_0.10.2-1.dsc 2.3 KiB 89fa0016c0c481c80f28b418a42d481044f127f648c7e71610b1f583649dfdfd
golang-github-vbatts-tar-split_0.10.2.orig.tar.xz 45.4 KiB 7012c8332afd35b5645bd6607ca33c8de53f4f3939c51aeeca9f0ab7984844fb
golang-github-vbatts-tar-split_0.10.2-1.debian.tar.xz 3.8 KiB 221fefac82cc790ce37b53b4f3f3bfd8db358ed7b4ab6f33276a974d720133c8

Available diffs

No changes file available.

Binary packages built by this source

golang-github-vbatts-tar-split-dev: No summary available for golang-github-vbatts-tar-split-dev in ubuntu disco.

No description available for golang-github-vbatts-tar-split-dev in ubuntu disco.

tar-split: tar archive assembly/disassembly

 Pristinely disassembling a tar archive, and stashing needed raw bytes and
 offsets to reassemble a validating original archive.
 .
 Eventually this should detect TARs that this is not possible with.
 .
 For example stored sparse files that have "holes" in them, will be read as a
 contiguous file, though the archive contents may be recorded in sparse format.
 Therefore when adding the file payload to a reassembled tar, to achieve
 identical output, the file payload would need be precisely re-sparsified. This
 is not something I seek to fix immediately, but would rather have an alert that
 precise reassembly is not possible. (see more
 http://www.gnu.org/software/tar/manual/html_node/Sparse-Formats.html)
 .
 Other caveat, while tar archives support having multiple file entries for the
 same path, we will not support this feature. If there are more than one entries
 with the same path, expect an err (like ErrDuplicatePath) or a resulting tar
 stream that does not validate your original checksum/signature.