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 970041580FD for ; Tue, 24 Dec 2024 09:21:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1D65E0784; Tue, 24 Dec 2024 09:21:28 +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 D2862E077F for ; Tue, 24 Dec 2024 09:21:27 +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 DA21333BEA5 for ; Tue, 24 Dec 2024 09:21:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 233FB18E8 for ; Tue, 24 Dec 2024 09:21:25 +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: <1735032047.01e878219667bf8ce1781f7b74758ecf40ecb80b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/beep/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/beep/beep-1.4.12-r1.ebuild X-VCS-Directories: app-misc/beep/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 01e878219667bf8ce1781f7b74758ecf40ecb80b X-VCS-Branch: master Date: Tue, 24 Dec 2024 09:21:25 +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: e0613e1b-88df-4df4-80f5-571e21ef4bf8 X-Archives-Hash: 6e7e41e1e89e12335ea0a0accabadf68 commit: 01e878219667bf8ce1781f7b74758ecf40ecb80b Author: Z. Liu gmail com> AuthorDate: Fri Dec 13 09:39:03 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Dec 24 09:20:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01e87821 app-misc/beep: fix issue when no caps on fs w/o xattr support 1. set mode so fcaps won't set SUID if fs w/o xattr support 2. show message tell user howto run as non-root user 3. add more doc files Closes: https://bugs.gentoo.org/877095 Signed-off-by: Z. Liu gmail.com> Closes: https://github.com/gentoo/gentoo/pull/39706 Signed-off-by: Sam James gentoo.org> app-misc/beep/beep-1.4.12-r1.ebuild | 60 +++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/app-misc/beep/beep-1.4.12-r1.ebuild b/app-misc/beep/beep-1.4.12-r1.ebuild new file mode 100644 index 000000000000..6615cc9f090a --- /dev/null +++ b/app-misc/beep/beep-1.4.12-r1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit fcaps toolchain-funcs + +DESCRIPTION="Advanced PC speaker beeper" +HOMEPAGE="https://github.com/spkr-beep/beep" +SRC_URI="https://github.com/spkr-beep/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" + +# Tests require a speaker +RESTRICT="test" + +src_prepare() { + default + + cat <<-EOF > local.mk || die + CC=$(tc-getCC) + CFLAGS=${CFLAGS} + CPPFLAGS=${CPPFLAGS} + LDFLAGS=${LDFLAGS} + EOF + + sed -i \ + -e "s#-D_FORTIFY_SOURCE=2##g;" \ + -e '/\-Werror)/d' \ + GNUmakefile || die +} + +src_install() { + dobin beep + doman "${PN}.1" + + fperms 0711 /usr/bin/beep + + local DOCS=( + CREDITS.md DEVELOPMENT.md INSTALL.md NEWS.md PACKAGING.md PERMISSIONS.md README.md + ) + einstalldocs +} + +pkg_postinst() { + FILECAPS=( + -m0711 cap_dac_override,cap_sys_tty_config "${EROOT}/usr/bin/beep" + ) + + elog "Please note that for security reasons, beep will no longer allow" + elog "to running w/ SUID or as root under sudo. You will need to give" + elog "permissions for the PC speaker device to allow non-root users to" + elog "use 'beep' by either:" + elog " setfacl -m u::rw /dev/input/by-path/platform-pcspkr-event-spkr" + elog "or add yourself to the 'input' group:" + elog " usermod -aG input " + elog "It's preferred to use setfacl with least privilege." +}