public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Nowa Ammerlaan" <nowa@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/dkms/
Date: Thu, 30 Jan 2025 13:48:02 +0000 (UTC)	[thread overview]
Message-ID: <1738244865.24a77636723d8ab9e443bb283da63e24206a3059.nowa@gentoo> (raw)

commit:     24a77636723d8ab9e443bb283da63e24206a3059
Author:     Nowa Ammerlaan <nowa <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 30 13:47:45 2025 +0000
Commit:     Nowa Ammerlaan <nowa <AT> gentoo <DOT> org>
CommitDate: Thu Jan 30 13:47:45 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24a77636

sys-kernel/dkms: drop 3.0.13-r1, 3.1.2, 3.1.3

Signed-off-by: Nowa Ammerlaan <nowa <AT> gentoo.org>

 sys-kernel/dkms/Manifest              |  3 --
 sys-kernel/dkms/dkms-3.0.13-r1.ebuild | 53 -----------------------------------
 sys-kernel/dkms/dkms-3.1.2.ebuild     | 53 -----------------------------------
 sys-kernel/dkms/dkms-3.1.3.ebuild     | 53 -----------------------------------
 4 files changed, 162 deletions(-)

diff --git a/sys-kernel/dkms/Manifest b/sys-kernel/dkms/Manifest
index 7d35d30d5dbe..959c656a9eb1 100644
--- a/sys-kernel/dkms/Manifest
+++ b/sys-kernel/dkms/Manifest
@@ -1,5 +1,2 @@
-DIST dkms-3.0.13.tar.gz 92840 BLAKE2B ccd677b6e8074fd0ced23f0735817fc36364f4476f7d552af2417b33a4845652a0b0331d3a7642fb5149178674448b479f094fdf27babd64efbfea1491daf671 SHA512 6cf3866730ea92715092b50a1174026dda9a7fb1321796e7c887032ffefb5609c0f6cf59a60ff4d47b7ffee2dac331584073393e9e4e906eaa5a425fc8d22c02
-DIST dkms-3.1.2.tar.gz 97234 BLAKE2B 74ba5cf41d085f080f780e991c6b80d0a4aa09e5603a33aae801a05d12ffdf824ba29856b9411fed2184bba8cebd83fcb020200126d8134af0a871944a16ecca SHA512 762f7b38bf8cb6d1206f5a1ce189a6d728c2a283ee441b00724d2bc72a1d8e2c2351bd0cc57a1fdb6f209f42828789f590adeac1728f21098068866f7909a480
-DIST dkms-3.1.3.tar.gz 97452 BLAKE2B b38f998b39dd327ba880e67778e64d80483a7b490f6144ae61c29a81de8f4b8c07855f92e5070f15c48b6b575527b56276ff848cdcc024e8dcde50f43b011191 SHA512 f66e74550e908b9772375d7ac57b799118493e02ae7e126b8c7c96031734935deed222e94dda34bbfa70b152188ce3678d4e62b22ff5182b38b318daa5029944
 DIST dkms-3.1.4.tar.gz 100829 BLAKE2B 91e42c1ff31753cdfd60148de63527c77f97225312837d99ec4b17616349506fec89ced2da59f4afd28620b2e438c949837cd8f828143088e74dded94dfa42a0 SHA512 7f4f611c3ef4ee114adaece564437eeda40afd1e23e140fd76677ad7e50867763b512a56279172fafcf0411b6f5263c1ea1e1e6e651041f8a551e532dcd69639
 DIST dkms-3.1.5.tar.gz 103374 BLAKE2B 55099cb49d2fd7cd9b2ec0e8006c03e741172b56d840c9ddd906e1f46bafdd4fb333332c336a32acf1efbe21fca6fb70bb9120fd5bfb5255e7658802f32cf524 SHA512 b72d0b9590bdd3c4f08848ea419ccb4b46cece40120ced5dc5abe826e232ca1608c8bdb852a2544f8fb640f0e8210043e574826071d27753b48ee99462a29776

diff --git a/sys-kernel/dkms/dkms-3.0.13-r1.ebuild b/sys-kernel/dkms/dkms-3.0.13-r1.ebuild
deleted file mode 100644
index 34a2dd47ced9..000000000000
--- a/sys-kernel/dkms/dkms-3.0.13-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit linux-info optfeature
-
-DESCRIPTION="Dynamic Kernel Module Support"
-HOMEPAGE="https://github.com/dell/dkms"
-SRC_URI="https://github.com/dell/dkms/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-IUSE="systemd"
-
-CONFIG_CHECK="~MODULES"
-
-RDEPEND="
-	sys-apps/kmod
-	virtual/linux-sources
-	systemd? ( sys-apps/systemd )
-"
-
-# Can not work in the emerge sandbox
-RESTRICT="test"
-
-src_compile() {
-	# Nothing to do here
-	return
-}
-
-src_test() {
-	chmod +x dkms || die
-	PATH="${PATH}:$(pwd)" ./run_test.sh || die "Tests failed"
-}
-
-src_install() {
-	if use systemd; then
-		emake install-redhat DESTDIR="${ED}" KCONF="/usr/lib/kernel"
-	else
-		emake install DESTDIR="${ED}" KCONF="/usr/lib/kernel"
-	fi
-
-	einstalldocs
-	keepdir /var/lib/dkms
-}
-
-pkg_postinst() {
-	optfeature "automatically running \"dkms autoinstall\" on each kernel installation" \
-		sys-kernel/installkernel
-}

diff --git a/sys-kernel/dkms/dkms-3.1.2.ebuild b/sys-kernel/dkms/dkms-3.1.2.ebuild
deleted file mode 100644
index 235f0a1eb372..000000000000
--- a/sys-kernel/dkms/dkms-3.1.2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit linux-info optfeature
-
-DESCRIPTION="Dynamic Kernel Module Support"
-HOMEPAGE="https://github.com/dell/dkms"
-SRC_URI="https://github.com/dell/dkms/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-IUSE="systemd"
-
-RDEPEND="
-	sys-apps/kmod
-	virtual/linux-sources
-	systemd? ( sys-apps/systemd )
-"
-
-# Cannot work in the emerge sandbox
-RESTRICT="test"
-
-CONFIG_CHECK="~MODULES"
-
-src_compile() {
-	# Nothing to do here
-	return
-}
-
-src_test() {
-	chmod +x dkms || die
-	PATH="${PATH}:$(pwd)" ./run_test.sh || die "Tests failed"
-}
-
-src_install() {
-	if use systemd; then
-		emake install-redhat DESTDIR="${ED}" KCONF="/usr/lib/kernel"
-	else
-		emake install DESTDIR="${ED}" KCONF="/usr/lib/kernel"
-	fi
-
-	einstalldocs
-	keepdir /var/lib/dkms
-}
-
-pkg_postinst() {
-	optfeature "automatically running \"dkms autoinstall\" on each kernel installation" \
-		sys-kernel/installkernel
-}

diff --git a/sys-kernel/dkms/dkms-3.1.3.ebuild b/sys-kernel/dkms/dkms-3.1.3.ebuild
deleted file mode 100644
index 235f0a1eb372..000000000000
--- a/sys-kernel/dkms/dkms-3.1.3.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit linux-info optfeature
-
-DESCRIPTION="Dynamic Kernel Module Support"
-HOMEPAGE="https://github.com/dell/dkms"
-SRC_URI="https://github.com/dell/dkms/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-IUSE="systemd"
-
-RDEPEND="
-	sys-apps/kmod
-	virtual/linux-sources
-	systemd? ( sys-apps/systemd )
-"
-
-# Cannot work in the emerge sandbox
-RESTRICT="test"
-
-CONFIG_CHECK="~MODULES"
-
-src_compile() {
-	# Nothing to do here
-	return
-}
-
-src_test() {
-	chmod +x dkms || die
-	PATH="${PATH}:$(pwd)" ./run_test.sh || die "Tests failed"
-}
-
-src_install() {
-	if use systemd; then
-		emake install-redhat DESTDIR="${ED}" KCONF="/usr/lib/kernel"
-	else
-		emake install DESTDIR="${ED}" KCONF="/usr/lib/kernel"
-	fi
-
-	einstalldocs
-	keepdir /var/lib/dkms
-}
-
-pkg_postinst() {
-	optfeature "automatically running \"dkms autoinstall\" on each kernel installation" \
-		sys-kernel/installkernel
-}


             reply	other threads:[~2025-01-30 13:48 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-30 13:48 Nowa Ammerlaan [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-30 13:48 [gentoo-commits] repo/gentoo:master commit in: sys-kernel/dkms/ Nowa Ammerlaan
2024-12-19 15:06 Nowa Ammerlaan
2024-12-01 10:18 Nowa Ammerlaan
2024-11-26 11:02 Nowa Ammerlaan
2024-10-21 16:52 Andrew Ammerlaan
2024-10-03  9:12 Andrew Ammerlaan
2024-08-03 10:19 Andrew Ammerlaan
2024-08-03 10:19 Andrew Ammerlaan
2024-08-03 10:19 Andrew Ammerlaan
2024-03-06 16:41 Andrew Ammerlaan
2024-02-12 10:35 Andrew Ammerlaan
2024-02-02  6:28 Andrew Ammerlaan
2023-10-12  5:28 Sam James

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1738244865.24a77636723d8ab9e443bb283da63e24206a3059.nowa@gentoo \
    --to=nowa@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox