parallel 20161222-1~ubuntu0.14.04.2 source package in Ubuntu

Changelog

parallel (20161222-1~ubuntu0.14.04.2) trusty-security; urgency=medium

  * No change rebuild for trusty to resolve CVE-2015-4155, CVE-2015-4156

parallel (20161222-1) unstable; urgency=medium

  [ Rogério Brito ]
  * New upstream version 20161122.
    + Fixes CVE-2015-4155 and CVE-2015-4156. (Closes: #787954)
  * debian/gbp.conf:
    + Avoid warning by renaming section from git-import-orig to import-orig.
    + Avoid warning by renaming section from git-dch to dch.
  * debian/control:
    + Depend on procps. (Closes: #815952)
    + Remove conflicts with moreutils. Thanks to Ian Jackson for the
      suggestion and many others for the discussions.  (Closes: #749355)
    + Substitute dependency on perl-modules with simple perl.
    + Fix Vcs-* URLs to point to new, cgit HTTPS locations.

  [ Ondřej Surý ]
  * Imported Upstream version 20161222 (Closes: #813639)

parallel (20141022+ds1-1) unstable; urgency=medium

  [ Michele Orrù ]
  * debian/rules:
    + Remove documentation files in dh_clean.
    + Add get-orig-source target to remove precompiled documentation files.

  [ Rogério Brito ]
  * Integrate changes from Michele to make the package compilable twice in
    a row. (Closes: #751508)
  * Credit Michele Orrù for patches to build twice in a row.
  * debian/control: Normalize with wrap-and-sort.
  * debian/control: Verified compliance with Policy version 3.9.6.
  * Imported Upstream version 20130922+ds1
  * debian/watch: Deal with version mangling, as we repack the upstream source.
  * debian/rules: Minor cosmetic indenting.
  * debian/upstream: Add signing key.
  * debian/watch: Add mangling of names for upstream signatures.
  * Imported Upstream version 20141022
  * Imported Upstream version 20141022+ds1 (Closes: #747217)
  * debian/control: Add autoconf to Build-Depends.
  * debian/rules: Disable running the testsuite, as it is not present.
  * debian/control: Add Depends on sysstat. (Closes: #765036)

 -- Mike Salvatore <email address hidden>  Tue, 12 Feb 2019 15:13:27 -0500

Upload details

Uploaded by:
Mike Salvatore
Uploaded to:
Trusty
Original maintainer:
Ubuntu Developers
Architectures:
all
Section:
utils
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty updates universe utils
Trusty security universe utils

Builds

Trusty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
parallel_20161222.orig.tar.bz2 1.3 MiB 2714be9b6957ce6ddb268e8aa97f463d8eac97e55612cc055ef030afd9c80fb2
parallel_20161222-1~ubuntu0.14.04.2.debian.tar.gz 18.9 KiB 4a0229d88137c7a66f7cf64aad6de0bafc157f305852fd81f4aaf53761ee0260
parallel_20161222-1~ubuntu0.14.04.2.dsc 2.0 KiB 3f7d3a94eb83cfe6bf86f9910be5c5cca1bcc051326a07bf62d609820f7f456a

View changes file

Binary packages built by this source

parallel: build and execute command lines from standard input in parallel

 GNU Parallel is a shell tool for executing jobs in parallel using one
 or more machines. A job is typically a single command or a small
 script that has to be run for each of the lines in the input. The
 typical input is a list of files, a list of hosts, a list of users, or
 a list of tables.
 .
 If you use xargs today you will find GNU Parallel very easy to use. If
 you write loops in shell, you will find GNU Parallel may be able to
 replace most of the loops and make them run faster by running jobs in
 parallel. If you use ppss or pexec you will find GNU Parallel will
 often make the command easier to read.
 .
 GNU Parallel also makes sure output from the commands is the same
 output as you would get had you run the commands sequentially. This
 makes it possible to use output from GNU Parallel as input for other
 programs.