commit:     6835ec67c8659a39717443041a1d919674595086
Author:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 14 21:40:04 2025 +0000
Commit:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Fri Feb 14 21:40:04 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6835ec67

app-forensics/aide: drop 0.18.4

Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>

 app-forensics/aide/Manifest           |   1 -
 app-forensics/aide/aide-0.18.4.ebuild | 106 ----------------------------------
 2 files changed, 107 deletions(-)

diff --git a/app-forensics/aide/Manifest b/app-forensics/aide/Manifest
index 301abe8edb13..58481ccdd29b 100644
--- a/app-forensics/aide/Manifest
+++ b/app-forensics/aide/Manifest
@@ -1,2 +1 @@
-DIST aide-0.18.4.tar.gz 382874 BLAKE2B 
e8fe8a115236f055f24b907ddcf540f02658b85c1df99ff9a8f58dfa9489de3d542b25bb947e047c8363c81d1f0ad0730fd77efacabe15fa24bbafc3fd807687
 SHA512 
31a17fc97ed9bda5dc4a492bcee699442cee1ea3829b1b06cf91ef9234a8b033677c281979902cbc6a8db0269c7f00499897940df07beff14cbb88b8fe6390f5
 DIST aide-0.18.8.tar.gz 383589 BLAKE2B 
a3b7efca89d0be99614e423a983fb0a3413f1cbdbc370b54f755e6dae8bb7f5612921ba998fd6db9248ae739fdaf3d344e092933b7dad7fd94dc1844e68a605e
 SHA512 
38763f527cfbc11847eca2fca17eceabc46158624954f0457feb49b885f34e4311f2dbc50b5471f4ff972e9e4e9c9f55c2da8dd8d55c04063a9043ab4829ff05

diff --git a/app-forensics/aide/aide-0.18.4.ebuild 
b/app-forensics/aide/aide-0.18.4.ebuild
deleted file mode 100644
index d7e4d4b1948d..000000000000
--- a/app-forensics/aide/aide-0.18.4.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit readme.gentoo-r1
-
-DESCRIPTION="AIDE (Advanced Intrusion Detection Environment) is a file 
integrity checker"
-HOMEPAGE="https://aide.github.io/ https://github.com/aide/aide";
-SRC_URI="https://github.com/aide/aide/releases/download/v${PV}/${P}.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="acl audit curl e2fs mhash selinux xattr"
-
-DEPEND="
-       dev-libs/libpcre2
-       sys-libs/zlib
-       acl? ( virtual/acl )
-       audit? ( sys-process/audit )
-       curl? ( net-misc/curl )
-       e2fs? ( sys-fs/e2fsprogs )
-       !mhash? (
-               dev-libs/libgcrypt:=
-               dev-libs/libgpg-error
-       )
-       mhash? ( app-crypt/mhash )
-       selinux? ( sys-libs/libselinux )
-       xattr? ( sys-apps/attr )
-"
-RDEPEND="
-       ${DEPEND}
-       selinux? ( sec-policy/selinux-aide )
-"
-BDEPEND="
-       sys-devel/bison
-       sys-devel/flex
-       virtual/pkgconfig
-"
-
-DISABLE_AUTOFORMATTING=1
-DOC_CONTENTS="
-Example configuration file was installed at '${EPREFIX}/etc/aide/aide.conf'.
-Please edit it to meet your needs. Refer to aide.conf(5) manual page
-for more information.
-
-A helper script, aideinit, was installed and can be used to make AIDE
-management easier. Please run 'aideinit --help' for more information."
-
-src_prepare() {
-       default
-
-       # Only needed for snapshots.
-       if [[ ${PV} == *_p* ]] ; then
-               echo "m4_define([AIDE_VERSION], [${PV}])" > version.m4 || die
-       fi
-}
-
-src_configure() {
-       # Needs Bison, flex
-       unset YACC
-       export LEX=flex
-
-       local myeconfargs=(
-               --sysconfdir="${EPREFIX}"/etc/${PN}
-
-               # Needed even in EAPI=8, >=portage-3.0.40 skips it here (bug 
#887177)
-               --disable-static
-
-               # Disable broken l10n support: 
https://sourceforge.net/p/aide/bugs/98/
-               # This doesn't affect anything because there are no 
localizations yet.
-               --without-locale
-
-               --with-zlib
-               $(use_with curl)
-               $(use_with acl posix-acl)
-               $(use_with selinux)
-               $(use_with xattr)
-               $(use_with e2fs e2fsattrs)
-               $(use_with mhash mhash)
-               $(use_with !mhash gcrypt)
-               $(use_with audit)
-       )
-
-       econf "${myeconfargs[@]}"
-}
-
-src_install() {
-       default
-
-       readme.gentoo_create_doc
-
-       insinto /etc/${PN}
-       insopts -m0600
-       newins "${FILESDIR}"/aide.conf-r2 aide.conf
-
-       dosbin "${FILESDIR}"/aideinit
-       dodoc -r contrib/ "${FILESDIR}"/aide.cron-r2
-
-       keepdir /var/{lib,log}/${PN}
-}
-
-pkg_postinst() {
-       readme.gentoo_print_elog
-}

Reply via email to