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

Changelog

parallel (20161222-1~ubuntu0.16.04.1) xenial-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)

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

Upload details

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

See full publishing history Publishing

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

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
parallel_20161222.orig.tar.bz2 1.3 MiB 2714be9b6957ce6ddb268e8aa97f463d8eac97e55612cc055ef030afd9c80fb2
parallel_20161222-1~ubuntu0.16.04.1.debian.tar.xz 18.7 KiB f94dfe2659e7cde352164963b647c6299e7555aa01e977e3af3a5190c65bb9ad
parallel_20161222-1~ubuntu0.16.04.1.dsc 2.0 KiB 62e509a1da26eff7cd54e96a091e864c809306600457274cac28420bf7701ddd

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.