diff --git a/www/c-icap-modules/Makefile b/www/c-icap-modules/Makefile index e6be1af746..163c07a42c 100644 --- a/www/c-icap-modules/Makefile +++ b/www/c-icap-modules/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= c-icap -PORTVERSION= 0.5.3 -PORTREVISION= 1 +PORTVERSION= 0.5.4 CATEGORIES= www security MASTER_SITES= SF/${PORTNAME}/${PORTNAME}${PKGNAMESUFFIX}/0.5.x/ PKGNAMESUFFIX= -modules diff --git a/www/c-icap-modules/distinfo b/www/c-icap-modules/distinfo index 6744952983..8ab0bf7755 100644 --- a/www/c-icap-modules/distinfo +++ b/www/c-icap-modules/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1547975297 -SHA256 (c_icap_modules-0.5.3.tar.gz) = 6e2f87a60379ffde26947c6e82ff0c7f614bc005588bf1efb40c74f69c82f925 -SIZE (c_icap_modules-0.5.3.tar.gz) = 452505 +TIMESTAMP = 1575242090 +SHA256 (c_icap_modules-0.5.4.tar.gz) = 87409920c66027204e9cca5f20e137b63cd12daf6dfcd85c1fa62ab2bd1c57cc +SIZE (c_icap_modules-0.5.4.tar.gz) = 450411 diff --git a/www/c-icap-modules/files/patch-services_virus__scan_clamav__mod.c b/www/c-icap-modules/files/patch-services_virus__scan_clamav__mod.c deleted file mode 100644 index 5a5d4b565c..0000000000 --- a/www/c-icap-modules/files/patch-services_virus__scan_clamav__mod.c +++ /dev/null @@ -1,30 +0,0 @@ ---- services/virus_scan/clamav_mod.c.orig 2019-11-25 19:36:11 UTC -+++ services/virus_scan/clamav_mod.c -@@ -104,8 +104,8 @@ extern ci_off_t CLAMAV_MAXFILESIZE; - extern ci_off_t CLAMAV_MAXSCANSIZE; - extern char *CLAMAV_TMP; - --#define CLAMAV_VERSION_SIZE 64 --static char CLAMAV_VERSION[CLAMAV_VERSION_SIZE]; -+#define _CLAMAV_VERSION_SIZE 64 -+static char _CLAMAV_VERSION[_CLAMAV_VERSION_SIZE]; - #define CLAMAV_SIGNATURE_SIZE SERVICE_ISTAG_SIZE + 1 - static char CLAMAV_SIGNATURE[CLAMAV_SIGNATURE_SIZE]; - -@@ -641,13 +641,13 @@ void clamav_set_versions() - CLAMAV_SIGNATURE[CLAMAV_SIGNATURE_SIZE - 1] = '\0'; - - /*set the clamav version*/ -- snprintf(CLAMAV_VERSION, CLAMAV_VERSION_SIZE - 1, "%s/%d", str_version, version); -- CLAMAV_VERSION[CLAMAV_VERSION_SIZE - 1] = '\0'; -+ snprintf(_CLAMAV_VERSION, _CLAMAV_VERSION_SIZE - 1, "%s/%d", str_version, version); -+ _CLAMAV_VERSION[_CLAMAV_VERSION_SIZE - 1] = '\0'; - } - - const char *clamav_version() - { -- return CLAMAV_VERSION; -+ return _CLAMAV_VERSION; - } - - const char *clamav_signature()