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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D5213138330 for ; Wed, 30 May 2018 14:12:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49D82E0952; Wed, 30 May 2018 14:10:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 268C1E0952 for ; Wed, 30 May 2018 14:10:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 34E78335CA8 for ; Wed, 30 May 2018 14:10:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 581AD2A2 for ; Wed, 30 May 2018 14:10:10 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1527689404.2c4789275b1d9fd4bfd631d48e93eaad9a3d41be.bman@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.3-r2.ebuild X-VCS-Directories: app-misc/beep/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 2c4789275b1d9fd4bfd631d48e93eaad9a3d41be X-VCS-Branch: master Date: Wed, 30 May 2018 14:10:10 +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-Archives-Salt: b4008cef-9b01-483d-8a39-ef53fad8b998 X-Archives-Hash: 532d6c3a27fd5695d0c34235654a17d8 commit: 2c4789275b1d9fd4bfd631d48e93eaad9a3d41be Author: Aaron Bauman gentoo org> AuthorDate: Wed May 30 14:09:23 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Wed May 30 14:10:04 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c478927 app-misc/beep: drop vulnerable wrt bug #652330 Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-misc/beep/beep-1.3-r2.ebuild | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/app-misc/beep/beep-1.3-r2.ebuild b/app-misc/beep/beep-1.3-r2.ebuild deleted file mode 100644 index ce846fdf1f0..00000000000 --- a/app-misc/beep/beep-1.3-r2.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="The advanced PC speaker beeper" -HOMEPAGE="http://www.johnath.com/beep" -SRC_URI="http://www.johnath.com/beep/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm ppc ppc64 sparc x86" -IUSE="suid" - -PATCHES=( "${FILESDIR}/${P}-Makefile.patch" ) - -pkg_setup() { - tc-export CC -} - -src_install() { - dobin beep - if use suid; then - fowners :audio /usr/bin/beep - fperms 4710 /usr/bin/beep - else - fperms 0711 /usr/bin/beep - fi - unpack "./${PN}.1.gz" - doman "${PN}.1" - einstalldocs -}