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 2BB641581E7 for ; Sat, 27 Apr 2024 14:18:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31909E29F7; Sat, 27 Apr 2024 14:18:31 +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 14C00E29F7 for ; Sat, 27 Apr 2024 14:18:31 +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 219A934076D for ; Sat, 27 Apr 2024 14:18:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2ACFC1752 for ; Sat, 27 Apr 2024 14:18:28 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1714227399.52b2ef32496775297dd6dada5b7d7ab3f47faf5d.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/linux-gpib-modules/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5.ebuild X-VCS-Directories: sci-libs/linux-gpib-modules/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 52b2ef32496775297dd6dada5b7d7ab3f47faf5d X-VCS-Branch: master Date: Sat, 27 Apr 2024 14:18:28 +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: ca2a97d6-d260-4746-a1a7-06f0b86674f4 X-Archives-Hash: bc1ff4c926adf957c1e044c392d7c536 commit: 52b2ef32496775297dd6dada5b7d7ab3f47faf5d Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Apr 27 14:16:39 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Apr 27 14:16:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52b2ef32 sci-libs/linux-gpib-modules: drop 4.3.5 Signed-off-by: Andreas K. Hüttel gentoo.org> .../linux-gpib-modules-4.3.5.ebuild | 69 ---------------------- 1 file changed, 69 deletions(-) diff --git a/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5.ebuild b/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5.ebuild deleted file mode 100644 index fb572031d1ee..000000000000 --- a/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit linux-info linux-mod - -DESCRIPTION="Kernel modules for GPIB (IEEE 488.2) hardware" -HOMEPAGE="https://linux-gpib.sourceforge.io/" -SRC_URI="mirror://sourceforge/linux-gpib/linux-gpib-${PV}.tar.gz" -S="${WORKDIR}/linux-gpib-kernel-${PV}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~x86" -IUSE="debug" - -COMMONDEPEND="" -RDEPEND="${COMMONDEPEND} - acct-group/gpib -" -DEPEND="${COMMONDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - # don't fix debian bugs if they break gentoo - "${FILESDIR}/${PN}-4.3.4-depmod.patch" -) - -pkg_setup() { - linux-mod_pkg_setup - - if kernel_is -lt 2 6 8; then - die "Kernel versions older than 2.6.8 are not supported." - fi -} - -src_unpack() { - default - unpack "${WORKDIR}/linux-gpib-${PV}/linux-gpib-kernel-${PV}.tar.gz" -} - -src_configure() { - set_arch_to_kernel - - my_gpib_makeopts='' - use debug && my_gpib_makeopts+='GPIB-DEBUG=1 ' - - my_gpib_makeopts+="LINUX_SRCDIR=${KERNEL_DIR} " -} - -src_compile() { - set_arch_to_kernel - emake \ - ${my_gpib_makeopts} -} - -src_install() { - set_arch_to_kernel - emake \ - DESTDIR="${ED}" \ - INSTALL_MOD_PATH="${ED}" \ - DEPMOD="/bin/true" \ - docdir="${ED}/usr/share/doc/${PF}/html" \ - ${my_gpib_makeopts} \ - install - - dodoc ChangeLog AUTHORS README* NEWS -}