diff --git a/www/varnish-ip2location/Makefile b/www/varnish-ip2location/Makefile index d4d4375f882c..049d0992087a 100644 --- a/www/varnish-ip2location/Makefile +++ b/www/varnish-ip2location/Makefile @@ -1,44 +1,44 @@ PORTNAME= ip2location PORTVERSION= 1.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www PKGNAMEPREFIX= varnish- MAINTAINER= zi@FreeBSD.org COMMENT= Varnish Module (vmod) for ip2location WWW= https://github.com/ip2location/IP2Location-Varnish LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.TXT LIB_DEPENDS= libIP2Location.so:net/ip2location BUILD_DEPENDS= rst2man:textproc/py-docutils@${PY_FLAVOR} USES= autoreconf:build libtool pkgconfig python:build varnish:7 USE_LDCONFIG= yes PLIST_FILES= lib/varnish/vmods/libvmod_ip2location.so GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-static INSTALL_TARGET= install-strip DOCSDIR= ${PREFIX}/share/doc/vmod-dynamic MAKE_JOBS_UNSAFE= yes CFLAGS+= -I${WRKSRC}/src USE_GITHUB= yes GH_ACCOUNT= ip2location GH_PROJECT= ${PORTNAME}-varnish -GH_TAGNAME= b24b36e +GH_TAGNAME= 32ff41a OPTIONS_DEFINE= DOCS post-extract: @(cd ${WRKDIR} && ${LN} -sf IP2Location-Varnish-${GH_TAGNAME} \ ${PORTNAME}-${PKGNAMEPREFIX}${GH_TAGNAME}) pre-configure: (cd ${WRKSRC} && ${SH} ./autogen.sh) .include diff --git a/www/varnish-ip2location/distinfo b/www/varnish-ip2location/distinfo index f9aa9c41c473..baa10f951a60 100644 --- a/www/varnish-ip2location/distinfo +++ b/www/varnish-ip2location/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1649431734 -SHA256 (ip2location-ip2location-varnish-1.0.3-b24b36e_GH0.tar.gz) = 3c8e5220c6a1807cde5dc53a76201ef3674e73afee94b61e1180edbe707e930f -SIZE (ip2location-ip2location-varnish-1.0.3-b24b36e_GH0.tar.gz) = 6667 +TIMESTAMP = 1698945834 +SHA256 (ip2location-ip2location-varnish-1.0.3-32ff41a_GH0.tar.gz) = 5b741cb1d101105b5363218d69d62dff597f132e515c5492c4d317d5dbcd59f1 +SIZE (ip2location-ip2location-varnish-1.0.3-32ff41a_GH0.tar.gz) = 6735 diff --git a/www/varnish-ip2location/files/patch-src_vmod__ip2location.c b/www/varnish-ip2location/files/patch-src_vmod__ip2location.c deleted file mode 100644 index 3f2ff55e821a..000000000000 --- a/www/varnish-ip2location/files/patch-src_vmod__ip2location.c +++ /dev/null @@ -1,44 +0,0 @@ ---- src/vmod_ip2location.c.orig 2020-11-29 23:51:52 UTC -+++ src/vmod_ip2location.c -@@ -6,6 +6,11 @@ - - #include - -+#ifdef __FreeBSD__ -+#include -+#define gcvt(v, d, c) sprintf(c, "%*g", d, v); -+#endif -+ - #include "cache/cache.h" - - #ifndef VRT_H_INCLUDED -@@ -13,12 +18,19 @@ - #endif - - void --i2pl_free(void *obj) -+ip2l_free(VRT_CTX, void *obj) - { - AN(obj); -+ CHECK_OBJ_NOTNULL(ctx, VRT_CTX_MAGIC); - IP2Location_close((IP2Location *)obj); - } - -+static const struct vmod_priv_methods ip2l_methods[1] = {{ -+ .magic = VMOD_PRIV_METHODS_MAGIC, -+ .type = "vmod_std_ip2location", -+ .fini = ip2l_free -+}}; -+ - VCL_VOID - vmod_init_db(VRT_CTX, struct vmod_priv *priv, char *filename, char *memtype) - { -@@ -51,7 +63,7 @@ vmod_init_db(VRT_CTX, struct vmod_priv *priv, char *fi - IP2Location_set_lookup_mode(IP2LocationObj, mtype); - - priv->priv = IP2LocationObj; -- priv->free = i2pl_free; -+ priv->methods = ip2l_methods; - } - - static VCL_STRING