From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9D7E5158020 for ; Wed, 26 Oct 2022 19:56:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3FF6E09C2; Wed, 26 Oct 2022 19:56:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8B0BBE09C2 for ; Wed, 26 Oct 2022 19:56:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7CE8A3407E6 for ; Wed, 26 Oct 2022 19:56:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E4B88620 for ; Wed, 26 Oct 2022 19:56:50 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1666813567.e909e87bf3113e65b22c1e81d55cfbd8b467497e.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/nginx/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-servers/nginx/files/http_uploadprogress-issue_50-r1.patch X-VCS-Directories: www-servers/nginx/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: e909e87bf3113e65b22c1e81d55cfbd8b467497e X-VCS-Branch: master Date: Wed, 26 Oct 2022 19:56:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 593e0a27-0ec3-46b1-b042-3fb085d16c7c X-Archives-Hash: 9f11cf73a01101b0390cd2dc74e75479 commit: e909e87bf3113e65b22c1e81d55cfbd8b467497e Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Oct 24 18:24:30 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Wed Oct 26 19:46:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e909e87b www-servers/nginx: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/27937 Signed-off-by: Conrad Kostecki gentoo.org> .../files/http_uploadprogress-issue_50-r1.patch | 31 ---------------------- 1 file changed, 31 deletions(-) diff --git a/www-servers/nginx/files/http_uploadprogress-issue_50-r1.patch b/www-servers/nginx/files/http_uploadprogress-issue_50-r1.patch deleted file mode 100644 index 42cbd779a8cb..000000000000 --- a/www-servers/nginx/files/http_uploadprogress-issue_50-r1.patch +++ /dev/null @@ -1,31 +0,0 @@ -From dd138546b16a01e9c09613d02211373baf1cac02 Mon Sep 17 00:00:00 2001 -From: Thomas Deutschmann -Date: Thu, 20 Oct 2016 03:09:37 +0200 -Subject: [PATCH] config: Fix ngx_module_type - -Since commit 37182ce2f3b6 the module was not present in static builds -because due to an invalid "ngx_module_type" the module was not added to -objs/ngx_modules.c. - -This commit will fix the problem by setting the correct module type -"HTTP_FILTER" [Link 1]. - -Link 1: https://www.nginx.com/resources/wiki/extending/new_config/#key-ngx_module_type -Gentoo-Bug: https://bugs.gentoo.org/593450 -Fixes: https://github.com/masterzen/nginx-upload-progress-module/issues/50 ---- - config | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/config b/config -index 364af8c..5f4ade1 100644 ---- a/config -+++ b/config -@@ -1,6 +1,6 @@ - ngx_addon_name=ngx_http_uploadprogress_module - if test -n "$ngx_module_link"; then -- ngx_module_type=FILTER -+ ngx_module_type=HTTP_FILTER - ngx_module_name=ngx_http_uploadprogress_module - ngx_module_srcs="$ngx_addon_dir/ngx_http_uploadprogress_module.c" -