Your message dated Thu, 14 Dec 2017 09:49:49 +0000 with message-id <[email protected]> and subject line Bug#869499: fixed in nginx 1.13.7-1 has caused the Debian Bug report #869499, regarding nginx: [PATCH] Automate modules watch & upgrade process to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 869499: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=869499 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: nginx Severity: wishlist Tags: patch This patch introduces the debian/modules/uscan script and some helper files which can be used to automate the modules watch & upgrade process. The main script is executed as '$ debian/modules/uscan' without any arguments from the root of the debianized nginx source tree where you see the debian/ directory. It runs uscan for each nginx module listed in the newly deb822 formatted debian/modules/README.Modules-version using the watchfiles in debian/modules/watch. If a new version is available, it will ask you if you want to upgrade. If you agree, it will download the tarball, place it in the parent directory and upgrade the module's source. After the upgrade, it will remove the files listed in the Files-Excluded module field. Example output: $ debian/modules/uscan Uscanning headers-more-nginx-module...up-to-date. Uscanning nginx-development-kit...up-to-date. Uscanning nginx-auth-pam...up-to-date. Uscanning nginx-echo...up-to-date. Uscanning nginx-lua...uscan: Newest version of nginx-lua on remote site is 0.10.8, local version is v0.10.7 (mangled local version is 0.10.7) uscan: => Newer package available from https://github.com/openresty/lua-nginx-module/archive/v0.10.8.tar.gz Do you want to upgrade nginx-lua? [y/N]: Uscanning nginx-upstream-fair...no watchfile available. Uscanning nchan...uscan: Newest version of nchan on remote site is 1.1.7, local version is v1.0.8 (mangled local version is 1.0.8) uscan: => Newer package available from https://github.com/slact/nchan/archive/v1.1.7.tar.gz Do you want to upgrade nchan? [y/N]: Uscanning nginx-upload-progress...up-to-date. Uscanning nginx-cache-purge...up-to-date. Uscanning nginx-dav-ext-module...uscan: Newest version of nginx-dav-ext-module on remote site is 0.1.0, local version is v0.0.3 (mangled local version is 0.0.3) uscan: => Newer package available from https://github.com/arut/nginx-dav-ext-module/archive/v0.1.0.tar.gz Do you want to upgrade nginx-dav-ext-module? [y/N]: Uscanning ngx-fancyindex...up-to-date. Uscanning ngx_http_substitutions_filter_module...up-to-date. Uscanning nginx-rtmp...uscan: Newest version of nginx-rtmp on remote site is 1.2.0, local version is v1.1.11 (mangled local version is 1.1.11) uscan: => Newer package available from https://github.com/arut/nginx-rtmp-module/archive/v1.2.0.tar.gz Do you want to upgrade nginx-rtmp? [y/N]: y Removing Files-Excluded: debian/modules/nginx-rtmp/test>From ddb17d64333ed2f64dce3906f7cdb308577ab000 Mon Sep 17 00:00:00 2001 From: Mpampis Kostas <[email protected]> Date: Sat, 22 Jul 2017 16:26:21 +0300 Subject: [PATCH] Automate modules watch & upgrade process This patch introduces the debian/modules/uscan script and some helper files which can be used to automate the modules watch & upgrade process. The main script is executed as '$ debian/modules/uscan' without any arguments from the root of the debianized nginx source tree where you see the debian/ directory. It runs uscan for each nginx module listed in the newly deb822 formatted debian/modules/README.Modules-version using the watchfiles in debian/modules/watch. If a new version is available, it will ask you if you want to upgrade. If you agree, it will download the tarball, place it in the parent directory and upgrade the module's source. After the upgrade, it will remove the files listed in the Files-Excluded module field. --- debian/modules/README.Modules-versions | 110 ++++++++++----------- debian/modules/uscan | 78 +++++++++++++++ debian/modules/uupdate | 9 ++ debian/modules/watch/headers-more-nginx-module | 4 + debian/modules/watch/nchan | 4 + debian/modules/watch/nginx-auth-pam | 4 + debian/modules/watch/nginx-cache-purge | 4 + debian/modules/watch/nginx-dav-ext-module | 4 + debian/modules/watch/nginx-development-kit | 4 + debian/modules/watch/nginx-echo | 4 + debian/modules/watch/nginx-lua | 4 + debian/modules/watch/nginx-rtmp | 4 + debian/modules/watch/nginx-upload-progress | 4 + debian/modules/watch/ngx-fancyindex | 4 + .../watch/ngx_http_substitutions_filter_module | 4 + 15 files changed, 190 insertions(+), 55 deletions(-) create mode 100755 debian/modules/uscan create mode 100755 debian/modules/uupdate create mode 100644 debian/modules/watch/headers-more-nginx-module create mode 100644 debian/modules/watch/nchan create mode 100644 debian/modules/watch/nginx-auth-pam create mode 100644 debian/modules/watch/nginx-cache-purge create mode 100644 debian/modules/watch/nginx-dav-ext-module create mode 100644 debian/modules/watch/nginx-development-kit create mode 100644 debian/modules/watch/nginx-echo create mode 100644 debian/modules/watch/nginx-lua create mode 100644 debian/modules/watch/nginx-rtmp create mode 100644 debian/modules/watch/nginx-upload-progress create mode 100644 debian/modules/watch/ngx-fancyindex create mode 100644 debian/modules/watch/ngx_http_substitutions_filter_module diff --git a/debian/modules/README.Modules-versions b/debian/modules/README.Modules-versions index c336064..4ef902e 100644 --- a/debian/modules/README.Modules-versions +++ b/debian/modules/README.Modules-versions @@ -1,69 +1,69 @@ -README for Modules versions ---------------------------- +# README for Modules versions +# --------------------------- - This file lists third party modules built with nginx in Debian, homepage and - version. +# This file lists third party modules built with nginx in Debian, homepage and +# version. - headers-more-nginx-module - Homepage: https://github.com/agentzh/headers-more-nginx-module - Version: v0.32 +Module: headers-more-nginx-module +Homepage: https://github.com/agentzh/headers-more-nginx-module +Version: v0.32 - nginx-development-kit - Homepage: https://github.com/simpl/ngx_devel_kit/ - Version: v0.3.0 +Module: nginx-development-kit +Homepage: https://github.com/simpl/ngx_devel_kit/ +Version: v0.3.0 - nginx-auth-pam - Homepage: https://github.com/stogh/ngx_http_auth_pam_module - Version: 1.5.1 +Module: nginx-auth-pam +Homepage: https://github.com/stogh/ngx_http_auth_pam_module +Version: v1.5.1 - nginx-echo - Homepage: https://github.com/agentzh/echo-nginx-module - Version: v0.60 - Patch: build-nginx-1.11.11.patch +Module: nginx-echo +Homepage: https://github.com/agentzh/echo-nginx-module +Version: v0.60 +Patch: build-nginx-1.11.11.patch - nginx-lua - Homepage: https://github.com/openresty/lua-nginx-module - Version: v0.10.7 - Patch: openssl-1.1.0.patch - Patch: build-nginx-1.11.11.patch +Module: nginx-lua +Homepage: https://github.com/openresty/lua-nginx-module +Version: v0.10.7 +Patch: openssl-1.1.0.patch +Patch: build-nginx-1.11.11.patch - nginx-upstream-fair - Homepage: https://github.com/gnosek/nginx-upstream-fair - Version: a18b409 - Patch: dynamic-module.patch - Patch: openssl-1.1.0.patch - Patch: drop-default-port.patch +Module: nginx-upstream-fair +Homepage: https://github.com/gnosek/nginx-upstream-fair +Version: a18b409 +Patch: dynamic-module.patch +Patch: openssl-1.1.0.patch +Patch: drop-default-port.patch - nchan - Homepage: https://github.com/slact/nchan - Version: 1.0.8 +Module: nchan +Homepage: https://github.com/slact/nchan +Version: v1.0.8 - nginx-upload-progress - Homepage: https://github.com/masterzen/nginx-upload-progress-module - rm -r debian/nginx-upload-progress/test - Version: v0.9.2 +Module: nginx-upload-progress +Homepage: https://github.com/masterzen/nginx-upload-progress-module +Files-Excluded: debian/modules/nginx-upload-progress/test +Version: v0.9.2 - nginx-cache-purge - Homepage: https://github.com/FRiCKLE/ngx_cache_purge/ - Version: 2.3 - Patch: dynamic-module.patch - Patch: segfault-1.11.6.patch +Module: nginx-cache-purge +Homepage: https://github.com/FRiCKLE/ngx_cache_purge/ +Version: 2.3 +Patch: dynamic-module.patch +Patch: segfault-1.11.6.patch - nginx-dav-ext-module - Homepage: https://github.com/arut/nginx-dav-ext-module - Version: v0.0.3 - Patch: dynamic-module.patch +Module: nginx-dav-ext-module +Homepage: https://github.com/arut/nginx-dav-ext-module +Version: v0.0.3 +Patch: dynamic-module.patch - ngx-fancyindex - Homepage: https://github.com/aperezdc/ngx-fancyindex - Version: v0.4.1 +Module: ngx-fancyindex +Homepage: https://github.com/aperezdc/ngx-fancyindex +Version: v0.4.1 - ngx_http_substitutions_filter_module - Homepage: https://github.com/yaoweibin/ngx_http_substitutions_filter_module - Version: v0.6.4 - Patch: dynamic-module.patch +Module: ngx_http_substitutions_filter_module +Homepage: https://github.com/yaoweibin/ngx_http_substitutions_filter_module +Version: v0.6.4 +Patch: dynamic-module.patch - nginx-rtmp - Homepage: https://github.com/arut/nginx-rtmp-module - rm -r debian/modules/nginx-rtmp-module/test - Version: v1.1.11 +Module: nginx-rtmp +Homepage: https://github.com/arut/nginx-rtmp-module +Files-Excluded: debian/modules/nginx-rtmp/test +Version: v1.1.11 diff --git a/debian/modules/uscan b/debian/modules/uscan new file mode 100755 index 0000000..b432257 --- /dev/null +++ b/debian/modules/uscan @@ -0,0 +1,78 @@ +#!/usr/bin/env python + +# debian/modules/uscan - scan/watch upstream nginx module sources for new releases +# +# This script is executed as '$ debian/modules/uscan' without any arguments from +# the root of the debianized source tree where you see the debian/ directory. +# +# It runs uscan for each nginx module listed in debian/modules/README.Modules-version. +# +# If a new version is available, it will ask you if want to upgrade. If you agree +# it will download the tarball, place it in the parent directory and upgrade +# the module's source. +# +# After the upgrade, it will remove the files listed in the Files-Excluded field. + +import deb822 +import os +import sys +from subprocess import call + +MODULES_CTRL = file('debian/modules/README.Modules-versions') + +def prompt(query): + sys.stdout.write('%s [y/N]: ' % query) + choice = raw_input().lower() + + return choice == 'y' + + +def upgrade_module(watchfile, m): + uscan_upgrade_cmd = [ + 'uscan', '--upstream-version', m['Version'], + '--watchfile', watchfile, '--no-symlink' + ] + upgrade_ret = call(uscan_upgrade_cmd, stdout=open(os.devnull, 'w')) + + if 'Files-Excluded' in m and upgrade_ret == 0: + print 'Removing Files-Excluded: %s' % m['Files-Excluded'] + + files = m['Files-Excluded'].split("\n") + files = [f.strip() for f in files] + files = filter(None, files) + + rm_cmd = ['rm', '-r'] + rm_cmd.extend(files) + + call(rm_cmd) + + +def main(): + paragraphs = deb822.Deb822.iter_paragraphs(MODULES_CTRL) + + for p in paragraphs: + sys.stdout.write('Uscanning %s...' % p['Module']) + sys.stdout.flush() + + watchfile = 'debian/modules/watch/%s' % p['Module'] + + if not os.path.isfile(watchfile): + print 'no watchfile available.' + continue + + uscan_check_cmd = [ + 'uscan', '--upstream-version', p['Version'], + '--watchfile', watchfile, '--package', + p['Module'] + ] + check_ret = call(uscan_check_cmd) + + if check_ret == 0: + if prompt('Do you want to upgrade %s?' % p['Module']): + upgrade_module(watchfile, p) + else: + print 'up-to-date.' + + +if __name__ == '__main__': + main() diff --git a/debian/modules/uupdate b/debian/modules/uupdate new file mode 100755 index 0000000..50df7e7 --- /dev/null +++ b/debian/modules/uupdate @@ -0,0 +1,9 @@ +#!/bin/bash + +# debian/modules/uupdate - simple tar wrapper used by uscan to upgrade modules source + +MOD_TAR_NAME=$2 +MOD_TAR_VER=$4 +DESTDIR=debian/modules/$1 + +tar --strip-components=1 -xf ../$MOD_TAR_NAME-$MOD_TAR_VER.tar.gz -C $DESTDIR diff --git a/debian/modules/watch/headers-more-nginx-module b/debian/modules/watch/headers-more-nginx-module new file mode 100644 index 0000000..68861a8 --- /dev/null +++ b/debian/modules/watch/headers-more-nginx-module @@ -0,0 +1,4 @@ +version=4 +opts="uversionmangle=s/0.261/0.26.1/,dversionmangle=s/v//,filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%ngx-mod-headers-more-$1.tar.gz%" \ + https://github.com/agentzh/headers-more-nginx-module/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian debian/modules/uupdate headers-more-nginx-module ngx-mod-headers-more diff --git a/debian/modules/watch/nchan b/debian/modules/watch/nchan new file mode 100644 index 0000000..6b95884 --- /dev/null +++ b/debian/modules/watch/nchan @@ -0,0 +1,4 @@ +version=4 +opts="dversionmangle=s/v//,filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%ngx-mod-nchan-$1.tar.gz%" \ + https://github.com/slact/nchan/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian debian/modules/uupdate nchan ngx-mod-nchan diff --git a/debian/modules/watch/nginx-auth-pam b/debian/modules/watch/nginx-auth-pam new file mode 100644 index 0000000..1f30a96 --- /dev/null +++ b/debian/modules/watch/nginx-auth-pam @@ -0,0 +1,4 @@ +version=4 +opts="dversionmangle=s/v//,filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%ngx-mod-http-auth-pam-$1.tar.gz%" \ + https://github.com/stogh/ngx_http_auth_pam_module/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian debian/modules/uupdate nginx-auth-pam ngx-mod-http-auth-pam diff --git a/debian/modules/watch/nginx-cache-purge b/debian/modules/watch/nginx-cache-purge new file mode 100644 index 0000000..24bdf4c --- /dev/null +++ b/debian/modules/watch/nginx-cache-purge @@ -0,0 +1,4 @@ +version=4 +opts="dversionmangle=s/v//,filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%ngx-mod-cache-purge-$1.tar.gz%" \ + https://github.com/FRiCKLE/ngx_cache_purge/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian debian/modules/uupdate nginx-cache-purge ngx-mod-cache-purge diff --git a/debian/modules/watch/nginx-dav-ext-module b/debian/modules/watch/nginx-dav-ext-module new file mode 100644 index 0000000..32424a8 --- /dev/null +++ b/debian/modules/watch/nginx-dav-ext-module @@ -0,0 +1,4 @@ +version=4 +opts="dversionmangle=s/v//,filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%ngx-mod-dav-ext-$1.tar.gz%" \ + https://github.com/arut/nginx-dav-ext-module/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian debian/modules/uupdate nginx-dav-ext-module ngx-mod-dav-ext diff --git a/debian/modules/watch/nginx-development-kit b/debian/modules/watch/nginx-development-kit new file mode 100644 index 0000000..72899a6 --- /dev/null +++ b/debian/modules/watch/nginx-development-kit @@ -0,0 +1,4 @@ +version=4 +opts="dversionmangle=s/v//,filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%ngx-mod-devel-kit-$1.tar.gz%" \ + https://github.com/simpl/ngx_devel_kit/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian debian/modules/uupdate nginx-development-kit ngx-mod-devel-kit diff --git a/debian/modules/watch/nginx-echo b/debian/modules/watch/nginx-echo new file mode 100644 index 0000000..51d58a2 --- /dev/null +++ b/debian/modules/watch/nginx-echo @@ -0,0 +1,4 @@ +version=4 +opts="dversionmangle=s/v//,filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%ngx-mod-echo-$1.tar.gz%" \ + https://github.com/agentzh/echo-nginx-module/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian debian/modules/uupdate nginx-echo ngx-mod-echo diff --git a/debian/modules/watch/nginx-lua b/debian/modules/watch/nginx-lua new file mode 100644 index 0000000..642add5 --- /dev/null +++ b/debian/modules/watch/nginx-lua @@ -0,0 +1,4 @@ +version=4 +opts="dversionmangle=s/v//,filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%lua-nginx-module-$1.tar.gz%" \ + https://github.com/openresty/lua-nginx-module/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian debian/modules/uupdate nginx-lua lua-nginx-module diff --git a/debian/modules/watch/nginx-rtmp b/debian/modules/watch/nginx-rtmp new file mode 100644 index 0000000..c2ba8a3 --- /dev/null +++ b/debian/modules/watch/nginx-rtmp @@ -0,0 +1,4 @@ +version=4 +opts="dversionmangle=s/v//,filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%ngx-mod-rtmp-$1.tar.gz%" \ + https://github.com/arut/nginx-rtmp-module/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian debian/modules/uupdate nginx-rtmp ngx-mod-rtmp diff --git a/debian/modules/watch/nginx-upload-progress b/debian/modules/watch/nginx-upload-progress new file mode 100644 index 0000000..08038f5 --- /dev/null +++ b/debian/modules/watch/nginx-upload-progress @@ -0,0 +1,4 @@ +version=4 +opts="dversionmangle=s/v//,filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%ngx-mod-upload-progress-$1.tar.gz%" \ + https://github.com/masterzen/nginx-upload-progress-module/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian debian/modules/uupdate nginx-upload-progress ngx-mod-upload-progress diff --git a/debian/modules/watch/ngx-fancyindex b/debian/modules/watch/ngx-fancyindex new file mode 100644 index 0000000..8326c8b --- /dev/null +++ b/debian/modules/watch/ngx-fancyindex @@ -0,0 +1,4 @@ +version=4 +opts="dversionmangle=s/v//,filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%ngx-mod-fancyindex-$1.tar.gz%" \ + https://github.com/aperezdc/ngx-fancyindex/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian debian/modules/uupdate ngx-fancyindex ngx-mod-fancyindex diff --git a/debian/modules/watch/ngx_http_substitutions_filter_module b/debian/modules/watch/ngx_http_substitutions_filter_module new file mode 100644 index 0000000..4696aa1 --- /dev/null +++ b/debian/modules/watch/ngx_http_substitutions_filter_module @@ -0,0 +1,4 @@ +version=4 +opts="dversionmangle=s/v//,filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%ngx-mod-http-substitutions-filter-$1.tar.gz%" \ + https://github.com/yaoweibin/ngx_http_substitutions_filter_module/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian debian/modules/uupdate ngx_http_substitutions_filter_module ngx-mod-http-substitutions-filter -- 2.11.0
--- End Message ---
--- Begin Message ---Source: nginx Source-Version: 1.13.7-1 We believe that the bug you reported is fixed in the latest version of nginx, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [email protected], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Christos Trochalakis <[email protected]> (supplier of updated nginx package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Format: 1.8 Date: Thu, 14 Dec 2017 11:04:36 +0200 Source: nginx Binary: nginx nginx-doc nginx-common nginx-full nginx-light nginx-extras libnginx-mod-http-geoip libnginx-mod-http-image-filter libnginx-mod-http-xslt-filter libnginx-mod-mail libnginx-mod-stream libnginx-mod-http-perl libnginx-mod-http-auth-pam libnginx-mod-http-lua libnginx-mod-http-ndk libnginx-mod-nchan libnginx-mod-http-echo libnginx-mod-http-upstream-fair libnginx-mod-http-headers-more-filter libnginx-mod-http-cache-purge libnginx-mod-http-fancyindex libnginx-mod-http-uploadprogress libnginx-mod-http-subs-filter libnginx-mod-http-dav-ext libnginx-mod-rtmp Architecture: source Version: 1.13.7-1 Distribution: unstable Urgency: medium Maintainer: Debian Nginx Maintainers <[email protected]> Changed-By: Christos Trochalakis <[email protected]> Description: libnginx-mod-http-auth-pam - PAM authentication module for Nginx libnginx-mod-http-cache-purge - Purge content from Nginx caches libnginx-mod-http-dav-ext - WebDAV missing commands support for Nginx libnginx-mod-http-echo - Bring echo and more shell style goodies to Nginx libnginx-mod-http-fancyindex - Fancy indexes module for the Nginx libnginx-mod-http-geoip - GeoIP HTTP module for Nginx libnginx-mod-http-headers-more-filter - Set and clear input and output headers for Nginx libnginx-mod-http-image-filter - HTTP image filter module for Nginx libnginx-mod-http-lua - Lua module for Nginx libnginx-mod-http-ndk - Nginx Development Kit module libnginx-mod-http-perl - Perl module for Nginx libnginx-mod-http-subs-filter - Substitution filter module for Nginx libnginx-mod-http-uploadprogress - Upload progress system for Nginx libnginx-mod-http-upstream-fair - Nginx Upstream Fair Proxy Load Balancer libnginx-mod-http-xslt-filter - XSLT Transformation module for Nginx libnginx-mod-mail - Mail module for Nginx libnginx-mod-nchan - Fast, flexible pub/sub server for Nginx libnginx-mod-rtmp - RTMP support for Nginx libnginx-mod-stream - Stream module for Nginx nginx - small, powerful, scalable web/proxy server nginx-common - small, powerful, scalable web/proxy server - common files nginx-doc - small, powerful, scalable web/proxy server - documentation nginx-extras - nginx web/proxy server (extended version) nginx-full - nginx web/proxy server (standard version) nginx-light - nginx web/proxy server (basic version) Closes: 869499 878611 880718 Changes: nginx (1.13.7-1) unstable; urgency=medium . [ Christos Trochalakis ] * New upstream version 1.13.7 * Bump Standards-Version, no changes needed * debian/watch: switch to HTTPS for the upstream check . [ Mpampis Kostas ] * Automate modules watch & upgrade process (Closes: #869499) . [ Christos Trochalakis ] * Bits & pieces for ngxmod * http-headers-more-filter: Upgrade to 0.33 * http-echo: Upgrade to 0.61 * http-lua: Upgrade to 0.10.11 * http-dav-ext: Upgrade to 0.1.0 (Closes: #878611) * http-fancyindex: Upgrade to 0.4.2 * rtmp: Upgrade to 1.2.1 (Closes: #880718) Checksums-Sha1: 37e1c38a0993efd61057fbd9e1b7e511b024f5dd 4239 nginx_1.13.7-1.dsc 9f774bfade490bc603ae79f5cabeb83e017a3c2d 990836 nginx_1.13.7.orig.tar.gz bc7398c05b54b6960e24c21ee2314674ad77cfed 917104 nginx_1.13.7-1.debian.tar.xz 33e5f8df877d5bfa1869d58aeb00b2105777d800 22446 nginx_1.13.7-1_amd64.buildinfo Checksums-Sha256: 293d03df67778bdb14518abf18e1b706eddc19ad674ae4ebadc0b53437cc6b74 4239 nginx_1.13.7-1.dsc beb732bc7da80948c43fd0bf94940a21a21b1c1ddfba0bd99a4b88e026220f5c 990836 nginx_1.13.7.orig.tar.gz 23ed24ffd682a52feb3a9ac9f08466466f371bb711effb90b826ee85902efc9d 917104 nginx_1.13.7-1.debian.tar.xz 771488d0a74579b99b65436425b40a9b9a336891bddc6ea1db7a21d68b344882 22446 nginx_1.13.7-1_amd64.buildinfo Files: 152f8110b3fc27aef3e9f339deb821c3 4239 httpd optional nginx_1.13.7-1.dsc 5fcd056b40cb5c47b053fb14a2a89e7d 990836 httpd optional nginx_1.13.7.orig.tar.gz a2efb964e2dc292e9becd6f90e18c57a 917104 httpd optional nginx_1.13.7-1.debian.tar.xz f1fb122cecc048f4643a5e81fb786fe1 22446 httpd optional nginx_1.13.7-1_amd64.buildinfo -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEf2SPbCEjyY+zKcgrETYmAKdH7NkFAloyQ4EACgkQETYmAKdH 7Nluyg/+Psojwz8TXRfPEpVxHvwl7nH01l+/DGty/AQeBAQGPQXXHj3qu5QT+XEK qd3x9j5sBnHKvASC1uZDWKsE6YEQtqGHqlBk3/SuusV/MK8WMCxjKzhD+5tQGl1a QPdyl2nHfLjY0yQgCYvbAdPb81CV8cNXWpnKcIAtilujTfYOP7huWKrbMxSKGUZe ERLq4XMjSBfQZ62QwB6RbgZjZEOwy7B20QwJSj+XftIF0X/j/U7RYJI2u+ykz12D 6Z8FyWpu8AObZjieitr9d5cymfHGDQ0eHjv01APaD5gjfVStodHAYI0eLLUmzUTI QuL0VqN4E4rGoiZLjOob3qLUjgh1R2pPEgKTW7yQzu6B5RQnoTa1/rliCSi6AjwJ NwWHG7ZNORDQYUzmPsMRCfHsenHIAFFJAMpffk/E/F80nqnfqmL1CJlpI9cmtRQM W9FnEh4maggTvEXOUxmxzJRoh096Ew+7xxXt0b7Ddb2WAi9o26zUlk4WMMBDcC4/ zLZqz6M15F6dxwWl4f5H2VdN78Sv5VLSYgrsdanIW1nU+AC1Cui+P5PzXITdV8z/ YLakZlBnn/Cykqzg4/xb+EIWaEPcDNcwLkCfucSTx8LMvUPmpsrKD7uqMn6R/xdt HNopZIp20t7tDjBxDLOtO56cb0TikstDIcbBoBZ87LE3GFWEL8s= =TlcX -----END PGP SIGNATURE-----
--- End Message ---

