Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libvmod-selector
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
uplex-varnish
libvmod-selector
Commits
303c4459
Commit
303c4459
authored
Nov 30, 2018
by
Geoff Simmons
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version 1.0.0, compatible with VRT 8 (Varnish 6.1, libvarnishapi.so.2)
parent
4ac32436
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
9 deletions
+33
-9
configure.ac
configure.ac
+1
-1
pkg
pkg/rpm/pkg
+4
-4
varnishcache_varnish61.repo
pkg/rpm/varnishcache_varnish61.repo
+21
-0
vmod-selector.spec
pkg/rpm/vmod-selector.spec
+7
-4
No files found.
configure.ac
View file @
303c4459
AC_PREREQ(2.68)
AC_COPYRIGHT([Copyright (c) 2018 UPLEX - Nils Goroll Systemoptimierung])
AC_INIT([libvmod-selector], [
0.5
.0], [varnish-support@uplex.de], [vmod-selector])
AC_INIT([libvmod-selector], [
1.0
.0], [varnish-support@uplex.de], [vmod-selector])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR(src/vmod_selector.vcc)
AM_CONFIG_HEADER(config.h)
...
...
pkg/rpm/pkg
View file @
303c4459
...
...
@@ -10,8 +10,8 @@
# - this script (named pkg)
# - VMOD selector tarball (vmod-selector-$VERSION.tar.gz)
# - RPM spec file (vmod-selector.spec)
# - yum repo config for varnish6
0@packagecloud (varnishcache_varnish60
.repo)
# (see https://packagecloud.io/varnishcache/varnish6
0
/install#manual-rpm)
# - yum repo config for varnish6
1@packagecloud (varnishcache_varnish61
.repo)
# (see https://packagecloud.io/varnishcache/varnish6
1
/install#manual-rpm)
# Sample docker invocation:
# $ docker run -t -v $PWD:/srv -e VERSION=47.1.1 -e RELEASE=815 \
...
...
@@ -44,9 +44,9 @@ 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_varnish6
0
.repo /etc/yum.repos.d/
sudo cp
/srv/varnishcache_varnish6
1
.repo /etc/yum.repos.d/
sudo
yum
-q
makecache
-y
--disablerepo
=
'*'
--enablerepo
=
'varnishcache_varnish6
0
'
sudo
yum
-q
makecache
-y
--disablerepo
=
'*'
--enablerepo
=
'varnishcache_varnish6
1
'
# build requirements
sudo
yum
install
-y
-q
varnish-devel pkgconfig make gcc python-docutils
...
...
pkg/rpm/varnishcache_varnish6
0
.repo
→
pkg/rpm/varnishcache_varnish6
1
.repo
View file @
303c4459
[varnishcache_varnish6
0
]
name=varnishcache_varnish6
0
baseurl=https://packagecloud.io/varnishcache/varnish6
0
/el/7/$basearch
[varnishcache_varnish6
1
]
name=varnishcache_varnish6
1
baseurl=https://packagecloud.io/varnishcache/varnish6
1
/el/7/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://packagecloud.io/varnishcache/varnish6
0
/gpgkey
gpgkey=https://packagecloud.io/varnishcache/varnish6
1
/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
metadata_expire=300
[varnishcache_varnish6
0
-source]
name=varnishcache_varnish6
0
-source
baseurl=https://packagecloud.io/varnishcache/varnish6
0
/el/7/SRPMS
[varnishcache_varnish6
1
-source]
name=varnishcache_varnish6
1
-source
baseurl=https://packagecloud.io/varnishcache/varnish6
1
/el/7/SRPMS
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://packagecloud.io/varnishcache/varnish6
0
/gpgkey
gpgkey=https://packagecloud.io/varnishcache/varnish6
1
/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
metadata_expire=300
pkg/rpm/vmod-selector.spec
View file @
303c4459
...
...
@@ -9,12 +9,12 @@ Group: System Environment/Daemons
URL: https://code.uplex.de/uplex-varnish/libvmod-selector
Source0: %{name}-%{version}.tar.gz
# varnish from varnish6
0
at packagecloud
# This is the Provides for VMOD ABI compatibility
, currently does not
# varnish from varnish6
1
at packagecloud
# This is the Provides for VMOD ABI compatibility
with VRT >= 8.0.
# allow versioning.
Requires: varnish
abi-7.0
Requires: varnish
d(vrt)%{?_isa} >= 8
BuildRequires: varnish-devel >= 6.
0
.0
BuildRequires: varnish-devel >= 6.
1
.0
BuildRequires: pkgconfig
BuildRequires: make
BuildRequires: gcc
...
...
@@ -75,4 +75,7 @@ rm -rf %{buildroot}
%changelog
* Tue Jul 10 2018 Geoff Simmons <geoff@uplex.de> - %{_version}-%{_release}
Compatibilty with VRT 8 (Varnish 6.1 and libvarnishapi.so.2)
* Tue Jul 10 2018 Geoff Simmons <geoff@uplex.de> - 0.5.0-1
Initial package version for compatibility with Varnish 6.0.0.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment