diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /www-nginx/ngx-cache-purge | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'www-nginx/ngx-cache-purge')
5 files changed, 0 insertions, 144 deletions
diff --git a/www-nginx/ngx-cache-purge/Manifest b/www-nginx/ngx-cache-purge/Manifest deleted file mode 100644 index 71afb2b65932..000000000000 --- a/www-nginx/ngx-cache-purge/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ngx-cache-purge-2.3.tar.gz 11717 BLAKE2B d7747003cca852aceb3b382243c327e6ecd0f50a6e393c3aabfcdb38ce581f1301742d647be80a1d0ad9cebc3d6d9c50cee6242d46a545cbea87dc0c3dfee9fc SHA512 81929ca57ce5c2e1af6ec43882a54ff1da8dc77786bfb7505ff94fbcf970ae8870b419dc5c0bc7b80794d75a359e0100f360c1cf458a300f802b1d8bd7053811 diff --git a/www-nginx/ngx-cache-purge/files/ngx-cache-purge-2.3-add-dynamic-module-support.patch b/www-nginx/ngx-cache-purge/files/ngx-cache-purge-2.3-add-dynamic-module-support.patch deleted file mode 100644 index e953ee5413d8..000000000000 --- a/www-nginx/ngx-cache-purge/files/ngx-cache-purge-2.3-add-dynamic-module-support.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 3b65b8ac88d500d51bf5cb99f3ae5367756b3118 Mon Sep 17 00:00:00 2001 -From: Simone <simone@falcini.com> -Date: Mon, 20 Feb 2023 08:30:04 +0100 -Subject: [PATCH] Dynamic module support - ---- - config | 14 ++++++++++++-- - 1 file changed, 12 insertions(+), 2 deletions(-) - -diff --git a/config b/config -index 34f42ec..b900680 100644 ---- a/config -+++ b/config -@@ -15,7 +15,17 @@ if [ "$HTTP_UWSGI" = "YES" ]; then - fi - - ngx_addon_name=ngx_http_cache_purge_module --HTTP_MODULES="$HTTP_MODULES ngx_http_cache_purge_module" --NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_cache_purge_module.c" -+CACHE_PURGE_SRCS="$ngx_addon_dir/ngx_cache_purge_module.c" -+ -+if [ -n "$ngx_module_link" ]; then -+ ngx_module_type=HTTP -+ ngx_module_name="$ngx_addon_name" -+ ngx_module_srcs="$CACHE_PURGE_SRCS" -+ -+ . auto/module -+else -+ HTTP_MODULES="$HTTP_MODULES $ngx_addon_name" -+ NGX_ADDON_SRCS="$NGX_ADDON_SRCS $CACHE_PURGE_SRCS" -+fi - - have=NGX_CACHE_PURGE_MODULE . auto/have diff --git a/www-nginx/ngx-cache-purge/files/ngx-cache-purge-2.3-do-not-set-proxy_temp_path.patch b/www-nginx/ngx-cache-purge/files/ngx-cache-purge-2.3-do-not-set-proxy_temp_path.patch deleted file mode 100644 index 41b33d673eb6..000000000000 --- a/www-nginx/ngx-cache-purge/files/ngx-cache-purge-2.3-do-not-set-proxy_temp_path.patch +++ /dev/null @@ -1,67 +0,0 @@ -From a89fc7f978cf0f5a49a92d23ccc063dad38b964f Mon Sep 17 00:00:00 2001 -From: Zurab Kvachadze <zurabid2016@gmail.com> -Date: Mon, 1 Sep 2025 16:06:48 +0200 -Subject: [PATCH] tests: Do not set proxy_temp_path - -It is unnecessary for the testing and conflicts with proxy_temp_path -settings in Test::Nginx. - -Signed-off-by: Zurab Kvachadze <zurabid2016@gmail.com> ---- - t/proxy1.t | 1 - - t/proxy1_vars.t | 1 - - t/proxy2.t | 1 - - t/proxy2_vars.t | 1 - - 4 files changed, 4 deletions(-) - -diff --git a/t/proxy1.t b/t/proxy1.t -index e5c0054..a9dcc7e 100644 ---- a/t/proxy1.t -+++ b/t/proxy1.t -@@ -9,7 +9,6 @@ plan tests => repeat_each() * (blocks() * 4 + 3 * 1); - - our $http_config = <<'_EOC_'; - proxy_cache_path /tmp/ngx_cache_purge_cache keys_zone=test_cache:10m; -- proxy_temp_path /tmp/ngx_cache_purge_temp 1 2; - _EOC_ - - our $config = <<'_EOC_'; -diff --git a/t/proxy1_vars.t b/t/proxy1_vars.t -index af3553d..7049463 100644 ---- a/t/proxy1_vars.t -+++ b/t/proxy1_vars.t -@@ -9,7 +9,6 @@ plan tests => repeat_each() * (blocks() * 4 + 3 * 1); - - our $http_config = <<'_EOC_'; - proxy_cache_path /tmp/ngx_cache_purge_cache keys_zone=test_cache:10m; -- proxy_temp_path /tmp/ngx_cache_purge_temp 1 2; - _EOC_ - - our $config = <<'_EOC_'; -diff --git a/t/proxy2.t b/t/proxy2.t -index c07b042..24e0744 100644 ---- a/t/proxy2.t -+++ b/t/proxy2.t -@@ -9,7 +9,6 @@ plan tests => repeat_each() * (blocks() * 4 + 6 * 1); - - our $http_config = <<'_EOC_'; - proxy_cache_path /tmp/ngx_cache_purge_cache keys_zone=test_cache:10m; -- proxy_temp_path /tmp/ngx_cache_purge_temp 1 2; - _EOC_ - - our $config = <<'_EOC_'; -diff --git a/t/proxy2_vars.t b/t/proxy2_vars.t -index d09c08e..d505390 100644 ---- a/t/proxy2_vars.t -+++ b/t/proxy2_vars.t -@@ -9,7 +9,6 @@ plan tests => repeat_each() * (blocks() * 4 + 6 * 1); - - our $http_config = <<'_EOC_'; - proxy_cache_path /tmp/ngx_cache_purge_cache keys_zone=test_cache:10m; -- proxy_temp_path /tmp/ngx_cache_purge_temp 1 2; - _EOC_ - - our $config = <<'_EOC_'; --- -2.49.1 - diff --git a/www-nginx/ngx-cache-purge/metadata.xml b/www-nginx/ngx-cache-purge/metadata.xml deleted file mode 100644 index a9e5ea2805de..000000000000 --- a/www-nginx/ngx-cache-purge/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person" proxied="yes"> - <email>zurabid2016@gmail.com</email> - <name>Zurab Kvachadze</name> - </maintainer> - <maintainer type="project" proxied="proxy"> - <email>proxy-maint@gentoo.org</email> - <name>Proxy Maintainers</name> - </maintainer> - <upstream> - <bugs-to>https://github.com/FRiCKLE/ngx_cache_purge/issues</bugs-to> - <remote-id type="github">FRiCKLE/ngx_cache_purge</remote-id> - </upstream> -</pkgmetadata> diff --git a/www-nginx/ngx-cache-purge/ngx-cache-purge-2.3.ebuild b/www-nginx/ngx-cache-purge/ngx-cache-purge-2.3.ebuild deleted file mode 100644 index 2c7e6a286a35..000000000000 --- a/www-nginx/ngx-cache-purge/ngx-cache-purge-2.3.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -MY_PN="ngx_cache_purge" - -NGINX_MOD_OPENRESTY_TESTS=1 -inherit nginx-module - -DESCRIPTION="NGINX module allowing to purge the FastCGI, proxy, SCGI and uWSGI caches" -HOMEPAGE="https://github.com/FRiCKLE/ngx_cache_purge" -SRC_URI=" - https://github.com/FRiCKLE/ngx_cache_purge/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz -" - -S="${WORKDIR}/${MY_PN}-${PV}" - -LICENSE="BSD-2" -SLOT="0" - -KEYWORDS="amd64 arm64" - -PATCHES=( - "${FILESDIR}/${PN}-2.3-add-dynamic-module-support.patch" - "${FILESDIR}/${PN}-2.3-do-not-set-proxy_temp_path.patch" -) |
