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 D04A3159C9C for ; Mon, 5 Aug 2024 07:18:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD347E2B6E; Mon, 5 Aug 2024 07:18:17 +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 8658DE2B6B for ; Mon, 5 Aug 2024 07:18:17 +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 0C4FB341C25 for ; Mon, 5 Aug 2024 07:18:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 440B61EA8 for ; Mon, 5 Aug 2024 07:18:13 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1722841717.902fa0551e428e8b81b88c2f05082b0f5c492c0c.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-power/bbswitch/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-power/bbswitch/bbswitch-0.8_p20211129.ebuild X-VCS-Directories: sys-power/bbswitch/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 902fa0551e428e8b81b88c2f05082b0f5c492c0c X-VCS-Branch: master Date: Mon, 5 Aug 2024 07:18:13 +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: 5e81876e-539b-47ea-af31-b247d1cb27ee X-Archives-Hash: 90649f380bac7d8bb2941b119b02a1f7 commit: 902fa0551e428e8b81b88c2f05082b0f5c492c0c Author: Filip Kobierski pm me> AuthorDate: Tue Jul 30 11:36:47 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Aug 5 07:08:37 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=902fa055 sys-power/bbswitch: drop 0.8_p20211129 Signed-off-by: Filip Kobierski pm.me> Signed-off-by: Joonas Niilola gentoo.org> sys-power/bbswitch/bbswitch-0.8_p20211129.ebuild | 57 ------------------------ 1 file changed, 57 deletions(-) diff --git a/sys-power/bbswitch/bbswitch-0.8_p20211129.ebuild b/sys-power/bbswitch/bbswitch-0.8_p20211129.ebuild deleted file mode 100644 index 2aa21af88733..000000000000 --- a/sys-power/bbswitch/bbswitch-0.8_p20211129.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -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="23891174a80ea79c7720bcc7048a5c2bfcde5cd9" - 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)" - -PATCHES=( "${FILESDIR}/${PN}-kernel-5.18.patch" ) - -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 -}