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 EA2D4158094 for ; Fri, 23 Sep 2022 00:42:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A146DE0B66; Fri, 23 Sep 2022 00:42:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 87423E0B66 for ; Fri, 23 Sep 2022 00:42:46 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8637B341013 for ; Fri, 23 Sep 2022 00:42:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E9C7A5E6 for ; Fri, 23 Sep 2022 00:42: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: <1663893218.67f85e89af54f691503c47935fe4dd4671f41259.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ctags/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/ctags/ctags-20220828.0-r1.ebuild dev-util/ctags/ctags-20220828.0.ebuild dev-util/ctags/ctags-99999999.ebuild X-VCS-Directories: dev-util/ctags/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 67f85e89af54f691503c47935fe4dd4671f41259 X-VCS-Branch: master Date: Fri, 23 Sep 2022 00:42: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: 97c97eda-5d03-4528-8623-cc7bd8a565fb X-Archives-Hash: 7bcc8e93acff4cec85bf4bf9dc75b11c commit: 67f85e89af54f691503c47935fe4dd4671f41259 Author: Sam James gentoo org> AuthorDate: Fri Sep 23 00:33:38 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Sep 23 00:33:38 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67f85e89 dev-util/ctags: fix automagic seccomp dep Signed-off-by: Sam James gentoo.org> .../ctags/{ctags-20220828.0.ebuild => ctags-20220828.0-r1.ebuild} | 4 +++- dev-util/ctags/ctags-99999999.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-util/ctags/ctags-20220828.0.ebuild b/dev-util/ctags/ctags-20220828.0-r1.ebuild similarity index 95% rename from dev-util/ctags/ctags-20220828.0.ebuild rename to dev-util/ctags/ctags-20220828.0-r1.ebuild index ceadc8424f8a..22b038adf5a8 100644 --- a/dev-util/ctags/ctags-20220828.0.ebuild +++ b/dev-util/ctags/ctags-20220828.0-r1.ebuild @@ -21,12 +21,13 @@ fi LICENSE="GPL-2+" SLOT="0" -IUSE="json pcre test xml yaml" +IUSE="json pcre seccomp test xml yaml" RESTRICT="!test? ( test )" DEPEND=" json? ( dev-libs/jansson:= ) pcre? ( dev-libs/libpcre2 ) + seccomp? ( sys-libs/libseccomp ) xml? ( dev-libs/libxml2:2 ) yaml? ( dev-libs/libyaml ) " @@ -57,6 +58,7 @@ src_configure() { econf \ $(use_enable json) \ $(use_enable pcre pcre2) \ + $(use_enable seccomp) \ $(use_enable xml) \ $(use_enable yaml) \ --disable-etags \ diff --git a/dev-util/ctags/ctags-99999999.ebuild b/dev-util/ctags/ctags-99999999.ebuild index ceadc8424f8a..22b038adf5a8 100644 --- a/dev-util/ctags/ctags-99999999.ebuild +++ b/dev-util/ctags/ctags-99999999.ebuild @@ -21,12 +21,13 @@ fi LICENSE="GPL-2+" SLOT="0" -IUSE="json pcre test xml yaml" +IUSE="json pcre seccomp test xml yaml" RESTRICT="!test? ( test )" DEPEND=" json? ( dev-libs/jansson:= ) pcre? ( dev-libs/libpcre2 ) + seccomp? ( sys-libs/libseccomp ) xml? ( dev-libs/libxml2:2 ) yaml? ( dev-libs/libyaml ) " @@ -57,6 +58,7 @@ src_configure() { econf \ $(use_enable json) \ $(use_enable pcre pcre2) \ + $(use_enable seccomp) \ $(use_enable xml) \ $(use_enable yaml) \ --disable-etags \