From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 51B99158010 for ; Wed, 8 Feb 2023 17:17:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 221ACE07D8; Wed, 8 Feb 2023 17:17:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EBC61E07E1 for ; Wed, 8 Feb 2023 17:17:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C0FB3408A2 for ; Wed, 8 Feb 2023 17:17:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CCFE38A6 for ; Wed, 8 Feb 2023 17:17:43 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1675876513.f201807494ca1aabd2b9f2a3895d7d896f8a09c9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/aide/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-forensics/aide/files/aide-0.17.4-bashism.patch X-VCS-Directories: app-forensics/aide/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f201807494ca1aabd2b9f2a3895d7d896f8a09c9 X-VCS-Branch: master Date: Wed, 8 Feb 2023 17:17:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bc2580c4-43b5-4c20-9dc1-f9841c2eec4e X-Archives-Hash: 54fd50f391e9c3a630485f933af4eb25 commit: f201807494ca1aabd2b9f2a3895d7d896f8a09c9 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Wed Feb 8 16:47:21 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Feb 8 17:15:13 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2018074 app-forensics/aide: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/29491 Signed-off-by: Sam James gentoo.org> app-forensics/aide/files/aide-0.17.4-bashism.patch | 60 ---------------------- 1 file changed, 60 deletions(-) diff --git a/app-forensics/aide/files/aide-0.17.4-bashism.patch b/app-forensics/aide/files/aide-0.17.4-bashism.patch deleted file mode 100644 index e25463dbf772..000000000000 --- a/app-forensics/aide/files/aide-0.17.4-bashism.patch +++ /dev/null @@ -1,60 +0,0 @@ -Fixed upstream, so backport to 0.17.4 of -https://github.com/aide/aide/commit/5161886c49060228811eee6da319844ef62dff6d -https://github.com/aide/aide/commit/007eb4f32e8874ce457b4f15d9789c2a9d61731b - -Fixed in master but not 0.17.x. ---- a/configure.ac -+++ b/configure.ac -@@ -329,7 +329,7 @@ fi - AC_CHECK_HEADERS(syslog.h inttypes.h fcntl.h ctype.h) - - PCRELIB="-lpcre" --if test "$aide_static_choice" == "yes"; then -+if test "$aide_static_choice" = "yes"; then - PCRELIB="$PCRELIB -pthread" - fi - AC_CHECK_LIB(pcre, pcre_exec, [ -@@ -426,14 +426,14 @@ AS_IF([test "x$with_selinux_support" != xno], - AC_DEFINE(WITH_SELINUX,1,[use SELinux]) - [AC_MSG_RESULT(yes) - if test "x$PKG_CONFIG" != xno && $PKG_CONFIG --exists libselinux; then -- if test "$aide_static_choice" == "yes"; then -+ if test "$aide_static_choice" = "yes"; then - SELINUXLIB=$(${PKG_CONFIG} --libs libselinux --static) - else - SELINUXLIB=$(${PKG_CONFIG} --libs libselinux) - fi - else - SELINUXLIB="-lselinux" -- if test "$aide_static_choice" == "yes"; then -+ if test "$aide_static_choice" = "yes"; then - saveLIBS=$LIBS - LIBS="-static $SELINUXLIB" - AC_SEARCH_LIBS([lgetfilecon_raw], [], [], [SELINUXLIB="$SELINUXLIB -lpthread"]) -@@ -555,7 +555,7 @@ AC_ARG_ENABLE([default_db], - [do not set default values for database_in and database_out config options]), - [enable_default_db=$enableval],[enable_default_db=yes]) - --if test "$enable_default_db" == "yes"; then -+if test "$enable_default_db" = "yes"; then - - if test "x$sysconfdir" != x'${prefix}/etc'; then - evalled_sysconfdir=`eval echo "$sysconfdir"` -@@ -592,7 +592,7 @@ AC_ARG_WITH([curl], - [use curl library for http, https and ftp database backend (default: no)]), - [with_curl=$withval], [with_curl=no]) - AS_IF([test "x$with_curl" = "xyes"], [ -- if test "$aide_static_choice" == "yes"; then -+ if test "$aide_static_choice" = "yes"; then - PKG_CHECK_MODULES_STATIC(CURL, [libcurl], , [AC_MSG_RESULT([libcurl not found by pkg-config - Try --without-curl or add directory containing libcurl.pc to PKG_CONFIG_PATH environment variable])]) - else - PKG_CHECK_MODULES(CURL, [libcurl], , [AC_MSG_RESULT([libcurl not found by pkg-config - Try --without-curl or add directory containing libcurl.pc to PKG_CONFIG_PATH environment variable])]) -@@ -671,7 +671,7 @@ AS_IF([test "x$with_audit" != xno], - AC_MSG_ERROR(You don't have libaudit properly installed. Install it if you need it.) - ) - AUDITLIB="-laudit" -- if test "$aide_static_choice" == "yes"; then -+ if test "$aide_static_choice" = "yes"; then - saveLIBS=$LIBS - LIBS="-static $AUDITLIB" - AC_CHECK_LIB([audit], [audit_log_user_message], [], [