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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 31CBF1581F3 for ; Mon, 2 Dec 2024 18:02:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6FF5AE0801; Mon, 2 Dec 2024 18:02:00 +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 04DF9E0801 for ; Mon, 2 Dec 2024 18:01:56 +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 041FA341256 for ; Mon, 2 Dec 2024 18:01:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 57D7313F5 for ; Mon, 2 Dec 2024 18:01:41 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1733162294.53d29446dc7477a935a74103b49904eaecd52da0.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/usbguard/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/usbguard/usbguard-1.1.3-r2.ebuild X-VCS-Directories: sys-apps/usbguard/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 53d29446dc7477a935a74103b49904eaecd52da0 X-VCS-Branch: master Date: Mon, 2 Dec 2024 18:01:41 +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: 745704ef-0373-4368-a832-70e5a8f3a489 X-Archives-Hash: 98e3b96440cf49433649a523e3f26260 commit: 53d29446dc7477a935a74103b49904eaecd52da0 Author: Sebastian Pipping gentoo org> AuthorDate: Mon Dec 2 17:54:20 2024 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Mon Dec 2 17:58:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53d29446 sys-apps/usbguard: Ensure protobuf compiler availability Closes: https://bugs.gentoo.org/944824 Signed-off-by: Sebastian Pipping gentoo.org> sys-apps/usbguard/usbguard-1.1.3-r2.ebuild | 101 +++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) diff --git a/sys-apps/usbguard/usbguard-1.1.3-r2.ebuild b/sys-apps/usbguard/usbguard-1.1.3-r2.ebuild new file mode 100644 index 000000000000..6b5eca2bfe2c --- /dev/null +++ b/sys-apps/usbguard/usbguard-1.1.3-r2.ebuild @@ -0,0 +1,101 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools bash-completion-r1 + +DESCRIPTION="Daemon protecting your computer against BadUSB" +HOMEPAGE="https://github.com/USBGuard/usbguard" +SRC_URI="https://github.com/USBGuard/usbguard/releases/download/${P}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0/1" # due to libusbguard.so.<1>.0.0 +KEYWORDS="~amd64 ~x86" +IUSE="dbus ldap policykit selinux static-libs systemd test umockdev" + +# https://github.com/USBGuard/usbguard/issues/449 +# https://bugs.gentoo.org/769692 +REQUIRED_USE+=" test? ( static-libs )" + +CDEPEND=" + dev-libs/pegtl + >=dev-libs/libsodium-0.4.5:= + >=dev-libs/protobuf-2.5.0:=[protoc(+)] + >=sys-cluster/libqb-0.16.0:= + sys-devel/gcc:*[cxx] + >=sys-libs/libcap-ng-0.7.0 + >=sys-libs/libseccomp-2.0.0 + >=sys-process/audit-2.7.7 + dbus? ( + dev-libs/glib:2 + sys-apps/dbus + sys-auth/polkit[introspection] + ) + ldap? ( net-nds/openldap:= ) + systemd? ( sys-apps/systemd ) + umockdev? ( dev-util/umockdev ) + " +RDEPEND="${CDEPEND} + virtual/udev + selinux? ( sec-policy/selinux-usbguard ) + " +DEPEND="${CDEPEND} + app-text/asciidoc + /etc/usbguard/rules.conf"' + ewarn +}