From f13282536a6c2c62b38abc459999a9ff362340fe Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 02:57:06 +0000 Subject: [PATCH 01/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index e5a46d7..0c37d8a 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -3,7 +3,7 @@ Name: varnish-modules Version: 0.15.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -73,6 +73,9 @@ rm %{buildroot}%{_pkgdocdir}/LICENSE # Rather use license macro %{_mandir}/man3/*.3* %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 0.15.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sun Sep 29 2019 Ingvar Hagelund - 0.15.0-7 - Added patch from Nils Goroll, compatibility for varnish-6.3, closes bz#1736943 - Rebuilt against varnish-6.3.0 From 7c89415d95cc3edb1a2f8bbb4d66913e33c47184 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Fri, 20 Mar 2020 09:06:49 +0100 Subject: [PATCH 02/49] Snapshot from 6.4 branch, rebuilt against varnish-6.4.0 Removed patches merged upstream Delete 64-bit specific test on 32-bit arches --- .gitignore | 1 + sources | 2 +- varnish-modules.spec | 46 ++++++++++++++++++++++++++++---------------- 3 files changed, 31 insertions(+), 18 deletions(-) diff --git a/.gitignore b/.gitignore index 47e6daa..aec2562 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /varnish-modules-0.12.1.tar.gz /varnish-modules-0.15.0.tar.gz +/varnish-modules-0032ed8.tar.gz diff --git a/sources b/sources index 220d464..b4e3785 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (varnish-modules-0.15.0.tar.gz) = f24bc7e00db8eb53e4730b9b6d9adb9442d26ad5b07f3e09541b686e41d437113b8bca75f9ac47bc0ec54475fafb0eefc46b98ccee92d9360aaf660b4826ec9e +SHA512 (varnish-modules-0032ed8.tar.gz) = 9ad2bc33a954645f267ae61a299fc067cb075959ade0ecc2dbf080867c6b3039835994b628aeea92ecfb0b3bbce9d3fae83945f48b57df32a2e86c030ee1c704 diff --git a/varnish-modules.spec b/varnish-modules.spec index 0c37d8a..83df087 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -1,33 +1,38 @@ %global varnishver %(pkg-config --silence-errors --modversion varnishapi || echo 0) +%global commit 0032ed81820cbc7d8d0bdda8f0a14dc968a9de4f +%global shortcommit %(c=%{commit}; echo ${c:0:7}) + +%if 0%{?rhel} == 7 || 0%{?rhel} == 6 +%global docutils python34-docutils +%else +%global docutils python3-docutils +%endif Name: varnish-modules -Version: 0.15.0 -Release: 8%{?dist} +Version: 0.16.0 +Release: 0.1.20200318git%{shortcommit}%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD URL: https://github.com/varnish/%{name} -Source: https://download.varnish-software.com/varnish-modules/%{name}-%{version}.tar.gz - -Patch99: varnish-modules-0.15.0.add.bootstrap.patch -# bz #1736943: Fetched forward compatibiliy patch from -# https://github.com/nigoroll/varnish-modules, checkout fe1a981 -Patch100: varnish-modules-0.15.0.nigoroll_to_fe1a981_compatible_with_varnish-6.3.0.patch +Source: https://github.com/varnish/%{name}/archive/%{commit}/%{name}-%{shortcommit}.tar.gz +#Source: https://download.varnish-software.com/varnish-modules/%{name}-%{version}.tar.gz BuildRequires: gcc BuildRequires: make BuildRequires: pkgconfig(varnishapi) BuildRequires: varnish +# Build from a git checkout BuildRequires: automake BuildRequires: autoconf BuildRequires: libtool +BuildRequires: %docutils -Requires: varnish +Requires: varnish = %varnishver Provides: vmod-bodyaccess = %{version}-%{release} -Provides: vmod-cookie = %{version}-%{release} Provides: vmod-header = %{version}-%{release} Provides: vmod-saintmode = %{version}-%{release} Provides: vmod-tcp = %{version}-%{release} @@ -40,29 +45,31 @@ Provides: vmod-xkey = %{version}-%{release} This is a collection of modules ("vmods") extending Varnish VCL used for describing HTTP request/response policies with additional capabilities. This collection contains the following vmods (previously -kept individually): cookie, vsthrottle, header, saintmode, softpurge, +kept individually): vsthrottle, header, saintmode, softpurge, tcp, var, xkey %prep -%setup -q -%patch99 -p0 -%patch100 -p1 +%autosetup -n %{name}-%{commit} +#autosetup %build sh bootstrap -%configure -%make_build +%configure +%make_build %install %make_install docdir=%_pkgdocdir find %{buildroot}/%{_libdir}/ -name '*.la' -exec rm -f {} ';' rm %{buildroot}%{_pkgdocdir}/LICENSE # Rather use license macro - %check +%ifarch %ix86 ppc +# 64-bit specific test +sed -i 's,tests/xkey/test12.vtc,,' src/Makefile +%endif %make_build check VERBOSE=1 @@ -73,6 +80,11 @@ rm %{buildroot}%{_pkgdocdir}/LICENSE # Rather use license macro %{_mandir}/man3/*.3* %changelog +* Tue Mar 17 2020 Ingvar Hagelund - 0.15.1-0.1.20200317git21d0c84 +- Snapshot from 6.4 branch, rebuilt against varnish-6.4.0 +- Removed patches merged upstream +- Delete 64-bit specific test on 32-bit arches + * Fri Jan 31 2020 Fedora Release Engineering - 0.15.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 4f0634a3171ce78ab0d9fc56cc365638f67c356a Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Mon, 23 Mar 2020 12:41:01 +0100 Subject: [PATCH 03/49] %arm is also 32-bit --- varnish-modules.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 83df087..141719b 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -66,7 +66,7 @@ find %{buildroot}/%{_libdir}/ -name '*.la' -exec rm -f {} ';' rm %{buildroot}%{_pkgdocdir}/LICENSE # Rather use license macro %check -%ifarch %ix86 ppc +%ifarch %ix86 %arm ppc # 64-bit specific test sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %endif From 9a19a7885e4971e13ccc5b5f551458245260d4c6 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Sat, 28 Mar 2020 19:51:59 +0100 Subject: [PATCH 04/49] New upstream release --- .gitignore | 1 + sources | 2 +- varnish-modules.spec | 18 ++++++++---------- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index aec2562..789acef 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /varnish-modules-0.12.1.tar.gz /varnish-modules-0.15.0.tar.gz /varnish-modules-0032ed8.tar.gz +/varnish-modules-0.16.0.tar.gz diff --git a/sources b/sources index b4e3785..90bd340 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (varnish-modules-0032ed8.tar.gz) = 9ad2bc33a954645f267ae61a299fc067cb075959ade0ecc2dbf080867c6b3039835994b628aeea92ecfb0b3bbce9d3fae83945f48b57df32a2e86c030ee1c704 +SHA512 (varnish-modules-0.16.0.tar.gz) = 614bb99cf48d33710f06ed52bacff092c8a60ddd8f5eb55470cf571e44ca01cc9696b4c8669dc6979ab7096762cb6ef80435e210aa38f9eaaf31a1dd73d858e2 diff --git a/varnish-modules.spec b/varnish-modules.spec index 141719b..1cc69ad 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -1,8 +1,5 @@ %global varnishver %(pkg-config --silence-errors --modversion varnishapi || echo 0) -%global commit 0032ed81820cbc7d8d0bdda8f0a14dc968a9de4f -%global shortcommit %(c=%{commit}; echo ${c:0:7}) - %if 0%{?rhel} == 7 || 0%{?rhel} == 6 %global docutils python34-docutils %else @@ -11,13 +8,13 @@ Name: varnish-modules Version: 0.16.0 -Release: 0.1.20200318git%{shortcommit}%{?dist} +Release: 1%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD URL: https://github.com/varnish/%{name} -Source: https://github.com/varnish/%{name}/archive/%{commit}/%{name}-%{shortcommit}.tar.gz -#Source: https://download.varnish-software.com/varnish-modules/%{name}-%{version}.tar.gz +#Source: https://download.varnish-software.com/varnish-modules/#{name}-#{version}.tar.gz +Source: https://github.com/varnish/varnish-modules/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz BuildRequires: gcc BuildRequires: make @@ -50,12 +47,10 @@ tcp, var, xkey %prep -%autosetup -n %{name}-%{commit} -#autosetup +%autosetup %build -sh bootstrap %configure %make_build @@ -80,7 +75,10 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %{_mandir}/man3/*.3* %changelog -* Tue Mar 17 2020 Ingvar Hagelund - 0.15.1-0.1.20200317git21d0c84 +* Sat Mar 28 2020 Ingvar Hagelund - 0.16.0-1 +- New upstream release + +* Tue Mar 17 2020 Ingvar Hagelund - 0.16.0-0.1.20200317git21d0c84 - Snapshot from 6.4 branch, rebuilt against varnish-6.4.0 - Removed patches merged upstream - Delete 64-bit specific test on 32-bit arches From e9d0c6bd0196571c556567c9455c5c7bb103a611 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 13:33:46 +0000 Subject: [PATCH 05/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 1cc69ad..d39dcb3 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -8,7 +8,7 @@ Name: varnish-modules Version: 0.16.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -75,6 +75,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %{_mandir}/man3/*.3* %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 0.16.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Sat Mar 28 2020 Ingvar Hagelund - 0.16.0-1 - New upstream release From 8bf28a6b3b5e428519a7fa3cc16363bdfe544901 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Mon, 17 Aug 2020 09:34:42 +0200 Subject: [PATCH 06/49] Rebuilt for varnish-6.4.0 --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index d39dcb3..5375ef6 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -8,7 +8,7 @@ Name: varnish-modules Version: 0.16.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -75,6 +75,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %{_mandir}/man3/*.3* %changelog +* Mon Aug 17 2020 Ingvar Hagelund - 0.16.0-3 +- Rebuilt for varnish-6.4.0 + * Wed Jul 29 2020 Fedora Release Engineering - 0.16.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 340e75cb09e9599a14f8d1082a3997f0c6434664 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Wed, 16 Sep 2020 17:34:50 +0200 Subject: [PATCH 07/49] Switched upstream to Nils Goroll's fork which is the defacto current upstream Synced description to reality This is a snapshot build that needs autotools for building Rebuilt for varnish-6.5.0 --- .gitignore | 1 + sources | 2 +- varnish-modules.spec | 32 ++++++++++++++++++++++---------- 3 files changed, 24 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 789acef..e722d1d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /varnish-modules-0.15.0.tar.gz /varnish-modules-0032ed8.tar.gz /varnish-modules-0.16.0.tar.gz +/varnish-modules-4d6593c.tar.gz diff --git a/sources b/sources index 90bd340..7a6624f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (varnish-modules-0.16.0.tar.gz) = 614bb99cf48d33710f06ed52bacff092c8a60ddd8f5eb55470cf571e44ca01cc9696b4c8669dc6979ab7096762cb6ef80435e210aa38f9eaaf31a1dd73d858e2 +SHA512 (varnish-modules-4d6593c.tar.gz) = bb118cd844e0519db2dea0b3b4be1f3fda8760e9380537cd1e2a3ef52b2156ed51b608b02a9ce021ec25a405ffa4e5b9bbe811d6c410dab93ff1a4207f694416 diff --git a/varnish-modules.spec b/varnish-modules.spec index 5375ef6..9d86f64 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -1,20 +1,23 @@ %global varnishver %(pkg-config --silence-errors --modversion varnishapi || echo 0) +%global commit 4d6593c2c97ecbabd3bd68203bace9cdbd6e960c +%global shortcommit %(c=%{commit}; echo ${c:0:7}) %if 0%{?rhel} == 7 || 0%{?rhel} == 6 %global docutils python34-docutils +%global rst2man rst2man-3.4 %else %global docutils python3-docutils +%global rst2man rst2man %endif Name: varnish-modules -Version: 0.16.0 -Release: 3%{?dist} +Version: 0.17.0 +Release: 0.1.klarlack.20200916git%{shortcommit}%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD -URL: https://github.com/varnish/%{name} -#Source: https://download.varnish-software.com/varnish-modules/#{name}-#{version}.tar.gz -Source: https://github.com/varnish/varnish-modules/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz +URL: https://github.com/nigoroll/varnish-modules +Source: https://github.com/nigoroll/%{name}/archive/%{commit}/%{name}-%{shortcommit}.tar.gz BuildRequires: gcc BuildRequires: make @@ -41,25 +44,27 @@ Provides: vmod-xkey = %{version}-%{release} %description This is a collection of modules ("vmods") extending Varnish VCL used for describing HTTP request/response policies with additional -capabilities. This collection contains the following vmods (previously -kept individually): vsthrottle, header, saintmode, softpurge, -tcp, var, xkey +capabilities. This collection contains the following vmods: +bodyaccess, header, saintmode, tcp, var, vsthrottle, xkey %prep -%autosetup +%autosetup -n %{name}-%{commit} %build +sh bootstrap +export RST2MAN=%{rst2man} %configure - %make_build + %install %make_install docdir=%_pkgdocdir find %{buildroot}/%{_libdir}/ -name '*.la' -exec rm -f {} ';' rm %{buildroot}%{_pkgdocdir}/LICENSE # Rather use license macro + %check %ifarch %ix86 %arm ppc # 64-bit specific test @@ -74,7 +79,14 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %{_libdir}/varnish/vmods/* %{_mandir}/man3/*.3* + %changelog +* Wed Sep 16 2020 Ingvar Hagelund - 0.17.0-0.1.klarlack.20200916git +- Switched upstream to Nils Goroll's fork which is the defacto current upstream +- Synced description to reality +- This is a snapshot build that needs autotools for building +- Rebuilt for varnish-6.5.0 + * Mon Aug 17 2020 Ingvar Hagelund - 0.16.0-3 - Rebuilt for varnish-6.4.0 From 2a9d075e350b7e004a291caeec3c4a0c9c5a9999 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Tue, 29 Sep 2020 10:31:43 +0200 Subject: [PATCH 08/49] Rebuilt for varnish-6.5.1 --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 9d86f64..ae3a4e3 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -12,7 +12,7 @@ Name: varnish-modules Version: 0.17.0 -Release: 0.1.klarlack.20200916git%{shortcommit}%{?dist} +Release: 0.2.klarlack.20200916git%{shortcommit}%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Tue Sep 29 2020 Ingvar Hagelund - 0.17.0-0.2.klarlack.20200916git +- Rebuilt for varnish-6.5.1 + * Wed Sep 16 2020 Ingvar Hagelund - 0.17.0-0.1.klarlack.20200916git - Switched upstream to Nils Goroll's fork which is the defacto current upstream - Synced description to reality From e2d45a9f844b7af8560663d0eb60edf8bb24ddc5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 22:55:21 +0000 Subject: [PATCH 09/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index ae3a4e3..ce1de1f 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -12,7 +12,7 @@ Name: varnish-modules Version: 0.17.0 -Release: 0.2.klarlack.20200916git%{shortcommit}%{?dist} +Release: 0.3.klarlack.20200916git%{shortcommit}%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 0.17.0-0.3.klarlack.20200916git4d6593c +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Sep 29 2020 Ingvar Hagelund - 0.17.0-0.2.klarlack.20200916git - Rebuilt for varnish-6.5.1 From 9b7be58d03161deb9bd14a8a67f08b4f119fa9f0 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Wed, 17 Mar 2021 17:00:18 +0100 Subject: [PATCH 10/49] New upstream release Switched back to original varnish github upstream, as it has catched up Includes fix for CVE-2021-28543, VSV00006, bz#1939669 --- varnish-modules.spec | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index ce1de1f..1be558d 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -1,6 +1,5 @@ %global varnishver %(pkg-config --silence-errors --modversion varnishapi || echo 0) -%global commit 4d6593c2c97ecbabd3bd68203bace9cdbd6e960c -%global shortcommit %(c=%{commit}; echo ${c:0:7}) +%global gittag 0.17.1 %if 0%{?rhel} == 7 || 0%{?rhel} == 6 %global docutils python34-docutils @@ -11,13 +10,13 @@ %endif Name: varnish-modules -Version: 0.17.0 -Release: 0.3.klarlack.20200916git%{shortcommit}%{?dist} +Version: 0.17.1 +Release: 1%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD -URL: https://github.com/nigoroll/varnish-modules -Source: https://github.com/nigoroll/%{name}/archive/%{commit}/%{name}-%{shortcommit}.tar.gz +URL: https://github.com/varnish/varnish-modules +Source: https://github.com/varnish/varnish-modules/archive/%{gittag}/%{name}-%{version}.tar.gz BuildRequires: gcc BuildRequires: make @@ -49,7 +48,7 @@ bodyaccess, header, saintmode, tcp, var, vsthrottle, xkey %prep -%autosetup -n %{name}-%{commit} +%autosetup -n %{name}-%{gittag} %build @@ -74,13 +73,19 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %files -%doc docs AUTHORS CHANGES.rst COPYING README.rst +#doc docs AUTHORS CHANGES.rst COPYING README.rst +%doc AUTHORS CHANGES.rst COPYING README.rst %license LICENSE %{_libdir}/varnish/vmods/* %{_mandir}/man3/*.3* %changelog +* Wed Mar 17 2021 Ingvar Hagelund 0.17.1-1 +- New upstream release +- Switched back to original varnish github upstream, as it has catched up +- Includes fix for CVE-2021-28543, VSV00006, bz#1939669 + * Wed Jan 27 2021 Fedora Release Engineering - 0.17.0-0.3.klarlack.20200916git4d6593c - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 3e62ab6e0919e8d64e271ec15eec6712e9707732 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Wed, 17 Mar 2021 17:05:24 +0100 Subject: [PATCH 11/49] add source for varnish-modules-0.17.1 --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e722d1d..fceb9c3 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /varnish-modules-0032ed8.tar.gz /varnish-modules-0.16.0.tar.gz /varnish-modules-4d6593c.tar.gz +/varnish-modules-0.17.1.tar.gz diff --git a/sources b/sources index 7a6624f..18c22fe 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (varnish-modules-4d6593c.tar.gz) = bb118cd844e0519db2dea0b3b4be1f3fda8760e9380537cd1e2a3ef52b2156ed51b608b02a9ce021ec25a405ffa4e5b9bbe811d6c410dab93ff1a4207f694416 +SHA512 (varnish-modules-0.17.1.tar.gz) = 354f06f6da7c87a3ba28f1871870ec52bba1af40622c6176c1a1cae70f0bbf5f658206f82c4542eb7e8e7c7ef5e03a2cff598e6f799d3a4fdcc5e7113ce0900f From 6dcb8de304f0e217fd91baab9760d8a80f9c1973 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Tue, 18 May 2021 15:56:51 +0200 Subject: [PATCH 12/49] New upstream release Rebuilt for varnish-6.6.0 --- .gitignore | 1 + sources | 2 +- varnish-modules.spec | 10 +++++++--- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index fceb9c3..07c5dd1 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /varnish-modules-0.16.0.tar.gz /varnish-modules-4d6593c.tar.gz /varnish-modules-0.17.1.tar.gz +/varnish-modules-0.18.0.tar.gz diff --git a/sources b/sources index 18c22fe..cd31729 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (varnish-modules-0.17.1.tar.gz) = 354f06f6da7c87a3ba28f1871870ec52bba1af40622c6176c1a1cae70f0bbf5f658206f82c4542eb7e8e7c7ef5e03a2cff598e6f799d3a4fdcc5e7113ce0900f +SHA512 (varnish-modules-0.18.0.tar.gz) = a6a56ea371ebe8183926e5411f8b4ee7bb47cc45464cfffb2f4a8d17b04b156889bcbe254845058ded2e712ed21ee73e6e98eb29f72d922f1fbbfc1cc506d9f1 diff --git a/varnish-modules.spec b/varnish-modules.spec index 1be558d..93c36ee 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -1,5 +1,5 @@ %global varnishver %(pkg-config --silence-errors --modversion varnishapi || echo 0) -%global gittag 0.17.1 +%global gittag 0.18.0 %if 0%{?rhel} == 7 || 0%{?rhel} == 6 %global docutils python34-docutils @@ -10,7 +10,7 @@ %endif Name: varnish-modules -Version: 0.17.1 +Version: 0.18.0 Release: 1%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL @@ -74,13 +74,17 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %files #doc docs AUTHORS CHANGES.rst COPYING README.rst -%doc AUTHORS CHANGES.rst COPYING README.rst +%doc AUTHORS CHANGES.rst COPYING README.md %license LICENSE %{_libdir}/varnish/vmods/* %{_mandir}/man3/*.3* %changelog +* Tue May 18 2021 Ingvar Hagelund 0.18.0-1 +- New upstream release +- Rebuilt for varnish-6.6.0 + * Wed Mar 17 2021 Ingvar Hagelund 0.17.1-1 - New upstream release - Switched back to original varnish github upstream, as it has catched up From 29164248258b48012a68f07971c8cc8fe582cd4d Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Sat, 17 Jul 2021 10:54:29 +0200 Subject: [PATCH 13/49] Rebuilt for varnish-6.6.1 --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 93c36ee..71951da 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -11,7 +11,7 @@ Name: varnish-modules Version: 0.18.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Sat Jul 17 2021 Ingvar Hagelund 0.18.0-2 +- Rebuilt for varnish-6.6.1 + * Tue May 18 2021 Ingvar Hagelund 0.18.0-1 - New upstream release - Rebuilt for varnish-6.6.0 From 93f3454722a9c5e4e780144af95b2218c6f5aa11 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 20:19:11 +0000 Subject: [PATCH 14/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 71951da..7bfde02 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -11,7 +11,7 @@ Name: varnish-modules Version: 0.18.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 0.18.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Sat Jul 17 2021 Ingvar Hagelund 0.18.0-2 - Rebuilt for varnish-6.6.1 From 27cf399d7e117d2b261db6fdab95a079c08765f3 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Mon, 4 Oct 2021 20:18:26 +0200 Subject: [PATCH 15/49] New upstream release Built for varnish-7.0.0 --- .gitignore | 1 + sources | 2 +- varnish-modules.spec | 15 ++++++++++----- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 07c5dd1..7017fad 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /varnish-modules-4d6593c.tar.gz /varnish-modules-0.17.1.tar.gz /varnish-modules-0.18.0.tar.gz +/varnish-modules-0.19.0.tar.gz diff --git a/sources b/sources index cd31729..5451d50 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (varnish-modules-0.18.0.tar.gz) = a6a56ea371ebe8183926e5411f8b4ee7bb47cc45464cfffb2f4a8d17b04b156889bcbe254845058ded2e712ed21ee73e6e98eb29f72d922f1fbbfc1cc506d9f1 +SHA512 (varnish-modules-0.19.0.tar.gz) = fc6f4c1695f80fa3b267c13c772dca9cf577eed38c733207cf0f8e01b5d4ebabbe43e936974ba70338a663a45624254759cfd75f8fbae0202361238ee5f15cef diff --git a/varnish-modules.spec b/varnish-modules.spec index 7bfde02..3013108 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,13 +10,13 @@ %endif Name: varnish-modules -Version: 0.18.0 -Release: 3%{?dist} +Version: 0.19.0 +Release: 1%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD URL: https://github.com/varnish/varnish-modules -Source: https://github.com/varnish/varnish-modules/archive/%{gittag}/%{name}-%{version}.tar.gz +Source: https://github.com/varnish/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz BuildRequires: gcc BuildRequires: make @@ -48,11 +48,12 @@ bodyaccess, header, saintmode, tcp, var, vsthrottle, xkey %prep -%autosetup -n %{name}-%{gittag} +#autosetup -n #{name}-#{gittag} +%autosetup %build -sh bootstrap +#sh bootstrap export RST2MAN=%{rst2man} %configure %make_build @@ -81,6 +82,10 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Thu Sep 23 2021 Ingvar Hagelund - 0.19.0-1 +- New upstream release +- Built for varnish-7.0.0 + * Fri Jul 23 2021 Fedora Release Engineering - 0.18.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 543f609a998d4ad7b80c26f671beddc390ffb912 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Tue, 18 Jan 2022 20:07:11 +0100 Subject: [PATCH 16/49] Built for varnish-7.0.1 --- varnish-modules.spec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/varnish-modules.spec b/varnish-modules.spec index 3013108..7c05417 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -82,6 +82,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Tue Jan 18 2022 Ingvar Hagelund - 0.19.0-2 +- Built for varnish-7.0.1 + * Thu Sep 23 2021 Ingvar Hagelund - 0.19.0-1 - New upstream release - Built for varnish-7.0.0 From 22dcc668e57d84a055ce6df565aef4740d45b659 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Tue, 18 Jan 2022 20:09:36 +0100 Subject: [PATCH 17/49] forgot to up %release --- varnish-modules.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 7c05417..7d89e5a 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -11,7 +11,7 @@ Name: varnish-modules Version: 0.19.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD From 16c71a94e4092ae315c3f0755d9f94fba4891f4d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 03:48:29 +0000 Subject: [PATCH 18/49] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 7d89e5a..108e54f 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -11,7 +11,7 @@ Name: varnish-modules Version: 0.19.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -82,6 +82,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 0.19.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Tue Jan 18 2022 Ingvar Hagelund - 0.19.0-2 - Built for varnish-7.0.1 From f51397838ece934f53cce33cc004a22420fc25fd Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Thu, 10 Feb 2022 11:47:41 +0100 Subject: [PATCH 19/49] Built for varnish-7.0.2 --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 108e54f..f18eaa5 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -11,7 +11,7 @@ Name: varnish-modules Version: 0.19.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -82,6 +82,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Thu Feb 10 2022 Ingvar Hagelund - 0.19.0-4 +- Built for varnish-7.0.2 + * Sat Jan 22 2022 Fedora Release Engineering - 0.19.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 94b56b762f893c98b6b38bba856e50b26cbb6526 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Mon, 4 Apr 2022 14:26:42 +0200 Subject: [PATCH 20/49] Built for varnish-7.1.0 Now provides vmod(name) instead of vmod-name, matching varnish' provides --- .gitignore | 1 + sources | 2 +- varnish-modules.spec | 31 ++++++++++++++++++------------- 3 files changed, 20 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 7017fad..9d1f313 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /varnish-modules-0.17.1.tar.gz /varnish-modules-0.18.0.tar.gz /varnish-modules-0.19.0.tar.gz +/varnish-modules-0.20.0.tar.gz diff --git a/sources b/sources index 5451d50..08d951d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (varnish-modules-0.19.0.tar.gz) = fc6f4c1695f80fa3b267c13c772dca9cf577eed38c733207cf0f8e01b5d4ebabbe43e936974ba70338a663a45624254759cfd75f8fbae0202361238ee5f15cef +SHA512 (varnish-modules-0.20.0.tar.gz) = e63d6da8f63a5ce56bc7a5a1dd1a908e4ab0f6a36b5bdc5709dca2aa9c0b474bd8a06491ed3dee23636d335241ced4c7ef017b57413b05792ad382f6306a0b36 diff --git a/varnish-modules.spec b/varnish-modules.spec index f18eaa5..7326314 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,8 +10,8 @@ %endif Name: varnish-modules -Version: 0.19.0 -Release: 4%{?dist} +Version: 0.20.0 +Release: 1%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -24,21 +24,22 @@ BuildRequires: pkgconfig(varnishapi) BuildRequires: varnish # Build from a git checkout -BuildRequires: automake -BuildRequires: autoconf -BuildRequires: libtool +#BuildRequires: automake +#BuildRequires: autoconf +#BuildRequires: libtool BuildRequires: %docutils Requires: varnish = %varnishver -Provides: vmod-bodyaccess = %{version}-%{release} -Provides: vmod-header = %{version}-%{release} -Provides: vmod-saintmode = %{version}-%{release} -Provides: vmod-tcp = %{version}-%{release} -Provides: vmod-var = %{version}-%{release} -Provides: vmod-vsthrottle = %{version}-%{release} -Provides: vmod-xkey = %{version}-%{release} - +Provides: vmod(accept)%{_isa} = %{version}-%{release} +Provides: vmod(bodyaccess)%{_isa} = %{version}-%{release} +Provides: vmod(header)%{_isa} = %{version}-%{release} +Provides: vmod(saintmode)%{_isa} = %{version}-%{release} +Provides: vmod(tcp)%{_isa} = %{version}-%{release} +Provides: vmod(var)%{_isa} = %{version}-%{release} +Provides: vmod(vsthrottle)%{_isa} = %{version}-%{release} +Provides: vmod(xkey)%{_isa} = %{version}-%{release} +Provides: vmod(str)%{_isa} = %{version}-%{release} %description This is a collection of modules ("vmods") extending Varnish VCL used @@ -82,6 +83,10 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Tue Mar 29 2022 Ingvar Hagelund - 0.20.0-1 +- Built for varnish-7.1.0 +- Now provides vmod(name) instead of vmod-name, matching varnish' provides + * Thu Feb 10 2022 Ingvar Hagelund - 0.19.0-4 - Built for varnish-7.0.2 From 0c6c06513fad7552199e614d724ba4fa1c2acd67 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 11:41:59 +0000 Subject: [PATCH 21/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 7326314..b174b08 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -11,7 +11,7 @@ Name: varnish-modules Version: 0.20.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -83,6 +83,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 0.20.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Tue Mar 29 2022 Ingvar Hagelund - 0.20.0-1 - Built for varnish-7.1.0 - Now provides vmod(name) instead of vmod-name, matching varnish' provides From 330de345c767232c15931a39f2c40a9be98bd2ac Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Mon, 15 Aug 2022 09:13:03 +0200 Subject: [PATCH 22/49] Built for varnish-7.1.1 --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index b174b08..2669d89 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -11,7 +11,7 @@ Name: varnish-modules Version: 0.20.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -83,6 +83,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Mon Aug 15 2022 Ingvar Hagelund - 0.20.0-3 +- Built for varnish-7.1.1 + * Sat Jul 23 2022 Fedora Release Engineering - 0.20.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From e27e672ae520d79ea250135aaf17d49b10b28b3a Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Mon, 26 Sep 2022 15:01:15 +0200 Subject: [PATCH 23/49] New upstream release Removed unused macros from specfile Built for varnish-7.2.0 --- .gitignore | 1 + sources | 2 +- varnish-modules.spec | 13 ++++++++----- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 9d1f313..8488427 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /varnish-modules-0.18.0.tar.gz /varnish-modules-0.19.0.tar.gz /varnish-modules-0.20.0.tar.gz +/varnish-modules-0.21.0.tar.gz diff --git a/sources b/sources index 08d951d..4015eef 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (varnish-modules-0.20.0.tar.gz) = e63d6da8f63a5ce56bc7a5a1dd1a908e4ab0f6a36b5bdc5709dca2aa9c0b474bd8a06491ed3dee23636d335241ced4c7ef017b57413b05792ad382f6306a0b36 +SHA512 (varnish-modules-0.21.0.tar.gz) = a442f58968b471d713c99a94e5b80302c07ea163d3d5022d768eb0b39ab081f18744fd529b04283b0c6ec942f362197935d8ef1aa04f26eff10a81425a63bd35 diff --git a/varnish-modules.spec b/varnish-modules.spec index 2669d89..e47d984 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -1,7 +1,6 @@ %global varnishver %(pkg-config --silence-errors --modversion varnishapi || echo 0) -%global gittag 0.18.0 -%if 0%{?rhel} == 7 || 0%{?rhel} == 6 +%if 0%{?rhel} == 7 %global docutils python34-docutils %global rst2man rst2man-3.4 %else @@ -10,8 +9,8 @@ %endif Name: varnish-modules -Version: 0.20.0 -Release: 3%{?dist} +Version: 0.21.0 +Release: 1%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -49,7 +48,6 @@ bodyaccess, header, saintmode, tcp, var, vsthrottle, xkey %prep -#autosetup -n #{name}-#{gittag} %autosetup @@ -83,6 +81,11 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Mon Sep 26 2022 Ingvar Hagelund - 0.21.0-1 +- New upstream release +- Removed unused macros from specfile +- Built for varnish-7.2.0 + * Mon Aug 15 2022 Ingvar Hagelund - 0.20.0-3 - Built for varnish-7.1.1 From 96e882feaf72f9e601fa7b471c7e129ed52d3bf4 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Sun, 13 Nov 2022 14:10:43 +0100 Subject: [PATCH 24/49] Built for varnish-7.2.1 --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index e47d984..a8bcf29 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,7 +10,7 @@ Name: varnish-modules Version: 0.21.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Sun Nov 13 2022 Ingvar Hagelund - 0.21.0-2 +- Built for varnish-7.2.1 + * Mon Sep 26 2022 Ingvar Hagelund - 0.21.0-1 - New upstream release - Removed unused macros from specfile From ffd7bda46a42be569a8c7d3f81b0aee6f8d8d436 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 06:07:17 +0000 Subject: [PATCH 25/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index a8bcf29..5b098bc 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,7 +10,7 @@ Name: varnish-modules Version: 0.21.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 0.21.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sun Nov 13 2022 Ingvar Hagelund - 0.21.0-2 - Built for varnish-7.2.1 From 73ede280ee45eab7ca556879975f4a2e0cc5d10f Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Sun, 19 Mar 2023 02:07:48 +0100 Subject: [PATCH 26/49] New upstream release Built for varnish-7.3.0 --- .gitignore | 1 + sources | 2 +- varnish-modules.spec | 8 ++++++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8488427..38bb9f8 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /varnish-modules-0.19.0.tar.gz /varnish-modules-0.20.0.tar.gz /varnish-modules-0.21.0.tar.gz +/varnish-modules-0.22.0.tar.gz diff --git a/sources b/sources index 4015eef..57391ad 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (varnish-modules-0.21.0.tar.gz) = a442f58968b471d713c99a94e5b80302c07ea163d3d5022d768eb0b39ab081f18744fd529b04283b0c6ec942f362197935d8ef1aa04f26eff10a81425a63bd35 +SHA512 (varnish-modules-0.22.0.tar.gz) = 597ac1161224a25c11183fbaaf25412c8f8e0af3bf58fa76161328d8ae97aa7c485cfa6ed50e9f24ce73eca9ddeeb87ee4998427382c0fce633bf43eaf08068a diff --git a/varnish-modules.spec b/varnish-modules.spec index 5b098bc..0110d92 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -9,8 +9,8 @@ %endif Name: varnish-modules -Version: 0.21.0 -Release: 3%{?dist} +Version: 0.22.0 +Release: 0%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -81,6 +81,10 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Sat Mar 19 2023 Ingvar Hagelund - 0.22.0-1 +- New upstream release +- Built for varnish-7.3.0 + * Sat Jan 21 2023 Fedora Release Engineering - 0.21.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 882c27d51d515a68b2f578b0a9b140871057dee8 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Mon, 20 Mar 2023 23:33:50 +0100 Subject: [PATCH 27/49] typofix --- varnish-modules.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 0110d92..520df87 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,7 +10,7 @@ Name: varnish-modules Version: 0.22.0 -Release: 0%{?dist} +Release: 1%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD @@ -81,7 +81,7 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog -* Sat Mar 19 2023 Ingvar Hagelund - 0.22.0-1 +* Sun Mar 19 2023 Ingvar Hagelund - 0.22.0-1 - New upstream release - Built for varnish-7.3.0 From 29ad285f00c83a25a5041bce259427bc1fce5e7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Uhliarik?= Date: Tue, 6 Jun 2023 16:43:05 +0200 Subject: [PATCH 28/49] SPDX migration --- varnish-modules.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 520df87..511e3d5 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,10 +10,10 @@ Name: varnish-modules Version: 0.22.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL -License: BSD +License: BSD-2-Clause URL: https://github.com/varnish/varnish-modules Source: https://github.com/varnish/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Tue Jun 06 2023 Luboš Uhliarik - 0.22.0-2 +- SPDX migration + * Sun Mar 19 2023 Ingvar Hagelund - 0.22.0-1 - New upstream release - Built for varnish-7.3.0 From fb9883a65a554b886e6822fef9ac86b5a3fa145f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 17:25:59 +0000 Subject: [PATCH 29/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 511e3d5..7128aa8 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,7 +10,7 @@ Name: varnish-modules Version: 0.22.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 0.22.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Tue Jun 06 2023 Luboš Uhliarik - 0.22.0-2 - SPDX migration From 6ed3472197c782dff648391675c5468b53d15246 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Wed, 15 Nov 2023 16:36:58 +0100 Subject: [PATCH 30/49] Rebuilt for varnish-7.4.2 --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 7128aa8..f65ec94 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,7 +10,7 @@ Name: varnish-modules Version: 0.22.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Wed Nov 15 2023 Ingvar Hagelund - 0.22.0-4 +- Rebuilt for varnish-7.4.2 + * Sat Jul 22 2023 Fedora Release Engineering - 0.22.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 10488a6706d3014e7a0e554cc71472e5e5eb6441 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 07:31:08 +0000 Subject: [PATCH 31/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index f65ec94..cea27b2 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,7 +10,7 @@ Name: varnish-modules Version: 0.22.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 0.22.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Wed Nov 15 2023 Ingvar Hagelund - 0.22.0-4 - Rebuilt for varnish-7.4.2 From 2364b8f829f59e09bcbb3a25c82e9051f6b5626c Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Tue, 2 Apr 2024 16:26:38 +0200 Subject: [PATCH 32/49] New upstream release matching varnish-7.5.0 --- .gitignore | 1 + sources | 2 +- varnish-modules.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 38bb9f8..d1d9b1c 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /varnish-modules-0.20.0.tar.gz /varnish-modules-0.21.0.tar.gz /varnish-modules-0.22.0.tar.gz +/varnish-modules-0.24.0.tar.gz diff --git a/sources b/sources index 57391ad..ff909d8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (varnish-modules-0.22.0.tar.gz) = 597ac1161224a25c11183fbaaf25412c8f8e0af3bf58fa76161328d8ae97aa7c485cfa6ed50e9f24ce73eca9ddeeb87ee4998427382c0fce633bf43eaf08068a +SHA512 (varnish-modules-0.24.0.tar.gz) = fd1b1b7ff61654e568df208229eb1af0086c98726592d1269ca5e13b24ce292a4ec6aeea52a5469f465ca426019629ef5db5a54dfed7f1fd2f0a4b50c92503a6 diff --git a/varnish-modules.spec b/varnish-modules.spec index cea27b2..86241ec 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -9,8 +9,8 @@ %endif Name: varnish-modules -Version: 0.22.0 -Release: 5%{?dist} +Version: 0.24.0 +Release: 1%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Tue Apr 02 2024 Ingvar Hagelund - 0.24.0 +- New upstream release matching varnish-7.5.0 + * Sat Jan 27 2024 Fedora Release Engineering - 0.22.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From bfdd7a9fdc99888a06f340fe889d7a93c715463e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 08:35:03 +0000 Subject: [PATCH 33/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 86241ec..7c30be5 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,7 +10,7 @@ Name: varnish-modules Version: 0.24.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 0.24.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Tue Apr 02 2024 Ingvar Hagelund - 0.24.0 - New upstream release matching varnish-7.5.0 From 0755613f99ce32d8b993ac95edcc3d4996a0ef15 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Tue, 17 Sep 2024 14:43:10 +0200 Subject: [PATCH 34/49] New upsteam release matching varnish-7.6.0 --- .gitignore | 1 + sources | 2 +- varnish-modules.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d1d9b1c..bba342a 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /varnish-modules-0.21.0.tar.gz /varnish-modules-0.22.0.tar.gz /varnish-modules-0.24.0.tar.gz +/varnish-modules-0.25.0.tar.gz diff --git a/sources b/sources index ff909d8..5c516f8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (varnish-modules-0.24.0.tar.gz) = fd1b1b7ff61654e568df208229eb1af0086c98726592d1269ca5e13b24ce292a4ec6aeea52a5469f465ca426019629ef5db5a54dfed7f1fd2f0a4b50c92503a6 +SHA512 (varnish-modules-0.25.0.tar.gz) = 2ad8ebeab165002d1bfba9a2088951fb10ff573f0205d3f04e68921f191441f4026450f3a0b78f2aa96f40c82838a2d4d5f0688141fa7b8241ae7b7a5f507c10 diff --git a/varnish-modules.spec b/varnish-modules.spec index 7c30be5..131e6b2 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -9,8 +9,8 @@ %endif Name: varnish-modules -Version: 0.24.0 -Release: 2%{?dist} +Version: 0.25.0 +Release: 1%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Tue Sep 17 2024 Ingvar Hagelund - 0.25.0-1 +- New upsteam release matching varnish-7.6.0 + * Sat Jul 20 2024 Fedora Release Engineering - 0.24.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 0d3cd07b0168e6357accfa0d2b26d12699515a3f Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Fri, 6 Dec 2024 15:33:30 +0100 Subject: [PATCH 35/49] Rebuilt for varnish-7.6.1 --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 131e6b2..651dc98 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,7 +10,7 @@ Name: varnish-modules Version: 0.25.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Fri Dec 06 2024 Ingvar Hagelund - 0.25.0-2 +- Rebuilt for varnish-7.6.1 + * Tue Sep 17 2024 Ingvar Hagelund - 0.25.0-1 - New upsteam release matching varnish-7.6.0 From 0393f737dc22f58ede67851d75b84a8e1c2797ed Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 14:07:29 +0000 Subject: [PATCH 36/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 651dc98..14676b3 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,7 +10,7 @@ Name: varnish-modules Version: 0.25.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 0.25.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Fri Dec 06 2024 Ingvar Hagelund - 0.25.0-2 - Rebuilt for varnish-7.6.1 From 81d36841801b4da1537d845fe4ac86097eb6e170 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Wed, 26 Mar 2025 19:52:20 +0100 Subject: [PATCH 37/49] New upstream release for varnish-7.7.0 --- .gitignore | 1 + sources | 2 +- varnish-modules.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index bba342a..effc3ae 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /varnish-modules-0.22.0.tar.gz /varnish-modules-0.24.0.tar.gz /varnish-modules-0.25.0.tar.gz +/varnish-modules-0.26.0.tar.gz diff --git a/sources b/sources index 5c516f8..a07daaa 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (varnish-modules-0.25.0.tar.gz) = 2ad8ebeab165002d1bfba9a2088951fb10ff573f0205d3f04e68921f191441f4026450f3a0b78f2aa96f40c82838a2d4d5f0688141fa7b8241ae7b7a5f507c10 +SHA512 (varnish-modules-0.26.0.tar.gz) = 2050ec65ae731bddc74743c9aa6246e41ffba8017c404c32e50d45f72f5a02dd3eb2290f8b8e43e25a385a06819836fb19f8540f1cdae394083729ff6b6aed35 diff --git a/varnish-modules.spec b/varnish-modules.spec index 14676b3..368ca79 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -9,8 +9,8 @@ %endif Name: varnish-modules -Version: 0.25.0 -Release: 3%{?dist} +Version: 0.26.0 +Release: 1%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Wed Mar 26 2025 Ingvar Hagelund - 0.26.0-1 +- New upstream release for varnish-7.7.0 + * Sun Jan 19 2025 Fedora Release Engineering - 0.25.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 6ea465b0a46ed2614dbf59129b027133786bd036 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Thu, 22 May 2025 12:38:44 +0200 Subject: [PATCH 38/49] Rebuilt for varnish-7.7.1 --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 368ca79..d42d04d 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,7 +10,7 @@ Name: varnish-modules Version: 0.26.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Thu May 22 2025 Ingvar Hagelund - 0.26.1-2 +- Rebuilt for varnish-7.7.1 + * Wed Mar 26 2025 Ingvar Hagelund - 0.26.0-1 - New upstream release for varnish-7.7.0 From 8b1129d9ad6eb8348aaf1cab413299acea95fb0a Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Sun, 25 May 2025 23:28:12 +0200 Subject: [PATCH 39/49] reset rebuild date --- varnish-modules.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index d42d04d..9f3367c 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -81,7 +81,7 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog -* Thu May 22 2025 Ingvar Hagelund - 0.26.1-2 +* Sun May 25 2025 Ingvar Hagelund - 0.26.1-2 - Rebuilt for varnish-7.7.1 * Wed Mar 26 2025 Ingvar Hagelund - 0.26.0-1 From de6c53e2cc343377704550d0438151c983201c31 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 19:58:24 +0000 Subject: [PATCH 40/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 9f3367c..c827377 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,7 +10,7 @@ Name: varnish-modules Version: 0.26.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 0.26.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sun May 25 2025 Ingvar Hagelund - 0.26.1-2 - Rebuilt for varnish-7.7.1 From 76544a522a6d3f24736de262a57819bca7c45155 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Mon, 15 Sep 2025 17:27:42 +0200 Subject: [PATCH 41/49] Rebuilt for varnish-7.7.3 --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index c827377..9c6551e 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,7 +10,7 @@ Name: varnish-modules Version: 0.26.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Mon Sep 15 2025 Ingvar Hagelund - 0.26.0-4 +- Rebuilt for varnish-7.7.3 + * Fri Jul 25 2025 Fedora Release Engineering - 0.26.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 23d6618718f6a20ace86c056ce4a08cccce04ca0 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Wed, 19 Nov 2025 15:11:35 +0100 Subject: [PATCH 42/49] Rebuilt for varnish-7.7.3-2, rhbz#2407456 --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 9c6551e..52419bf 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,7 +10,7 @@ Name: varnish-modules Version: 0.26.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Wed Nov 19 2025 Ingvar Hagelund - 0.26.0-5 +- Rebuilt for varnish-7.7.3-2, rhbz#2407456 + * Mon Sep 15 2025 Ingvar Hagelund - 0.26.0-4 - Rebuilt for varnish-7.7.3 From a460dffebcfc14b047e27f74c0db995b9b75642f Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Mon, 5 Jan 2026 18:49:59 +0100 Subject: [PATCH 43/49] New upstream release varnish-modules-0.27.0 --- .gitignore | 1 + sources | 2 +- varnish-modules.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index effc3ae..77f13a4 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /varnish-modules-0.24.0.tar.gz /varnish-modules-0.25.0.tar.gz /varnish-modules-0.26.0.tar.gz +/varnish-modules-0.27.0.tar.gz diff --git a/sources b/sources index a07daaa..a446885 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (varnish-modules-0.26.0.tar.gz) = 2050ec65ae731bddc74743c9aa6246e41ffba8017c404c32e50d45f72f5a02dd3eb2290f8b8e43e25a385a06819836fb19f8540f1cdae394083729ff6b6aed35 +SHA512 (varnish-modules-0.27.0.tar.gz) = bb8a55b3d665fe6de918f784a6f4276b2053f5b1cd0628d6b6c6c78c0042fd678736a2f48375cf356daa47a987175f52569c0b468ccd2b37ab55a32c25255264 diff --git a/varnish-modules.spec b/varnish-modules.spec index 52419bf..de239b5 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -9,8 +9,8 @@ %endif Name: varnish-modules -Version: 0.26.0 -Release: 5%{?dist} +Version: 0.27.0 +Release: 1%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Mon Jan 05 2026 Ingvar Hagelund - 0.27.0-1 +- New upstream release varnish-modules-0.27.0 + * Wed Nov 19 2025 Ingvar Hagelund - 0.26.0-5 - Rebuilt for varnish-7.7.3-2, rhbz#2407456 From f606762777d5761886f48dc2aded59918eb6ba0a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 19:47:40 +0000 Subject: [PATCH 44/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index de239b5..e554698 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -10,7 +10,7 @@ Name: varnish-modules Version: 0.27.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 0.27.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Mon Jan 05 2026 Ingvar Hagelund - 0.27.0-1 - New upstream release varnish-modules-0.27.0 From d58a4cf02b267ed382c7a3865bcabe90c859c846 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Sun, 12 Apr 2026 15:48:48 -0400 Subject: [PATCH 45/49] New upstream release varnish-modules-0.28.0, built for varnish-9.0.0 --- .gitignore | 1 + sources | 2 +- varnish-modules.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 77f13a4..c3b9d49 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /varnish-modules-0.25.0.tar.gz /varnish-modules-0.26.0.tar.gz /varnish-modules-0.27.0.tar.gz +/varnish-modules-0.28.0.tar.gz diff --git a/sources b/sources index a446885..f25bbdd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (varnish-modules-0.27.0.tar.gz) = bb8a55b3d665fe6de918f784a6f4276b2053f5b1cd0628d6b6c6c78c0042fd678736a2f48375cf356daa47a987175f52569c0b468ccd2b37ab55a32c25255264 +SHA512 (varnish-modules-0.28.0.tar.gz) = 796f95ea6f8b69f6e4fb3daf327c4a6cccc9b6c927d8daace753aad7e443c1f937020465924e472ad65bb0a10e2e5bf85b6228afe3257dbfba0091750fbf300a diff --git a/varnish-modules.spec b/varnish-modules.spec index e554698..196fecf 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -9,8 +9,8 @@ %endif Name: varnish-modules -Version: 0.27.0 -Release: 2%{?dist} +Version: 0.28.0 +Release: 1%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +81,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Mon Apr 13 2026 Ingvar Hagelund - 0.28.0-1 +- New upstream release varnish-modules-0.28.0, built for varnish-9.0.0 + * Sat Jan 17 2026 Fedora Release Engineering - 0.27.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild From e41ead8384d321c8f17ddd08bf52fc3c14fc53c8 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Thu, 30 Apr 2026 15:16:17 +0200 Subject: [PATCH 46/49] Built for varnish-9.0.1 --- varnish-modules.spec | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 196fecf..16c4a8e 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -1,16 +1,11 @@ %global varnishver %(pkg-config --silence-errors --modversion varnishapi || echo 0) -%if 0%{?rhel} == 7 -%global docutils python34-docutils -%global rst2man rst2man-3.4 -%else %global docutils python3-docutils %global rst2man rst2man -%endif Name: varnish-modules Version: 0.28.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -81,6 +76,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Thu Apr 30 2026 Ingvar Hagelund - 0.28.0-2 +- Built for varnish-9.0.1 + * Mon Apr 13 2026 Ingvar Hagelund - 0.28.0-1 - New upstream release varnish-modules-0.28.0, built for varnish-9.0.0 From cd03cfd35eefcceda8dafe5b740a530881e6ea45 Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Thu, 21 May 2026 13:15:42 +0200 Subject: [PATCH 47/49] Built for varnish-9.0.2 --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 16c4a8e..3a878f6 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -5,7 +5,7 @@ Name: varnish-modules Version: 0.28.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -76,6 +76,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Fri May 15 2026 Ingvar Hagelund - 0.28.0-3 +- Built for varnish-9.0.2 + * Thu Apr 30 2026 Ingvar Hagelund - 0.28.0-2 - Built for varnish-9.0.1 From 8ffd4aa838f12915d0a479a14395893e33d46afe Mon Sep 17 00:00:00 2001 From: Ingvar Hagelund Date: Thu, 21 May 2026 14:16:27 +0200 Subject: [PATCH 48/49] Built for varnish-9.0.3 --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 3a878f6..171f7e8 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -5,7 +5,7 @@ Name: varnish-modules Version: 0.28.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -76,6 +76,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Thu May 21 2026 Ingvar Hagelund - 0.28.0-4 +- Built for varnish-9.0.3 + * Fri May 15 2026 Ingvar Hagelund - 0.28.0-3 - Built for varnish-9.0.2 From 7ff3142dec72baeb8a4ed0e03a74e897f5311a2c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 08:22:28 +0000 Subject: [PATCH 49/49] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- varnish-modules.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/varnish-modules.spec b/varnish-modules.spec index 171f7e8..1c05255 100644 --- a/varnish-modules.spec +++ b/varnish-modules.spec @@ -5,7 +5,7 @@ Name: varnish-modules Version: 0.28.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A collection of modules ("vmods") extending Varnish VCL License: BSD-2-Clause @@ -76,6 +76,9 @@ sed -i 's,tests/xkey/test12.vtc,,' src/Makefile %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 0.28.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Thu May 21 2026 Ingvar Hagelund - 0.28.0-4 - Built for varnish-9.0.3