Gentoo Archives: gentoo-commits

From: "Andreas HAttel (dilfridge)" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/linux-gpib: ChangeLog linux-gpib-3.2.16-r1.ebuild linux-gpib-3.2.16.ebuild
Date: Wed, 30 Nov 2011 01:19:02
Message-Id: 20111130011847.54E252004B@flycatcher.gentoo.org
1 dilfridge 11/11/30 01:18:47
2
3 Modified: ChangeLog linux-gpib-3.2.16-r1.ebuild
4 Removed: linux-gpib-3.2.16.ebuild
5 Log:
6 Sanitize kernel version test
7
8 (Portage version: 2.1.10.39/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 sci-libs/linux-gpib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/linux-gpib/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/linux-gpib/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/linux-gpib/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-libs/linux-gpib/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 14 Aug 2011 11:22:30 -0000 1.3
24 +++ ChangeLog 30 Nov 2011 01:18:46 -0000 1.4
25 @@ -1,6 +1,10 @@
26 # ChangeLog for sci-libs/linux-gpib
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/linux-gpib/ChangeLog,v 1.3 2011/08/14 11:22:30 dilfridge Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/linux-gpib/ChangeLog,v 1.4 2011/11/30 01:18:46 dilfridge Exp $
30 +
31 + 30 Nov 2011; Andreas K. Huettel <dilfridge@g.o>
32 + -linux-gpib-3.2.16.ebuild, linux-gpib-3.2.16-r1.ebuild:
33 + Sanitize kernel version test
34
35 *linux-gpib-3.2.16-r1 (14 Aug 2011)
36
37
38
39
40 1.2 sci-libs/linux-gpib/linux-gpib-3.2.16-r1.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/linux-gpib/linux-gpib-3.2.16-r1.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/linux-gpib/linux-gpib-3.2.16-r1.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/linux-gpib/linux-gpib-3.2.16-r1.ebuild?r1=1.1&r2=1.2
45
46 Index: linux-gpib-3.2.16-r1.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/sci-libs/linux-gpib/linux-gpib-3.2.16-r1.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- linux-gpib-3.2.16-r1.ebuild 14 Aug 2011 11:22:30 -0000 1.1
53 +++ linux-gpib-3.2.16-r1.ebuild 30 Nov 2011 01:18:46 -0000 1.2
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2011 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/linux-gpib/linux-gpib-3.2.16-r1.ebuild,v 1.1 2011/08/14 11:22:30 dilfridge Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/linux-gpib/linux-gpib-3.2.16-r1.ebuild,v 1.2 2011/11/30 01:18:46 dilfridge Exp $
59
60 EAPI=4
61 PERL_EXPORT_PHASE_FUNCTIONS=no
62 @@ -41,13 +41,7 @@
63 perl-module_pkg_setup
64 linux-mod_pkg_setup
65
66 - case ${KV_MINOR} in
67 - 4) die "This version of Linux-GPIB requires a version 2.6.x of the Linux kernel. 2.4.x kernels are supported by Linux-GPIB versions 3.1.x." ;;
68 - 6) ;;
69 - *) die "Unsupported kernel version '${KV_FULL}'." ;;
70 - esac
71 -
72 - if [ ${KV_PATCH} -lt 8 ] ; then
73 + if kernel_is -lt 2 6 8 ; then
74 die "Kernel versions older than 2.6.8 are not supported."
75 fi
76 }