Commit af5434c2 authored by Geoff Simmons's avatar Geoff Simmons

Set version maxwait-6.6.0, and update RPMs for compatibility.

parent a6dddff2
AC_PREREQ(2.68)
AC_COPYRIGHT([Copyright (c) 2018 UPLEX - Nils Goroll Systemoptimierung])
AC_INIT([libvmod-selector], [trunk], [varnish-support@uplex.de], [vmod-selector])
AC_INIT([libvmod-selector], [maxwait-6.6.0], [varnish-support@uplex.de], [vmod-selector])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR(src/vmod_selector.vcc)
AM_CONFIG_HEADER(config.h)
......
......@@ -37,18 +37,23 @@ rm /home/builder/.rpmmacros
cd /home/builder
mkdir -p rpmbuild/{BUILD,BUILDROOT,RPMS,SOURCES,SPECS,SRPMS}
cp /srv/vmod-selector.spec rpmbuild/SPECS
cp /srv/vmod-selector-${VERSION}.tar.gz rpmbuild/SOURCES
cp /srv/vmod-selector-maxwait-${VERSION}.tar.gz rpmbuild/SOURCES
# update the build env
set +e
sudo yum check-update -y -q
set -e
sudo yum upgrade -y -q
# set uplex repo for varnish-maxwait
sudo yum-config-manager --add-repo https://pkg.uplex.de/rpm/7/uplex-varnish/x86_64/
# install epel7 repo
sudo yum install -y -q \
https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
# set up varnish repo
sudo cp /srv/varnishcache_varnish66.repo /etc/yum.repos.d/
sudo yum -q makecache -y --disablerepo='*' --enablerepo='varnishcache_varnish66'
# build requirements
sudo yum install --nogpgcheck -y -q varnish-maxwait-devel
sudo yum install -y -q varnish-devel pkgconfig make gcc python-docutils
# build RPMs
......
[varnishcache_varnish66]
name=varnishcache_varnish66
baseurl=https://packagecloud.io/varnishcache/varnish66/el/7/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://packagecloud.io/varnishcache/varnish66/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
metadata_expire=300
[varnishcache_varnish66-source]
name=varnishcache_varnish66-source
baseurl=https://packagecloud.io/varnishcache/varnish66/el/7/SRPMS
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://packagecloud.io/varnishcache/varnish66/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
metadata_expire=300
# -D MUST pass in _version and _release, and SHOULD pass in dist.
Summary: Varnish VMOD for matching strings associated with backends, regexen and other strings
Name: vmod-selector
Name: vmod-selector-maxwait
Version: %{_version}
Release: %{_release}%{?dist}
License: BSD
......@@ -9,11 +9,9 @@ Group: System Environment/Daemons
URL: https://code.uplex.de/uplex-varnish/libvmod-selector
Source0: %{name}-%{version}.tar.gz
# varnish from varnish66 at packagecloud
# This is the Requires for VMOD ABI compatibility with VRT >= 13.0.
Requires: varnishd(vrt)%{?_isa} >= 13
Requires: varnish-maxwait = 6.6.0
BuildRequires: varnish-devel >= 6.6.0
BuildRequires: varnish-maxwait-devel = 6.6.0
BuildRequires: pkgconfig
BuildRequires: make
BuildRequires: gcc
......@@ -26,7 +24,7 @@ BuildRequires: python-docutils >= 0.6
#BuildRequires: libtool
#BuildRequires: python-docutils >= 0.6
Provides: vmod-selector, vmod-selector-debuginfo
Provides: vmod-selector-maxwait, vmod-selector-maxwait-debuginfo
%description
Varnish Module for matching fixed strings and prefixes, and
......@@ -73,7 +71,10 @@ rm -rf %{buildroot}
/sbin/ldconfig
%changelog
* Wed Jan 27 2021 Geoff Simmons <geoff@uplex.de> - %{_version}-%{_release}
* Fri May 21 2021 Geoff Simmons <geoff@uplex.de> - %{_version}-%{_release}
- Compatibility with varnish-maxwait (6.6.0)
* Wed Jan 27 2021 Geoff Simmons <geoff@uplex.de> - 1.6.0-1
- Require VRT 13.0, compatible with Varnish 6.6
- Retains the legacy VMOD interface and search implementation,
prior to the breaking changes beginning with versions 2.x.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment