Skip to content

Commit

Permalink
Imported Debian patch 20110205-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Rogério Brito committed Aug 22, 2011
1 parent a767807 commit 29e38ec
Show file tree
Hide file tree
Showing 9 changed files with 177 additions and 0 deletions.
85 changes: 85 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
parallel (20110205-1) unstable; urgency=low

* New upstream release.
* Change the versioning of the package.
* Remove build-dependency on dh-autoreconf.

-- Rogério Brito <[email protected]> Tue, 15 Mar 2011 03:41:31 -0300

parallel (20101222-1~ppa0) maverick; urgency=low

* New upstream release.
* debian/{compat,control}:
+ use debhelper compatbility version 8.
* debian/watch:
+ remove useless lines.
* debian/links:
+ make sem a symlink to parallel.

-- Rogério Brito <[email protected]> Thu, 23 Dec 2010 02:18:34 -0200

parallel (20101202-1~ppa0) maverick; urgency=low

* New upstream release.
* debian/patches:
+ Remove, with everything applied upstream.
* debian/rules:
+ Ship upstream's NEWS file as the upstream changelog.

-- Rogério Brito <[email protected]> Sat, 04 Dec 2010 01:48:04 -0200

parallel (20100922-4~ppa0) maverick; urgency=low

* Change package to be non-native.
* Move to format "3.0 (quilt)".
* debian/compat:
+ update to 7.
* debian/rules:
+ don't configure the package in the clean target.
+ create a configure (and configure-stamp) target.
* debian/control:
+ update debhelper dependency to >= 7.
+ add dh-autoreconf to build-dependency.
+ indicate that the package conforms to Policy 3.9.1.
+ set myself as maintainer and Ole as uploader.
* debian/rules:
+ use dh(7) style file with autoreconf add-on.
* debian/doc-base:
+ properly register the documentation with doc-base.
* debian/patches:
+ include some patches to fix spelling errors detected by lintian.
* debian/dirs:
+ remove, not needed.
* upload to my ppa.

-- Rogério Brito <[email protected]> Mon, 25 Oct 2010 03:44:37 -0200

parallel (20100922-3) unstable; urgency=low

* New upstream version - 3rd try

-- Ole Tange <[email protected]> Tue, 21 Sep 2010 22:15:05 +0200

parallel (20100922-2) unstable; urgency=low

* New upstream version

-- Ole Tange <[email protected]> Tue, 21 Sep 2010 22:13:53 +0200

parallel (20100922-1) unstable; urgency=low

* New upstream version

-- Ole Tange <[email protected]> Tue, 21 Sep 2010 22:12:22 +0200

parallel (20100906-1) unstable; urgency=low

* New upstream version

-- Ole Tange <[email protected]> Fri, 04 Jun 2010 02:00:06 +0200

parallel (20090803-1) unstable; urgency=low

* Initial release (Closes: #518696)

-- Ole Tange <[email protected]> Mon, 03 Aug 2009 17:11:56 +0200
1 change: 1 addition & 0 deletions debian/compat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8
29 changes: 29 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
Source: parallel
Section: utils
Priority: extra
Maintainer: Rogério Brito <[email protected]>
Uploaders: Ole Tange <[email protected]>
Build-Depends: debhelper (>= 8)
Standards-Version: 3.9.1
Homepage: https://www.gnu.org/software/parallel/

Package: parallel
Architecture: all
Depends: perl-modules, ${misc:Depends}
Description: 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.
37 changes: 37 additions & 0 deletions debian/copyright
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
This package was debianized by Ole Tange <[email protected]> on
Fri, 04 Jun 2010 02:00:06 +0200

It was downloaded from http://www.gnu.org/software/parallel/

Upstream Author:

Ole Tange <[email protected]>

Copyright:

Copyright (C) 2007,2008,2009,2010 Ole Tange, http://ole.tange.dk

License:

Copyright (C) 2007,2008,2009,2010 Free Software Foundation, Inc.

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 3 of the
License, or at your option any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see
<http://www.gnu.org/licenses/>.

The Debian packaging is:

Copyright (C) 2010 Ole Tange <[email protected]>

and is licensed under the GPL version 3,
see `/usr/share/common-licenses/GPL-3'.
11 changes: 11 additions & 0 deletions debian/doc-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Document: parallel
Title: Manual of GNU parallel
Author: Ole Tange
Abstract: This manual describes the use of GNU parallel,
provides an introduction to the subject and also presents
comparisons against similar utilities.
Section: System/Administration

Format: HTML
Index: /usr/share/doc/parallel/parallel.html
Files: /usr/share/doc/parallel/*.html
1 change: 1 addition & 0 deletions debian/links
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
usr/bin/parallel usr/bin/sem
10 changes: 10 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/make -f
%:
dh $@

override_dh_clean:
rm -f src/sem
dh_clean

override_dh_installchangelogs:
dh_installchangelogs NEWS
1 change: 1 addition & 0 deletions debian/source/format
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0 (quilt)
2 changes: 2 additions & 0 deletions debian/watch
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
version=3
ftp://ftp.gnu.org/gnu/parallel/parallel-(.*).tar.bz2

0 comments on commit 29e38ec

Please sign in to comment.