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 CC53715814C for ; Wed, 4 Oct 2023 16:50:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE0C32BC02F; Wed, 4 Oct 2023 16:50:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BB1E22BC02F for ; Wed, 4 Oct 2023 16:50:23 +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 EB2A4335CE9 for ; Wed, 4 Oct 2023 16:50:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E63F99C for ; Wed, 4 Oct 2023 16:50:21 +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: <1696438036.ee203a9e8b6490d29966930436a070c1d5662c53.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/usbmon/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/usbmon/usbmon-6.1-r1.ebuild X-VCS-Directories: sys-apps/usbmon/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ee203a9e8b6490d29966930436a070c1d5662c53 X-VCS-Branch: master Date: Wed, 4 Oct 2023 16:50:21 +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: 8b149c85-b96e-4f9e-82d7-cef281283c6f X-Archives-Hash: 59ca110df3d58d9e1adffb6fdbb4f586 commit: ee203a9e8b6490d29966930436a070c1d5662c53 Author: Sam James gentoo org> AuthorDate: Wed Oct 4 16:27:48 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Oct 4 16:47:16 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee203a9e sys-apps/usbmon: don't redefine _FORTIFY_SOURCE Closes: https://bugs.gentoo.org/898048 Signed-off-by: Sam James gentoo.org> sys-apps/usbmon/usbmon-6.1-r1.ebuild | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/sys-apps/usbmon/usbmon-6.1-r1.ebuild b/sys-apps/usbmon/usbmon-6.1-r1.ebuild new file mode 100644 index 000000000000..a5de8eb9313a --- /dev/null +++ b/sys-apps/usbmon/usbmon-6.1-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Userland for USB monitoring framework" +HOMEPAGE="https://people.redhat.com/zaitcev/linux/" +SRC_URI="https://people.redhat.com/zaitcev/linux/${P}.tar.gz" + +LICENSE="GPL-2" # GPL-2 only +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +src_prepare() { + default + + sed -i \ + -e 's:-O2::g' \ + -e '/_FORTIFY_SOURCE/d' \ + Makefile || die + + tc-export CC +} + +src_install() { + dosbin ${PN} + doman ${PN}.8 + dodoc README +}