Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
U
uplex-varnish-dpkg
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
uplex-varnish-dpkg
Commits
5464c408
Commit
5464c408
authored
Apr 29, 2022
by
Julian Wiesener
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added libvmod-querystring
parent
b15bf20d
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
103 additions
and
0 deletions
+103
-0
compat
dpkg/libvmod-querystring/debian/compat
+1
-0
control
dpkg/libvmod-querystring/debian/control
+24
-0
control.in
dpkg/libvmod-querystring/debian/control.in
+24
-0
copyright
dpkg/libvmod-querystring/debian/copyright
+14
-0
dirs
dpkg/libvmod-querystring/debian/dirs
+1
-0
docs
dpkg/libvmod-querystring/debian/docs
+2
-0
rules
dpkg/libvmod-querystring/debian/rules
+37
-0
No files found.
dpkg/libvmod-querystring/debian/compat
0 → 100644
View file @
5464c408
7
dpkg/libvmod-querystring/debian/control
0 → 100644
View file @
5464c408
Source: libvmod-querystring
Section: web
Priority: extra
Maintainer: Uplex Varnish <varnish@uplex.de>
Build-Depends: debhelper (>= 7),
automake,
autotools-dev,
libtool,
build-essential,
pkg-config,
python3-docutils,
varnish (= DPGK_VERSION),
varnish-dev (= DPGK_VERSION)
Standards-Version: 3.9.6
Vcs-Git: git://github.com/Dridi/libvmod-querystring.git
Homepage: https://github.com/Dridi/libvmod-querystring
Package: libvmod-querystring
Architecture: any
Depends: ${Varnish:strictABI}, ${Varnish:ABI}, ${shlibs:Depends}, ${misc:Depends}
Description: QueryString module for Varnish Cache
.
The purpose of this module is to give you a fine-grained control over a URL's query-string in Varnish Cache.
It's possible to remove the query-string, clean it, sort its parameters or filter it to only keep a subset of them.
dpkg/libvmod-querystring/debian/control.in
0 → 100644
View file @
5464c408
Source: libvmod-querystring
Section: web
Priority: extra
Maintainer: Uplex Varnish <varnish@uplex.de>
Build-Depends: debhelper (>= 7),
automake,
autotools-dev,
libtool,
build-essential,
pkg-config,
python3-docutils,
varnish (= DPGK_VERSION),
varnish-dev (= DPGK_VERSION)
Standards-Version: 3.9.6
Vcs-Git: git://github.com/Dridi/libvmod-querystring.git
Homepage: https://github.com/Dridi/libvmod-querystring
Package: libvmod-querystring
Architecture: any
Depends: ${Varnish:strictABI}, ${Varnish:ABI}, ${shlibs:Depends}, ${misc:Depends}
Description: QueryString module for Varnish Cache
.
The purpose of this module is to give you a fine-grained control over a URL's query-string in Varnish Cache.
It's possible to remove the query-string, clean it, sort its parameters or filter it to only keep a subset of them.
dpkg/libvmod-querystring/debian/copyright
0 → 100644
View file @
5464c408
Copyright (C) 2012-2016 Dridi Boukelmoune
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
dpkg/libvmod-querystring/debian/dirs
0 → 100644
View file @
5464c408
usr/share/doc/libvmod-querystring
dpkg/libvmod-querystring/debian/docs
0 → 100644
View file @
5464c408
README.rst
LICENSE
dpkg/libvmod-querystring/debian/rules
0 → 100755
View file @
5464c408
#!/usr/bin/make -f
DH_VERBOSE=1
# Workaround for a breaking change in GNU make 4.3.
H := \#
# Extract VMOD_ABI version, this is used for building vmods using the official
# VMOD API
VMOD_ABI = $(shell printf '$(H)include "vdef.h"\n$(H)include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \
| cpp - -Iinclude \
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
# Extract VMOD_strictABI, which refers to the exact build of varnish. This is
# used for old style vmods bypassing the VMOD API, accessing the internal data
# structures directly.
VMOD_strictABI = $(shell printf '$(H)include "vcs_version.h"\nVCS_Version\n' \
| cpp - -Iinclude \
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/')
override_dh_auto_configure:
./bootstrap
dh_auto_configure
override_dh_gencontrol: debian/substvars
dh_gencontrol -- -Tdebian/substvars
debian/substvars:
echo "Varnish:ABI=$(VMOD_ABI)" > $@
echo "Varnish:strictABI=$(VMOD_strictABI)" >> $@
override_dh_auto_install:
rst2man src/vmod_querystring.rst src/vmod_querystring.3
dh_auto_install -a
%:
dh $@
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