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 EFFEF158090 for ; Fri, 27 May 2022 21:24:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E9C0E07B3; Fri, 27 May 2022 21:24:06 +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 1368FE07B3 for ; Fri, 27 May 2022 21:24:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E2430341188 for ; Fri, 27 May 2022 21:24:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C7AAE4C3 for ; Fri, 27 May 2022 21:24:02 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1653686633.78d097e83ae5ba89b913a4f34e0a6c115846cc3b.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-power/bbswitch/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-power/bbswitch/bbswitch-9999.ebuild X-VCS-Directories: sys-power/bbswitch/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 78d097e83ae5ba89b913a4f34e0a6c115846cc3b X-VCS-Branch: master Date: Fri, 27 May 2022 21:24:02 +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: d02b7bb6-fec7-4900-869b-2b1995ecbc77 X-Archives-Hash: 82efcd2ba2fa356a0a7c2cb561e7a428 commit: 78d097e83ae5ba89b913a4f34e0a6c115846cc3b Author: Pacho Ramos gentoo org> AuthorDate: Fri May 27 21:23:17 2022 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Fri May 27 21:23:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78d097e8 sys-power/bbswitch: drop 9999 as we are not really maintaining it Signed-off-by: Pacho Ramos gentoo.org> sys-power/bbswitch/bbswitch-9999.ebuild | 55 --------------------------------- 1 file changed, 55 deletions(-) diff --git a/sys-power/bbswitch/bbswitch-9999.ebuild b/sys-power/bbswitch/bbswitch-9999.ebuild deleted file mode 100644 index 1c9b2ba061f9..000000000000 --- a/sys-power/bbswitch/bbswitch-9999.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit linux-mod toolchain-funcs - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/Bumblebee-Project/${PN}.git" - EGIT_BRANCH="develop" -else - COMMIT="ddbd243638c7bc2baecf43a78aff46cdc12e9b2e" - SRC_URI="https://github.com/Bumblebee-Project/bbswitch/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/bbswitch-${COMMIT}" -fi - -DESCRIPTION="Toggle discrete NVIDIA Optimus graphics card" -HOMEPAGE="https://github.com/Bumblebee-Project/bbswitch" - -SLOT="0" -LICENSE="GPL-3+" -IUSE="" - -DEPEND=" - virtual/linux-sources - sys-kernel/linux-headers -" -RDEPEND="" - -MODULE_NAMES="bbswitch(acpi)" - -pkg_setup() { - linux-mod_pkg_setup - - BUILD_TARGETS="default" - BUILD_PARAMS="KVERSION=${KV_FULL} CC=$(tc-getCC)" -} - -src_prepare() { - # Fix build failure, bug #513542 and bug #761370 - sed "s%^KDIR :=.*%KDIR := ${KV_OUT_DIR:-$KERNEL_DIR}%g" -i Makefile || die - - default -} - -src_install() { - einstalldocs - - insinto /etc/modprobe.d - newins "${FILESDIR}"/bbswitch.modprobe bbswitch.conf - - linux-mod_src_install -}