parallel 20161222-1 source package in Ubuntu

Changelog

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)

 -- Ondřej Surý <email address hidden>  Sat, 31 Dec 2016 14:24:10 +0100

Upload details

Uploaded by:
Rogério Theodoro de Brito
Uploaded to:
Sid
Original maintainer:
Rogério Theodoro de Brito
Architectures:
all
Section:
utils
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe utils

Builds

Zesty: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
parallel_20161222-1.dsc 2.0 KiB 9d6f46e2b55026cdf56a6acf2da5e5a212d6f9bf94d777cfe322be39a3f1a8d2
parallel_20161222.orig.tar.bz2 1.3 MiB 2714be9b6957ce6ddb268e8aa97f463d8eac97e55612cc055ef030afd9c80fb2
parallel_20161222-1.debian.tar.xz 18.4 KiB a1f45066d41f6e2c2c54dc270ab20361b0ec3e60075c55e1f086c09840ad45ff

Available diffs

No changes file available.

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.