public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas K. Hüttel" <dilfridge@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/linux-gpib-modules/, sci-libs/linux-gpib-modules/files/
Date: Sun, 16 Feb 2025 11:08:56 +0000 (UTC)	[thread overview]
Message-ID: <1739704126.4ff05bebdf2bc770e37d139d2f378851367bf000.dilfridge@gentoo> (raw)

commit:     4ff05bebdf2bc770e37d139d2f378851367bf000
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 16 11:08:17 2025 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Feb 16 11:08:46 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ff05beb

sci-libs/linux-gpib-modules: drop 4.3.5-r3

Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 sci-libs/linux-gpib-modules/Manifest               |  1 -
 .../linux-gpib-modules-4.3.4-kernel-6.4.patch      | 27 ----------
 .../linux-gpib-modules-4.3.5-r3.ebuild             | 62 ----------------------
 3 files changed, 90 deletions(-)

diff --git a/sci-libs/linux-gpib-modules/Manifest b/sci-libs/linux-gpib-modules/Manifest
index a03e19c7378c..6d2b8be9a89a 100644
--- a/sci-libs/linux-gpib-modules/Manifest
+++ b/sci-libs/linux-gpib-modules/Manifest
@@ -1,2 +1 @@
-DIST linux-gpib-4.3.5.tar.gz 1462624 BLAKE2B fff30ed1a7abc18cd4317e8f8979ef4014a532baab8c014f9a2eaa3338a2e8e8b672214d3f2b3f44066be15f432861a3fe3d67652f6966e73e561d99ff1e1566 SHA512 018cc255922a6335f8d28418b0a0808c3a369506470d9c81432ac7183ae255217d938a419e10ba2b0c44205a9d901405ce00ad5bdd968db2721cedd83baa2f76
 DIST linux-gpib-4.3.6.tar.gz 1433121 BLAKE2B 64e2b19106d0531df990b1338f82a71707e54f448d652f6379eb9cd71feb84637090ed8fdfb0264248aa6879d5b9a1dc50e75c21a2c22a31397120eea5903e98 SHA512 a8005c71bfddb854ecbe4df0a81530e44378150242508b10df58c61d039c6d329020407608e31f1ef360de0c83169e76b793c032256e732d229bfd2da4cbaa35

diff --git a/sci-libs/linux-gpib-modules/files/linux-gpib-modules-4.3.4-kernel-6.4.patch b/sci-libs/linux-gpib-modules/files/linux-gpib-modules-4.3.4-kernel-6.4.patch
deleted file mode 100644
index 90112106584d..000000000000
--- a/sci-libs/linux-gpib-modules/files/linux-gpib-modules-4.3.4-kernel-6.4.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- linux-gpib-kernel/compat/include/linux/device.h	(revision 2052)
-+++ linux-gpib-kernel/compat/include/linux/device.h	(revision 2053)
-@@ -47,6 +47,13 @@
-  * for kernel versions prior to 2.6.26, so the 'drvdata' parameter of
-  * CLASS_DEVICE_CREATE() is pretty useless.
-  */
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(6,4,0)
-+#define CLASS_CREATE(owner, name) \
-+	class_create(owner, name)
-+#else
-+#define CLASS_CREATE(owner, name) \
-+	class_create(name)
-+#endif
- 
- #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
- #include <pcmcia/cs_types.h>
---- linux-gpib-kernel/drivers/gpib/sys/osinit.c	(revision 2052)
-+++ linux-gpib-kernel/drivers/gpib/sys/osinit.c	(revision 2053)
-@@ -207,7 +207,7 @@
- 		printk( "gpib: can't get major %d\n", GPIB_CODE );
- 		return -EIO;
- 	}
--	gpib_class = class_create(THIS_MODULE, "gpib_common");
-+	gpib_class = CLASS_CREATE(THIS_MODULE, "gpib_common");
- 	if(IS_ERR(gpib_class))
- 	{
- 		printk("gpib: failed to create gpib class\n");

diff --git a/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5-r3.ebuild b/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5-r3.ebuild
deleted file mode 100644
index 4306cc4b7fe7..000000000000
--- a/sci-libs/linux-gpib-modules/linux-gpib-modules-4.3.5-r3.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit linux-mod-r1
-
-DESCRIPTION="Kernel modules for GPIB (IEEE 488.2) hardware"
-HOMEPAGE="https://linux-gpib.sourceforge.io/"
-SRC_URI="https://downloads.sourceforge.net/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"
-	# https://sourceforge.net/p/linux-gpib/code/2053/
-	"${FILESDIR}/${PN}-4.3.4-kernel-6.4.patch"
-)
-
-MODULES_KERNEL_MIN=2.6.8
-
-src_unpack() {
-	default
-	unpack "${WORKDIR}/linux-gpib-${PV}/linux-gpib-kernel-${PV}.tar.gz"
-}
-
-src_configure() {
-	MODULES_MAKEARGS+=( LINUX_SRCDIR="${KV_OUT_DIR}" )
-	use debug && MODULES_MAKEARGS+=( 'GPIB-DEBUG=1' )
-}
-
-src_compile() {
-	# The individual modules don't have separate targets so we can't use
-	# modlist here.
-	emake "${MODULES_MAKEARGS[@]}"
-}
-
-src_install() {
-	emake \
-		"${MODULES_MAKEARGS[@]}" \
-		DESTDIR="${ED}" \
-		INSTALL_MOD_PATH="${ED}" \
-		docdir="${ED}/usr/share/doc/${PF}/html" \
-		install
-
-	modules_post_process
-
-	dodoc ChangeLog AUTHORS README* NEWS
-	einstalldocs
-}


             reply	other threads:[~2025-02-16 11:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-16 11:08 Andreas K. Hüttel [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-08-02 10:26 [gentoo-commits] repo/gentoo:master commit in: sci-libs/linux-gpib-modules/, sci-libs/linux-gpib-modules/files/ Andreas K. Hüttel
2020-05-09 11:02 Andreas K. Hüttel

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=1739704126.4ff05bebdf2bc770e37d139d2f378851367bf000.dilfridge@gentoo \
    --to=dilfridge@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