mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 05:57:54 +00:00
New Debian packaging
This commit is contained in:
parent
04df0c405a
commit
7819c65303
|
@ -1,3 +1,46 @@
|
|||
parallel (20100922-4) unstable; 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.
|
||||
|
||||
-- Rogério Brito <rbrito@ime.usp.br> Mon, 25 Oct 2010 03:44:37 -0200
|
||||
|
||||
parallel (20100922-3) unstable; urgency=low
|
||||
|
||||
* New upstream version - 3rd try
|
||||
|
||||
-- Ole Tange <ole@tange.dk> Tue, 21 Sep 2010 22:15:05 +0200
|
||||
|
||||
parallel (20100922-2) unstable; urgency=low
|
||||
|
||||
* New upstream version
|
||||
|
||||
-- Ole Tange <ole@tange.dk> Tue, 21 Sep 2010 22:13:53 +0200
|
||||
|
||||
parallel (20100922-1) unstable; urgency=low
|
||||
|
||||
* New upstream version
|
||||
|
||||
-- Ole Tange <ole@tange.dk> Tue, 21 Sep 2010 22:12:22 +0200
|
||||
|
||||
parallel (20100906-1) unstable; urgency=low
|
||||
|
||||
* New upstream version
|
||||
|
|
|
@ -1 +1 @@
|
|||
5
|
||||
7
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
Source: parallel
|
||||
Section: utils
|
||||
Priority: extra
|
||||
Maintainer: Ole Tange <ole@tange.dk>
|
||||
Build-Depends: debhelper (>= 5)
|
||||
Standards-Version: 3.8.3
|
||||
Maintainer: Rogério Brito <rbrito@ime.usp.br>
|
||||
Uploaders: Ole Tange <ole@tange.dk>
|
||||
Build-Depends: debhelper (>= 7.0.50~), dh-autoreconf
|
||||
Standards-Version: 3.9.1
|
||||
Homepage: https://www.gnu.org/software/parallel/
|
||||
|
||||
Package: parallel
|
||||
|
|
|
@ -31,7 +31,8 @@ License:
|
|||
|
||||
The Debian packaging is:
|
||||
|
||||
Copyright (C) 2010 Ole Tange <ole@tange.dk>
|
||||
Copyright © 2010 Ole Tange <ole@tange.dk>
|
||||
Copyright © 2010 Rogério Theodoro de Brito <rbrito@ime.usp.br>
|
||||
|
||||
and is licensed under the GPL version 3,
|
||||
see `/usr/share/common-licenses/GPL-3'.
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
usr/bin
|
||||
|
11
packager/debian/debian-template/doc-base
Normal file
11
packager/debian/debian-template/doc-base
Normal file
|
@ -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,64 +1,7 @@
|
|||
#!/usr/bin/make -f
|
||||
# -*- makefile -*-
|
||||
# Sample debian/rules that uses debhelper.
|
||||
# This file was originally written by Joey Hess and Craig Small.
|
||||
# As a special exception, when this file is copied by dh-make into a
|
||||
# dh-make output file, you may use that output file without restriction.
|
||||
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
||||
%:
|
||||
dh $@ --with autoreconf
|
||||
|
||||
# Uncomment this to turn on verbose mode.
|
||||
#export DH_VERBOSE=1
|
||||
|
||||
build: build-stamp
|
||||
|
||||
build-stamp:
|
||||
dh_testdir
|
||||
|
||||
# Add here commands to compile the package.
|
||||
$(MAKE)
|
||||
|
||||
touch $@
|
||||
|
||||
clean:
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_installdirs
|
||||
rm -f build-stamp
|
||||
|
||||
# Add here commands to clean up after the build process.
|
||||
./configure --prefix=/usr
|
||||
$(MAKE) clean
|
||||
|
||||
dh_clean
|
||||
|
||||
install: build
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_prep || dh_clean -k
|
||||
dh_installdirs
|
||||
|
||||
# Add here commands to install the package into debian/parallel.
|
||||
$(MAKE) DESTDIR=$(CURDIR)/debian/parallel install
|
||||
|
||||
|
||||
# Build architecture-independent files here.
|
||||
binary-indep: install
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_installchangelogs
|
||||
dh_installdocs
|
||||
dh_installexamples
|
||||
dh_installman
|
||||
dh_link
|
||||
dh_compress
|
||||
dh_fixperms
|
||||
dh_installdeb
|
||||
dh_gencontrol
|
||||
dh_md5sums
|
||||
dh_builddeb
|
||||
|
||||
# Build architecture-dependent files here.
|
||||
binary-arch: install
|
||||
|
||||
binary: binary-indep binary-arch
|
||||
.PHONY: build clean binary-indep binary-arch binary install
|
||||
override_dh_clean:
|
||||
rm -f src/sem
|
||||
dh_clean
|
||||
|
|
1
packager/debian/debian-template/source/format
Normal file
1
packager/debian/debian-template/source/format
Normal file
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
Loading…
Reference in a new issue