Compare commits

...
Sign in to create a new pull request.

3 commits

Author SHA1 Message Date
Jérémy Lal
8e0e251d54
Update changelog 2022-11-27 12:57:51 +01:00
Jérémy Lal
e06af59602
nginx-dev provides dh-sequence-nginx 2022-11-27 12:55:48 +01:00
Jérémy Lal
f57efc5206
Add buildsystem nginx_mod to dh-sequence nginx 2022-11-27 12:53:46 +01:00
3 changed files with 13 additions and 1 deletions

7
debian/changelog vendored
View file

@ -1,5 +1,6 @@
nginx (1.22.1-2) UNRELEASED; urgency=medium
[ Jan Mojžíš ]
* d/control: fixed spelling-error-in-description
* d/nginx-*.postinst: fixed postinst script, used invoke-rc.d instead of
pidof and ad-hoc tests, tnx Gioele Barabucci
@ -11,7 +12,11 @@ nginx (1.22.1-2) UNRELEASED; urgency=medium
* d/control: updated implicit dependencies of third-party modules
for easier transition to third-party modules in separate packages.
-- Jan Mojžíš <jan.mojzis@gmail.com> Fri, 11 Nov 2022 06:15:39 +0100
[ Jérémy Lal ]
* d/debhelper: set nginx_mod buildsystem by default
* d/control: nginx-dev provides dh-sequence-nginx (Closes: #1024879)
-- Jérémy Lal <kapouer@melix.org> Sun, 27 Nov 2022 12:56:29 +0100
nginx (1.22.1-1) unstable; urgency=medium

1
debian/control vendored
View file

@ -81,6 +81,7 @@ Depends: ${misc:Depends},
zlib1g-dev,
nginx-core (<< ${source:Version}.1~) | nginx-light (<< ${source:Version}.1~) | nginx-extras (<< ${source:Version}.1~),
nginx-core (>= ${source:Version}) | nginx-light (>= ${source:Version}) | nginx-extras (>= ${source:Version})
Provides: dh-sequence-nginx
Description: nginx web/proxy server - development headers
Nginx ("engine X") is a high-performance web and reverse proxy server
created by Igor Sysoev. It can be used both as a standalone web server

View file

@ -3,6 +3,12 @@ use warnings;
use strict;
use Debian::Debhelper::Dh_Lib;
add_command_options( "dh_auto_test", "--buildsystem=nginx_mod" );
add_command_options( "dh_auto_configure", "--buildsystem=nginx_mod" );
add_command_options( "dh_auto_build", "--buildsystem=nginx_mod" );
add_command_options( "dh_auto_install", "--buildsystem=nginx_mod" );
add_command_options( "dh_auto_clean", "--buildsystem=nginx_mod" );
insert_after("dh_install", "dh_nginx");
1;