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 24E06158020 for ; Fri, 23 Dec 2022 01:34:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 063D5E07C9; Fri, 23 Dec 2022 01:34:30 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DF978E07C9 for ; Fri, 23 Dec 2022 01:34:29 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CCA693413C4 for ; Fri, 23 Dec 2022 01:34:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 655F67D8 for ; Fri, 23 Dec 2022 01:34:27 +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: <1671759235.754d11521c6b05159b688392220bfa1b13bb15ac.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.9.ebuild X-VCS-Directories: app-misc/beep/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 754d11521c6b05159b688392220bfa1b13bb15ac X-VCS-Branch: master Date: Fri, 23 Dec 2022 01:34:27 +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: 7d0240d6-bd51-4aa1-8a9b-4ede1c447f80 X-Archives-Hash: 3123bada3333435f08b5fc4067dee90b commit: 754d11521c6b05159b688392220bfa1b13bb15ac Author: Sam James gentoo org> AuthorDate: Fri Dec 23 01:33:55 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Dec 23 01:33:55 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=754d1152 app-misc/beep: drop 1.4.9 Signed-off-by: Sam James gentoo.org> app-misc/beep/beep-1.4.9.ebuild | 59 ----------------------------------------- 1 file changed, 59 deletions(-) diff --git a/app-misc/beep/beep-1.4.9.ebuild b/app-misc/beep/beep-1.4.9.ebuild deleted file mode 100644 index e8c215dbe0b6..000000000000 --- a/app-misc/beep/beep-1.4.9.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Advanced PC speaker beeper" -HOMEPAGE="https://github.com/spkr-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" -IUSE="suid" - -# Tests require a speaker -RESTRICT="test" - -src_prepare() { - default - - sed -i -e "s#-D_FORTIFY_SOURCE=2##g;" GNUmakefile || die -} - -src_compile() { - emake \ - COMPILERS=gcc \ - COMPILER_gcc="$(tc-getCC)" \ - LINKER_gcc="$(tc-getCC)" \ - CFLAGS_gcc="${CFLAGS}" \ - LDFLAGS="${LDFLAGS}" \ - CPPFLAGS_gcc="" \ - all -} - -src_test() { - emake \ - COMPILERS=gcc \ - COMPILER_gcc="$(tc-getCC)" \ - LINKER_gcc="$(tc-getCC)" \ - CFLAGS_gcc="${CFLAGS}" \ - LDFLAGS="${LDFLAGS}" \ - check -} - -src_install() { - dobin beep - doman "${PN}.1" - - if use suid; then - fowners :audio /usr/bin/beep - fperms 4710 /usr/bin/beep - else - fperms 0711 /usr/bin/beep - fi - - einstalldocs -}