Gentoo Archives: gentoo-commits

From: "Matthias Schwarzott (zzam)" <zzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/udev: ChangeLog udev-137.ebuild udev-9999.ebuild
Date: Tue, 27 Jan 2009 10:42:19
Message-Id: E1LRlOZ-0002Ov-Th@stork.gentoo.org
1 zzam 09/01/27 10:42:15
2
3 Modified: ChangeLog udev-137.ebuild udev-9999.ebuild
4 Log:
5 Cleanup depends. Add missing depends for documentation processing of udev-9999. Fix kernel version check of udev-9999. Update rules patch for udev-137, move all rules in one file.
6 (Portage version: 2.1.6.7/cvs/Linux i686)
7
8 Revision Changes Path
9 1.445 sys-fs/udev/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/udev/ChangeLog?rev=1.445&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/udev/ChangeLog?rev=1.445&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/udev/ChangeLog?r1=1.444&r2=1.445
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-fs/udev/ChangeLog,v
18 retrieving revision 1.444
19 retrieving revision 1.445
20 diff -u -r1.444 -r1.445
21 --- ChangeLog 25 Jan 2009 19:55:53 -0000 1.444
22 +++ ChangeLog 27 Jan 2009 10:42:15 -0000 1.445
23 @@ -1,6 +1,12 @@
24 # ChangeLog for sys-fs/udev
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/ChangeLog,v 1.444 2009/01/25 19:55:53 zzam Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/ChangeLog,v 1.445 2009/01/27 10:42:15 zzam Exp $
28 +
29 + 27 Jan 2009; Matthias Schwarzott <zzam@g.o>
30 + files/udev-137-rules-update.diff, udev-137.ebuild, udev-9999.ebuild:
31 + Cleanup depends. Add missing depends for documentation processing of
32 + udev-9999. Fix kernel version check of udev-9999. Update rules patch for
33 + udev-137, move all rules in one file.
34
35 25 Jan 2009; Matthias Schwarzott <zzam@g.o> udev-137.ebuild:
36 Fix kernel version with which udev runs reliable. Also apply documentation
37
38
39
40 1.4 sys-fs/udev/udev-137.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/udev/udev-137.ebuild?rev=1.4&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/udev/udev-137.ebuild?rev=1.4&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/udev/udev-137.ebuild?r1=1.3&r2=1.4
45
46 Index: udev-137.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-137.ebuild,v
49 retrieving revision 1.3
50 retrieving revision 1.4
51 diff -u -r1.3 -r1.4
52 --- udev-137.ebuild 25 Jan 2009 19:55:53 -0000 1.3
53 +++ udev-137.ebuild 27 Jan 2009 10:42:15 -0000 1.4
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-137.ebuild,v 1.3 2009/01/25 19:55:53 zzam Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-137.ebuild,v 1.4 2009/01/27 10:42:15 zzam Exp $
59
60 inherit eutils flag-o-matic multilib toolchain-funcs versionator
61
62 @@ -19,11 +19,22 @@
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
64 IUSE="selinux"
65
66 -DEPEND="selinux? ( sys-libs/libselinux )"
67 -RDEPEND="!sys-apps/coldplug
68 - !<sys-fs/device-mapper-1.02.19-r1"
69 -RDEPEND="${DEPEND} ${RDEPEND}
70 +COMMON_DEPEND="selinux? ( sys-libs/libselinux )"
71 +
72 +if [[ ${PV} == "9999" ]]; then
73 + # for documentation processing with xsltproc
74 + DEPEND="${COMMON_DEPEND}
75 + app-text/docbook-xsl-stylesheets
76 + app-text/docbook-xml-dtd"
77 +else
78 + DEPEND="${COMMON_DEPEND}"
79 +fi
80 +
81 +RDEPEND="${COMMON_DEPEND}
82 + !sys-apps/coldplug
83 + !<sys-fs/device-mapper-1.02.19-r1
84 >=sys-apps/baselayout-1.12.5"
85 +
86 # We need the lib/rcscripts/addon support
87 PROVIDE="virtual/dev-manager"
88
89
90
91
92 1.6 sys-fs/udev/udev-9999.ebuild
93
94 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/udev/udev-9999.ebuild?rev=1.6&view=markup
95 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/udev/udev-9999.ebuild?rev=1.6&content-type=text/plain
96 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/udev/udev-9999.ebuild?r1=1.5&r2=1.6
97
98 Index: udev-9999.ebuild
99 ===================================================================
100 RCS file: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-9999.ebuild,v
101 retrieving revision 1.5
102 retrieving revision 1.6
103 diff -u -r1.5 -r1.6
104 --- udev-9999.ebuild 22 Jan 2009 11:18:06 -0000 1.5
105 +++ udev-9999.ebuild 27 Jan 2009 10:42:15 -0000 1.6
106 @@ -1,6 +1,6 @@
107 # Copyright 1999-2009 Gentoo Foundation
108 # Distributed under the terms of the GNU General Public License v2
109 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-9999.ebuild,v 1.5 2009/01/22 11:18:06 zzam Exp $
110 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-9999.ebuild,v 1.6 2009/01/27 10:42:15 zzam Exp $
111
112 inherit eutils flag-o-matic multilib toolchain-funcs versionator
113
114 @@ -19,11 +19,22 @@
115 KEYWORDS=""
116 IUSE="selinux"
117
118 -DEPEND="selinux? ( sys-libs/libselinux )"
119 -RDEPEND="!sys-apps/coldplug
120 - !<sys-fs/device-mapper-1.02.19-r1"
121 -RDEPEND="${DEPEND} ${RDEPEND}
122 +COMMON_DEPEND="selinux? ( sys-libs/libselinux )"
123 +
124 +if [[ ${PV} == "9999" ]]; then
125 + # for documentation processing with xsltproc
126 + DEPEND="${COMMON_DEPEND}
127 + app-text/docbook-xsl-stylesheets
128 + app-text/docbook-xml-dtd"
129 +else
130 + DEPEND="${COMMON_DEPEND}"
131 +fi
132 +
133 +RDEPEND="${COMMON_DEPEND}
134 + !sys-apps/coldplug
135 + !<sys-fs/device-mapper-1.02.19-r1
136 >=sys-apps/baselayout-1.12.5"
137 +
138 # We need the lib/rcscripts/addon support
139 PROVIDE="virtual/dev-manager"
140
141 @@ -38,7 +49,7 @@
142 local KV_MINOR=$(get_version_component_range 2 ${KV})
143 local KV_MICRO=$(get_version_component_range 3 ${KV})
144
145 - local KV_min_micro=15 KV_min_micro_reliable=20
146 + local KV_min_micro=15 KV_min_micro_reliable=22
147 KV_min=2.6.${KV_min_micro}
148 KV_min_reliable=2.6.${KV_min_micro_reliable}