1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
|
# ChangeLog for sys-fs/udev
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/ChangeLog,v 1.826 2013/02/09 19:20:49 ssuominen Exp $
09 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> -udev-197-r6.ebuild,
-udev-197-r7.ebuild:
old
09 Feb 2013; Agostino Sarubbo <ago@gentoo.org> udev-197-r4.ebuild:
Stable for ia64, wrt bug #452556
08 Feb 2013; Jeroen Roovers <jer@gentoo.org> udev-197-r4.ebuild:
Stable for HPPA (bug #452556).
08 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> udev-9999.ebuild:
Remove multiple targets that installed systemd files since libudev and
libgudev doesn't link against libsystemd-daemon anymore. Unfortunately
this will mean content of /usr/lib/systemd/system/sysinit.target.wants/
went away because the new target install-target-wants-hook would install
too much of unrelated systemd files.
Use --root switch for udevadm hwdb --update.
*udev-197-r8 (07 Feb 2013)
07 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> +udev-197-r8.ebuild:
Support updating hwdb from an offset ${ROOT}. Thanks to Luca Barbato
(lu_zero) for the patch, see:
http://bugs.freedesktop.org/show_bug.cgi?id=60398
http://github.com/lu-zero/eudev/commit/96da532526fec9bbfc9f53f2c5819520b971710c
07 Feb 2013; William Hubbs <williamh@gentoo.org> ChangeLog:
Require >=sys-libs/libselinux-2.1.9 for bug #455214.
This applies to udev-197-r4.ebuild, udev-197-r6.ebuild,
udev-197-r7.ebuild and udev-9999.ebuild.
*udev-197-r7 (07 Feb 2013)
07 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> +udev-197-r7.ebuild:
Backport accept4() patch from sys-fs/eudev (and =sys-fs/udev-171-r10) to set
KV_min back to 2.6.32. Despite that, you should be using at least 2.6.32.60
since some arch's gained accept4() support in 2.6.32 series there.
03 Feb 2013; Samuli Suominen <ssuominen@gentoo.org>
files/80-net-name-slot.rules:
Recommend copying the file from /lib/udev/rules.d/ to /etc/udev/rules.d/
instead of deleting this dummy file because stable udev's ebuild will always
put the file in place if it isn't there already.
03 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r6.ebuild,
udev-9999.ebuild:
Check for CONFIG_KALLSYMS=y wrt #447042 by "erhard.furtner"
02 Feb 2013; Fabian Groffen <grobian@gentoo.org> udev-171-r10.ebuild:
Drop ~x86-linux, bug #452708
*udev-197-r6 (01 Feb 2013)
01 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> +udev-197-r6.ebuild,
udev-9999.ebuild:
Trim 40-gentoo.rules in favour of upstream 50-udev-default.rules; and
write it using the ebuild.
01 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> -udev-197-r3.ebuild:
old
31 Jan 2013; Agostino Sarubbo <ago@gentoo.org> udev-197-r4.ebuild:
Stable for ppc, wrt bug #452556
31 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r4.ebuild,
udev-197-r5.ebuild, udev-9999.ebuild:
Backport kernel .config check from ebuild of 171; BLK_DEV_BSG, !IDE,
INOTIFY_USER, !SYSFS_DEPRECATED, !SYSFS_DEPRECATED_V2, and SIGNALFD
wrt #454614 by Alexandre Rostovtsev
29 Jan 2013; Agostino Sarubbo <ago@gentoo.org> udev-197-r4.ebuild:
Stable for x86, wrt bug #452556
29 Jan 2013; Agostino Sarubbo <ago@gentoo.org> udev-197-r4.ebuild:
Stable for amd64, wrt bug #452556
*udev-197-r5 (29 Jan 2013)
29 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r4.ebuild,
+udev-197-r5.ebuild:
Install 80-net-name-slot.rules if the file isn't there yet for stabilization
of -r4. This will make the new -r5 the old -r4.
29 Jan 2013; Samuli Suominen <ssuominen@gentoo.org>
files/80-net-name-slot.rules:
Update link to Tracker wrt #454452 by Ian Abbott
28 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild,
udev-197-r4.ebuild, udev-9999.ebuild:
Change KV_min to 3.3 for ia64 because accept4 support in the kernel came
late. Thanks to ryao for noticing.
28 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild,
udev-197-r4.ebuild, udev-9999.ebuild:
Change block <sys-fs/lvm2-2.02.45 to <sys-fs/lvm2-2.02.97-r1 because it's the
first compatible version with this version of udev.
27 Jan 2013; Agostino Sarubbo <ago@gentoo.org> udev-197-r3.ebuild:
Stable for ppc, wrt bug #452556
27 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild,
udev-197-r4.ebuild, udev-9999.ebuild:
Block old version of selinux-base because it's not compatible with
>=sys-fs/udev-197 wrt #451128 by Hinnerk van Bruinehsen
27 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild,
udev-197-r4.ebuild, udev-9999.ebuild:
Since libudev.so.0 was in /usr for a while; adjust the preserve_old_lib
command by Zero_Chaos
24 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r4.ebuild,
udev-9999.ebuild:
Set the net_rules variable outside of the copy_net_rules() function for later
use in the postinst phase.
24 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r4.ebuild,
udev-9999.ebuild:
Disable the new predictable network interface name scheme if
sys-apps/biosdevname is installed.
23 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild,
udev-197-r4.ebuild, udev-9999.ebuild:
Move a file install to pkg_postinst() from pkg_preinst() to use $ROOT
instead of $FILESDIR for binpkg support wrt #453726 by Fabio Erculiani
23 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild,
udev-197-r4.ebuild, udev-9999.ebuild:
Post install message about changed network interface renaming wrt #453494
21 Jan 2013; Mike Gilbert <floppym@gentoo.org> udev-197-r3.ebuild,
udev-197-r4.ebuild, udev-9999.ebuild:
Another tweak for the fstab check.
21 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild,
udev-197-r4.ebuild, udev-9999.ebuild:
Warn users only if fstype of /dev in /etc/fstab is not devtmpfs by WilliamH
21 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild,
udev-197-r4.ebuild, udev-9999.ebuild:
Raise udev-init-scripts dependency to 19-r1 to avoid launching the symlink to
udevd.
21 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild,
udev-197-r4.ebuild, udev-9999.ebuild:
Warn users if they are mounting /dev from /etc/fstab wrt #453186 by "wbrana"
21 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> -udev-171-r9.ebuild,
-udev-196-r1.ebuild:
old
21 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-171-r10.ebuild:
Stabilize for everyone because of one patch; restore support for 2.6.31.
20 Jan 2013; Agostino Sarubbo <ago@gentoo.org> udev-197-r3.ebuild:
Stable for x86, wrt bug #452556
20 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r4.ebuild,
udev-9999.ebuild:
Optionalize dev-util/gperf dependency behind USE="keymap" wrt #452760 by Mike
Frysinger
19 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild,
udev-197-r4.ebuild, udev-9999.ebuild:
Install mans related to libsystemd-daemon wrt #452892 by Mike Gilbert. Block
<sys-apps/systemd-${PV}.
19 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild,
udev-197-r4.ebuild, udev-9999.ebuild:
Update PDEPEND of virtual/udev to 197.
19 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild:
amd64 stable wrt #452556
19 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> -udev-197-r2.ebuild:
old
*udev-197-r4 (19 Jan 2013)
19 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild,
+udev-197-r4.ebuild, udev-9999.ebuild:
Move /lib/systemd/udevd to /sbin/udevd. Remove empty directory /lib/systemd.
Symlink /sbin/udevd to /usr/lib/systemd/systemd-udevd. Point systemd .service
files to /usr/lib/systemd/systemd-udevd. Closing bug #408891.
Fix installation of sd-daemon.h include for libsystemd-daemon wrt #452892
by Marien Zwart and Mike Gilbert.
18 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild,
udev-9999.ebuild:
Pass --disable-silent-rules wrt #429886 by Julian Ospald
17 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> +udev-196-r1.ebuild:
Put 196-r1 back in tree for sys-apps/systemd. If you don't use systemd, you
shouldn't be emerging this package because it has wrong udevdir= in udev.pc.
17 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild,
udev-9999.ebuild:
Remove one more use of secure_getenv() from src/shared/missing.h when
required.
17 Jan 2013; William Hubbs <williamh@gentoo.org> udev-197-r2.ebuild,
udev-197-r3.ebuild, udev-9999.ebuild:
adjust gtk-doc dependency for bug #452668
17 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r3.ebuild,
udev-9999.ebuild:
Restore support for uClibc head by disabling usage of secure_getenv() in
logs. Use maintainer safe kludge when building from git to avoid missing
other uses. Thanks to Mike Frysinger in bug #443030, Comment #5.
Fix building without dev-util/intltool and sys-devel/gettext wrt #443028,
Comment #3 by Mike Frysinger.
17 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-171-r10.ebuild:
Change KV_min and KV_reliable from 2.6.32 to 2.6.31 because it was
backported from sys-fs/eudev, see http://github.com/gentoo/eudev/issues/7
17 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> -udev-141-r1.ebuild,
-udev-146-r1.ebuild, -udev-149.ebuild, -udev-151-r4.ebuild,
-udev-164-r2.ebuild, -udev-196-r1.ebuild, metadata.xml:
old; if you need support for older kernels use sys-fs/eudev or
local overlay:
http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/sys-fs/udev/?hideattic=0
17 Jan 2013; William Hubbs <williamh@gentoo.org> udev-197-r2.ebuild,
udev-197-r3.ebuild, udev-9999.ebuild:
make separate /usr warning message more verbose. Udev will not always fail
without an initramfs, but the failures you get will be difficult to
troubleshoot.
*udev-197-r3 (16 Jan 2013)
16 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> udev-197-r2.ebuild,
+udev-197-r3.ebuild, udev-9999.ebuild:
Edit -r2 to install 80-net-name-slot.rules if the file isn't there yet; this
is for stable. This will make current -r2 as -r3 with a safe kludge to avoid
overwriting the file; this is for ~arch.
15 Jan 2013; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
sync live ebuild
15 Jan 2013; William Hubbs <williamh@gentoo.org> udev-197-r2.ebuild:
add toolchain-funcs to inherit call since we use gcc-version
15 Jan 2013; William Hubbs <williamh@gentoo.org> udev-197-r2.ebuild:
Allow udev to compile correctly with gcc 4.5 and >=glibc-2.16 for bug #451110,
thanks to vapier.
14 Jan 2013; William Hubbs <williamh@gentoo.org> udev-197-r2.ebuild:
update the emerge procedure for udev consumers to use qfile. Thanks to Paul
Varner for explaining why this is the better option.
14 Jan 2013; William Hubbs <williamh@gentoo.org> udev-197-r2.ebuild:
Add an example of the command needed to re-emerge packages with files in
/usr/lib/udev for bug #451266.
13 Jan 2013; William Hubbs <williamh@gentoo.org> udev-197-r2.ebuild,
udev-9999.ebuild:
Fix udev-init-scripts dependencies per poly-c and move udevadm to /bin. If
someone wants a revbump I will do so.
13 Jan 2013; William Hubbs <williamh@gentoo.org> -udev-197-r1.ebuild:
remove old version
12 Jan 2013; William Hubbs <williamh@gentoo.org> udev-197-r2.ebuild,
udev-9999.ebuild:
add -j1 to the make install phase for bug #451500
*udev-197-r2 (12 Jan 2013)
12 Jan 2013; William Hubbs <williamh@gentoo.org> +udev-197-r2.ebuild,
udev-9999.ebuild:
This is the last of the revisions to move everything back to / and fix
rootlibdir, thanks to Dave Reisner on the #systemd irc channel for his
assistance.
11 Jan 2013; William Hubbs <williamh@gentoo.org> -udev-195.ebuild,
-udev-197.ebuild:
remove old versions
*udev-197-r1 (11 Jan 2013)
11 Jan 2013; William Hubbs <williamh@gentoo.org> +udev-197-r1.ebuild,
udev-9999.ebuild:
use systemd eclass for bug #451152, thanks to Mike Gilbert for the patch.
09 Jan 2013; William Hubbs <williamh@gentoo.org> udev-197.ebuild,
udev-9999.ebuild:
I was told that the fix I mentioned in the previous commit is incorrect
because systemd already generates the man pages in their tarball.
*udev-197 (09 Jan 2013)
09 Jan 2013; William Hubbs <williamh@gentoo.org>
+files/80-net-name-slot.rules, +udev-197.ebuild, udev-9999.ebuild:
version bump and fix #446702
*udev-171-r10 (18 Dec 2012)
18 Dec 2012; Richard Yao <ryao@gentoo.org> +udev-171-r10.ebuild:
Backport accept4 fallback path from eudev-1_beta1, approved by WilliamH and
ssuominen
02 Dec 2012; Samuli Suominen <ssuominen@gentoo.org> -udev-196.ebuild:
old
*udev-196-r1 (02 Dec 2012)
02 Dec 2012; Samuli Suominen <ssuominen@gentoo.org> +udev-196-r1.ebuild,
udev-9999.ebuild:
USE="hwdb" will now pull in sys-apps/hwids with USE="udev" enabled to gain
pci.ids, usb.ids and oui.txt to generate /etc/udev/udev.bin from.
Run udevadm hwdb --update too. Thanks to Flameeyes for co-operating with
this one.
*udev-196 (02 Dec 2012)
02 Dec 2012; Samuli Suominen <ssuominen@gentoo.org> +udev-196.ebuild,
udev-9999.ebuild:
Version bump.
01 Dec 2012; William Hubbs <williamh@gentoo.org> -udev-189.ebuild,
-udev-190.ebuild, -udev-191.ebuild, -udev-192.ebuild, -udev-193.ebuild,
-udev-194.ebuild:
after speaking with the systemd maintainer, older versions of udev are being
removed.
01 Dec 2012; William Hubbs <williamh@gentoo.org> +udev-189.ebuild,
+udev-190.ebuild, +udev-191.ebuild, +udev-192.ebuild, +udev-193.ebuild,
+udev-194.ebuild:
restore old versions so we do not break systemd
01 Dec 2012; William Hubbs <williamh@gentoo.org> -udev-189.ebuild,
-udev-190.ebuild, -udev-191.ebuild, -udev-192.ebuild, -udev-193.ebuild,
-udev-194.ebuild:
remove old versions
24 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> -udev-171-r8.ebuild:
old
24 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> udev-146-r1.ebuild,
udev-149.ebuild, udev-151-r4.ebuild, udev-164-r2.ebuild:
Reset keywording back to ~arch since these can't be considered stable
anymore. Use at your own risk.
24 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> udev-171-r9.ebuild:
alpha/ia64/m68k/s390/sh/sparc stable wrt #443592
20 Nov 2012; Anthony G. Basile <blueness@gentoo.org> udev-171-r9.ebuild:
stable arm ppc ppc64, bug #443592
20 Nov 2012; Jeroen Roovers <jer@gentoo.org> udev-171-r9.ebuild:
Stable for HPPA (bug #443592).
19 Nov 2012; Agostino Sarubbo <ago@gentoo.org> udev-171-r9.ebuild:
stable for x86, wrt to bug #443592
18 Nov 2012; <ago@gentoo.org> udev-171-r9.ebuild:
Stable for amd64, wrt bug #443592
*udev-171-r9 (16 Nov 2012)
16 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> +udev-171-r9.ebuild:
Backport upstream patch to skip ATA transport class devices for compability
with recent kernels wrt #437418 by "sf"
01 Nov 2012; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
sync live ebuild md5 for default rules with 195.
01 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> udev-195.ebuild,
udev-9999.ebuild:
Use REPLACING_VERSIONS to print out upgrade related messaging only when
required wrt #440462 by "poletti.marco"
01 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> udev-171-r8.ebuild:
Update HOMEPAGE and SRC_URI from latest stable wrt #440408
*udev-195 (26 Oct 2012)
26 Oct 2012; William Hubbs <williamh@gentoo.org> +udev-195.ebuild:
version bump
*udev-171-r8 (20 Oct 2012)
20 Oct 2012; William Hubbs <williamh@gentoo.org> +udev-171-r8.ebuild:
Another part of the fix for #438932.
Now we require both udev-mount and udev to be added to the sysinit
runlevel.
*udev-171-r7 (20 Oct 2012)
20 Oct 2012; William Hubbs <williamh@gentoo.org> +udev-171-r7.ebuild:
This is a hot fix for stable udev for bug #438932.
The only change is that udev-mount has "provide dev-mount" added to
the depend function. This is going directly to stable with the approval
of robbat2 and chainsaw.
15 Oct 2012; Zac Medico <zmedico@gentoo.org> udev-194.ebuild,
udev-9999.ebuild:
Set QA_MULTILIB_PATHS for bug #424423.
*udev-194 (04 Oct 2012)
04 Oct 2012; William Hubbs <williamh@gentoo.org> +udev-194.ebuild,
udev-9999.ebuild:
version bump and sync live ebuild.
01 Oct 2012; Diego E. Pettenò <flameeyes@gentoo.org> udev-193.ebuild:
Fix typo.
*udev-193 (30 Sep 2012)
30 Sep 2012; William Hubbs <williamh@gentoo.org> +udev-193.ebuild:
version bump
*udev-192 (26 Sep 2012)
26 Sep 2012; William Hubbs <williamh@gentoo.org> +udev-192.ebuild:
version bump
*udev-191 (22 Sep 2012)
22 Sep 2012; William Hubbs <williamh@gentoo.org> +udev-191.ebuild:
version bump
*udev-190 (21 Sep 2012)
21 Sep 2012; William Hubbs <williamh@gentoo.org> +udev-190.ebuild:
version bump
11 Sep 2012; William Hubbs <williamh@gentoo.org> udev-164-r2.ebuild,
udev-171-r6.ebuild, udev-189.ebuild, udev-9999.ebuild:
According to armin76, udev works fine on sh with glibc-2.11. To keep things
simple, I am adjusting the block to allow glibc-2.11 on all archs.
10 Sep 2012; William Hubbs <williamh@gentoo.org> udev-189.ebuild,
udev-9999.ebuild:
Add more information on persistent net rules and clean up ewarns. this closes
#433746 and #434626. Thanks to James Le Cuirot and Pacho Ramos.
10 Sep 2012; William Hubbs <williamh@gentoo.org> udev-189.ebuild,
udev-9999.ebuild:
Fix location for preserved library for #434632, thanks to Pacho Ramos.
10 Sep 2012; William Hubbs <williamh@gentoo.org> -udev-188.ebuild:
remove old version
*udev-189 (24 Aug 2012)
24 Aug 2012; William Hubbs <williamh@gentoo.org> +udev-189.ebuild:
version bump
24 Aug 2012; William Hubbs <williamh@gentoo.org> -udev-187-r1.ebuild,
-udev-187-r3.ebuild:
remove old versions
15 Aug 2012; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
sync live ebuild
*udev-188 (15 Aug 2012)
15 Aug 2012; William Hubbs <williamh@gentoo.org> +udev-188.ebuild:
version bump
13 Aug 2012; Samuli Suominen <ssuominen@gentoo.org> udev-187-r3.ebuild,
udev-9999.ebuild:
Rename reserved check_KV function to udev_check_KV wrt #430562 by "zym"
11 Aug 2012; Samuli Suominen <ssuominen@gentoo.org> udev-164-r2.ebuild,
udev-171-r6.ebuild, udev-187-r1.ebuild, udev-187-r3.ebuild, udev-9999.ebuild:
Update sys-libs/glibc block from <2.9 to <2.12 wrt #388075 by Tiago Marques
11 Aug 2012; Michał Górny <mgorny@gentoo.org> udev-187-r3.ebuild:
Block older versions of systemd hoping for a sane migration.
*udev-187-r3 (08 Aug 2012)
08 Aug 2012; William Hubbs <williamh@gentoo.org> +udev-187-r3.ebuild,
udev-9999.ebuild:
rev bump to put /lib/udev back in /usr/lib/udev as well as add a second
compatibility patch so we can run helpers in /lib/udev.
Thanks to Egor Egorov for the patch.
I also spoke with the other udev maintainer (Samuli), and he agrees that
we should be using /usr/lib and allowing packages to put things in /lib
for now.
This is for bug #430412.
08 Aug 2012; Justin Lecher <jlec@gentoo.org> udev-187-r1.ebuild,
udev-187-r2.ebuild, udev-9999.ebuild:
Fix typo
08 Aug 2012; Alexandre Rostovtsev <tetromino@gentoo.org> udev-187-r1.ebuild,
udev-187-r2.ebuild, udev-9999.ebuild:
Update gobject-introspection dependency
*udev-187-r2 (07 Aug 2012)
07 Aug 2012; William Hubbs <williamh@gentoo.org> +udev-187-r2.ebuild,
udev-9999.ebuild:
rev bump to move everything back to /lib/udev from /usr/lib/udev.
Also sync live ebuild.
04 Aug 2012; William Hubbs <williamh@gentoo.org> udev-187-r1.ebuild,
udev-9999.ebuild:
fix if statements
03 Aug 2012; William Hubbs <williamh@gentoo.org> udev-187-r1.ebuild,
udev-9999.ebuild:
Add a warning for bug #429466 wrt the /lib/udev->/usr/lib/udev migration.
*udev-187-r1 (03 Aug 2012)
03 Aug 2012; William Hubbs <williamh@gentoo.org> +udev-187-r1.ebuild,
udev-9999.ebuild:
Fix the firmware path to search in /usr/lib then /lib. Also sync the
live ebuild.
01 Aug 2012; William Hubbs <williamh@gentoo.org> udev-187.ebuild,
udev-9999.ebuild:
fix calls to preserve_old_lib and preserve_old_lib_notify
*udev-187 (01 Aug 2012)
01 Aug 2012; William Hubbs <williamh@gentoo.org> +udev-187.ebuild,
udev-9999.ebuild:
version bump and sync live ebuild
31 Jul 2012; Samuli Suominen <ssuominen@gentoo.org>
-files/move_tmp_persistent_rules-112-r1.sh, -files/136/udev.confd,
-files/147/udev.confd, -files/write_root_link_rule-125,
-files/136/udev.initd, -files/147/udev.initd, -files/net-130-r1.sh,
-files/136/shell-compat-KV.sh, -files/136/udev-dev-tarball.initd,
-files/147/udev-mount.initd, -files/udev-141-remove-devfs-names.diff,
-files/136/udev-mount.initd, -files/147/udev-postmount.initd,
-files/blacklist-146, -files/136/udev-postmount.initd,
-files/147/udev-start.sh, -files/udev-150-fix-missing-firmware-timeout.diff,
-files/136/shell-compat-addon.sh, -files/136/udev-start.sh,
-files/147/udev-stop.sh, -files/udev-151-readd-hd-rules.diff,
-files/136/udev-stop.sh, -files/151-r4/shell-compat-KV.sh,
-files/udev-164-remove-v4l1.patch, -files/147/shell-compat-KV.sh,
-files/147/shell-compat-addon.sh, -files/147/udev-dev-tarball.initd,
-files/151-r4/shell-compat-addon.sh, -files/151-r4/udev.confd,
-files/151-r4/udev-dev-tarball.initd, udev-146-r1.ebuild,
-files/151-r4/udev-mount.initd, udev-151-r4.ebuild, -files/151-r4/udev.initd,
-files/151-r4/udev-postmount.initd, -files/151-r4/udev-start.sh,
udev-149.ebuild, udev-164-r2.ebuild, -files/151-r4/udev-stop.sh,
udev-141-r1.ebuild, udev-171-r6.ebuild, -files/pnp-aliases,
-files/shell-compat-KV.sh:
Tarball rest of the legacy files to mirrors.
30 Jul 2012; Samuli Suominen <ssuominen@gentoo.org> -files/blacklist-110,
udev-141-r1.ebuild:
udev-141-r1 can use blacklist-146 instead of blacklist-110 (because the only
difference is in commented out example for usblp)
30 Jul 2012; Samuli Suominen <ssuominen@gentoo.org> udev-171-r6.ebuild,
metadata.xml:
Move inherit around in -171-r6.ebuild and remove unused USE="acl" from
metadata.xml to silence repoman.
30 Jul 2012; Samuli Suominen <ssuominen@gentoo.org> -files/net-104-r10.sh,
-files/156/udev.confd, -files/udev-110-root-link-1.diff,
-files/156/udev.initd, -files/udev-postmount-initd-111-r2,
-files/156/udev-postmount.initd, -files/udev-stop-111-r2.sh,
-files/156/udev-start.sh, -files/udev-start-113-r2.sh,
-files/156/40-gentoo.rules, -files/156/udev-stop.sh,
-files/udev-start-114-r1.sh, -files/161/40-gentoo.rules,
-files/udev-114-root-link-2.diff, -files/161/90-network.rules,
-files/modprobe-114.sh, -files/161/shell-compat-KV.sh,
-files/modprobe-115.sh, -files/161/shell-compat-addon.sh,
-files/net-118-r1.sh, -files/161/udev.confd, -files/shell-compat-118-r2.sh,
-files/161/udev.initd, -files/udev-start-118-r2.sh,
-files/161/udev-dev-tarball.initd, -files/udev-stop-118-r2.sh,
-files/161/udev-mount.initd, -files/shell-compat-118-r3.sh,
-files/156/90-network.rules, -files/161/udev-postmount.initd,
-files/udev-start-122-r1.sh, -files/161/udev-start.sh,
-files/udev-122-rules-update.diff, -files/161/udev-stop.sh,
-files/udev-124-cdrom-autoclose-bug.diff, -files/156/shell-compat-KV.sh,
-files/164/40-gentoo.rules, -files/udev-124-encoding-overflow.patch,
-files/156/shell-compat-addon.sh, -files/164/90-network.rules,
-files/udev-124-netlink-owner-check.patch, -files/156/udev-dev-tarball.initd,
-files/164/shell-compat-KV.sh,
-files/udev-167-revert-disable-all-extras.patch, -files/156/udev-mount.initd,
-files/164/shell-compat-addon.sh, -files/udev-175-zlib.patch,
-files/164/udev.confd, -files/164/udev-dev-tarball.initd,
-udev-124-r1.ebuild, -files/164/udev.initd, -files/164/udev-mount.initd,
-udev-124-r2.ebuild, -files/164/udev-postmount.initd, -udev-114.ebuild,
-udev-141.ebuild, -files/164/udev-start.sh, -udev-115-r1.ebuild,
-udev-182-r2.ebuild, -files/164/udev-stop.sh, -udev-119.ebuild,
-udev-182-r3.ebuild, -files/udev.conf.post_113, -files/udev.conf.post_114,
-files/udev.confd, -files/udev.initd, -files/write_root_link_rule,
-udev-171-r5.ebuild:
old
30 Jul 2012; Mike Frysinger <vapier@gentoo.org> udev-186.ebuild:
Add m68k/s390 keywords #397769 by William Hubbs.
29 Jul 2012; William Hubbs <williamh@gentoo.org> udev-186.ebuild:
Fix the build when a cross emerge is used, thanks to Nick Bowler for the
patch. This closes bug #427142.
22 Jul 2012; Raúl Porcel <armin76@gentoo.org> udev-182-r2.ebuild,
udev-182-r3.ebuild, udev-186.ebuild:
Add ~alpha/~sh/~sparc wrt #397769
15 Jul 2012; Raúl Porcel <armin76@gentoo.org> udev-171-r6.ebuild:
alpha/ia64/m68k/s390/sh/sparc stable wrt #416653
05 Jul 2012; William Hubbs <williamh@gentoo.org> udev-186.ebuild:
add back dependencies that were unintentionally removed for bug #424874,
thanks to Nikoli.
*udev-186 (04 Jul 2012)
04 Jul 2012; William Hubbs <williamh@gentoo.org> +udev-186.ebuild:
version bump. I would like to thank Jonathan Callen for his assistance
with this ebuild.
03 Jul 2012; Jeroen Roovers <jer@gentoo.org> udev-171-r6.ebuild:
Stable for HPPA (bug #416653).
28 May 2012; Markus Meier <maekke@gentoo.org> udev-171-r6.ebuild:
arm stable, bug #416653
22 May 2012; Jeff Horelick <jdhore@gentoo.org> udev-171-r6.ebuild:
marked x86 per bug 416653
20 May 2012; Samuli Suominen <ssuominen@gentoo.org> udev-171-r6.ebuild:
ppc/ppc64 stable wrt #416653
20 May 2012; Agostino Sarubbo <ago@gentoo.org> udev-171-r6.ebuild:
Stable for amd64, wrt bug #416653
*udev-171-r6 (17 May 2012)
17 May 2012; Samuli Suominen <ssuominen@gentoo.org> +udev-171-r6.ebuild:
Remove USE="acl" and from USE="extras" since the functionality is moved to
>=sys-auth/consolekit-0.4.5_p20120320[acl].
16 May 2012; Samuli Suominen <ssuominen@gentoo.org> udev-146-r1.ebuild,
udev-149.ebuild, udev-151-r4.ebuild:
Apply udev-164-remove-v4l1.patch to every old sys-fs/udev ebuild with
USE="extras" wrt #413055 by Andreis_Vinogradovs
04 May 2012; Jeff Horelick <jdhore@gentoo.org> udev-149.ebuild,
udev-151-r4.ebuild, udev-164-r2.ebuild, udev-171-r5.ebuild,
udev-182-r2.ebuild, udev-182-r3.ebuild, udev-9999.ebuild:
dev-util/pkgconfig -> virtual/pkgconfig
23 Apr 2012; Mike Frysinger <vapier@gentoo.org> udev-146-r1.ebuild,
udev-149.ebuild, udev-151-r4.ebuild, udev-164-r2.ebuild, udev-171-r5.ebuild,
udev-182-r2.ebuild, udev-182-r3.ebuild, udev-9999.ebuild:
Do not depend on glibc -- block older versions only.
21 Apr 2012; Mike Frysinger <vapier@gentoo.org> udev-182-r3.ebuild:
Restore ~arch keywords #410401.
12 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> udev-171-r5.ebuild:
Try to support sys-apps/hwids also in 171-r5 for people who have temporarily
masked >= 180 wrt #411737 by Martin von Gagern
08 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> udev-9999.ebuild:
Use sys-apps/hwids for -9999 too. See commit 01 Apr 2012 to udev-182-r3.
02 Apr 2012; Jeroen Roovers <jer@gentoo.org> udev-182-r3.ebuild:
Marked ~hppa (bug #410401).
*udev-182-r3 (01 Apr 2012)
01 Apr 2012; Diego E. Pettenò <flameeyes@gentoo.org> +udev-182-r3.ebuild:
Make use of the new hwids ebuild.
28 Mar 2012; Zac Medico <zmedico@gentoo.org> udev-182-r2.ebuild,
udev-9999.ebuild:
Block <udev-init-scripts-10 due to file collision with
/lib/udev/rules.d/40-gentoo.rules. Please ignore repoman dependency.unknown
warnings about the blocker which are produced by stable portage. The warnings
are disabled in latest protage (see bug #382407).
24 Mar 2012; William Hubbs <williamh@gentoo.org> -udev-182-r1.ebuild,
-udev-182.ebuild, udev-182-r2.ebuild, udev-9999.ebuild:
remove broken versions and sync live ebuild with latest udev 182 release
*udev-182-r2 (24 Mar 2012)
24 Mar 2012; William Hubbs <williamh@gentoo.org> +udev-182-r2.ebuild:
revision bump for bug #409487
*udev-182-r1 (23 Mar 2012)
23 Mar 2012; William Hubbs <williamh@gentoo.org> +udev-182-r1.ebuild:
revision bump for bug #409359
23 Mar 2012; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
Remove warnings about devfs-compatible rules from the live ebuild
23 Mar 2012; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
Remove some cruft from the live ebuild: The fix_old_persistent_net_rules
function has been there since 2008 and is not documented. This code fixed an
issue with very old persistent net rules which should be taken care of by now
since we have had several stable udev versions with this fix. The ebuild
should not touch things in ${ROOT}/lib/udev/devices; remove the code that does
this. Remove the code that removes ${ROOT}/etc/dev.d.
22 Mar 2012; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
re-order the econf options to match udev help.
22 Mar 2012; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
quoting fixes, make all tests use [[ and use $D for $ED since we are not on
prefix
22 Mar 2012; William Hubbs <williamh@gentoo.org> udev-182.ebuild,
udev-9999.ebuild:
repoman fix -- drop the blocker for <sys-fs/udev-init-scripts-10 since that is
no longer in the tree
22 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> udev-182.ebuild,
udev-9999.ebuild:
Move gtk-doc documentation to /usr/share/doc/${PF}/html with symlink(s) back
to /usr/share/gtk-doc/html wrt #312373
21 Mar 2012; Zac Medico <zmedico@gentoo.org> udev-182.ebuild,
udev-9999.ebuild:
Block <udev-init-scripts-10 due to file collision with
/lib/udev/rules.d/40-gentoo.rules.
20 Mar 2012; William Hubbs <williamh@gentoo.org> -udev-181.ebuild:
remove old version
20 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> udev-182.ebuild,
udev-9999.ebuild:
Support for USE="edd" functionality was removed by upstream, see NEWS:
/dev/disk/by-path/ links are no longer created for ATA devices behind
an 'ATA transport class', the logic to extract predictable numbers does
not exist in the kernel at this moment.
/dev/disk/by-id/scsi-* compatibility links are no longer created for
ATA devices, they have their own ata-* prefix.
20 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> udev-182.ebuild,
udev-9999.ebuild:
Fix path to README.keymap.txt wrt #408939 by "candrews"
20 Mar 2012; William Hubbs <williamh@gentoo.org> udev-182.ebuild,
udev-9999.ebuild:
Fix location of default rules file for bug #408937
*udev-182 (19 Mar 2012)
19 Mar 2012; William Hubbs <williamh@gentoo.org> +udev-182.ebuild,
udev-181.ebuild, udev-9999.ebuild:
version bump, also closes bug #398049 and bug #408379
19 Mar 2012; William Hubbs <williamh@gentoo.org> +files/40-gentoo.rules,
metadata.xml, udev-9999.ebuild:
Add 40-gentoo.rules and the openrc use flag for bug #408379.
19 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> udev-181.ebuild,
udev-9999.ebuild:
Remove sys-apps/baselayout depend from here in favour of letting
sys-fs/udev-init-scripts handle it.
19 Mar 2012; William Hubbs <williamh@gentoo.org> udev-181.ebuild,
udev-9999.ebuild:
Revert making the CONFIG_DEVTMPFS check fatal. Checking for kernel config
options cannot be fatal because it breaks build hosts. See
https://bugs.gentoo.org/show_bug.cgi?id=103878#c29.
19 Mar 2012; William Hubbs <williamh@gentoo.org> udev-181.ebuild,
udev-9999.ebuild:
make check for CONFIG_DEVTMPFS critical. If this is not set, udev will not
run.
17 Mar 2012; Matt Turner <mattst88@gentoo.org> udev-181.ebuild:
Added ~mips, bug 397769.
15 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> udev-171-r5.ebuild,
udev-181.ebuild, udev-9999.ebuild:
Use correct HOMEPAGE wrt #402671 by Franz Siegfried Metz and Bruce Hill
15 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> udev-171-r5.ebuild,
udev-181.ebuild, udev-9999.ebuild:
Raise baselayout depend to >= 2 wrt #407849 by Michael Hill
15 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> udev-181.ebuild,
udev-9999.ebuild:
Remove use_enable for hwdb which isn't available and use correct bash syntax
for += wrt #408287. Quote the result of $(systemd_with_unitdir). Remove
useless libtool files in favour of pkg-config files.
15 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> udev-171-r5.ebuild,
udev-181.ebuild, udev-9999.ebuild:
Stop forcing USE="-zlib" for sys-apps/pciutils as part of bug #360849
11 Mar 2012; William Hubbs <williamh@gentoo.org> udev-181.ebuild,
udev-9999.ebuild:
move CONFIG_CHECK variable into pkg_setup, thanks to anarchy@gentoo.org.
11 Mar 2012; William Hubbs <williamh@gentoo.org> udev-181.ebuild,
udev-9999.ebuild:
Add rdepends for dracut, genkernel and openrc so that separate /usr works
correctly.
08 Mar 2012; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
live ebuild updates: remove acl support and remove support for arch-specific
rules since they have been removed upstream.
25 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> udev-171-r5.ebuild:
ppc64 stable wrt #399717
19 Feb 2012; William Hubbs <williamh@gentoo.org> udev-181.ebuild,
udev-9999.ebuild:
update kmod dependencies to >=kmod-5
19 Feb 2012; William Hubbs <williamh@gentoo.org> -udev-175-r1.ebuild,
-udev-180.ebuild:
remove old masked versions
12 Feb 2012; Jeff Horelick <jdhore@gentoo.org> udev-171-r5.ebuild:
x86 stable per bug 399717
08 Feb 2012; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
sync live ebuild
*udev-181 (08 Feb 2012)
08 Feb 2012; William Hubbs <williamh@gentoo.org> +udev-181.ebuild:
version bump
07 Feb 2012; Jeroen Roovers <jer@gentoo.org> udev-171-r5.ebuild:
Stable for HPPA (bug #399717).
05 Feb 2012; William Hubbs <williamh@gentoo.org> udev-180.ebuild:
udev-180 only builds with kmod-4
05 Feb 2012; Markus Meier <maekke@gentoo.org> udev-171-r5.ebuild:
arm stable, bug #399717
04 Feb 2012; William Hubbs <williamh@gentoo.org> udev-180.ebuild,
udev-9999.ebuild:
add sys-apps/kmod to the dependencies for bug #402175
*udev-180 (03 Feb 2012)
03 Feb 2012; William Hubbs <williamh@gentoo.org> +udev-180.ebuild,
udev-9999.ebuild:
udev 180 version bump. This version uses the split udev-init-scripts package
for bug #396181.
01 Feb 2012; Brent Baude <ranger@gentoo.org> udev-171-r5.ebuild:
Marking udev-171-r5 ppc for bug 399717
25 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> udev-146-r1.ebuild,
udev-149.ebuild, udev-151-r4.ebuild, udev-164-r2.ebuild:
Remove deprecated warning for HAL wrt #396015
23 Jan 2012; Agostino Sarubbo <ago@gentoo.org> udev-171-r5.ebuild:
Stable for amd64, wrt bug #399717
12 Jan 2012; William Hubbs <williamh@gentoo.org> files/udev-175-zlib.patch:
add back original patch for #397953.
04 Jan 2012; William Hubbs <williamh@gentoo.org> -files/udev-175-zlib.patch,
udev-175-r1.ebuild:
remove fix for bug #360849. This was rejected upstream; see the bug for more
information.
03 Jan 2012; William Hubbs <williamh@gentoo.org> udev-141-r1.ebuild,
udev-141.ebuild, udev-146-r1.ebuild, udev-149.ebuild, udev-151-r4.ebuild,
udev-164-r2.ebuild:
complete migration from git to git-2 e eclass.
02 Jan 2012; Mike Frysinger <vapier@gentoo.org> udev-175-r1.ebuild,
+files/udev-175-zlib.patch:
Support reading of compressed pci/usb databases #360849 by Samuli Suominen.
01 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> +ChangeLog-2009:
Split ChangeLog.
30 Dec 2011; William Hubbs <williamh@gentoo.org> -udev-171-r4.ebuild:
remove old version
*udev-171-r5 (29 Dec 2011)
29 Dec 2011; William Hubbs <williamh@gentoo.org> udev-141.ebuild,
udev-141-r1.ebuild, udev-146-r1.ebuild, udev-149.ebuild, udev-151-r4.ebuild,
udev-164-r2.ebuild, +udev-171-r5.ebuild, udev-175-r1.ebuild,
udev-9999.ebuild:
add -vserver and -lxc keywords to udev-mount and udev-postmount, fix a typo
in udev script and several repoman fixes.
25 Dec 2011; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
udev now needs >=sys-apps/util-linux-2.20
17 Dec 2011; Raúl Porcel <armin76@gentoo.org> udev-164-r2.ebuild:
s390 stable wrt #352827
15 Dec 2011; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
Add a compatibility symlink for udevadm and use --exec-prefix to put the
binaries in the correct directory.
14 Dec 2011; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
remove prefix support and use bindir to install udevadm in /bin.
14 Dec 2011; Mike Frysinger <vapier@gentoo.org> udev-171-r4.ebuild:
Unify duplicate econf statements with a use_extras helper.
14 Dec 2011; William Hubbs <williamh@gentoo.org> -udev-171-r1.ebuild,
-udev-171-r2.ebuild, -udev-171-r3.ebuild, -udev-175.ebuild:
remove old versions
*udev-171-r4 (11 Dec 2011)
11 Dec 2011; William Hubbs <williamh@gentoo.org> +files/shell-compat-KV.sh,
+udev-171-r4.ebuild:
rev bump for #338257.
09 Dec 2011; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
sync live ebuild
09 Dec 2011; Mike Frysinger <vapier@gentoo.org> udev-171-r3.ebuild,
udev-175.ebuild, udev-175-r1.ebuild:
Require pciutils[-zlib] when USE=hwdb #360849 by Samuli Suominen.
*udev-175-r1 (09 Dec 2011)
*udev-171-r3 (09 Dec 2011)
09 Dec 2011; William Hubbs <williamh@gentoo.org> +udev-171-r3.ebuild,
+udev-175-r1.ebuild:
Rev bumps for #380929. All scripts should now be /run aware.
11 Nov 2011; Mike Frysinger <vapier@gentoo.org> udev-171-r2.ebuild,
udev-175.ebuild, udev-9999.ebuild:
If we don't run eautoreconf, then run elibtoolize so the local libtool code
gets workarounds added to it (e.g. cross-compiling fixes).
09 Nov 2011; William Hubbs <williamh@gentoo.org> udev-175.ebuild,
udev-9999.ebuild:
add warning about separate /usr partition.
09 Nov 2011; William Hubbs <williamh@gentoo.org> udev-175.ebuild,
udev-9999.ebuild:
fix an indent
09 Nov 2011; William Hubbs <williamh@gentoo.org> udev-175.ebuild,
udev-9999.ebuild:
QA Fixes: use should not be called in global scope and clean up the
conditional declarations for IUSE and RESTRICT.
Thanks to mr_bones_ for pointing these out.
08 Nov 2011; William Hubbs <williamh@gentoo.org> udev-175.ebuild,
udev-9999.ebuild:
sync live ebuild and fix a comment
08 Nov 2011; William Hubbs <williamh@gentoo.org> -udev-174-r1.ebuild:
remove old version
*udev-175 (08 Nov 2011)
08 Nov 2011; William Hubbs <williamh@gentoo.org> +udev-175.ebuild:
version bump
07 Nov 2011; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
sync live ebuild.
*udev-174-r1 (07 Nov 2011)
07 Nov 2011; William Hubbs <williamh@gentoo.org> -udev-174.ebuild,
+udev-174-r1.ebuild:
backport a patch to re-add permissions to optical drives.
*udev-174 (06 Nov 2011)
06 Nov 2011; William Hubbs <williamh@gentoo.org> +udev-174.ebuild:
version bump
06 Nov 2011; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
fix dependencies for doc use flag in live ebuild.
04 Nov 2011; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
Live ebuild now pulls udev gentoo scripts from git.
03 Nov 2011; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
Major updates to the live ebuild:
- The src_test function was set back to the default per upstream's
recommendations. Also, test has been restricted to run if userpriv is
not active.
- The src_unpack and pkg_preinst functions were removed.
- a new version of the udev startup scripts was included which is more
integrated to openrc and has had some outdated files removed.
- Now the ebuild manually installs the files from udev-gentoo-scripts.
- Several other small code cleanups.
18 Sep 2011; Zac Medico <zmedico@gentoo.org> udev-171-r2.ebuild,
udev-9999.ebuild:
Fix for prefix and add ~x86-linux keyword.
*udev-171-r2 (13 Sep 2011)
13 Sep 2011; Matthias Schwarzott <zzam@gentoo.org> +udev-171-r2.ebuild,
udev-9999.ebuild:
Add src_test function that also tests the udev-scripts. Sync live ebuild and
normal version.
09 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> udev-164-r2.ebuild:
ppc/ppc64 stable wrt #352827
07 Jul 2011; Matthias Schwarzott <zzam@gentoo.org> udev-171-r1.ebuild,
udev-9999.ebuild:
Enforce new enough linux-headers, Bug #368403.
06 Jul 2011; William Hubbs <williamh@gentoo.org> udev-146-r1.ebuild,
udev-149.ebuild, udev-151-r4.ebuild, udev-164-r2.ebuild, udev-171-r1.ebuild,
udev-9999.ebuild:
add blk_dev_bsg to config_check for bug #373535.
30 Jun 2011; William Hubbs <williamh@gentoo.org> -udev-168-r2.ebuild:
removing udev 168 because it breaks X11
28 Jun 2011; William Hubbs <williamh@gentoo.org> udev-164-r2.ebuild,
udev-171-r1.ebuild, udev-9999.ebuild:
Fix the target of the udev symbolic link that is installed in the
stages.
25 Jun 2011; Raúl Porcel <armin76@gentoo.org> udev-164-r2.ebuild:
ia64/m68k/sh/sparc stable wrt #352827
22 Jun 2011; William Hubbs <williamh@gentoo.org> udev-164-r2.ebuild,
udev-171-r1.ebuild, udev-9999.ebuild:
add build to iuse
14 Jun 2011; Markus Meier <maekke@gentoo.org> udev-164-r2.ebuild:
x86 stable, bug #352827
13 Jun 2011; William Hubbs <williamh@gentoo.org> udev-171-r1.ebuild,
udev-9999.ebuild:
Update glibc requirement to 2.10 for bug #370691.
11 Jun 2011; Markus Meier <maekke@gentoo.org> udev-164-r2.ebuild:
arm stable, bug #352827
09 Jun 2011; Matthias Schwarzott <zzam@gentoo.org> udev-171-r1.ebuild:
Update test tarball to version 171, bug #370849.
09 Jun 2011; William Hubbs <williamh@gentoo.org> udev-171-r1.ebuild:
add temporary support for the extras use flag.
09 Jun 2011; Matthias Schwarzott <zzam@gentoo.org> udev-9999.ebuild:
Fix unpacking with git-2 eclass, bug #370647.
09 Jun 2011; Matthias Schwarzott <zzam@gentoo.org> udev-171-r1.ebuild,
udev-9999.ebuild:
Do no longer tell the user to re-emerge HAL in case of problems.
09 Jun 2011; Matthias Schwarzott <zzam@gentoo.org> -udev-162.ebuild,
-udev-163.ebuild, -udev-164.ebuild, -udev-164-r1.ebuild, -udev-167.ebuild,
-udev-167-r1.ebuild, -udev-168.ebuild, -udev-168-r1.ebuild, -udev-171.ebuild:
Removed unneeded versions.
08 Jun 2011; Markos Chandras <hwoarang@gentoo.org> udev-164-r2.ebuild:
Stable on amd64 wrt bug #352827
08 Jun 2011; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
fix typo: VCS should be vcs. bug #370647.
08 Jun 2011; William Hubbs <williamh@gentoo.org> udev-171-r1.ebuild,
udev-9999.ebuild:
Do not force the acl, gudev, hwdb or keymap use flags on since these were
bringing in dependencies a minimal system does not need. Thanks to Matt
Turner for pointing this out.
*udev-171-r1 (07 Jun 2011)
07 Jun 2011; Matthias Schwarzott <zzam@gentoo.org> +udev-171-r1.ebuild:
Fix checking kernel versions with strange suffixes, Bug #370009. Also prepare
for two digit numbers (3.0).
07 Jun 2011; William Hubbs <williamh@gentoo.org> udev-171.ebuild,
udev-9999.ebuild, metadata.xml:
Use acl global use flag instead of udev_acl.
07 Jun 2011; William Hubbs <williamh@gentoo.org> udev-9999.ebuild:
migrate live ebuild to eapi 4.
05 Jun 2011; Robin H. Johnson <robbat2@gentoo.org> udev-146-r1.ebuild,
udev-149.ebuild, udev-151-r4.ebuild, udev-162.ebuild, udev-163.ebuild,
udev-164.ebuild, udev-164-r1.ebuild, udev-164-r2.ebuild, udev-167.ebuild,
udev-167-r1.ebuild, udev-168.ebuild, udev-168-r1.ebuild, udev-168-r2.ebuild,
udev-171.ebuild, udev-9999.ebuild:
Linux-3.0 support for udev version checks.
*udev-171 (05 Jun 2011)
05 Jun 2011; Matthias Schwarzott <zzam@gentoo.org> +udev-171.ebuild,
udev-9999.ebuild, metadata.xml:
Version bumped, Bug #368331. Split extras use flag into a lot small ones, Bug
#348472. Fix cross compiling issue, Bug #360397. Use systemd eclass, Bug
#365943. Update minimum required kernel version.
05 Jun 2011; Jeroen Roovers <jer@gentoo.org> udev-164-r2.ebuild:
Stable for HPPA (bug #352827).
02 Jun 2011; William Hubbs <williamh@gentoo.org> udev-164-r2.ebuild,
udev-9999.ebuild:
Add udev to the sysinit runlevel for the stages, bug #369037
01 Jun 2011; Tobias Klausmann <klausman@gentoo.org> udev-164-r2.ebuild:
Stable on alpha, bug #352827
*udev-168-r2 (14 May 2011)
14 May 2011; Matthias Schwarzott <zzam@gentoo.org> +udev-168-r2.ebuild,
udev-9999.ebuild:
Remove /run is not existing message, Bug #365679. Fix uinput rule to match
what newer kernels does, Bug #321677. Only run modprobe unix when unix
sockets are not yet available, Bug #363549.
*udev-168-r1 (30 Apr 2011)
30 Apr 2011; Matthias Schwarzott <zzam@gentoo.org> +udev-168-r1.ebuild:
fixed install location of baselayout-1 scripts, bug #364375.
30 Apr 2011; Matthias Schwarzott <zzam@gentoo.org> udev-168.ebuild,
udev-9999.ebuild:
Fix helper programs still installed to /lib64/udev
*udev-168 (30 Apr 2011)
30 Apr 2011; Matthias Schwarzott <zzam@gentoo.org> +udev-168.ebuild,
udev-9999.ebuild:
Version bumped. Unconditionally install to /lib/udev, also on multilib, Bug
#364375. Remove automagic dependency to systemd, Bug #364065.
15 Apr 2011; Ulrich Mueller <ulm@gentoo.org> udev-114.ebuild,
udev-115-r1.ebuild, udev-119.ebuild, udev-124-r1.ebuild, udev-124-r2.ebuild,
udev-141.ebuild, udev-141-r1.ebuild, udev-146-r1.ebuild, udev-149.ebuild,
udev-151-r4.ebuild, udev-162.ebuild, udev-163.ebuild, udev-164.ebuild,
udev-164-r1.ebuild, udev-164-r2.ebuild, udev-167.ebuild, udev-167-r1.ebuild,
udev-9999.ebuild:
Don't PROVIDE virtual/dev-manager, it is a new-style virtual now. Bug 361133.
03 Apr 2011; Matthias Schwarzott <zzam@gentoo.org> udev-167.ebuild,
udev-167-r1.ebuild, udev-9999.ebuild:
Update needed reliable kernel version. Sync live version to latest normal
version.
03 Apr 2011; Diego E. Pettenò <flameeyes@gentoo.org> udev-167-r1.ebuild:
Avoid maintainer-mode triggered automake.
*udev-167-r1 (03 Apr 2011)
03 Apr 2011; Matthias Schwarzott <zzam@gentoo.org> +udev-167-r1.ebuild,
+files/udev-167-revert-disable-all-extras.patch:
Let USE=-extras still build important utils like ata_id and usb_id.
Backported from udev-168.
*udev-167 (30 Mar 2011)
30 Mar 2011; Matthias Schwarzott <zzam@gentoo.org> +udev-167.ebuild:
Version bumped. udev-167 defaults to using subdir udev in /run if it exists,
but as this does not exist on gentoo, it normally falls back to using
/dev/.udev, so this is fine.
30 Mar 2011; Matthias Schwarzott <zzam@gentoo.org> udev-164-r2.ebuild,
-files/udev-164-remove-noopenvz.patch:
Use updated scripts instead of patching them.
*udev-164-r2 (19 Mar 2011)
19 Mar 2011; Matthias Schwarzott <zzam@gentoo.org> +udev-164-r2.ebuild,
+files/udev-164-remove-noopenvz.patch, +files/udev-164-remove-v4l1.patch:
Enable udev inside OpenVZ containers, Bug #346885. Disable v4lv1, so that
udev compiles with linux-headers-2.6.38, Bug #359407.
06 Feb 2011; Mart Raudsepp <leio@gentoo.org> udev-114.ebuild,
udev-115-r1.ebuild:
Drop to ~mips
*udev-164-r1 (12 Dec 2010)
12 Dec 2010; Matthias Schwarzott <zzam@gentoo.org> +udev-164-r1.ebuild:
Moved scripts from files to a tarball.
*udev-164 (30 Oct 2010)
30 Oct 2010; Matthias Schwarzott <zzam@gentoo.org>
+files/164/40-gentoo.rules, +files/164/90-network.rules,
+files/164/shell-compat-KV.sh, +files/164/shell-compat-addon.sh,
+files/164/udev.confd, +files/164/udev.initd,
+files/164/udev-dev-tarball.initd, +files/164/udev-mount.initd,
+files/164/udev-postmount.initd, +udev-164.ebuild,
+files/164/udev-start.sh, +files/164/udev-stop.sh:
Version bumped. Changed udev-postmount script to better check for ro
filesystems and non bash shells. Bugs 342403, 326825. Remove /dev/loop if
it is empty, Bug #338766.
29 Oct 2010; Jeroen Roovers <jer@gentoo.org> udev-151-r4.ebuild:
Stable for HPPA (bug #324507).
*udev-163 (11 Oct 2010)
11 Oct 2010; Matthias Schwarzott <zzam@gentoo.org> +udev-163.ebuild:
Version bumped.
27 Sep 2010; Matthias Schwarzott <zzam@gentoo.org> -udev-146.ebuild,
-udev-146-r2.ebuild, -udev-146-r3.ebuild,
-files/udev-146-printer-usb_device-permission.diff,
-files/151/shell-compat-addon.sh, -udev-147-r1.ebuild,
-files/151/udev.confd, -udev-145.ebuild, -udev-150-r1.ebuild,
-udev-151-r1.ebuild, -udev-151-r2.ebuild, -udev-151-r3.ebuild,
-udev-154.ebuild, -udev-156.ebuild, -udev-157.ebuild, -udev-158.ebuild,
-udev-159.ebuild, -files/udev-159-path_id.patch, -files/151/udev.initd,
-udev-160.ebuild, -files/151/udev-dev-tarball.initd, -udev-145-r1.ebuild,
-udev-161.ebuild,
-files/udev-161-cdrom_id_Drop_MEDIA_SESSION_NEXT_for_DVD-RW-RO.patch,
-files/151/shell-compat-KV.sh, -files/151/udev-mount.initd,
-files/151/udev-postmount.initd, -files/151/udev-start.sh,
-udev-145-r2.ebuild, -files/151/udev-stop.sh, -udev-145-r3.ebuild:
Removed a lot of old versions.
*udev-162 (12 Sep 2010)
12 Sep 2010; Matthias Schwarzott <zzam@gentoo.org> +udev-162.ebuild:
Version bumped.
28 Aug 2010; Raúl Porcel <armin76@gentoo.org> udev-151-r4.ebuild:
ia64/m68k/s390/sh/sparc stable wrt #334087
28 Aug 2010; Markus Meier <maekke@gentoo.org> udev-151-r4.ebuild:
arm stable, bug #324507
*udev-161 (24 Aug 2010)
24 Aug 2010; Matthias Schwarzott <zzam@gentoo.org>
+files/udev-161-cdrom_id_Drop_MEDIA_SESSION_NEXT_for_DVD-RW-RO.patch,
+files/161/40-gentoo.rules, +files/161/90-network.rules,
+files/161/shell-compat-KV.sh, +files/161/shell-compat-addon.sh,
+files/161/udev.confd, +files/161/udev-dev-tarball.initd,
+udev-161.ebuild, +files/161/udev.initd, +files/161/udev-mount.initd,
+files/161/udev-postmount.initd, +files/161/udev-start.sh,
+files/161/udev-stop.sh:
Version bumped. Fixed dir_writable check printing an error to console when
test fails, bug #326825.
24 Aug 2010; Matthias Schwarzott <zzam@gentoo.org> udev-149.ebuild,
udev-150-r1.ebuild, udev-151-r1.ebuild, udev-151-r2.ebuild,
udev-151-r3.ebuild, udev-151-r4.ebuild, udev-154.ebuild, udev-156.ebuild,
udev-157.ebuild, udev-158.ebuild, udev-159.ebuild, udev-160.ebuild,
udev-9999.ebuild:
Fix pkgconfig dependency to be only in DEPEND and not in RDEPEND.
23 Aug 2010; Mike Frysinger <vapier@gentoo.org> udev-149.ebuild,
udev-150-r1.ebuild, udev-151-r1.ebuild, udev-151-r2.ebuild,
udev-151-r3.ebuild, udev-151-r4.ebuild, udev-154.ebuild, udev-156.ebuild,
udev-157.ebuild, udev-158.ebuild, udev-159.ebuild, udev-160.ebuild,
udev-9999.ebuild:
Convert kernel headers into a blocker #296546 by Alan Hourihane.
13 Aug 2010; Joseph Jezak <josejx@gentoo.org> udev-151-r4.ebuild:
Marked ppc stable for bug #324507.
12 Aug 2010; Brent Baude <ranger@gentoo.org> udev-151-r4.ebuild:
stable ppc64, bug 324507
08 Aug 2010; Raúl Porcel <armin76@gentoo.org> udev-149.ebuild,
udev-150-r1.ebuild, udev-151-r1.ebuild, udev-151-r2.ebuild,
udev-151-r3.ebuild, udev-151-r4.ebuild, udev-154.ebuild, udev-156.ebuild,
udev-157.ebuild, udev-158.ebuild, udev-159.ebuild, udev-160.ebuild:
Re-add sh
02 Aug 2010; Matthias Schwarzott <zzam@gentoo.org> udev-149.ebuild,
udev-150-r1.ebuild, udev-151-r1.ebuild, udev-151-r2.ebuild,
udev-151-r3.ebuild, udev-151-r4.ebuild, udev-154.ebuild, udev-156.ebuild,
udev-157.ebuild, udev-158.ebuild, udev-159.ebuild, udev-160.ebuild:
Added pkgconfig dependency for udev-149 and newer when using extras
use-flag, Bug #327713.
27 Jul 2010; Pacho Ramos <pacho@gentoo.org> udev-151-r4.ebuild:
amd64 stable, bug 324507
25 Jul 2010; Tobias Klausmann <klausman@gentoo.org> udev-151-r4.ebuild:
Stable on alpha, bug #324507
22 Jul 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> udev-151-r4.ebuild:
x86 stable wrt bug #324507
17 Jul 2010; Matthias Schwarzott <zzam@gentoo.org> udev-9999.ebuild:
Updated live ebuild, Bug #327823.
*udev-160 (12 Jul 2010)
12 Jul 2010; Matthias Schwarzott <zzam@gentoo.org> +udev-160.ebuild:
Version bumped. This is a bugfix release.
10 Jul 2010; Raúl Porcel <armin76@gentoo.org> udev-147-r1.ebuild,
udev-149.ebuild, udev-150-r1.ebuild, udev-151-r1.ebuild,
udev-151-r2.ebuild, udev-151-r3.ebuild, udev-151-r4.ebuild,
udev-154.ebuild, udev-156.ebuild, udev-157.ebuild, udev-158.ebuild,
udev-159.ebuild:
Rekeyword ~alpha now that the glibc issues have been fixed
*udev-159 (07 Jul 2010)
07 Jul 2010; Matthias Schwarzott <zzam@gentoo.org> +udev-159.ebuild,
+files/udev-159-path_id.patch:
Version bumped.
*udev-158 (24 Jun 2010)
24 Jun 2010; Matthias Schwarzott <zzam@gentoo.org> +udev-158.ebuild:
Version bumped.
*udev-157 (20 Jun 2010)
*udev-156 (20 Jun 2010)
20 Jun 2010; Matthias Schwarzott <zzam@gentoo.org>
+files/156/40-gentoo.rules, +files/156/90-network.rules,
+files/156/shell-compat-KV.sh, +files/156/shell-compat-addon.sh,
+files/156/udev.confd, +files/156/udev-dev-tarball.initd,
+udev-157.ebuild, +files/156/udev.initd, +files/156/udev-mount.initd,
+files/156/udev-postmount.initd, udev-9999.ebuild,
+files/156/udev-start.sh, +files/156/udev-stop.sh, +udev-156.ebuild:
Add version udev-156 and udev-157. These contain some rule changes.
Init-scripts improved a bit. Fix udev-postmount on selinux, Bug #317573.
*udev-154 (12 May 2010)
12 May 2010; Matthias Schwarzott <zzam@gentoo.org> +udev-154.ebuild:
Version bumped. Now devfs-compat and oldhd is no longer supported.
*udev-151-r4 (05 May 2010)
05 May 2010; Matthias Schwarzott <zzam@gentoo.org>
+files/151-r4/shell-compat-KV.sh, +files/151-r4/shell-compat-addon.sh,
+files/151-r4/udev.confd, +files/151-r4/udev-dev-tarball.initd,
udev-9999.ebuild, +files/151-r4/udev.initd,
+files/151-r4/udev-mount.initd, +files/151-r4/udev-postmount.initd,
+files/151-r4/udev-start.sh, +files/151-r4/udev-stop.sh,
+udev-151-r4.ebuild:
Updated init-scripts. Now support setting debug and trace options in
config file. Explicitly send add-event for initial population (newer
udevds will default to change). Set property STARTUP while booting for
compatibility with new eg. lvm2 init-scripts. Sync udev-9999.ebuild.
*udev-151-r3 (02 May 2010)
02 May 2010; Matthias Schwarzott <zzam@gentoo.org> +udev-151-r3.ebuild:
Disable devfs-compat and old-hd-rules use flags by default they will be
removed on next udev update.
*udev-146-r3 (20 Apr 2010)
20 Apr 2010; Robin H. Johnson <robbat2@gentoo.org> +udev-146-r3.ebuild:
Alpha cannot use the 151-r2 version due to non-availability of newer
kernels, so provide an older ebuild with static libraries for lvm2
bumping.
*udev-151-r2 (19 Apr 2010)
19 Apr 2010; Robin H. Johnson <robbat2@gentoo.org> +udev-151-r2.ebuild:
Build static libraries as well, for lvm2 to use when building static
versions for early boot purposes.
19 Apr 2010; Matthias Schwarzott <zzam@gentoo.org> files/151/udev.initd,
udev-9999.ebuild:
Add keywords nolxc and noopenvz to udev init-script, Bug #310427.
16 Apr 2010; Brent Baude <ranger@gentoo.org> udev-149.ebuild:
Marking udev-149 ppc for bug 303031
05 Apr 2010; Jeroen Roovers <jer@gentoo.org> udev-149.ebuild:
Back to ~hppa (bug #294470).
22 Mar 2010; Brent Baude <ranger@gentoo.org> udev-149.ebuild:
Marking udev-149 ppc64 for bug 303031
15 Mar 2010; Matthias Schwarzott <zzam@gentoo.org> udev-145.ebuild,
udev-145-r1.ebuild, udev-145-r2.ebuild, udev-145-r3.ebuild,
udev-146.ebuild, udev-146-r1.ebuild, udev-146-r2.ebuild,
udev-147-r1.ebuild, udev-149.ebuild, udev-150-r1.ebuild,
udev-151-r1.ebuild, udev-9999.ebuild:
Fix tests for udev-149 and udev-151-r1, thanks to Myckel Habets for
looking into it, Bug #295958. Restrict test for the other ebuilds.
07 Mar 2010; Markus Meier <maekke@gentoo.org> udev-149.ebuild:
amd64/arm stable, bug #303031
02 Mar 2010; Jeroen Roovers <jer@gentoo.org> udev-149.ebuild:
Stable for HPPA (bug #303031).
21 Feb 2010; Christian Faulhammer <fauli@gentoo.org> udev-149.ebuild:
stable x86, bug 303031
07 Feb 2010; Matthias Schwarzott <zzam@gentoo.org> udev-141-r1.ebuild,
udev-145.ebuild, udev-145-r1.ebuild, udev-145-r2.ebuild,
udev-145-r3.ebuild, udev-146.ebuild, udev-146-r1.ebuild,
udev-146-r2.ebuild, udev-147-r1.ebuild, udev-149.ebuild,
udev-150-r1.ebuild, udev-151-r1.ebuild, udev-9999.ebuild:
Improve wording of devfs-compat message, Bug #301141. Sync udev-9999 to
latest udev-151-r1.
*udev-151-r1 (01 Feb 2010)
*udev-150-r1 (01 Feb 2010)
01 Feb 2010; Matthias Schwarzott <zzam@gentoo.org> -udev-150.ebuild,
+udev-150-r1.ebuild, +files/udev-150-fix-missing-firmware-timeout.diff,
-udev-151.ebuild, +udev-151-r1.ebuild:
Fix missing firmware timeout, to stop modprobe from waiting 60s for no
file stretching boot very long, Bug #301667.
31 Jan 2010; Matthias Schwarzott <zzam@gentoo.org> udev-151.ebuild:
Fix install error, bug #302903. Removed old code for multilib-installs.
*udev-151 (29 Jan 2010)
29 Jan 2010; Matthias Schwarzott <zzam@gentoo.org>
+files/udev-151-readd-hd-rules.diff, +files/151/shell-compat-KV.sh,
+files/151/shell-compat-addon.sh, +files/151/udev.confd,
+files/151/udev.initd, +files/151/udev-dev-tarball.initd,
+files/151/udev-mount.initd, +files/151/udev-postmount.initd,
+udev-151.ebuild, +files/151/udev-start.sh, +files/151/udev-stop.sh,
metadata.xml:
Version bumped. Fix selinux, Bug #297317. Add use-flag old-hd-rules to
control re-adding of rules for /dev/hd*, Bug #300627.
*udev-150 (19 Jan 2010)
19 Jan 2010; Matthias Schwarzott <zzam@gentoo.org> +udev-150.ebuild:
Version bumped.
For previous entries, please see ChangeLog-2009.
|