summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Fritsch <sf@sfritsch.de>2016-08-11 15:04:17 +0200
committerStefan Fritsch <sf@sfritsch.de>2016-08-11 21:40:17 +0200
commit29342912dda6303042533c195771bc9707bb4243 (patch)
tree7656333ebc78d3afc6ee0d573870cc140934aa2b
parent37c6a13032d17ebe51e22932e542d637c54394c5 (diff)
downloadapache2-29342912dda6303042533c195771bc9707bb4243.tar.gz
dh_ apache2: Be less strict with versioned recommends
It will just make backports harder and there is no reason to recommend the current version. Instead use the last version with significant changes to apache2-maintscript-helper.
-rw-r--r--debian/changelog2
-rwxr-xr-xdebian/debhelper/dh_apache2.in2
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 5cf71df3..45c3122b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,8 @@ apache2 (2.4.23-3) UNRELEASED; urgency=low
local admin has disabled the requested mpm manually.
Closes: #827446, #799630
* Make mod_proxy_html depend on mod_xml2enc.
+ * dh_apache2: Make versioned recommends on apache2 less strict. There is
+ no advantage in recommending the current version. Closes: #784290
-- Stefan Fritsch <sf@debian.org> Wed, 10 Aug 2016 11:25:02 +0200
diff --git a/debian/debhelper/dh_apache2.in b/debian/debhelper/dh_apache2.in
index 24bc0546..3652d079 100755
--- a/debian/debhelper/dh_apache2.in
+++ b/debian/debhelper/dh_apache2.in
@@ -477,7 +477,7 @@ foreach my $package ((@{$dh{DOPACKAGES}}))
if ($#{$PACKAGE_TYPE{'has_a_conf_file'}} >= 0 or $#{$PACKAGE_TYPE{'has_a_site_conf'}} >= 0)
{
$PACKAGE_TYPE{'dependency_line'} .= "| httpd";
- addsubstvar($package, "misc:Recommends", "apache2 (" . apache_version() . ") " . $PACKAGE_TYPE{'dependency_line'} );
+ addsubstvar($package, "misc:Recommends", "apache2 ( >= 2.4.6-4~ ) " . $PACKAGE_TYPE{'dependency_line'} );
my $confs = "";
my $sites = "";