summaryrefslogtreecommitdiff
blob: 412b6e48f0c4e9a43c2e105801d4b9544d4e4997 (plain)
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
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
# ChangeLog for sys-apps/hal
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hal/ChangeLog,v 1.318 2010/06/27 20:24:51 fauli Exp $

  27 Jun 2010; Christian Faulhammer <fauli@gentoo.org> hal-0.5.14-r2.ebuild:
  stable x86, bug 323943

  24 Jun 2010; Pacho Ramos <pacho@gentoo.org> hal-0.5.14-r2.ebuild:
  stable amd64, bug 323943

  17 Mar 2010; Alexis Ballier <aballier@gentoo.org> hal-0.5.14-r2.ebuild:
  keyword ~x86-fbsd

  17 Mar 2010; Daniel Gryniewicz <dang@gentoo.org> hal-0.5.14-r2.ebuild,
  +files/hal-0.5.14-r2-fbsd.patch:
  Add upstream patch to build on fbsd; bug #309263

  10 Mar 2010; Daniel Gryniewicz <dang@gentoo.org> -hal-0.5.11-r9.ebuild,
  -hal-0.5.12_rc1-r6.ebuild, -hal-0.5.12_rc1-r7.ebuild,
  hal-0.5.12_rc1-r8.ebuild:
  Remove old version, leaving the last fbsd version keyworded to just fbsd

*hal-0.5.14-r2 (20 Jan 2010)

  20 Jan 2010; Daniel Gryniewicz <dang@gentoo.org> +files/0.5.14-hald.conf,
  +hal-0.5.14-r2.ebuild, +files/0.5.14-hald.rc:
  Bump to hal-0.5.14-r2; fixes:
  - bug #299483: need consolekit rather than use it
  - bug #301192: crash in hald-probe-input on startup


*hal-0.5.14-r1 (07 Jan 2010)

  07 Jan 2010; Daniel Gryniewicz <dang@gentoo.org> +hal-0.5.14-r1.ebuild:
  Fix MAX_PATH to be the same as the system. Bug #299385


  13 Dec 2009; Nirbheek Chauhan <nirbheek@gentoo.org> hal-0.5.14.ebuild:
  Fix blockers due to a combination of hal[consolekit,-policykit] and polkit
  pulling in consolekit[policykit] -- bug 296692

  11 Dec 2009; Raúl Porcel <armin76@gentoo.org> hal-0.5.13-r2.ebuild:
  sh stable wrt #287380

  07 Dec 2009; Samuli Suominen <ssuominen@gentoo.org> hal-0.5.13-r2.ebuild:
  amd64 stable wrt #287411

  02 Dec 2009; Daniel Gryniewicz <dang@gentoo.org> +hal-0.5.14.ebuild:
  Bump to 0.5.14

*hal-0.5.14 (02 Dec 2009)

  02 Dec 2009; Daniel Gryniewicz <dang@gentoo.org> +hal-0.5.14.ebuild:
  Bump to 0.5.14

  29 Nov 2009; Joseph Jezak <josejx@gentoo.org> hal-0.5.13-r2.ebuild:
  Marked ppc stable for bug #287380.

  28 Nov 2009; Raúl Porcel <armin76@gentoo.org> hal-0.5.13-r2.ebuild:
  ia64/sparc stable wrt #287380

  23 Nov 2009; Markus Meier <maekke@gentoo.org> hal-0.5.13-r2.ebuild:
  arm stable, bug #287380

  09 Nov 2009; Christian Faulhammer <fauli@gentoo.org> hal-0.5.13-r2.ebuild:
  stable x86, bug 287380

  31 Oct 2009; Brent Baude <ranger@gentoo.org> hal-0.5.13-r2.ebuild:
  Marking hal-0.5.13-r2 ppc64 for bug 287380

  21 Oct 2009; Jeroen Roovers <jer@gentoo.org> hal-0.5.13-r2.ebuild:
  Stable for HPPA (bug #287380).

  03 Oct 2009; Christian Faulhammer <fauli@gentoo.org>
  hal-0.5.12_rc1-r8.ebuild:
  stable x86, bug 284742

  03 Oct 2009; Tobias Klausmann <klausman@gentoo.org>
  hal-0.5.12_rc1-r8.ebuild, hal-0.5.13-r2.ebuild:
  Stable on alpha, bug #287380

  03 Oct 2009; Tobias Klausmann <klausman@gentoo.org>
  hal-0.5.12_rc1-r8.ebuild:
  Stable on alpha, bug #284742

*hal-0.5.12_rc1-r8 (30 Sep 2009)

  30 Sep 2009; Mart Raudsepp <leio@gentoo.org> hal-0.5.12_rc1-r7.ebuild,
  +hal-0.5.12_rc1-r8.ebuild, hal-0.5.13-r2.ebuild:
  Remove now unnecessary gnome-power-manager blocker, all revisions of it
  that could file collide with hal are gone now and it included the 2.22
  versions in the blocker, which was not necessary and is problematic with
  HAL stabling but g-p-m staying at 2.22. This fixes bug 287037; Gracious
  revbump to ensure amd64 stable users get the blocker fixed in VDB,
  permission from mrpouet to keep the stable keyword

  29 Sep 2009; Romain Perier <mrpouet@gentoo.org>
  hal-0.5.12_rc1-r7.ebuild:
  Stable for amd64 per bug #284742.

  17 Aug 2009; Mike Frysinger <vapier@gentoo.org> files/0.5.10-hald.rc:
  Add workaround for PATH truncation #267928.

  17 Aug 2009; Alexis Ballier <aballier@gentoo.org> hal-0.5.13-r2.ebuild:
  Keyword -x86-fbsd until bug #281746 is fixed

  28 Jul 2009; Gilles Dartiguelongue <eva@gentoo.org>
  -files/0.5.9-hald.conf, -files/hal-0.5.7-hald-scripts.patch,
  -files/hal-0.5.7-hibernate.patch, -files/hal-0.5.7-ignored-volumes.patch,
  -files/hal-0.5.7-part-table.patch,
  -files/hal-0.5.7-plugdev-allow-send.patch, -files/hal-0.5.7-pmu-fix.patch,
  -files/hal-0.5.7-rescan-on-resume.patch,
  -files/hal-0.5.7-sony-brightness.patch,
  -files/hal-0.5.7-unclean-unmount-r1.patch,
  -files/hal-0.5.7.1-autofs-subfs.patch, -files/hal-0.5.7.1-ctype-fix.patch,
  -files/hal-0.5.7.1-dbus-close.patch, -files/hal-0.5.7.1-fix-dbus.patch,
  -files/hal-0.5.7.1-floppies-fix.patch,
  -files/hal-0.5.7.1-hald-scripts.patch,
  -files/hal-0.5.7.1-hibernate-fix.patch,
  -files/hal-0.5.7.1-ignored-volumes.patch,
  -files/hal-0.5.7.1-indirection-fix.patch,
  -files/hal-0.5.7.1-ipod-nano.patch,
  -files/hal-0.5.7.1-rescan-on-resume.patch,
  -files/hal-0.5.7.1-sr-driver.patch, -hal-0.5.9.1-r3.ebuild,
  -files/hal-0.5.9-hide-recovery-partitions.patch,
  -files/hal-0.5.10-autotools.patch, -files/0.5.9-hald.rc,
  -files/0.5.9/01_luks_mount_fix.patch, -files/hal-0.5.11-ppc64.patch,
  -files/0.5.9/02_acpi_repeated_property_change.patch,
  -files/0.5.9/03_crasher_fix_fail_to_return_value.patch,
  -files/0.5.9/04_cache_regen_return_fix.patch,
  -files/0.5.9/05_freebsd_partutil_make_fix.patch,
  -files/0.5.9/06_freebsd_backend_fix.patch,
  -files/0.5.9/07_malloc_h_for_stdlib_h.patch,
  -files/0.5.9/08_contains_not_fdi_directive.patch,
  -files/0.5.9/09_hald_addon_keyboard_start_one.patch,
  -files/0.5.9/10_freebsd_storage_reprobe_fix.patch,
  -files/0.5.9/11_hal_fix_segfault_probe_volume.patch,
  -files/0.5.9/12_hal_fix-vol_label_probe_volume.patch,
  -files/0.5.9/13_detect_newer_macbooks.patch,
  -files/0.5.9/14_ntfs_allows_utf8.patch,
  -files/0.5.9/15_spec_fdi_matching.patch,
  -files/0.5.9/16_dev_root_is_mounted.patch,
  -files/0.5.9/17_autoconf_cflag_cleanup.patch,
  -files/0.5.9/18_hal_fix_info.category_for_laptop_panel_v2.patch,
  -files/0.5.9/19_hald_runner_catch_dbus_disconnect.patch,
  -files/0.5.9/20_firewire_prober_ioctls_fix.patch,
  -files/0.5.9/21_pm-suspend_correct_options.patch,
  -files/0.5.9/22_pm-hibernate_correct_options.patch,
  -files/0.5.9/23_runner_64bit_values.patch,
  -files/0.5.9/24_libparted_1_8_7.patch,
  -files/0.5.9/95_gentoo_man_page.patch,
  -files/0.5.9/96_plugdev_allow_send.patch,
  -files/0.5.9/97_ignore_fixed_drives.patch,
  -files/0.5.9/98_hald_cache_test_path.patch,
  -files/0.5.9/99_sun_disklabel_ignore.patch, -files/0.5.9/series,
  -files/0.5-hald.rc, -files/96_plugdev_allow_send.patch,
  -hal-0.5.11-r8.ebuild, -hal-0.5.12_rc1-r4.ebuild, metadata.xml:
  Late spring cleaning. Removing old revisions.

*hal-0.5.13-r2 (23 Jul 2009)

  23 Jul 2009; Daniel Gryniewicz <dang@gentoo.org> -hal-0.5.13-r1.ebuild,
  +hal-0.5.13-r2.ebuild:
  Bump to hal-0.5.13-r2
  - Fix udev hotplug notifications


*hal-0.5.13-r1 (22 Jul 2009)

  22 Jul 2009; Daniel Gryniewicz <dang@gentoo.org> -hal-0.5.13.ebuild,
  +hal-0.5.13-r1.ebuild:
  Bump to hal-0.5.13-r1
  - Re-add lost root plugdev dbus policy. bug #278642


*hal-0.5.13 (21 Jul 2009)

  21 Jul 2009; Daniel Gryniewicz <dang@gentoo.org> +hal-0.5.13.ebuild:
  Bump hal to 0.5.13; bug #270956

*hal-0.5.12_rc1-r7 (19 Jul 2009)

  19 Jul 2009; Daniel Gryniewicz <dang@gentoo.org>
  +hal-0.5.12_rc1-r7.ebuild:
  Bump to hal-0.5.12_rc1-r7

  - Give root access to some things in plugdev mode. Bug #276997 and bug
  #273907


  06 Jul 2009; Alexey Shvetsov <alexxy@gentoo.org> hal-0.5.12_rc1-r6.ebuild:
  Add ~mips keyword

*hal-0.5.11-r9 (17 Jun 2009)

  17 Jun 2009; Thomas Anderson <gentoofan23@gentoo.org>
  +hal-0.5.11-r9.ebuild:
  Stable revision bump for critical bug #268375, wrong cache dir leading to
  broken systems when hal is installed with paludis.

  07 Jun 2009; Daniel Gryniewicz <dang@gentoo.org> hal-0.5.12_rc1-r6.ebuild:
  Update plugdev message to be more explicit

*hal-0.5.12_rc1-r6 (01 Jun 2009)

  01 Jun 2009; Daniel Gryniewicz <dang@gentoo.org>
  -hal-0.5.12_rc1-r5.ebuild, +hal-0.5.12_rc1-r6.ebuild:
  Bump to hal-0.5.12_rc1-r6

  - Add root access to org.freedesktop.Hal.(Device Manager) to allow X and
    NM to work. Bug #271837


*hal-0.5.12_rc1-r5 (29 May 2009)

  29 May 2009; Daniel Gryniewicz <dang@gentoo.org>
  -hal-0.5.12_rc1-r2.ebuild, -hal-0.5.12_rc1-r3.ebuild,
  +hal-0.5.12_rc1-r5.ebuild:
  Fix bug #267042 and bug #269897

  16 May 2009; Robin H. Johnson <robbat2@gentoo.org> hal-0.5.9.1-r3.ebuild,
  hal-0.5.11-r4.ebuild, hal-0.5.11-r8.ebuild, hal-0.5.12_rc1-r2.ebuild,
  hal-0.5.12_rc1-r3.ebuild, hal-0.5.12_rc1-r4.ebuild:
  Migration to virtual/libusb. Verified by code inspection.

*hal-0.5.12_rc1-r4 (13 May 2009)

  13 May 2009; Daniel Gryniewicz <dang@gentoo.org>
  +hal-0.5.12_rc1-r4.ebuild:
  Remove duplict file in Makefile.am; bug #267926

*hal-0.5.12_rc1-r3 (09 May 2009)

  09 May 2009; Daniel Gryniewicz <dang@gentoo.org> -hal-0.5.12_rc1.ebuild,
  +hal-0.5.12_rc1-r3.ebuild:
  Bump to hal-0.5.12_rc1-r3
  - Add more missing dbus policy. This is now equivalent to what Fedora ships,
    so it should be fairly complete.
  - Fix bad consolekit enabling; bug #268376

  02 May 2009; Daniel Gryniewicz <dang@gentoo.org> hal-0.5.12_rc1-r2.ebuild:
  Block g-p-m-2.24-4-r1 and less, due to policy file conflict

*hal-0.5.12_rc1-r2 (01 May 2009)

  01 May 2009; Daniel Gryniewicz <dang@gentoo.org> files/0.5.10-hald.rc,
  -hal-0.5.12_rc1-r1.ebuild, +hal-0.5.12_rc1-r2.ebuild:
  - Indicate hal should start after consolekit (bug #267706)
  - Add KillSwitch to the dbus policy (bug #267621)

*hal-0.5.12_rc1-r1 (30 Apr 2009)

  30 Apr 2009; Daniel Gryniewicz <dang@gentoo.org>
  +hal-0.5.12_rc1-r1.ebuild, metadata.xml:
  Bump to hal-0.5.12_rc1-r1

  - I'm taking primary maintainership from chainsaw, with his permission

  - Add policykit and consolekit flags. Since pk support depends on ck
  support,

  the policykit flag will enable consolekit support, even if the consolekit

  flag is not set. This allows proper USE-depend from other packages.

  - Add CPUFreq to the dbus allow lists

  29 Apr 2009; Mike Frysinger <vapier@gentoo.org> hal-0.5.12_rc1:
  Drop useless ||() construct since there is only one atom in it.

  08 Mar 2009; Joseph Jezak <josejx@gentoo.org> hal-0.5.11-r8.ebuild:
  Marked ppc64 for bug #259080.

*hal-0.5.12_rc1 (08 Mar 2009)

  08 Mar 2009; <chainsaw@gentoo.org> hal-0.5.9.1-r3.ebuild,
  -hal-0.5.11-r1.ebuild, hal-0.5.11-r4.ebuild, -hal-0.5.11-r6.ebuild,
  -hal-0.5.11-r7.ebuild, hal-0.5.11-r8.ebuild, +hal-0.5.12_rc1.ebuild:
  Update HOMEPAGE, closes bug #261356 by Mr. Anderson <walch.martin@web.de>.
  Version bump to 0.5.12 release candidate 1 which incorporates some
  patches. Patchset trimmed and rebased accordingly.

  08 Mar 2009; <chainsaw@gentoo.org> -hal-0.5.11-r1.ebuild,
  -hal-0.5.11-r6.ebuild, -hal-0.5.11-r7.ebuild:
  Spring cleaning, -r1, -r6 & -r7 are no longer required. Will have to keep
  -r4 around until requested PPC64 keywording is completed.

  21 Feb 2009; Jeroen Roovers <jer@gentoo.org> hal-0.5.11-r8.ebuild:
  Stable for HPPA (bug #259080).

  17 Feb 2009; Raúl Porcel <armin76@gentoo.org> hal-0.5.11-r8.ebuild:
  arm/ia64/sh/sparc/x86 stable wrt #259080

  17 Feb 2009; <chainsaw@gentoo.org> hal-0.5.11-r8.ebuild:
  Mark stable on AMD64 for bug #259080 based on an arch tester report by
  Víctor Enríquez <victor.quicksilver@gmail.com>.

  16 Feb 2009; Raúl Porcel <armin76@gentoo.org> hal-0.5.11-r8.ebuild:
  alpha stable wrt #259080

  16 Feb 2009; <chainsaw@gentoo.org> hal-0.5.11-r8.ebuild:
  Mark stable on PowerPC 32-bit for bug #259080, based on arch testing by
  Christian Schmitt <chrschmitt@gmail.com>. Unmasking USE=laptop in the
  powerpc profile as requested on the bug.

  05 Feb 2009; <chainsaw@gentoo.org> hal-0.5.11-r8.ebuild:
  As per Christian Schmitt, PowerPC plans to stop masking the laptop
  USE-flag. This would break compilation with the current setup, so enable
  MacBook/MacBook Pro support unconditionally on both AMD64 & X86. It
  introduces no additional dependencies. No revision bump, those that care
  already had the laptop USE-flag on anyway.

*hal-0.5.11-r8 (04 Feb 2009)

  04 Feb 2009; <chainsaw@gentoo.org> +hal-0.5.11-r8.ebuild:
  Revive a patch by Cardoe to fix test failures, closes bug #176535. Enable
  support for MacBook/MacBook Pro if USE="laptop", closes bug #200643. Patch
  from Ambroz Bizjak <ambro@b4ever.net> removes ill-conceived UID checks so
  NTFS volumes can be automounted, closes bug #205901. Upstream commits
  scavenged by Ricardo Salveti <ricardo.salveti@openbossa.org> allow
  mac80211-based wireless devices to be detected properly, closes bug
  #246026. Reverted partition unhiding from bug #247025, it was already
  controversial but has been proven to automount recovery partitions.

  04 Feb 2009; <chainsaw@gentoo.org> hal-0.5.11-r7.ebuild:
  Do not break the dependency tree by being silly about hal-info.

*hal-0.5.11-r7 (04 Feb 2009)

  04 Feb 2009; <chainsaw@gentoo.org> metadata.xml, +hal-0.5.11-r7.ebuild:
  Avoid circular dependencies between HAL and X by dropping migration script
  and py86 dependency, closes bug #225091 by Ster0n <er0trashbox@gmail.com>.
  Properly ignore Dell recovery partitions, patch supplied by Pacho Ramos
  <pacho@condmat1.ciencias.uniovi.es> in bug #236784. Stop hiding unmounted
  partitions, as suggested by Kirill Igorevich Cherniy
  <kirill_i_cherniy@rambler.ru> in bug #247025. Upstream patch identified by
  Rafael <rktspm@gmail.com> fixes detection of partitions over ~1.2TB in
  size, closes bug #253815 by Yar Odin <yarodin@gmail.com>. Cease using
  deprecated keys in our installed examples, as pointed out by Sebastian
  Günther <samson@guenther-roetgen.de> in bug #256304.

  21 Jan 2009; Alexis Ballier <aballier@gentoo.org> hal-0.5.11-r6.ebuild:
  keyword ~x86-fbsd

  19 Jan 2009; Raúl Porcel <armin76@gentoo.org> hal-0.5.11-r6.ebuild:
  Add ~arm/~sh

  18 Jan 2009; Gilles Dartiguelongue <eva@gentoo.org> hal-0.5.11-r6.ebuild:
  Update PDEPEND on hal-info, follow up on bug #241912.

  15 Jan 2009; Peter Alfredsen <loki_val@gentoo.org> metadata.xml:
  Compnerd retired.

  13 Jan 2009; Doug Goldstein <cardoe@gentoo.org> metadata.xml:
  gentopia is becoming freedesktop

*hal-0.5.11-r6 (06 Jan 2009)

  06 Jan 2009; <chainsaw@gentoo.org> -hal-0.5.11-r5.ebuild,
  +hal-0.5.11-r6.ebuild:
  Bad interactions between the ARM & PPC setup meant the PMU was
  enabled/disabled twice. Avoid by using hardware variable instead of
  use_enable for PMU.

*hal-0.5.11-r5 (05 Jan 2009)

  05 Jan 2009; <chainsaw@gentoo.org> +hal-0.5.11-r5.ebuild:
  Enable PMU support for PowerPC hardware, as suggested by Christian Schmitt
  <chrschmitt@gmail.com> in bug #253866.

  28 Dec 2008; Raúl Porcel <armin76@gentoo.org> hal-0.5.11-r1.ebuild:
  Fix bug #252587

  24 Dec 2008; Doug Goldstein <cardoe@gentoo.org> hal-0.5.11-r1.ebuild,
  hal-0.5.11-r4.ebuild:
  fixes to ensure we die on failure of some files. fix paths to migration
  script

  23 Dec 2008; Doug Goldstein <cardoe@gentoo.org> -hal-0.5.7.1-r5.ebuild,
  -hal-0.5.9-r1.ebuild, -hal-0.5.9.1-r1.ebuild, -hal-0.5.9.1-r2.ebuild,
  -hal-0.5.10.ebuild, -hal-0.5.11.ebuild, -hal-0.5.11-r2.ebuild,
  -hal-0.5.11-r3.ebuild:
  remove old versions that are no longer supported

  23 Dec 2008; Doug Goldstein <cardoe@gentoo.org> hal-0.5.11-r1.ebuild,
  hal-0.5.11-r2.ebuild, hal-0.5.11-r3.ebuild, hal-0.5.11-r4.ebuild:
  add back die statements to hopefully prevent successful installations when
  files failed to copy

  19 Dec 2008; Peter Volkov <pva@gentoo.org> hal-0.5.7.1-r5.ebuild,
  hal-0.5.9-r1.ebuild, hal-0.5.9.1-r1.ebuild, hal-0.5.9.1-r2.ebuild,
  hal-0.5.9.1-r3.ebuild, hal-0.5.10.ebuild, hal-0.5.11.ebuild,
  hal-0.5.11-r1.ebuild, hal-0.5.11-r2.ebuild, hal-0.5.11-r3.ebuild,
  hal-0.5.11-r4.ebuild:
  Removed || die after enewuser/enewgroup, bug #237286.

  28 Oct 2008; Markus Rothe <corsair@gentoo.org> hal-0.5.11-r4.ebuild:
  Stable on ppc64

*hal-0.5.11-r4 (26 Oct 2008)

  26 Oct 2008; Markus Rothe <corsair@gentoo.org>
  +files/hal-0.5.11-ppc64.patch, +hal-0.5.11-r4.ebuild:
  Add the patch for ppc64 and ~ppc64 to keywords; bug #176380

  18 Oct 2008; Brent Baude <ranger@gentoo.org> hal-0.5.11-r1.ebuild:
  Marking hal-0.5.11-r1 ppc because nixnut said so

  21 Sep 2008; nixnut <nixnut@gentoo.org> hal-0.5.11-r1.ebuild,
  hal-0.5.11-r2.ebuild, hal-0.5.11-r3.ebuild:
  Added ~ppc

*hal-0.5.11-r3 (11 Sep 2008)

  11 Sep 2008; Saleem Abdulrasool <compnerd@gentoo.org>
  +hal-0.5.11-r3.ebuild:
  Revbump with another patch for udev interface change fallouts

  05 Sep 2008; Alexis Ballier <aballier@gentoo.org> hal-0.5.11-r2.ebuild:
  bump libvolume_id requirement for freebsd

  04 Sep 2008; Saleem Abdulrasool <compnerd@gentoo.org>
  hal-0.5.11-r2.ebuild:
  Fix deps for udev (thanks to zzam for pointing out that it had been left
  unchanged accidentally). sonypic support requires linux, move it inside
  the kernel_linux check.

*hal-0.5.11-r2 (04 Sep 2008)

  04 Sep 2008; Saleem Abdulrasool <compnerd@gentoo.org>
  +hal-0.5.11-r2.ebuild:
  revbump to new patchset, fix for udev > 126, gentoo bugs #232195, #183862

  23 Aug 2008; Doug Goldstein <cardoe@gentoo.org> metadata.xml:
  add GLEP 56 USE flag desc from use.local.desc

  17 Aug 2008; Michael Sterrett <mr_bones_@gentoo.org> hal-0.5.11.ebuild,
  hal-0.5.11-r1.ebuild:
  remove reference to sys-fs/cryptsetup-luks which has gone away

  05 Aug 2008; Tobias Klausmann <klausman@gentoo.org> hal-0.5.11-r1.ebuild:
  Stable on alpha, bug #222219

  28 Jul 2008; Raúl Porcel <armin76@gentoo.org> hal-0.5.11-r1.ebuild:
  x86 stable wrt #222219

  27 Jun 2008; Olivier Crête <tester@gentoo.org> hal-0.5.11-r1.ebuild:
  Fix depend on hal-info to accept newer versions

  23 Jun 2008; Jeroen Roovers <jer@gentoo.org> hal-0.5.11-r1.ebuild:
  Stable for HPPA (bug #222219).

  19 Jun 2008; Olivier Crête <tester@gentoo.org> hal-0.5.11-r1.ebuild:
  amd64 stable, bug #222219

  16 Jun 2008; Raúl Porcel <armin76@gentoo.org> hal-0.5.11-r1.ebuild:
  ia64/sparc stable wrt #222219

  01 Jun 2008; nixnut <nixnut@gentoo.org> hal-0.5.10.ebuild:
  Added ~ppc wrt bug 200050

*hal-0.5.11-r1 (29 May 2008)

  29 May 2008; Saleem Abdulrasool <compnerd@gentoo.org>
  +hal-0.5.11-r1.ebuild:
  Fix building with libtool, optionalize the X dep with the X useflag.

  22 May 2008; Tobias Klausmann <klausman@gentoo.org> hal-0.5.11.ebuild:
  Keyworded on alpha, bug #222899

  21 May 2008; Raúl Porcel <armin76@gentoo.org> hal-0.5.11.ebuild:
  Add ~ia64 wrt #222899

  20 May 2008; Ferris McCormick <fmccor@gentoo.org> hal-0.5.11.ebuild:
  Add back ~sparc keyword, Bug #222899.

  20 May 2008; Jeroen Roovers <jer@gentoo.org> hal-0.5.11.ebuild:
  Marked ~hppa (bug #222899).

  20 May 2008; Saleem Abdulrasool <compnerd@gentoo.org>
  hal-0.5.7.1-r5.ebuild, hal-0.5.9-r1.ebuild, hal-0.5.9.1-r1.ebuild,
  hal-0.5.9.1-r2.ebuild, hal-0.5.9.1-r3.ebuild, hal-0.5.10.ebuild:
  Fix minor quoting issues

*hal-0.5.11 (20 May 2008)

  20 May 2008; Saleem Abdulrasool <compnerd@gentoo.org> +hal-0.5.11.ebuild:
  Version bump from upstream

  20 Apr 2008; Mike Frysinger <vapier@gentoo.org>
  +files/hal-0.5.10-autotools.patch, hal-0.5.10.ebuild:
  Fix building with newer libtool #212772.

  14 Apr 2008; Doug Goldstein <cardoe@gentoo.org> hal-0.5.7.1-r5.ebuild,
  hal-0.5.9-r1.ebuild, hal-0.5.9.1-r1.ebuild, hal-0.5.9.1-r2.ebuild,
  hal-0.5.9.1-r3.ebuild, hal-0.5.10.ebuild:
  cryptsetup-luks -> cryptsetup

  09 Apr 2008; Raúl Porcel <armin76@gentoo.org> hal-0.5.10.ebuild:
  Add ~ia64/~sparc wrt #200050

  03 Apr 2008; Tobias Klausmann <klausman@gentoo.org> hal-0.5.10.ebuild:
  Keyworded for alpha, bug #216084

  02 Mar 2008; Ryan Hill <dirtyepic@gentoo.org> hal-0.5.10.ebuild:
  Keyword ~mips since we're using linux-headers now.

  20 Feb 2008; Chris Gianelloni <wolf31o2@gentoo.org> hal-0.5.7.1-r5.ebuild,
  hal-0.5.9-r1.ebuild, hal-0.5.9.1-r1.ebuild, hal-0.5.9.1-r2.ebuild,
  hal-0.5.9.1-r3.ebuild, hal-0.5.10.ebuild:
  I hate blank spaces in output for no reason, so switching from using echo to
  using an extra \n at the end of the line.

  08 Feb 2008; Chris Gianelloni <wolf31o2@gentoo.org> hal-0.5.7.1-r5.ebuild,
  hal-0.5.9-r1.ebuild, hal-0.5.9.1-r1.ebuild, hal-0.5.9.1-r2.ebuild,
  hal-0.5.9.1-r3.ebuild, hal-0.5.10.ebuild:
  Refactoring Linux kernel checks so hal doesn't bomb out on an unconfigured
  kernel. Closing bug #209025.

  10 Jan 2008; Jeroen Roovers <jer@gentoo.org> hal-0.5.10.ebuild:
  Marked ~hppa (bug #200050).

  07 Jan 2008; Saleem Abdulrasool <compnerd@gentoo.org> hal-0.5.10.ebuild:
  Add a message regarding keyboard layout mechanisms

  05 Jan 2008; Saleem Abdulrasool <compnerd@gentoo.org> hal-0.5.10.ebuild:
  Add laptop useflag for pm-utils

  05 Jan 2008; Saleem Abdulrasool <compnerd@gentoo.org>
  files/0.5.10-hald.rc, hal-0.5.10.ebuild:
  Update the state to mirror gentopia's ebuild

  25 Dec 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  +files/96_plugdev_allow_send.patch, hal-0.5.10.ebuild:
  Pull in cardoe's patches

  06 Dec 2007; Doug Klima <cardoe@gentoo.org> metadata.xml:
  removed myself as a maintainer of HAL.

  23 Nov 2007; Jeroen Roovers <jer@gentoo.org> hal-0.5.9.1-r3.ebuild:
  Stable for HPPA (bug #199654).

  23 Nov 2007; Saleem Abdulrasool <compnerd@gentoo.org> hal-0.5.10.ebuild:
  hal-device-manager is no longer bundled, dont move it

  23 Nov 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  hal-0.5.7.1-r5.ebuild, hal-0.5.9-r1.ebuild, hal-0.5.9.1-r1.ebuild,
  hal-0.5.9.1-r2.ebuild, hal-0.5.9.1-r3.ebuild:
  Fix quoting issues

*hal-0.5.10 (23 Nov 2007)

  23 Nov 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  +files/0.5.10-hald.conf, +files/0.5.10-hald.rc,
  +files/hal-0.5.9-hide-recovery-partitions.patch, +hal-0.5.10.ebuild:
  Version bump from upstream

  22 Nov 2007; Doug Klima <cardoe@gentoo.org> metadata.xml:
  Provide explicit USE flag descriptions in metadata.xml

  21 Nov 2007; nixnut <nixnut@gentoo.org> hal-0.5.9.1-r3.ebuild:
  Stable on ppc wrt bug 199654

  12 Nov 2007; Samuli Suominen <drac@gentoo.org> hal-0.5.9.1-r3.ebuild:
  amd64 stable

  12 Nov 2007; Raúl Porcel <armin76@gentoo.org> hal-0.5.9.1-r3.ebuild:
  alpha/ia64/sparc/x86 stable

*hal-0.5.9.1-r3 (04 Nov 2007)

  04 Nov 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  +hal-0.5.9.1-r3.ebuild:
  Bump pciutils dep to drop the zlib die

  31 Aug 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9-r1.ebuild,
  hal-0.5.9.1-r1.ebuild, hal-0.5.9.1-r2.ebuild:
  change libparted depend as suggested by agaffney in bug #190860

*hal-0.5.9.1-r2 (28 Aug 2007)

  28 Aug 2007; Doug Goldstein <cardoe@gentoo.org> +hal-0.5.9.1-r2.ebuild:
  fixed bug #188911. switched to patch tarballs and using git so this is more
  of an experiment revision

  28 Aug 2007; Jeroen Roovers <jer@gentoo.org> hal-0.5.9.1-r1.ebuild:
  Stable for HPPA (bug #185823).

  14 Aug 2007; Benjamin Smee <strerror@gentoo.org> ChangeLog:
  Change for bug #188772

  07 Aug 2007; Gustavo Zacarias <gustavoz@gentoo.org> hal-0.5.9.1-r1.ebuild:
  Stable on sparc wrt #185823

  06 Aug 2007; Raúl Porcel <armin76@gentoo.org> hal-0.5.9.1-r1.ebuild:
  alpha stable

  06 Aug 2007; Mike Frysinger <vapier@gentoo.org> hal-0.5.9-r1.ebuild,
  hal-0.5.9.1-r1.ebuild:
  Also check for USE=hal hack.

  03 Aug 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  files/0.5.9/99_sun_disklabel_ignore.patch:
  Fix sun disklabel rule

  01 Aug 2007; Doug Goldstein <cardoe@gentoo.org>
  files/0.5.9/24_libparted_1_8_7.patch:
  refresh 24_libparted_1_8_7.patch

  01 Aug 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/0.5.9/24_libparted_1_8_7.patch, files/0.5.9/series,
  hal-0.5.9-r1.ebuild, hal-0.5.9.1-r1.ebuild:
  update libparted version requirements to include 1.8.7 per bug #187322

  01 Aug 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/0.5.9/99_sun_disklabel_ignore.patch, -hal-0.5.7.1-r3.ebuild,
  -hal-0.5.9.ebuild, -hal-0.5.9.1.ebuild, hal-0.5.9.1-r1.ebuild:
  ingore sun disklabel partition. remove old versions

*hal-0.5.9.1-r1 (26 Jul 2007)

  26 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  +files/0.5.9/23_runner_64bit_values.patch, files/0.5.9/series,
  +hal-0.5.9.1-r1.ebuild:
  Fix for bug #176274

  14 Jul 2007; Raúl Porcel <armin76@gentoo.org> hal-0.5.9-r1.ebuild:
  ia64 stable

  10 Jul 2007; Raúl Porcel <armin76@gentoo.org> hal-0.5.9.1.ebuild:
  Add ~alpha wrt #172789, thanks to Tobias Klausmann for testing

  08 Jul 2007; Michael Sterrett <mr_bones_@gentoo.org>
  hal-0.5.7.1-r3.ebuild:
  remove reference to old, removed dbus (bug #183696)

  26 Jun 2007; Roy Marples <uberlord@gentoo.org> hal-0.5.9.1.ebuild:
  Re-add stdlib.h instead for malloc patch, #182799.

  19 Jun 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9.1.ebuild:
  oops. Committed straight to stable

  19 Jun 2007; Raúl Porcel <armin76@gentoo.org> hal-0.5.7.1-r5.ebuild:
  alpha stable wrt #166790, thanks to Tobias Klausmann for testing

*hal-0.5.9.1 (19 Jun 2007)

  19 Jun 2007; Doug Goldstein <cardoe@gentoo.org> +hal-0.5.9.1.ebuild:
  rev bump

  18 Jun 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9-r1.ebuild:
  add app-text/xmlto to depends

  18 Jun 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9-r1.ebuild:
  --with-docdir -> --docdir hal-0.5.9-r1.ebuild

  15 Jun 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9-r1.ebuild:
  Fixing doc-dir -> docdir. bug #182173 thx Chris Mayo <mayo@clara.co.uk>

  15 Jun 2007; Tobias Scherbaum <dertobi123@gentoo.org> hal-0.5.9-r1.ebuild:
  ppc stable, bug #181317

  15 Jun 2007; Christoph Mende <angelos@gentoo.org> hal-0.5.9-r1.ebuild:
  Stable on amd64 wrt bug 181317

  15 Jun 2007; Christian Faulhammer <opfer@gentoo.org> hal-0.5.9-r1.ebuild:
  stable x86, bug 181317

  14 Jun 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/0.5.9/98_hald_cache_test_path.patch, files/0.5.9/series,
  hal-0.5.9-r1.ebuild:
  fix make test. bug #176535

  08 May 2007; Doug Goldstein <cardoe@gentoo.org>
  files/0.5.9/13_detect_newer_macbooks.patch,
  +files/0.5.9/20_firewire_prober_ioctls_fix.patch,
  +files/0.5.9/21_pm-suspend_correct_options.patch,
  +files/0.5.9/22_pm-hibernate_correct_options.patch, files/0.5.9/series:
  Touch up MacBook detection patch. Add firewire prober update for ioctls. Fix
  pm-suspend/pm-hibernate options

  07 May 2007; Tony Vroon <chainsaw@gentoo.org> hal-0.5.9.ebuild,
  hal-0.5.9-r1.ebuild:
  Remove PPC64 keywords for 0.5.9 & 0.5.9-r1 as these fail to start on PPC64,
  bug #176380.

*hal-0.5.9-r1 (27 Apr 2007)

  27 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  files/0.5.9/17_autoconf_cflag_cleanup.patch, +hal-0.5.9-r1.ebuild:
  Add version that's locked to a certain patchset.

  25 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  files/0.5.9/18_hal_fix_info.category_for_laptop_panel_v2.patch:
  fix mismatched tag in Danny's patch

  25 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  files/0.5.9/18_hal_fix_info.category_for_laptop_panel_v2.patch,
  +files/0.5.9/19_hald_runner_catch_dbus_disconnect.patch,
  files/0.5.9/series:
  refresh previous patch. Add fix to catch D-Bus disconnect from hald_runner
  (possible sparc fix)

  25 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/0.5.9/17_autoconf_cflag_cleanup.patch,
  +files/0.5.9/18_hal_fix_info.category_for_laptop_panel_v2.patch,
  files/0.5.9/series:
  fix up autoconf CFLAG detection. Fix for info.category for laptop panels

  24 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  files/0.5.9/97_ignore_fixed_drives.patch:
  Ignore /boot if possible.

  24 Apr 2007; Doug Goldstein <cardoe@gentoo.org> files/0.5.9-hald.rc,
  +files/0.5.9/16_dev_root_is_mounted.patch, files/0.5.9/series:
  Patch from Kay Sievers for assuming / is mounted and looking it up via
  stat(). Remove /dev/root check from init script.

  20 Apr 2007; Doug Goldstein <cardoe@gentoo.org> files/0.5.9-hald.rc,
  hal-0.5.9.ebuild:
  better checking of /proc/mounts's / reference. drop arches that don't have
  ~arch for hal-info for QA.

  19 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/0.5.9/15_spec_fdi_matching.patch,
  files/0.5.9/97_ignore_fixed_drives.patch, files/0.5.9/series:
  Add missing fdi matching rules to spec file. Implemented missing double
  match. Cleaned up ignored volumes patch.

  19 Apr 2007; Doug Goldstein <cardoe@gentoo.org> files/0.5.9-hald.rc:
  init script tweak to require /dev/root

  18 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  files/0.5.9/97_ignore_fixed_drives.patch:
  ignored volumes clean up

  18 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/0.5.9/13_detect_newer_macbooks.patch,
  +files/0.5.9/14_ntfs_allows_utf8.patch,
  +files/0.5.9/97_ignore_fixed_drives.patch, files/0.5.9/series,
  hal-0.5.9.ebuild:
  Since KDE doesn't support ConsoleKit yet and the technicals have not been
  worked out 100%, leaving ConsoleKit out of this release. Re-added the utf8
  for ntfs patch. Re-added the detect newer MacBookPro's patch. Re-added
  ignore fixed volumes patch. These were dropped by accident in 0.5.9.

  17 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  -files/hal-0.5.1-old_storage_policy.patch, -files/hal-0.5.5.1-RBC.patch,
  -files/hal-0.5.9-update_dtd.patch, files/0.5.9-hald.conf,
  files/0.5.9-hald.rc, +files/0.5.9/11_hal_fix_segfault_probe_volume.patch,
  +files/0.5.9/12_hal_fix-vol_label_probe_volume.patch, files/0.5.9/series,
  -files/fix-scsi-fake-host-event.patch, hal-0.5.9.ebuild:
  Clean up init script. Add HALD_VERBOSE to conf.d script. Add some proposed
  patches to fix volume label segfault as experienced on sparc. Removed old
  patches.

  16 Apr 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9.ebuild:
  keepdir /var/run/hald for the unix socket

  16 Apr 2007; Roy Marples <uberlord@gentoo.org> hal-0.5.9.ebuild:
  Blessed with the ~x86-fbsd keyword.

  16 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/0.5.9/10_freebsd_storage_reprobe_fix.patch, files/0.5.9/series:
  storage addon re-probe fix for FreeBSD from Joe Marcus Clarke
  <marcus@freebsd.org>

  13 Apr 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9.ebuild:
  We don't support pciutils pci.ids files gzipped

  13 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/0.5.9/08_contains_not_fdi_directive.patch,
  +files/0.5.9/09_hald_addon_keyboard_start_one.patch, files/0.5.9/series:
  upstream fixes for hal addon keyboard

  12 Apr 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9.ebuild:
  haldaemon groups tweak for FreeBSD

  12 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  files/0.5.9/05_freebsd_partutil_make_fix.patch,
  files/0.5.9/06_freebsd_backend_fix.patch, hal-0.5.9.ebuild:
  HAL compiles on Gentoo/FreeBSD

  11 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  files/0.5.9/06_freebsd_backend_fix.patch:
  Fix FreeBSD backend some more

  11 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  files/0.5.9/07_malloc_h_for_stdlib_h.patch,
  -files/0.5.9/08_hald-mallopt-include-malloc.patch:
  Merge compnerd's patch into previous

  11 Apr 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  +files/0.5.9/08_hald-mallopt-include-malloc.patch:
  Add patch to fix compiling on Linux

  11 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  files/0.5.9/04_cache_regen_return_fix.patch,
  files/0.5.9/05_freebsd_partutil_make_fix.patch,
  +files/0.5.9/06_freebsd_backend_fix.patch,
  +files/0.5.9/07_malloc_h_for_stdlib_h.patch, files/0.5.9/series:
  FreeBSD backend fixes. malloc.h -> stdlib.h

  11 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/0.5.9/05_freebsd_partutil_make_fix.patch, files/0.5.9/series,
  hal-0.5.9.ebuild:
  Fix partutil compile for FreeBSD. Make pkg_setup stuff not run on FreeBSD
  since it's Linux specific.

  11 Apr 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9.ebuild:
  cryptsetup-luks marked as Linux only

  10 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/0.5.9/04_cache_regen_return_fix.patch, files/0.5.9/series:
  Fixed logic issue in cache regen check. Submitted upstream.

  10 Apr 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9.ebuild:
  Fix up access violations with the sed

  09 Apr 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9.ebuild:
  Gentoo/FreeBSD dep on libvolume_id. udev is only Linux as well

  09 Apr 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9.ebuild:
  INOTIFY -> INOTIFY_USER

  09 Apr 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9.ebuild:
  add Inotify support warning

  07 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/0.5.9/95_gentoo_man_page.patch,
  +files/0.5.9/96_plugdev_allow_send.patch, files/0.5.9/series,
  hal-0.5.9.ebuild:
  man page changes for Gentoo. migrate plugdev policy patch to new patchset.

  06 Apr 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9.ebuild:
  Fix up SELinux support

  06 Apr 2007; Doug Goldstein <cardoe@gentoo.org> files/0.5.9-hald.rc,
  hal-0.5.9.ebuild:
  util-linux is only for Linux. init script depends on acpid now if the person
  uses acpid. So we don't grab the /proc/acpi/event before acpid.

  06 Apr 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9.ebuild:
  Adding kernel_linux and kernel_FreeBSD to IUSE

  05 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/0.5.9/02_acpi_repeated_property_change.patch,
  +files/0.5.9/03_crasher_fix_fail_to_return_value.patch,
  files/0.5.9/series, hal-0.5.9.ebuild:
  Re-work acpi USE flag usage. Add pam USE flag for sys-auth/consolekit.
  Remove mactel USE flag since it will auto build and that's how it should.
  Added linux-sources depend on having a Linux kernel. Check for Linux or
  FreeBSD kernel to support both Gentoo/Linux and Gentoo/FreeBSD. Add building
  of dell utilies based on dell USE flag so we don't have an automagical
  depend. 2 upstream fixes. One for duplicate acpi messages. One for a
  possible crasher.

  05 Apr 2007; Doug Goldstein <cardoe@gentoo.org> +files/0.5.9-hald.rc,
  +files/0.5.9/series, -files/hald, hal-0.5.9.ebuild:
  Adding 0.5.9 init script which uses consolekit. Removing 0.4.x series init
  script. Remove uneeded dodir calls. Add keepdir /var/lib/cache/hald since
  HAL bombs without that directory. Adding quilt series file so we can use
  quilt to maintain patches.

  03 Apr 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/0.5.9/01_luks_mount_fix.patch, hal-0.5.9.ebuild:
  add support for Gentoo Patchset applying via versioned directories (to use
  quilt). Fix from upstream for LUKS mounting

*hal-0.5.9 (03 Apr 2007)

  03 Apr 2007; Steev Klimaszewski <steev@gentoo.org> -hal-0.5.9_rc2.ebuild,
  -hal-0.5.9_rc3.ebuild, +hal-0.5.9.ebuild:
  Hal 0.5.9 release. remove the release candidates.

  02 Apr 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.9_rc3.ebuild:
  Change linux-headers depend to 2.6.17 or higher. Remove mips-headers since
  newest they have is 2.6.16. Add -mips since it won't work with their
  headers.

  02 Apr 2007; Steev Klimaszewski <steev@gentoo.org>
  +files/hal-0.5.9-update_dtd.patch, hal-0.5.9_rc3.ebuild:
  Update dtd for hal as well.

  01 Apr 2007; Steev Klimaszewski <steev@gentoo.org>
  -files/hal-0.5.9-button_capabilities.patch, hal-0.5.9_rc3.ebuild:
  Back out the last commit.

  01 Apr 2007; Steev Klimaszewski <steev@gentoo.org>
  +files/hal-0.5.9-button_capabilities.patch, hal-0.5.9_rc3.ebuild:
  Add patch to 0.5.9_rc3 for keyboard button capabilities.

*hal-0.5.9_rc3 (01 Apr 2007)

  01 Apr 2007; Steev Klimaszewski <steev@gentoo.org> +hal-0.5.9_rc3.ebuild:
  New upstream release, again, please test this one, 0.5.9 is around the corner.

  30 Mar 2007; Steev Klimaszewski <steev@gentoo.org>
  +files/fix-scsi-fake-host-event.patch, hal-0.5.9_rc2.ebuild:
  Patch for scsi devices that don't have parents... this will fix the "hald
  won't start" errors.

  30 Mar 2007; Doug Goldstein <cardoe@gentoo.org> metadata.xml,
  -hal-0.5.7-r3.ebuild, -hal-0.5.7.1-r4.ebuild:
  remove old version. metadata fixes.

*hal-0.5.9_rc2 (30 Mar 2007)

  30 Mar 2007; Steev Klimaszewski <steev@gentoo.org> +hal-0.5.9_rc2.ebuild:
  New upstream release - this is a release candidate, and the final should be
  released within the next few days.  Package.masked, please test.

  19 Feb 2007; <cardoe@gentoo.org> hal-0.5.7.1-r5.ebuild:
  Add back hal_unmount that was accidently removed

  15 Feb 2007; Jeroen Roovers <jer@gentoo.org> hal-0.5.7.1-r5.ebuild:
  Stable for HPPA (bug #166790).

  15 Feb 2007; Gustavo Zacarias <gustavoz@gentoo.org> hal-0.5.7.1-r5.ebuild:
  Stable on sparc wrt #166790

  14 Feb 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.7.1-r5.ebuild:
  Fix issue with newer pciutils that uses gzipped pci.ids, which HAL can not
  handle

  14 Feb 2007; Markus Rothe <corsair@gentoo.org> hal-0.5.7.1-r5.ebuild:
  Stable on ppc64; bug #166790

  14 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  hal-0.5.7.1-r5.ebuild:
  stable x86; bug 166790

  14 Feb 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.7.1-r5.ebuild:
  HAL does not read gzipped pci.ids data.

  14 Feb 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.7.1-r5.ebuild:
  Retain current dmidecode behavior

  14 Feb 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.7.1-r5.ebuild:
  Changing kernel checks from eerror to ewarn for the 2007.0 release media

  14 Feb 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.7.1-r5.ebuild:
  ACPI stuff didn't work for -r5. Waiting until 0.5.8.1

*hal-0.5.7.1-r5 (13 Feb 2007)

  13 Feb 2007; Doug Goldstein <cardoe@gentoo.org> +hal-0.5.7.1-r5.ebuild:
  Turn dmi on always for amd64, ia64, and x86. Fix ACPI support, prefering
  ACPI proc vs ACPId. bug #165822, bug #157220, bug #164652, & bug #152923

  13 Feb 2007; Bryan Østergaard <kloeri@gentoo.org> hal-0.5.7.1-r3.ebuild:
  Stable on Alpha + IA64.

  30 Jan 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/hal-0.5.7.1-ctype-fix.patch, hal-0.5.7.1-r4.ebuild:
  Fix undefined ctype.h include so everyone can stop getting their panties in
  a bundle.

*hal-0.5.7.1-r4 (30 Jan 2007)

  30 Jan 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/hal-0.5.7.1-autofs-subfs.patch,
  +files/hal-0.5.7.1-floppies-fix.patch,
  +files/hal-0.5.7.1-hald-scripts.patch,
  -files/hal-0.5.7.1-hibernate-fix-r1.patch,
  +files/hal-0.5.7.1-ipod-nano.patch, -hal-0.5.5.1-r3.ebuild,
  -hal-0.5.7.1-r2.ebuild, hal-0.5.7.1-r3.ebuild, +hal-0.5.7.1-r4.ebuild:
  Fixed hotplug depend. Fixed installing old unused udev rule. Fix for bug
  #133743 from Gilles Dartiguelongue <dartigug@esiee.fr>. Fix bug #154648. Fix
  bug #158304. Fix bug #163233.

  29 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org> hal-0.5.7.1-r3.ebuild:
  Stable on sparc wrt #162942

  23 Jan 2007; Jeroen Roovers <jer@gentoo.org> hal-0.5.7.1-r3.ebuild:
  Stable for HPPA (bug #162942).

  22 Jan 2007; Olivier Crête <tester@gentoo.org> hal-0.5.7.1-r3.ebuild:
  Stable on amd64 per bug #162942

  21 Jan 2007; Markus Rothe <corsair@gentoo.org> hal-0.5.7.1-r3.ebuild:
  Stable on ppc64; bug #162942

  21 Jan 2007; nixnut <nixnut@gentoo.org> hal-0.5.7.1-r3.ebuild:
  Stable on ppc wrt bug 162942

  21 Jan 2007; Andrej Kacian <ticho@gentoo.org> hal-0.5.7.1-r3.ebuild:
  Stable on x86, bug #162942.

  18 Jan 2007; Doug Goldstein <cardoe@gentoo.org> hal-0.5.7.1-r3.ebuild:
  Undo fixing bug #133743 since none of the patches actually work

*hal-0.5.7.1-r3 (18 Jan 2007)

  18 Jan 2007; Doug Goldstein <cardoe@gentoo.org>
  +files/hal-0.5.7.1-hibernate-fix-r1.patch, -hal-0.5.7.1-r1.ebuild,
  hal-0.5.7.1-r2.ebuild, +hal-0.5.7.1-r3.ebuild:
  Fixed bug #133743 and bug #161057

  05 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> hal-0.5.5.1-r3.ebuild,
  hal-0.5.7-r3.ebuild, hal-0.5.7.1-r1.ebuild, hal-0.5.7.1-r2.ebuild:
  Remove debug.eclass usage.

  04 Dec 2006; Doug Goldstein <cardoe@gentoo.org> hal-0.5.7.1-r1.ebuild,
  hal-0.5.7.1-r2.ebuild:
  Some depend fixes for the new udev

  30 Nov 2006; Donnie Berkholz <dberkholz@gentoo.org>;
  +files/hal-0.5.5.1-RBC.patch, +files/hal-unmount.dev:
  Restore a couple of files needed for 0.5.5.1-r3 that must've been
  accidentally removed.

  20 Nov 2006; Saleem Abdulrasool <compnerd@gentoo.org> hal-0.5.7-r3.ebuild:
  Fix dbus dependencies for dbus-1.0 release

  19 Nov 2006; Doug Goldstein <cardoe@gentoo.org>
  files/hal-0.5.7.1-hibernate-fix.patch:
  patch didn't work for some people

*hal-0.5.7.1-r2 (15 Nov 2006)

  15 Nov 2006; Doug Goldstein <cardoe@gentoo.org>
  +files/hal-0.5.7.1-hibernate-fix.patch,
  +files/hal-0.5.7.1-ignored-volumes.patch, hal-0.5.7.1-r1.ebuild,
  +hal-0.5.7.1-r2.ebuild:
  Fixing bug #155275, bug #147867, bug #140666 (the HAL parts not the KDE
  parts of it), bug #133743, and refactored patch from bug #146910 so I don't
  have to kill Ivan and Fabio.

  31 Oct 2006; <christel@gentoo.org> hal-0.5.7-r3.ebuild:
  Alpha stable

  16 Oct 2006; Stefan Schweizer <genstef@gentoo.org> hal-0.5.7-r3.ebuild,
  -hal-0.5.7.1.ebuild, hal-0.5.7.1-r1.ebuild:
  Handle no kernel sources with eerror instead of die, thanks to Chris
  Gianelloni <wolf31o2@gentoo.org> in bug 129811

  22 Sep 2006; Doug Goldstein <cardoe@gentoo.org>
  -files/hal-0.4.1-old_storage_policy.patch,
  -files/hal-0.4.5-gentoo_gphoto2_usermap.patch,
  -files/hal-0.4.7-sys_floppy_detection.patch,
  -files/hal-0.4.7-vfat_mount_utf8.patch, -files/hal-0.4.8-fix_dvdram.patch,
  -files/hal-unmount.dev, -hal-0.4.8.ebuild:
  Remove old hal-0.4x series\!

  17 Sep 2006; Steev Klimaszewski <steev@gentoo.org> hal-0.5.7.1-r1.ebuild:
  Added split dependency on either dbus-glib *or* dbus, that way, those people
  who have unmasked dbus-glib it will depend on that first, and if not, fall
  back on dbus monolithic.

*hal-0.5.7.1-r1 (16 Sep 2006)

  16 Sep 2006; Doug Goldstein <cardoe@gentoo.org>
  +files/hal-0.5.7.1-sr-driver.patch, +hal-0.5.7.1-r1.ebuild:
  patch to fix sr driver based drives. bug #147598

  04 Sep 2006; Doug Goldstein <cardoe@gentoo.org>
  -files/hal-0.4.7-dont_add_device_twice-r1.patch, files/0.5-hald.rc,
  -files/hal-0.4.7-device_info_leak.patch, -files/hal-0.5.5.1-RBC.patch,
  -files/hal-0.5.7-drop-privs.patch, -files/hal-0.5.7-unclean-unmount.patch,
  -hal-0.4.7-r2.ebuild, -hal-0.5.7.ebuild, -hal-0.5.7-r1.ebuild,
  -hal-0.5.7-r2.ebuild:
  Fixing HAL initscript. Removing oldness and some cleaning.

  04 Sep 2006; Roy Marples <uberlord@gentoo.org> files/0.5-hald.rc,
  files/hald:
  hald init script dependencies updated, #125938.

  29 Aug 2006; Joshua Jackson <tsunam@gentoo.org> hal-0.5.7-r3.ebuild:
  stable x86; bug #144344

  19 Aug 2006; Bryan Østergaard <kloeri@gentoo.org> hal-0.5.7-r3.ebuild:
  Stable on ia64.

  18 Aug 2006; Markus Rothe <corsair@gentoo.org> hal-0.5.7-r3.ebuild:
  Stable on ppc64

  16 Aug 2006; Markus Rothe <corsair@gentoo.org> hal-0.5.7-r1.ebuild:
  Stable on ppc64

  16 Aug 2006; Steev Klimaszewski <steev@gentoo.org>
  +files/hal-0.5.7.1-dbus-close.patch:
  And add the missing patch, closes bug #144075, thanks to Courtney Oliver for
  reporting.

*hal-0.5.7.1 (16 Aug 2006)

  16 Aug 2006; Steev Klimaszewski <steev@gentoo.org> +hal-0.5.7.1.ebuild:
  New upstream release, with fixes for sysfs changes with kernels > 2.6.17.
  Closes bug #141950.  Thanks to David Watzke for reporting.

  17 Jul 2006; Daniel Gryniewicz <dang@gentoo.org> hal-0.5.7-r3.ebuild:
  Marked stable on amd64 for bug #139612

  16 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org> hal-0.5.7-r3.ebuild:
  hppa stable, bug #139612

  14 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org> hal-0.5.7-r3.ebuild:
  ppc stable, bug #139612

  12 Jul 2006; Chris Gianelloni <wolf31o2@gentoo.org> hal-0.5.7-r1.ebuild:
  Stable on x86 wrt bug #139612.

  10 Jul 2006; Gustavo Zacarias <gustavoz@gentoo.org> hal-0.5.7-r3.ebuild:
  Stable on sparc wrt #139612

*hal-0.5.7-r3 (06 Jun 2006)

  06 Jun 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  +files/hal-0.5.7-hibernate.patch, +hal-0.5.7-r3.ebuild:
  Revision bump for patch to suspend (bug #133743) from b_kopete@hotmail.com

  18 May 2006; Bryan Østergaard <kloeri@gentoo.org> hal-0.5.5.1-r3.ebuild:
  Stable on alpha, bug 113818.

*hal-0.5.7-r2 (08 May 2006)

  08 May 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  +files/hal-0.5.7-unclean-unmount-r1.patch, +hal-0.5.7-r2.ebuild:
  Change the install location for hal-unmount.sh, update the udev rules, and
  change notifications to not die. Bug #131376, 129811.

  01 May 2006; Steev Klimaszewski <steev@gentoo.org> hal-0.4.7-r2.ebuild,
  hal-0.4.8.ebuild, hal-0.5.5.1-r3.ebuild, hal-0.5.7.ebuild,
  hal-0.5.7-r1.ebuild:
  Don't install the INSTALL or COPYING files.  They are available elsewhere and
  just take up disk space.  No revbump just to remove 2 files.

  29 Apr 2006; Steev Klimaszewski <steev@gentoo.org> hal-0.5.7-r1.ebuild:
  We now keepdir /media in hal as both gnome-mount and pmount can use it - Bug
  130795

  27 Apr 2006; Steev Klimaszewski <steev@gentoo.org> hal-0.5.7.ebuild,
  hal-0.5.7-r1.ebuild:
  hal 0.5.7 depends on /proc/mounts which is in 2.6.15, so we require at least
  that version now. Closes bug #127692. Thanks to Peter Clifton for reporting.

*hal-0.5.7-r1 (27 Apr 2006)

  27 Apr 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  +files/hal-0.5.7-rescan-on-resume.patch, +hal-0.5.7-r1.ebuild:
  Adding patch for rescan on resume for gnome-power-manager

  19 Mar 2006; Doug Goldstein <cardoe@gentoo.org> hal-0.5.7.ebuild:
  autoreconf is not needed. fix doexec to doexe

*hal-0.5.7 (19 Mar 2006)

  19 Mar 2006; Doug Goldstein <cardoe@gentoo.org>
  +files/hal-0.5.7-drop-privs.patch, +files/hal-0.5.7-hald-scripts.patch,
  +files/hal-0.5.7-ignored-volumes.patch, +files/hal-0.5.7-part-table.patch,
  +files/hal-0.5.7-plugdev-allow-send.patch, +files/hal-0.5.7-pmu-fix.patch,
  +files/hal-0.5.7-sony-brightness.patch,
  +files/hal-0.5.7-unclean-unmount.patch, +hal-0.5.7.ebuild:
  rev bump but include a bunch of patches with the aim to make this our best
  HAL yet

  03 Feb 2006; Guy Martin <gmsoft@gentoo.org> hal-0.4.8.ebuild:
  Stable on hppa.

  03 Feb 2006; Guy Martin <gmsoft@gentoo.org> hal-0.5.5.1-r3.ebuild:
  Stable on hppa.

  02 Feb 2006; Aron Griffis <agriffis@gentoo.org> hal-0.5.5.1-r3.ebuild:
  Mark 0.5.5.1-r3 ~alpha

  02 Feb 2006; Aron Griffis <agriffis@gentoo.org> hal-0.5.5.1-r3.ebuild:
  Mark 0.5.5.1-r3 stable on ia64

  22 Jan 2006; Markus Rothe <corsair@gentoo.org> hal-0.5.5.1-r3.ebuild:
  Stable on ppc64

  22 Jan 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  hal-0.5.5.1-r3.ebuild:
  ppc stable, bug #113818

  22 Jan 2006; <dang@gentoo.org> hal-0.5.5.1-r3.ebuild:
  Marked stable on amd64 per bug#113818

  22 Jan 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  hal-0.5.5.1-r3.ebuild:
  stable on x86 as per bug #113818

  20 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org> hal-0.5.5.1-r3.ebuild:
  Stable on sparc wrt #119634

  07 Jan 2006; Doug Goldstein <cardoe@gentoo.org> files/0.5-hald.rc:
  adding after coldplug

  06 Jan 2006; Chris PeBenito <pebenito@gentoo.org> hal-0.5.5.1-r3.ebuild:
  Add explicit handling of SELinux support.

  02 Jan 2006; Michael Hanselmann <hansmi@gentoo.org> hal-0.4.8.ebuild:
  Stable on ppc.

  01 Jan 2006; <plasmaroo@gentoo.org> hal-0.4.8.ebuild:
  Stable on IA64.

  31 Dec 2005; Simon Stelling <blubb@gentoo.org> hal-0.4.8.ebuild:
  stable on amd64

  31 Dec 2005; Markus Rothe <corsair@gentoo.org> hal-0.4.8.ebuild:
  Stable on ppc64

  31 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> hal-0.4.7-r2.ebuild:
  Change /bin/false to -1 in enewuser call.

  30 Dec 2005; Saleem Abdulrasool <compnerd@gentoo.org> hal-0.4.8.ebuild:
  stable on x86

  30 Dec 2005; Gustavo Zacarias <gustavoz@gentoo.org> files/0.5-hald.rc:
  Fix hal initscript so it can really start

*hal-0.5.5.1-r3 (29 Dec 2005)

  29 Dec 2005; Doug Goldstein <cardoe@gentoo.org>
  -files/hal-0.4.5-vat_ntfs_labels.patch, files/0.5-hald.rc,
  -files/hal-0.4.5-net_lockup.patch, -hal-0.5.5.1-r2.ebuild,
  +hal-0.5.5.1-r3.ebuild:
  Change initscript to handle possible permission problem. Make note about
  acpid in the ebuild.

  29 Dec 2005; Saleem Abdulrasool <compnerd@gentoo.org>
  hal-0.5.5.1-r2.ebuild:
  Fixing KOBJECT_UEVENT check for 2.6.15 kernels.

  24 Dec 2005; Stefan Schweizer <genstef@gentoo.org> hal-0.5.5.1-r1.ebuild:
  Fix if-statement thanks to Michail A.Baikov <rusxakep@mail.ru> in bug 116376

  21 Dec 2005; Doug Goldstein <cardoe@gentoo.org> files/0.5-hald.rc,
  -hal-0.4.5-r2.ebuild, -hal-0.5.4.ebuild, -hal-0.5.5.1.ebuild,
  hal-0.5.5.1-r1.ebuild:
  ebuild clean ups

*hal-0.5.5.1-r1 (16 Dec 2005)

  16 Dec 2005; Spider <spider@gentoo.org>  hal-0.5.5.1-r1.ebuild,
  files/hal-0.5.5.1-RBC.patch:
  Adding the patch from 
  http://thread.gmane.org/gmane.comp.freedesktop.hal/3915 which unbreaks old 
  iPods (gen3 and below) on firewire.

  14 Dec 2005; Doug Goldstein <cardoe@gentoo.org> hal-0.4.8.ebuild,
  hal-0.5.4.ebuild, hal-0.5.5.1.ebuild:
  Fixed old typo in ||()

  29 Nov 2005; Saleem Abdulrasool <compnerd@gentoo.org> hal-0.5.4.ebuild:
  Adding a revdep-rebuild warning as per comment on bug #113818

  27 Nov 2005; Saleem Abdulrasool <compnerd@gentoo.org> hal-0.5.4.ebuild:
  Backporting kernel check to origival reported version.

  27 Nov 2005; Saleem Abdulrasool <compnerd@gentoo.org> hal-0.5.5.1.ebuild:
  Adding check for CONFIG_KOBJECT_UEVENT to resolve Bug #112186. Thanks to
  Marcel Martin for diagnosing the bug.

*hal-0.5.5.1 (22 Nov 2005)

  22 Nov 2005; Saleem Abdulrasool <compnerd@gentoo.org> +hal-0.5.5.1.ebuild:
  Version bumping with upstream.  Resolves bug #112881

  08 Nov 2005; Saleem Abdulrasool <compnerd@gentoo.org> hal-0.5.4.ebuild:
  Fixing the deps for doc building.  Resolves bug #108994

  19 Oct 2005; Stephen P. Becker <geoman@gentoo.org> hal-0.4.8.ebuild:
  fixed RDEPEND for mips-headers, added ~mips keyword

  17 Oct 2005; Doug Goldstein <cardoe@gentoo.org> hal-0.5.4.ebuild:
  added usb to HAL groups. Added optional supported depend on mips-headers

  15 Sep 2005; <dang@gentoo.org> hal-0.4.8.ebuild:
  Make hal not pass /bin/false as a shell to ecommit. Bug #103421

  07 Sep 2005; Jeremy Huddleston <eradicator@gentoo.org> hal-0.5.4.ebuild:
  Added to ~sparc.

  05 Sep 2005; Gustavo Zacarias <gustavoz@gentoo.org> hal-0.4.8.ebuild:
  Keyworded ~sparc for the experimental profile

  05 Sep 2005; Doug Goldstein <cardoe@gentoo.org> hal-0.5.4.ebuild:
  ${D} -> ${ROOT} clean up ebuild

*hal-0.5.4 (27 Aug 2005)

  27 Aug 2005; Doug Goldstein <cardoe@gentoo.org> -files/hal-udev-63.patch,
  -hal-0.5.2.ebuild, +hal-0.5.4.ebuild:
  rev bump to 0.5.4, yay for the Gnome herd and mobile herd for new features

  26 Aug 2005; Doug Goldstein <cardoe@gentoo.org> hal-0.5.2.ebuild:
  -m Fixing bug #103421

  23 Aug 2005; Aron Griffis <agriffis@gentoo.org> hal-0.4.7-r2.ebuild:
  stable on ia64

*hal-0.5.2 (18 Aug 2005)

  18 Aug 2005; Doug Goldstein <cardoe@gentoo.org> metadata.xml,
  +hal-0.5.2.ebuild, +hal-unmount.dev, +0.5-hald.rc, 
  +hal-0.5.1-old_storage_policy.patch:
  added HAL 0.5.2, but masked, as per Gnome herd's request.
  Added self to maintainership so I can work out 0.5.x issues

  17 Jun 2005; Michael Hanselmann <hansmi@gentoo.org> hal-0.4.7-r2.ebuild:
  Stable on ppc.

  13 Jun 2005; Heinrich Wendel <lanius@gentoo.org> hal-0.4.7-r2.ebuild:
  stable on amd64

  07 Jun 2005; Elfyn McBratney <beu@gentoo.org> hal-0.4.5-r2.ebuild,
  hal-0.4.7-r2.ebuild:
  Fix DEPEND (sys-kernel/linux26-headers is no longer in the tree).

  06 Jun 2005; Markus Rothe <corsair@gentoo.org> hal-0.4.7-r2.ebuild:
  Stable on ppc64

*hal-0.4.8 (27 May 2005)

  27 May 2005; foser <foser@gentoo.org> hal-0.4.8.ebuild :
  New release, add sanity back to pkg_setup
  Fixed headers dep (#89550)
  Add patch to fix dvdram detection

  09 May 2005; Aron Griffis <agriffis@gentoo.org> hal-0.4.5-r2.ebuild:
  stable on ia64

  24 Apr 2005; Daniel Drake <dsd@gentoo.org> hal-0.4.5-r2.ebuild,
  hal-0.4.7-r2.ebuild:
  Add sanity to pkg_setup.. also fixes usage with portage-HEAD

*hal-0.4.7-r2 (17 Apr 2005)

  17 Apr 2005; foser <foser@gentoo.org> hal-0.4.7-r2.ebuild :
  Fix floppy detection with newer kernels
  Change policy on mounting removable drives (#83025)
  Keepdir some policy dirs (#87167)

  09 Apr 2005; Markus Rothe <corsair@gentoo.org> hal-0.4.5-r2.ebuild:
  Stable on ppc64

  07 Apr 2005; Simon Stelling <blubb@gentoo.org> hal-0.4.5-r2.ebuild:
  stable on amd64

  28 Mar 2005; Michael Hanselmann <hansmi@gentoo.org> hal-0.4.5-r2.ebuild:
  Stable on ppc.

*hal-0.4.7-r1 (21 Mar 2004)

  21 Mar 2005; foser <foser@gentoo.org> hal-0.4.7-r1.ebuild :
  Add memleak fix & coldplug double add of devices patches

  20 Feb 2005; Heinrich Wendel <lanius@gentoo.org> hal-0.4.5-r2.ebuild:
  move back to testing, it requires a 2.6.10 kernel which is not yet stable on
  amd64

  19 Feb 2005; Heinrich Wendel <lanius@gentoo.org> hal-0.4.5-r2.ebuild:
  stable on amd64

*hal-0.4.7 (06 Feb 2005)

  06 Feb 2005; foser <foser@gentoo.org> hal-0.4.7.ebuild :
  New release (#79968)

*hal-0.4.5-r2 (18 Jan 2005)

  18 Jan 2005; foser <foser@gentoo.org> hal-0.4.5-r2.ebuild :
  Add fix for #78564, requires some ugly checks for having a 2.6.10 kernel
  Added some further ntfs/fat label detection fixes

*hal-0.4.5-r1 (17 Jan 2005)

  17 Jan 2005; foser <foser@gentoo.org> hal-0.4.5-r1.ebuild :
  Add patch to find the gphoto2 usermap (#75799)

*hal-0.4.5 (13 Jan 2005)

  13 Jan 2005; foser <foser@gentoo.org> hal-0.4.5.ebuild :
  Fresh release (bugfixes)

  12 Jan 2005; foser <foser@gentoo.org> hal-0.4.4-r1.ebuild :
  Change the iso label patch for a somewhat cleaner one

  12 Jan 2005; foser <foser@gentoo.org> hal-0.4.2-r1.ebuild :
  Fix SRC_URI (#77478) thnx to Gudleik Rasch for noticing

  11 Jan 2005; John Mylchreest <johnm@gentoo.org> hal-0.2.98-r1.ebuild,
  hal-0.4.1-r1.ebuild, hal-0.4.2-r1.ebuild, hal-0.4.4-r1.ebuild:
  fixing linux-headers DEPEND for 2005.0. can we get away with a virtual?

*hal-0.4.4-r1 (09 Jan 2005)

  09 Jan 2005; foser <foser@gentoo.org> hal-0.4.4-r1.ebuild :
  Add patch to fix #77140 & another patch from the mailinglist

  08 Jan 2005; Tom Martin <slarti@gentoo.org> hal-0.4.1-r1.ebuild:
  Stable on amd64.

*hal-0.4.4 (08 Jan 2005)

  08 Jan 2005; foser <foser@gentoo.org> hal-0.4.4.ebuild :
  New release, dep fixes & add USE doc for doxygen docs
  Add patch for zip as floppy drive detection

*hal-0.4.2-r1 (22 Dec 2004)

  22 Dec 2004; foser <foser@gentoo.org> hal-0.4.2-r1.ebuild :
  Add some minor bugfixing patches

  20 Dec 2004; Joe McCann <joem@gentoo.org> hal-0.4.1-r1.ebuild,
  hal-0.4.1.ebuild, hal-0.4.2.ebuild:
  Adding intltool depend to 0.4.x releases

  19 Dec 2004; Mike Gardiner <obz@gentoo.org> hal-0.4.1-r1.ebuild:
  Keyworded x86 and ppc for GNOME 2.8.1

  17 Dec 2004; Markus Rothe <corsair@gentoo.org> hal-0.4.1-r1.ebuild:
  Stable on ppc64

*hal-0.4.2 (02 Dec 2004)

  02 Dec 2004; foser <foser@gentoo.org> hal-0.4.2.ebuild :
  New release, add proper debug & pcmcia USE flags
  Up glib dep to 2.4 because of #71316

*hal-0.4.1-r1 (30 Nov 2004)

  30 Nov 2004; foser <foser@gentoo.org> hal-0.4.1-r1.ebuild :
  Make use of managed keyword, with updated util-linux dep

  11 Nov 2004; Mike Gardiner <obz@gentoo.org> hal-0.2.98-r1.ebuild:
  Keyworded ppc for GNOME 2.8

  08 Nov 2004; Markus Rothe <corsair@gentoo.org> hal-0.4.1.ebuild:
  Marked ~ppc64

*hal-0.4.1 (02 Nov 2004)

  02 Nov 2004; foser <foser@gentoo.org> hal-0.4.1.ebuild :
  New release
  Add patch for device manager

*hal-0.4.0 (29 Oct 2004)

  29 Oct 2004; foser <foser@gentoo.org> hal-0.4.0.ebuild :
  New release (#68243)
  Fix LICENSE
  Add a few patches from RH & some fixes to counter them

*hal-0.2.98-r1 (02 Oct 2004)

  02 Oct 2004; <peter@gentoo.org> +hal-0.2.98-r1.ebuild:
  Revision bump. hal-device-manager now comes from a seperate package.

  28 Sep 2004; Sven Wegener <swegener@gentoo.org> files/hald:
  Gentoo Technologies, Inc. -> Gentoo Foundation

  21 Sep 2004; foser <foser@gentoo.org> hal-0.2.98.ebuild :
  Add kernel26-headers dep, because of several reports (#64851)

*hal-0.2.98 (21 Sep 2004)

  21 Sep 2004; foser <foser@gentoo.org> hal-0.2.98.ebuild :
  New release, fix up the init script to work with the new pid handling
  Update dbus dep to keep hal-dev-manager working
  Add libcap dep

  18 Sep 2004; Travis Tilley <lv@gentoo.org> hal-0.2.97.ebuild:
  added ~amd64 keyword

  30 Aug 2004; David Holm <dholm@gentoo.org> hal-0.2.97.ebuild:
  Added to ~ppc.

*hal-0.2.97 (17 Aug 2004)

  17 Aug 2004; foser <foser@gentoo.org> hal-0.2.97.ebuild, metadata.xml, Changelog :
  Initial commit of hal (Hardware Abstraction Layer), a layer on top of udev to get hardware info
  Added init script for Gentoo
  Added to the gnome herd for now, maintained by foser <foser@gentoo.org>