Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8e0e251d54 | ||
|
|
e06af59602 | ||
|
|
f57efc5206 |
3 changed files with 13 additions and 1 deletions
7
debian/changelog
vendored
7
debian/changelog
vendored
|
|
@ -1,5 +1,6 @@
|
||||||
nginx (1.22.1-2) UNRELEASED; urgency=medium
|
nginx (1.22.1-2) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
[ Jan Mojžíš ]
|
||||||
* d/control: fixed spelling-error-in-description
|
* d/control: fixed spelling-error-in-description
|
||||||
* d/nginx-*.postinst: fixed postinst script, used invoke-rc.d instead of
|
* d/nginx-*.postinst: fixed postinst script, used invoke-rc.d instead of
|
||||||
pidof and ad-hoc tests, tnx Gioele Barabucci
|
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
|
* d/control: updated implicit dependencies of third-party modules
|
||||||
for easier transition to third-party modules in separate packages.
|
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
|
nginx (1.22.1-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
|
|
||||||
1
debian/control
vendored
1
debian/control
vendored
|
|
@ -81,6 +81,7 @@ Depends: ${misc:Depends},
|
||||||
zlib1g-dev,
|
zlib1g-dev,
|
||||||
nginx-core (<< ${source:Version}.1~) | nginx-light (<< ${source:Version}.1~) | nginx-extras (<< ${source:Version}.1~),
|
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})
|
nginx-core (>= ${source:Version}) | nginx-light (>= ${source:Version}) | nginx-extras (>= ${source:Version})
|
||||||
|
Provides: dh-sequence-nginx
|
||||||
Description: nginx web/proxy server - development headers
|
Description: nginx web/proxy server - development headers
|
||||||
Nginx ("engine X") is a high-performance web and reverse proxy server
|
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
|
created by Igor Sysoev. It can be used both as a standalone web server
|
||||||
|
|
|
||||||
6
debian/debhelper/nginx.pm
vendored
6
debian/debhelper/nginx.pm
vendored
|
|
@ -3,6 +3,12 @@ use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
use Debian::Debhelper::Dh_Lib;
|
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");
|
insert_after("dh_install", "dh_nginx");
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue