From owner-svn-ports-all@freebsd.org Tue Jul 21 16:35:26 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 2DDFC3613EE; Tue, 21 Jul 2020 16:35:26 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BB42k0SCZz3dGN; Tue, 21 Jul 2020 16:35:26 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E74A6214CF; Tue, 21 Jul 2020 16:35:25 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06LGZPLK094170; Tue, 21 Jul 2020 16:35:25 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06LGZPJk094168; Tue, 21 Jul 2020 16:35:25 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <202007211635.06LGZPJk094168@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Tue, 21 Jul 2020 16:35:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r542753 - head/security/samhain X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: head/security/samhain X-SVN-Commit-Revision: 542753 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Jul 2020 16:35:26 -0000 Author: lwhsu Date: Tue Jul 21 16:35:25 2020 New Revision: 542753 URL: https://svnweb.freebsd.org/changeset/ports/542753 Log: Update to 4.4.1 PR: 244648 Submitted by: Greg Veldman (maintainer) Reported by: Nikola Kolev Modified: head/security/samhain/Makefile head/security/samhain/distinfo Modified: head/security/samhain/Makefile ============================================================================== --- head/security/samhain/Makefile Tue Jul 21 16:06:06 2020 (r542752) +++ head/security/samhain/Makefile Tue Jul 21 16:35:25 2020 (r542753) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= samhain -PORTVERSION= 4.3.3 +PORTVERSION= 4.4.1 CATEGORIES= security MASTER_SITES= http://la-samhna.de/archive/ DISTNAME= samhain_signed-${PORTVERSION} @@ -17,7 +17,7 @@ BROKEN_mips= fails to configure: error: Could not fin BROKEN_mips64= fails to configure: error: Could not find the libwrap library OPTIONS_DEFINE= ASM DB_RELOAD DEBUG DNMALLOC DOCS ENCRYPT GNUPG IPV6 \ - KCHECK LIBWRAP LOGFILE_MONITOR LOGIN_WATCH MAIL \ + LIBWRAP LOGFILE_MONITOR LOGIN_WATCH MAIL \ MOUNTS_CHECK PORT_CHECK POSIX_ACL PRELUDE PROCESS_CHECK \ PTRACE SRP STATIC SUIDCHECK UDP USERFILES XML_LOGS OPTIONS_DEFAULT= ASM DNMALLOC ENCRYPT LIBWRAP MAIL SRP @@ -29,7 +29,6 @@ DB_DESC= Database support DB_RELOAD_DESC= Enable database reload on SIGHUP DNMALLOC_DESC= Enable dnmalloc ENCRYPT_DESC= Enable client/server encryption -KCHECK_DESC= Enable rogue KLD detection LOGFILE_MONITOR_DESC= Enable monitor logfiles LOGIN_WATCH_DESC= Enable watch for login/logout MAIL_DESC= Enable internal SMTP mailer @@ -55,7 +54,8 @@ CONFIGURE_ARGS= --localstatedir=/var \ --with-alttimeserver=true USES= shebangfix -SHEBANG_FILES= scripts/samhainadmin.pl.in +SHEBANG_FILES= scripts/samhainadmin-gpg.pl.in \ + scripts/samhainadmin-sig.pl.in ASM_CONFIGURE_ENABLE= asm @@ -72,8 +72,6 @@ GNUPG_BUILD_DEPENDS= gpg:security/gnupg IPV6_CONFIGURE_ENABLE= ipv6 -KCHECK_CONFIGURE_WITH= kcheck - LIBWRAP_CONFIGURE_WITH= libwrap LOGFILE_MONITOR_CONFIGURE_ENABLE= logfile-monitor @@ -163,14 +161,6 @@ pre-everything:: .if defined(WITH_CLIENT) && defined(WITH_SERVER) IGNORE= can't build client and server at once -.endif - -.if ${PORT_OPTIONS:MKCHECK} - @${ECHO_MSG} - @${ECHO_MSG} "Building with kernel checking requires reading /dev/kmem" - @${ECHO_MSG} "and /dev/mem. If you're not building as root, please hit" - @${ECHO_MSG} "Control-C and restart the build as root." - @${ECHO_MSG} .endif post-extract: Modified: head/security/samhain/distinfo ============================================================================== --- head/security/samhain/distinfo Tue Jul 21 16:06:06 2020 (r542752) +++ head/security/samhain/distinfo Tue Jul 21 16:35:25 2020 (r542753) @@ -1,3 +1,3 @@ -TIMESTAMP = 1570039276 -SHA256 (samhain_signed-4.3.3.tar.gz) = 33ad4bc3dad4699694553bd9635a6b5827939f965d1f0f05fce0b4e9cdadf21b -SIZE (samhain_signed-4.3.3.tar.gz) = 2142337 +TIMESTAMP = 1583533568 +SHA256 (samhain_signed-4.4.1.tar.gz) = a15516f6809b1daf812b39fb5aa6be3fac1a51b5efca53568759fdf54572a2e9 +SIZE (samhain_signed-4.4.1.tar.gz) = 2159641