Skip to content

Commit 0d10480

Browse files
committed
Add help2man to debian packaging build dependencies.
1 parent 748533f commit 0d10480

9 files changed

+158
-103
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ retry.1
44
retry.spec
55

66
build-aux
7+
debian/.debhelper
8+
debian/retry
9+
debian/retry.debhelper.log
710

811
# http://www.gnu.org/software/automake
912

ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11

2+
Changes with v1.0.2
3+
4+
*) Add help2man to debian packaging build dependencies.
5+
[Graham Leggett]
6+
27
Changes with v1.0.1
38

49
*) Add the --times option to repeat at most N times.

Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ EXTRA_DIST = retry.spec debian/changelog debian/compat debian/control debian/cop
66
dist_man_MANS = retry.1
77

88
retry.1: retry.c $(top_srcdir)/configure.ac
9-
which help2man && help2man ./retry > retry.1 || true
9+
which help2man && help2man -n "Repeat command until a criteria is met, usually success." ./retry > retry.1 || true
1010

aclocal.m4

+127-95
Large diffs are not rendered by default.

debian/changelog

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1-
retry (1.0.0) stable; urgency=low
1+
retry (1.0.2) bionic; urgency=low
2+
3+
* Bugfix/Feature Release
4+
5+
-- Graham Leggett <minfrin@sharp.fm> Wed, 15 Jan 2020 00:00:00 +0000
6+
retry (1.0.1) bionic; urgency=low
7+
8+
* Bugfix/Feature Release
9+
10+
-- Graham Leggett <minfrin@sharp.fm> Tue, 14 Jan 2020 00:00:00 +0000
11+
retry (1.0.0) bionic; urgency=low
212

313
* Initial Release.
414

debian/control

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
Source: retry
2-
Priority: extra
2+
Priority: optional
33
Maintainer: Graham Leggett <minfrin@sharp.fm>
4-
Build-Depends: debhelper (>= 8.0.0), autotools-dev
5-
Standards-Version: 3.9.4
4+
Build-Depends: debhelper (>= 8.0.0), autotools-dev, help2man
5+
Standards-Version: 4.1.4
66
Section: utils
77
Homepage: https://github.com/minfrin/retry
88

99
Package: retry
1010
Section: utils
1111
Architecture: any
1212
Depends: ${shlibs:Depends}, ${misc:Depends}
13-
Description: Retry a command until the command succeeds.
13+
Description: Keep retrying a command until the command meets
14+
a specific criteria, usually success.
1415

debian/copyright

-2
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,3 @@ License: Apache-2.0
2121
On Debian systems, the complete text of the Apache version 2.0 license
2222
can be found in "/usr/share/common-licenses/Apache-2.0".
2323

24-
# Please also look if there are files or directories which have a
25-
# different copyright/license attached and list them here.

debian/files

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
retry-dbgsym_1.0.2_amd64.ddeb debug optional
2+
retry_1.0.2_amd64.buildinfo utils optional
3+
retry_1.0.2_amd64.deb utils optional

debian/retry.substvars

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
shlibs:Depends=libc6 (>= 2.4)
2+
misc:Depends=
3+
misc:Pre-Depends=

0 commit comments

Comments
 (0)