public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mikle Kolyada" <zlogene@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/aide/
Date: Sun, 20 Sep 2020 15:58:36 +0000 (UTC)	[thread overview]
Message-ID: <1600617475.d54182448a57c38c7a2abfcb72f9391a8c334799.zlogene@gentoo> (raw)

commit:     d54182448a57c38c7a2abfcb72f9391a8c334799
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 20 15:47:20 2020 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Sep 20 15:57:55 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5418244

app-forensics/aide: Disable static builds

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 app-forensics/aide/aide-0.16-r1.ebuild          | 23 ++++-------------------
 app-forensics/aide/aide-0.16.2_p20200614.ebuild | 24 +++++-------------------
 2 files changed, 9 insertions(+), 38 deletions(-)

diff --git a/app-forensics/aide/aide-0.16-r1.ebuild b/app-forensics/aide/aide-0.16-r1.ebuild
index 6f56d6e6be9..56e81d58727 100644
--- a/app-forensics/aide/aide-0.16-r1.ebuild
+++ b/app-forensics/aide/aide-0.16-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/aide/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 x86"
-IUSE="acl audit curl e2fs mhash postgres prelink selinux static xattr zlib"
+IUSE="acl audit curl e2fs mhash postgres prelink selinux xattr zlib"
 
 COMMON_DEPEND="
 	!mhash? (
@@ -32,7 +32,7 @@ COMMON_DEPEND="
 	zlib? ( sys-libs/zlib )
 "
 RDEPEND="
-	!static? ( ${COMMON_DEPEND} )
+	${COMMON_DEPEND}
 	prelink? ( sys-devel/prelink )
 	selinux? ( sec-policy/selinux-aide )
 "
@@ -40,25 +40,10 @@ DEPEND="${COMMON_DEPEND}
 	sys-devel/bison
 	sys-devel/flex
 	virtual/pkgconfig
-	static? (
-		!mhash? (
-			dev-libs/libgcrypt:0[static-libs]
-			dev-libs/libgpg-error[static-libs]
-		)
-		mhash? ( app-crypt/mhash[static-libs] )
-		dev-libs/libpcre[static-libs]
-		acl? ( virtual/acl[static-libs] )
-		e2fs? ( sys-fs/e2fsprogs[static-libs] )
-		prelink? ( dev-libs/elfutils[static-libs] )
-		selinux? ( sys-libs/libselinux[static-libs] )
-		xattr? ( sys-apps/attr[static-libs] )
-		zlib? ( sys-libs/zlib[static-libs] )
-	)
 "
 
 REQUIRED_USE="
 	postgres? ( !mhash )
-	static? ( !audit !curl !postgres )
 "
 
 HTML_DOCS=( doc/manual.html )
@@ -94,7 +79,7 @@ src_configure() {
 		# Disable broken l10n support: https://sourceforge.net/p/aide/bugs/98/
 		# This doesn't affect anything because there are no localizations yet.
 		--without-locale
-		$(use_enable static)
+		--disable-static
 		$(use_with zlib)
 		$(use_with curl)
 		$(use_with acl posix-acl)

diff --git a/app-forensics/aide/aide-0.16.2_p20200614.ebuild b/app-forensics/aide/aide-0.16.2_p20200614.ebuild
index 794fd0db7d7..92bf4b34c62 100644
--- a/app-forensics/aide/aide-0.16.2_p20200614.ebuild
+++ b/app-forensics/aide/aide-0.16.2_p20200614.ebuild
@@ -14,11 +14,11 @@ SRC_URI="https://github.com/aide/aide/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="acl audit curl e2fs mhash postgres prelink selinux static xattr zlib"
+IUSE="acl audit curl e2fs mhash postgres prelink selinux xattr zlib"
 
 REQUIRED_USE="
 	postgres? ( !mhash )
-	static? ( !audit !curl !postgres )"
+	"
 
 COMMON_DEPEND="
 	dev-libs/libpcre
@@ -38,24 +38,10 @@ COMMON_DEPEND="
 	zlib? ( sys-libs/zlib )"
 
 RDEPEND="
-	!static? ( ${COMMON_DEPEND} )
+	${COMMON_DEPEND}
 	selinux? ( sec-policy/selinux-aide )"
 
-DEPEND="${COMMON_DEPEND}
-	static? (
-		dev-libs/libpcre[static-libs]
-		acl? ( >=virtual/acl-0-r1[static-libs] )
-		e2fs? ( sys-fs/e2fsprogs[static-libs] )
-		!mhash? (
-			dev-libs/libgcrypt:0[static-libs]
-			dev-libs/libgpg-error[static-libs]
-		)
-		mhash? ( app-crypt/mhash[static-libs] )
-		prelink? ( dev-libs/elfutils[static-libs] )
-		selinux? ( sys-libs/libselinux[static-libs] )
-		xattr? ( sys-apps/attr[static-libs] )
-		zlib? ( sys-libs/zlib[static-libs] )
-	)"
+DEPEND="${COMMON_DEPEND}"
 
 BDEPEND="
 	sys-devel/bison
@@ -110,7 +96,7 @@ src_configure() {
 		# Disable broken l10n support: https://sourceforge.net/p/aide/bugs/98/
 		# This doesn't affect anything because there are no localizations yet.
 		--without-locale
-		$(use_enable static)
+		--disable-static
 		$(use_with zlib)
 		$(use_with curl)
 		$(use_with acl posix-acl)


             reply	other threads:[~2020-09-20 15:58 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-20 15:58 Mikle Kolyada [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-10 15:57 [gentoo-commits] repo/gentoo:master commit in: app-forensics/aide/ Sam James
2024-09-10 15:57 Sam James
2024-06-14 10:36 Arthur Zamarin
2023-07-14 17:07 Arthur Zamarin
2023-07-14 16:23 Arthur Zamarin
2023-06-22 18:03 Arthur Zamarin
2023-06-22 17:46 Arthur Zamarin
2023-06-14  2:48 Sam James
2023-05-17  0:37 Sam James
2023-05-09 11:37 Arthur Zamarin
2023-05-09  5:52 Arthur Zamarin
2023-05-03 18:58 Sam James
2023-04-07 14:49 Sam James
2023-03-17 17:29 Sam James
2023-02-06 23:16 Sam James
2023-02-06 23:16 Sam James
2023-01-08  7:31 Joonas Niilola
2023-01-08  7:31 Joonas Niilola
2022-12-19 16:42 Ionen Wolkens
2022-12-19 16:26 Ionen Wolkens
2022-04-17 20:05 Sam James
2022-03-19 19:21 Agostino Sarubbo
2022-03-12  0:12 Sam James
2022-02-23  9:40 Jakov Smolić
2021-11-23 17:39 Sam James
2021-05-04  7:03 Agostino Sarubbo
2021-05-04  7:01 Agostino Sarubbo
2021-04-06 21:17 Sam James
2018-05-20 12:21 Mikle Kolyada
2018-04-17 22:09 Thomas Deutschmann
2018-04-15 23:49 Aaron Bauman
2017-08-11 17:38 Michał Górny
2017-06-30 11:10 Agostino Sarubbo
2017-06-29  8:06 Agostino Sarubbo
2017-05-27 20:59 Michał Górny

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1600617475.d54182448a57c38c7a2abfcb72f9391a8c334799.zlogene@gentoo \
    --to=zlogene@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox