clamav: update to 0.104.4 20563/head
authorMichal Vasilek <michal.vasilek@nic.cz>
Thu, 23 Feb 2023 16:27:33 +0000 (17:27 +0100)
committerMichal Vasilek <michal.vasilek@nic.cz>
Thu, 23 Feb 2023 16:27:33 +0000 (17:27 +0100)
* remove upstreamed 100-cmake-fix-findcurses.patch

Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
net/clamav/Makefile
net/clamav/patches/100-cmake-fix-findcurses.patch [deleted file]

index de53e6bf334d727651537e5a12b79b68f722bb2e..cf903f4ca1e44f44cfecb95f1735c85673103a86 100644 (file)
@@ -8,12 +8,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=clamav
-PKG_VERSION:=0.104.2
-PKG_RELEASE:=$(AUTORELEASE)
+PKG_VERSION:=0.104.4
+PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_SOURCE_URL:=https://www.clamav.net/downloads/production/
-PKG_HASH:=3e45e46d9aaeb3a6956ed30376237ab7c4cd9573bc0f5d6fc15c588d30978d9d
+PKG_HASH:=8ac32e910aa744cc7f921c5122ba523ef1ffbbbf94545f94fc4a976b502be74b
 
 PKG_MAINTAINER:=Marko Ratkaj <markoratkaj@gmail.com> \
                Lucian Cristian <lucian.cristian@gmail.com>
diff --git a/net/clamav/patches/100-cmake-fix-findcurses.patch b/net/clamav/patches/100-cmake-fix-findcurses.patch
deleted file mode 100644 (file)
index cee304d..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-From 0f03ec698e67ea3c0f21ba021c922146d5ad07b2 Mon Sep 17 00:00:00 2001
-From: Carlos Velasco <carlos.velasco@nimastelecom.com>
-Date: Thu, 4 Nov 2021 09:11:06 +0100
-Subject: [PATCH] CMake: Fix FindCurses.cmake try packate ncursesw if ncurses
- not found
-
-Change to pkg_search_module, first try to find ncurses pkg, if not found, then try with ncursesw pkg
----
- cmake/FindCURSES.cmake | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/cmake/FindCURSES.cmake
-+++ b/cmake/FindCURSES.cmake
-@@ -43,7 +43,7 @@ The following cache variables may also b
- find_package(PkgConfig QUIET)
- # First try for NCurses
--pkg_check_modules(PC_NCurses QUIET ncurses)
-+pkg_search_module (PC_NCurses QUIET ncurses ncursesw)
- find_path(NCURSES_INCLUDE_DIR
-   NAMES ncurses.h