summaryrefslogtreecommitdiff
blob: 7a8c545530aced00ae7789a438d962b9c7560d39 (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
1479
1480
1481
1482
1483
1484
1485
1486
1487
# ChangeLog for net-print/hplip
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-print/hplip/ChangeLog,v 1.329 2015/07/31 14:34:33 billie Exp $

  31 Jul 2015; Daniel Pielmeier <billie@gentoo.org> -hplip-3.15.4.ebuild:
  Remove old.

*hplip-3.15.7 (31 Jul 2015)

  31 Jul 2015; Daniel Pielmeier <billie@gentoo.org> +hplip-3.15.7.ebuild:
  Version bump.

*hplip-3.15.6 (14 Jun 2015)

  14 Jun 2015; Daniel Pielmeier <billie@gentoo.org> +hplip-3.15.6.ebuild:
  Version bump.

  26 Apr 2015; Daniel Pielmeier <billie@gentoo.org> hplip-3.15.4.ebuild:
  Remove redundant dependency on dbus-python. This fixes bug #547578. Thanks to
  S. Gilles for the report.

  26 Apr 2015; Daniel Pielmeier <billie@gentoo.org> -hplip-3.15.2.ebuild:
  Remove old.

*hplip-3.15.4 (19 Apr 2015)

  19 Apr 2015; Daniel Pielmeier <billie@gentoo.org> +hplip-3.15.4.ebuild:
  Version bump.

  04 Apr 2015; Daniel Pielmeier <billie@gentoo.org> -hplip-3.14.1.ebuild:
  Remove old. This time the correct version.

  04 Apr 2015; Daniel Pielmeier <billie@gentoo.org> +hplip-3.14.10.ebuild:
  Restore latest stable version. Thanks to Andreas Prieß in bug #531312.

  03 Apr 2015; Daniel Pielmeier <billie@gentoo.org> -hplip-3.14.10.ebuild:
  Remove old.

  14 Mar 2015; Markus Meier <maekke@gentoo.org> hplip-3.14.10.ebuild:
  arm stable, bug #531312

  08 Mar 2015; Daniel Pielmeier <billie@gentoo.org> hplip-3.15.2.ebuild:
  Remove PYTHON_USEDEP from net-print/cups and net-analyzer/net-snmp. Thanks to
  Arfrever Frehtes Taifersar Arahesis for the report and the gentoo python team
  for the detailed explanation.

*hplip-3.15.2 (22 Feb 2015)

  22 Feb 2015; Daniel Pielmeier <billie@gentoo.org> +hplip-3.15.2.ebuild:
  Version bump. Fixes bug #540028. Thanks to Manuel Rüger for the report.

  30 Jan 2015; Daniel Pielmeier <billie@gentoo.org> hplip-3.14.1.ebuild,
  hplip-3.14.10.ebuild:
  Add message about unsupported binary plugins.

  30 Jan 2015; Daniel Pielmeier <billie@gentoo.org> -hplip-3.14.6.ebuild:
  Remove old.

  03 Jan 2015; Manuel Rüger <mrueg@gentoo.org> hplip-3.14.1.ebuild,
  hplip-3.14.10.ebuild, hplip-3.14.6.ebuild:
  Update doc URL in elog as suggested by a3li. Fixes bug #534494.

  01 Jan 2015; Agostino Sarubbo <ago@gentoo.org> hplip-3.14.10.ebuild:
  Stable for ppc64, wrt bug #531312

  31 Dec 2014; Agostino Sarubbo <ago@gentoo.org> hplip-3.14.10.ebuild:
  Stable for ppc, wrt bug #531312

  28 Dec 2014; Agostino Sarubbo <ago@gentoo.org> hplip-3.14.10.ebuild:
  Stable for x86, wrt bug #531312

  27 Dec 2014; Agostino Sarubbo <ago@gentoo.org> hplip-3.14.10.ebuild:
  Stable for amd64, wrt bug #531312

  19 Nov 2014; Christoph Junghans <ottxor@gentoo.org> hplip-3.14.1.ebuild:
  arm stable (bug #516818)

*hplip-3.14.10 (11 Oct 2014)

  11 Oct 2014; Daniel Pielmeier <billie@gentoo.org> +hplip-3.14.10.ebuild:
  Version bump. Add patch to fix hp-systray for kde5. This fixes bug #525028.
  Thanks to Manual Rüger for the report.

  11 Oct 2014; Daniel Pielmeier <billie@gentoo.org> -hplip-3.14.4.ebuild:
  Remove old.

  10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> hplip-3.14.1.ebuild,
  hplip-3.14.4.ebuild, hplip-3.14.6.ebuild:
  QA: drop trailing '.' from DESCRIPTION

  30 Jul 2014; Samuli Suominen <ssuominen@gentoo.org> hplip-3.14.1.ebuild,
  hplip-3.14.4.ebuild, hplip-3.14.6.ebuild:
  Use shorter get_udevdir() instead of the longer deprecated udev_get_udevdir()
  version.

  10 Jul 2014; Michael Palimaka <kensington@gentoo.org> hplip-3.14.1.ebuild,
  hplip-3.14.4.ebuild, hplip-3.14.6.ebuild:
  Pin virtual/jpeg to SLOT 0.

  10 Jun 2014; Daniel Pielmeier <billie@gentoo.org> hplip-3.14.6.ebuild:
  Use prune_libtool_files from eutils.

*hplip-3.14.6 (10 Jun 2014)

  10 Jun 2014; Daniel Pielmeier <billie@gentoo.org> +hplip-3.14.6.ebuild:
  Version bump.

  04 Jun 2014; Daniel Pielmeier <billie@gentoo.org> -hplip-3.14.3.ebuild:
  Remove old.

  26 Apr 2014; Pacho Ramos <pacho@gentoo.org> hplip-3.14.1.ebuild,
  hplip-3.14.3.ebuild, hplip-3.14.4.ebuild:
  Adapt to latest pygobject don't providing python2.6 support

*hplip-3.14.4 (17 Apr 2014)

  17 Apr 2014; Daniel Pielmeier <billie@gentoo.org> +hplip-3.14.4.ebuild:
  Version bump.

  07 Mar 2014; Daniel Pielmeier <billie@gentoo.org> -hplip-3.14.1-r1.ebuild:
  Remove old.

*hplip-3.14.3 (07 Mar 2014)

  07 Mar 2014; Daniel Pielmeier <billie@gentoo.org> +hplip-3.14.3.ebuild:
  Version bump. This version adds a patch which removes the update and
  uninstall python scripts as well as the auto-configuration/plug-in
  installation related stuff from the udev rules. This should fix Gentoo bug
  #434830 (Upstream bug https://bugs.launchpad.net/hplip/+bug/1080353).

*hplip-3.14.1-r1 (05 Mar 2014)

  05 Mar 2014; Daniel Pielmeier <billie@gentoo.org> +hplip-3.14.1-r1.ebuild:
  Only depend on dev-python/dbus-python if USE=minimal. This fixes bug #449402.
  Thanks to turtle for the report and Nick Bowler for the suggested dependency
  change.

  24 Jan 2014; Daniel Pielmeier <billie@gentoo.org> -hplip-3.12.10a.ebuild,
  -hplip-3.13.9.ebuild, -hplip-3.13.11-r1.ebuild:
  Remove old.

  19 Jan 2014; Agostino Sarubbo <ago@gentoo.org> hplip-3.14.1.ebuild:
  Stable for ppc64, wrt bug #497722

  14 Jan 2014; Agostino Sarubbo <ago@gentoo.org> hplip-3.14.1.ebuild:
  Stable for ppc, wrt bug #497722

  14 Jan 2014; Agostino Sarubbo <ago@gentoo.org> hplip-3.14.1.ebuild:
  Stable for x86, wrt bug #497722

  12 Jan 2014; Pacho Ramos <pacho@gentoo.org> hplip-3.14.1.ebuild:
  amd64 stable, bug #497722

*hplip-3.14.1 (10 Jan 2014)

  10 Jan 2014; Daniel Pielmeier <billie@gentoo.org> +hplip-3.14.1.ebuild:
  Version bump.

  05 Jan 2014; Andreas K. Huettel <dilfridge@gentoo.org> hplip-3.12.10a.ebuild,
  hplip-3.13.9.ebuild, hplip-3.13.11-r1.ebuild:
  Fix foomatic dependency

  27 Dec 2013; Andreas K. Huettel <dilfridge@gentoo.org>
  hplip-3.13.11-r1.ebuild:
  Whitespace fix for Patrick

  27 Dec 2013; Andreas K. Huettel <dilfridge@gentoo.org>
  hplip-3.13.11-r1.ebuild:
  foomatic-filters is being integrated into cups-filters by upstream

  24 Dec 2013; Agostino Sarubbo <ago@gentoo.org> hplip-3.13.9.ebuild:
  Stable for ppc64, wrt bug #484474

  30 Nov 2013; Daniel Pielmeier <billie@gentoo.org> -hplip-3.13.10.ebuild,
  -hplip-3.13.11.ebuild:
  Remove old. Fix Changelog.

*hplip-3.13.11-r1 (30 Nov 2013)

  30 Nov 2013; Daniel Pielmeier <billie@gentoo.org> +hplip-3.13.11-r1.ebuild:
  Revision bump to fix bug #492486. Thanks to BT for the report and the patch.

*hplip-3.13.11 (07 Nov 2013)

  07 Nov 2013; Daniel Pielmeier <billie@gentoo.org> +hplip-3.13.11.ebuild:
  Version bump.

*hplip-3.13.10 (14 Oct 2013)

  14 Oct 2013; Daniel Pielmeier <billie@gentoo.org> +hplip-3.13.10.ebuild:
  Version bump.

  14 Oct 2013; Tony Vroon <chainsaw@gentoo.org> hplip-3.13.9.ebuild:
  Marked stable on AMD64 based on arch tester report by Elijah "Armageddon" El
  Lazkani in bug #484474.

  28 Sep 2013; Daniel Pielmeier <billie@gentoo.org> -hplip-3.13.7.ebuild,
  -hplip-3.13.8.ebuild:
  Remove old.

*hplip-3.13.9 (28 Sep 2013)

  28 Sep 2013; Daniel Pielmeier <billie@gentoo.org> +hplip-3.13.9.ebuild:
  Version bump. Includes Red Hat's patch to fix CVE-2013-4325.

  06 Sep 2013; Daniel Pielmeier <billie@gentoo.org> -hplip-3.13.6.ebuild:
  Remove old.

*hplip-3.13.8 (06 Sep 2013)

  06 Sep 2013; Daniel Pielmeier <billie@gentoo.org> +hplip-3.13.8.ebuild:
  Version bump.

*hplip-3.13.7 (24 Jul 2013)

  24 Jul 2013; Daniel Pielmeier <billie@gentoo.org> +hplip-3.13.7.ebuild:
  Version bump.

  05 Jul 2013; Daniel Pielmeier <billie@gentoo.org> -hplip-3.13.5.ebuild:
  Remove old.

*hplip-3.13.6 (24 Jun 2013)

  24 Jun 2013; Daniel Pielmeier <billie@gentoo.org> +hplip-3.13.6.ebuild:
  Version bump.

  09 Jun 2013; Daniel Pielmeier <billie@gentoo.org> hplip-3.13.5.ebuild:
  Switch to virtual/python-imaging as hplip supports both pillow and imaging.
  This fixes bug #472556. Thanks to Ivan Iraci for the report.

  07 Jun 2013; Daniel Pielmeier <billie@gentoo.org> hplip-3.13.5.ebuild:
  Add REQUIRED_USE needed by PYTHON_REQUIRED_USE and python-single-r1 eclass.

  07 Jun 2013; Daniel Pielmeier <billie@gentoo.org> -hplip-3.13.4.ebuild:
  Remove old.

*hplip-3.13.5 (18 May 2013)

  18 May 2013; Daniel Pielmeier <billie@gentoo.org> +hplip-3.13.5.ebuild:
  Version bump.

  01 May 2013; Daniel Pielmeier <billie@gentoo.org> -hplip-3.13.2-r2.ebuild,
  -hplip-3.13.3.ebuild:
  Remove old.

  12 Apr 2013; Daniel Pielmeier <billie@gentoo.org> -hplip-3.13.2-r2.ebuild:
  Remove old.

*hplip-3.13.4 (12 Apr 2013)

  12 Apr 2013; Daniel Pielmeier <billie@gentoo.org> +hplip-3.13.4.ebuild:
  Version bump.

  06 Apr 2013; Daniel Pielmeier <billie@gentoo.org> hplip-3.13.3.ebuild:
  Raise dbus dependency for new python-r1 eclass.

*hplip-3.13.3 (08 Mar 2013)

  08 Mar 2013; Daniel Pielmeier <billie@gentoo.org> +hplip-3.13.3.ebuild:
  Version bump.

  01 Mar 2013; Daniel Pielmeier <billie@gentoo.org> -hplip-3.13.2-r1.ebuild:
  Remove old.

*hplip-3.13.2-r2 (01 Mar 2013)

  01 Mar 2013; Daniel Pielmeier <billie@gentoo.org> +hplip-3.13.2-r2.ebuild:
  Revison bump. Fix bug #458976. Wrong permissions again. This time for
  /var/lib/hp/. Thanks to James for the report. Only remove /var/lib/hp/ if it
  is world writeable.

  24 Feb 2013; Daniel Pielmeier <billie@gentoo.org> hplip-3.13.2-r1.ebuild:
  Use PYTHON_USEDEP for notify-python as it now uses python-r1.

*hplip-3.13.2-r1 (21 Feb 2013)

  21 Feb 2013; Daniel Pielmeier <billie@gentoo.org> -hplip-3.13.2.ebuild,
  +hplip-3.13.2-r1.ebuild:
  Ensure correct permissions for /var/tmp/hp when upgrading from versions
  affected by bug #452586.

  21 Feb 2013; Daniel Pielmeier <billie@gentoo.org> -hplip-3.12.11.ebuild:
  Remove vulnerable version. See bug #452586.

  14 Feb 2013; Daniel Pielmeier <billie@gentoo.org> -hplip-3.12.11-r1.ebuild:
  Remove old.

*hplip-3.13.2 (14 Feb 2013)

  14 Feb 2013; Daniel Pielmeier <billie@gentoo.org> +hplip-3.13.2.ebuild:
  Version bump.

  09 Feb 2013; Daniel Pielmeier <billie@gentoo.org> hplip-3.12.11.ebuild,
  hplip-3.12.11-r1.ebuild:
  USE=scanner needs dev-python/reportlab. This fixes bug #455306. Thanks to
  Leho Kraav for the report.

*hplip-3.12.11-r1 (09 Feb 2013)

  09 Feb 2013; Daniel Pielmeier <billie@gentoo.org> +hplip-3.12.11-r1.ebuild:
  Revision bump. Switch to python-r1 to fix bug #455158.

  15 Dec 2012; Daniel Pielmeier <billie@gentoo.org> -hplip-3.12.9-r1.ebuild,
  -hplip-3.12.10a-r1.ebuild:
  Remove old.

  11 Dec 2012; Ian Stakenvicius <axs@gentoo.org> hplip-3.12.9-r1.ebuild,
  hplip-3.12.10a.ebuild, hplip-3.12.10a-r1.ebuild, hplip-3.12.11.ebuild:
  virtualize udev dependency, get udevdir via udev.eclass

*hplip-3.12.11 (30 Nov 2012)

  30 Nov 2012; Daniel Pielmeier <billie@gentoo.org> +hplip-3.12.11.ebuild:
  Version bump. Switch to EAPI 5.

  28 Nov 2012; Brent Baude <ranger@gentoo.org> hplip-3.12.10a.ebuild:
  Marking hplip-3.12.10a ppc for bug 439032

  21 Nov 2012; Agostino Sarubbo <ago@gentoo.org> hplip-3.12.10a.ebuild:
  Stable for x86, wrt bug #439032

*hplip-3.12.10a-r1 (18 Nov 2012)

  18 Nov 2012; Daniel Pielmeier <billie@gentoo.org> +hplip-3.12.10a-r1.ebuild:
  Fix bug #443680. Thanks to Petteri Räty for the report.

  18 Nov 2012; Daniel Pielmeier <billie@gentoo.org>
  -files/hplip-3.9.10-browser.patch, -files/hplip-3.9.12-cupsddk.patch,
  -files/hplip-3.9.12-systray.patch, -files/hplip-3.10.9-cve-2010-4267.patch,
  -files/hplip-3.11.1-desktop.patch, -files/hplip-3.11.1-htmldir.patch,
  -files/hplip-3.11.10-udev-attrs.patch, -hplip-3.12.4.ebuild,
  -hplip-3.12.10.ebuild:
  Remove old.

  13 Nov 2012; Brent Baude <ranger@gentoo.org> hplip-3.12.10a.ebuild:
  Marking hplip-3.12.10a ppc64 for bug 439032

  07 Nov 2012; Daniel Pielmeier <billie@gentoo.org> hplip-3.12.10a.ebuild:
  Use REPLACING_VERSIONS to avoid elog pollution.

  24 Oct 2012; Agostino Sarubbo <ago@gentoo.org> hplip-3.12.10a.ebuild:
  Stable for amd64, wrt bug #439032

  20 Oct 2012; Daniel Pielmeier <billie@gentoo.org> hplip-3.12.4.ebuild,
  hplip-3.12.9-r1.ebuild, hplip-3.12.10.ebuild, hplip-3.12.10a.ebuild:
  Inherit eutils directly. Die on rm and mv. Thanks to nimiux in bug #439032.

  19 Oct 2012; Daniel Pielmeier <billie@gentoo.org> hplip-3.12.10a.ebuild,
  metadata.xml:
  Add libusb0 use flag. This fixes bug #438870. Some old printers do not work
  with libusb:1. Thanks to Ben for the report.

  17 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> hplip-3.12.9-r1.ebuild:
  x86 stable wrt bug #436858

*hplip-3.12.10a (12 Oct 2012)

  12 Oct 2012; Daniel Pielmeier <billie@gentoo.org> -hplip-3.11.10.ebuild,
  -hplip-3.12.9-r2.ebuild, +hplip-3.12.10a.ebuild:
  Version bump. Remove old.

  10 Oct 2012; Brent Baude <ranger@gentoo.org> hplip-3.12.9-r1.ebuild:
  Marking hplip-3.12.9-r1 ppc for bug 436858

  05 Oct 2012; Brent Baude <ranger@gentoo.org> hplip-3.12.9-r1.ebuild:
  Marking hplip-3.12.9-r1 ppc64 for bug 436858

*hplip-3.12.10 (05 Oct 2012)

  05 Oct 2012; Daniel Pielmeier <billie@gentoo.org> +hplip-3.12.10.ebuild:
  Version bump.

*hplip-3.12.9-r2 (03 Oct 2012)

  03 Oct 2012; Daniel Pielmeier <billie@gentoo.org> +hplip-3.12.9-r2.ebuild:
  Fix bug #436794 - hp-scan fails in directories containing unicode characters.
  Thanks to Arne Babenhauserheide for the report and the patch.

  03 Oct 2012; Agostino Sarubbo <ago@gentoo.org> hplip-3.12.9-r1.ebuild:
  Stable for amd64, wrt bug #436858

  01 Oct 2012; Daniel Pielmeier <billie@gentoo.org> -hplip-3.12.6-r1.ebuild,
  -hplip-3.12.9.ebuild:
  Remove old.

*hplip-3.12.9-r1 (22 Sep 2012)

  22 Sep 2012; Daniel Pielmeier <billie@gentoo.org> +hplip-3.12.9-r1.ebuild,
  metadata.xml:
  Fix bug #435606, cron file not working with locales other than english.
  Thanks to Eckard Brauer for the report. Remove unused acl USE-description.

  18 Sep 2012; Daniel Pielmeier <billie@gentoo.org> hplip-3.11.10.ebuild,
  hplip-3.12.4.ebuild, hplip-3.12.6-r1.ebuild, hplip-3.12.9.ebuild:
  Remove dependency upon udev-acl. This fixes bug #435226. Thanks to Samuli
  Suominen for the report.

*hplip-3.12.9 (16 Sep 2012)

  16 Sep 2012; Daniel Pielmeier <billie@gentoo.org> +hplip-3.12.9.ebuild:
  Version bump. This fixes bug #434282.

  13 Sep 2012; Daniel Pielmeier <billie@gentoo.org> -hplip-3.12.6.ebuild:
  Remove old.

  18 Aug 2012; Daniel Pielmeier <billie@gentoo.org> hplip-3.12.6.ebuild,
  hplip-3.12.6-r1.ebuild:
  dbus-python is now needed in any case and not just for fax support. This
  fixes bug #431202. Thanks to Dave Kemper for the report.

*hplip-3.12.6-r1 (13 Aug 2012)

  13 Aug 2012; Samuli Suominen <ssuominen@gentoo.org> +hplip-3.12.6-r1.ebuild:
  Use udev.pc pkg-config file to determine correct udevdir for rules.

  08 Aug 2012; Daniel Pielmeier <billie@gentoo.org> hplip-3.12.6.ebuild:
  Fix building with cups-1.6. Thanks to all involved in bug #428672.

  01 Jul 2012; Daniel Pielmeier <billie@gentoo.org> hplip-3.12.6.ebuild:
  Fix bug #424155. Thanks Derk W te Bokkel for the report.

*hplip-3.12.6 (29 Jun 2012)

  29 Jun 2012; Daniel Pielmeier <billie@gentoo.org> -hplip-3.12.2-r2.ebuild,
  +hplip-3.12.6.ebuild:
  Version bump. Remove old.

  21 May 2012; Daniel Pielmeier <billie@gentoo.org> hplip-3.12.2-r2.ebuild,
  hplip-3.12.4.ebuild:
  Remove REQUIRED_USE to fix big #416693. Thanks to T6n9naYMKJ@ymail.com.

  08 May 2012; Brent Baude <ranger@gentoo.org> hplip-3.12.4.ebuild:
  Marking hplip-3.12.4 ppc64 for bug 414161

  06 May 2012; Daniel Pielmeier <billie@gentoo.org>
  -files/hplip-3.11.12-black-stripes-pcl5c.patch,
  -files/hplip-3.11.12-fast-pp.patch, -files/hplip-3.11.12-udev-rules.patch,
  hplip-3.12.2-r2.ebuild, -files/hplip-3.12.2-minimal.patch,
  -files/hplip-3.12.2-sane.patch, hplip-3.12.4.ebuild:
  Use patch tarball.

  06 May 2012; Daniel Pielmeier <billie@gentoo.org> hplip-3.12.4.ebuild,
  -files/hplip-3.12.4-cupsddk.patch, -files/hplip-3.12.4-desktop.patch,
  -files/hplip-3.12.4-fast-pp.patch, -files/hplip-3.12.4-htmldir.patch:
  Use patch tarball.

  05 May 2012; Daniel Pielmeier <billie@gentoo.org> hplip-3.11.10.ebuild,
  hplip-3.12.2-r2.ebuild:
  Also add lp group message to old ebuilds.

  05 May 2012; Daniel Pielmeier <billie@gentoo.org> hplip-3.12.4.ebuild:
  Drop cupsddk patch. It should not matter anymore as cupsddk has been dropped
  from the tree. This should also fix part of bug #414195 where hp-check fails.
  Add an elog message about users who must be in the lp group to print. This
  fixes bug #414215.

  03 May 2012; Jeff Horelick <jdhore@gentoo.org> hplip-3.11.10.ebuild,
  hplip-3.12.2-r2.ebuild, hplip-3.12.4.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  30 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> hplip-3.12.4.ebuild:
  Stable on amd64, x86 and ppc. Wrt bug#414161.

*hplip-3.12.4 (11 Apr 2012)

  11 Apr 2012; Daniel Pielmeier <billie@gentoo.org> +hplip-3.12.4.ebuild,
  +files/hplip-3.12.4-cupsddk.patch, +files/hplip-3.12.4-desktop.patch,
  +files/hplip-3.12.4-fast-pp.patch, +files/hplip-3.12.4-htmldir.patch:
  Version bump.

  11 Apr 2012; Daniel Pielmeier <billie@gentoo.org>
  -files/hplip-3.11.1-udev-attrs.patch:
  Remove unused patch.

  07 Apr 2012; Daniel Pielmeier <billie@gentoo.org> -hplip-3.11.5.ebuild,
  -hplip-3.12.2-r1.ebuild:
  Remove old.

  20 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> hplip-3.11.5.ebuild,
  hplip-3.11.10.ebuild, hplip-3.12.2-r1.ebuild, hplip-3.12.2-r2.ebuild:
  Correct dependencies for USE="acl" by "marisn"

  11 Mar 2012; Brent Baude <ranger@gentoo.org> hplip-3.11.10.ebuild:
  Marking hplip-3.11.10 ppc64 for bug 388655

  06 Mar 2012; Denis Dupeyron <calchan@gentoo.org> metadata.xml:
  Remove myself from metadata.xml.

*hplip-3.12.2-r2 (28 Feb 2012)

  28 Feb 2012; Daniel Pielmeier <billie@gentoo.org> -hplip-3.11.12-r2.ebuild,
  -hplip-3.12.2.ebuild, +hplip-3.12.2-r2.ebuild,
  +files/hplip-3.12.2-sane.patch:
  Revision bump. Fix bug #406135. Thanks to Martin Mokrejš for the report.
  Remove old.

  21 Feb 2012; Daniel Pielmeier <billie@gentoo.org>
  files/hplip-3.11.12-fast-pp.patch:
  Update fast-pp ppatch again.

*hplip-3.12.2-r1 (16 Feb 2012)

  16 Feb 2012; Daniel Pielmeier <billie@gentoo.org> +hplip-3.12.2-r1.ebuild,
  +files/hplip-3.12.2-minimal.patch:
  Add a patch to fix minimal build with hpijs disabled and hpcups enabled. This
  should fix bug #402727. Thanks to Francisco Vazquez for the report. Correct
  other USE="minmal" related issues.

  08 Feb 2012; Daniel Pielmeier <billie@gentoo.org>
  files/hplip-3.11.12-fast-pp.patch:
  Update the fast-pp patch to add linkage against lrt. This fixes bug #402177.
  Thanks to Juergen Rose and Martin Mokrejš for the patch.

*hplip-3.12.2 (07 Feb 2012)

  07 Feb 2012; Daniel Pielmeier <billie@gentoo.org> -hplip-3.11.12-r1.ebuild,
  +hplip-3.12.2.ebuild:
  Version bump. Remove old.

  05 Feb 2012; Mike Gilbert <floppym@gentoo.org> hplip-3.11.10.ebuild,
  hplip-3.11.5.ebuild:
  Inherit multilib.

*hplip-3.11.12-r2 (25 Jan 2012)

  25 Jan 2012; Daniel Pielmeier <billie@gentoo.org> -hplip-3.11.12.ebuild,
  +hplip-3.11.12-r2.ebuild, +files/hplip-3.11.12-fast-pp.patch:
  Fix bug #361847. Thanks to ungift-ed for the report, Daniel Gnoutcheff for
  the patch provided at the upstream bug and Andreas K. Hüttel for reminding
  me about the patch. Remove old.

*hplip-3.11.12-r1 (12 Jan 2012)

  12 Jan 2012; Daniel Pielmeier <billie@gentoo.org> +hplip-3.11.12-r1.ebuild,
  +files/hplip-3.11.12-black-stripes-pcl5c.patch:
  Fix bug #316111. Thanks to Marcin Deranek for the report.

  11 Jan 2012; Daniel Pielmeier <billie@gentoo.org> hplip-3.11.12.ebuild:
  Fix bug #397493. Thanks to Hanno Meyer-Thurow (geki) for the report.

*hplip-3.11.12 (18 Dec 2011)

  18 Dec 2011; Daniel Pielmeier <billie@gentoo.org> -hplip-3.11.10-r2.ebuild,
  +hplip-3.11.12.ebuild, +files/hplip-3.11.12-udev-rules.patch:
  Version bump.

*hplip-3.11.10-r2 (08 Dec 2011)

  08 Dec 2011; Daniel Pielmeier <billie@gentoo.org> -hplip-3.11.10-r1.ebuild,
  +hplip-3.11.10-r2.ebuild:
  Install udev rules into /lib/udev/rules.d. This fixes bug #393339. Thanks to
  Jonathan Callen for the report.

  08 Dec 2011; Daniel Pielmeier <billie@gentoo.org>
  -files/hplip-3.11.5-cups-1.5.patch, -hplip-3.11.7.ebuild,
  -files/hplip-3.11.7-udev-attrs.patch:
  Remove old.

  16 Nov 2011; Daniel Pielmeier <billie@gentoo.org> hplip-3.11.10-r1.ebuild:
  Remove hal fdi files. This fixes bug #389645. Thanks to i.Dark_Templar for
  the report.

  06 Nov 2011; Brent Baude <ranger@gentoo.org> hplip-3.11.10.ebuild:
  Marking hplip-3.11.10 ppc for bug 388989

  04 Nov 2011; Tony Vroon <chainsaw@gentoo.org> hplip-3.11.10.ebuild:
  Marked stable on AMD64 based on arch testing by Ian "idella4" Delaney &
  Agostino "ago" Sarubbo in bug #388989.

  02 Nov 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> hplip-3.11.10.ebuild:
  x86 stable wrt bug #388989

  01 Nov 2011; Daniel Pielmeier <billie@gentoo.org> hplip-3.11.10-r1.ebuild:
  Switch to EAPI 4. Remove Copyright files.

*hplip-3.11.10-r1 (01 Nov 2011)

  01 Nov 2011; Daniel Pielmeier <billie@gentoo.org> +hplip-3.11.10-r1.ebuild:
  Revision bump to remove la files, thanks to Agostino Sarubbo in bug #388989.

  24 Oct 2011; Alexandre Rostovtsev <tetromino@gentoo.org> hplip-3.11.5.ebuild,
  hplip-3.11.7.ebuild, hplip-3.11.10.ebuild:
  Depend on correct slot of pygobject.

*hplip-3.11.10 (15 Oct 2011)

  15 Oct 2011; Daniel Pielmeier <billie@gentoo.org> +hplip-3.11.10.ebuild,
  +files/hplip-3.11.10-udev-attrs.patch:
  Version bump.

  15 Aug 2011; Daniel Pielmeier <billie@gentoo.org> hplip-3.11.5.ebuild,
  hplip-3.11.7.ebuild:
  No need to depend on net-print/cupsddk anymore now that cups-1.4 is stable.

*hplip-3.11.7 (25 Jul 2011)

  25 Jul 2011; Daniel Pielmeier <billie@gentoo.org> -hplip-3.11.5-r1.ebuild,
  +hplip-3.11.7.ebuild, +files/hplip-3.11.7-udev-attrs.patch:
  Version bump. Remove old.

  24 Jul 2011; Daniel Pielmeier <billie@gentoo.org>
  -files/hplip-3.9.10-desktop.patch, -files/hplip-3.9.10-htmldir.patch,
  -files/hplip-3.10.5-udev-attrs.patch, -hplip-3.10.9-r1.ebuild:
  Remove old. Fixes bug #374617.

  23 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> hplip-3.11.5.ebuild:
  ppc/ppc64 stable wrt #372145

  13 Jul 2011; Markus Meier <maekke@gentoo.org> hplip-3.11.5.ebuild:
  x86 stable, bug #372145

*hplip-3.11.5-r1 (19 Jun 2011)

  19 Jun 2011; Daniel Pielmeier <billie@gentoo.org> +hplip-3.11.5-r1.ebuild,
  +files/hplip-3.11.5-cups-1.5.patch:
  Revision bump. Fix build with cups-1.5, thanks to Dale for the report on the
  gentoo-user mailing list.

  18 Jun 2011; Markos Chandras <hwoarang@gentoo.org> hplip-3.11.5.ebuild:
  Stable on amd64 wrt bug #372145

  07 Jun 2011; Daniel Pielmeier <billie@gentoo.org> hplip-3.10.9-r1.ebuild,
  hplip-3.11.5.ebuild, metadata.xml:
  Fix udev dependency bug #370389. Thanks to William Hubbs for the report.
  Change udev-acl use flag to acl according to udev.

*hplip-3.11.5 (18 May 2011)

  18 May 2011; Daniel Pielmeier <billie@gentoo.org> -hplip-3.11.1-r2.ebuild,
  -hplip-3.11.3a.ebuild, +hplip-3.11.5.ebuild:
  Version bump. Remove old.

  23 Apr 2011; Diego E. Pettenò <flameeyes@gentoo.org> metadata.xml:
  Drop me from metadata, I no longer have an HP printer.

*hplip-3.11.3a (27 Mar 2011)

  27 Mar 2011; Daniel Pielmeier <billie@gentoo.org> -hplip-3.11.3.ebuild,
  +hplip-3.11.3a.ebuild:
  Version bump. Remove old.

*hplip-3.11.3 (22 Mar 2011)

  22 Mar 2011; Daniel Pielmeier <billie@gentoo.org> +hplip-3.11.3.ebuild:
  Version bump.

  14 Feb 2011; Daniel Pielmeier <billie@gentoo.org> hplip-3.10.9-r1.ebuild,
  hplip-3.11.1-r2.ebuild, metadata.xml:
  Ebuild cleanup. Remove elog messages and refer to the updated printing guide
  instead.

*hplip-3.11.1-r2 (01 Feb 2011)

  01 Feb 2011; Daniel Pielmeier <billie@gentoo.org> -hplip-3.11.1-r1.ebuild,
  +hplip-3.11.1-r2.ebuild, files/hplip-3.11.1-udev-attrs.patch:
  Revision bump. Remove old. Fixes bug #353330. Thanks to Ben Sagal for
  reporting.

*hplip-3.11.1-r1 (26 Jan 2011)

  26 Jan 2011; Daniel Pielmeier <billie@gentoo.org> -hplip-3.11.1.ebuild,
  +hplip-3.11.1-r1.ebuild:
  Revision bump to fix bug #345725. Thanks to Ben Sagal for reporting.

*hplip-3.11.1 (24 Jan 2011)

  24 Jan 2011; Daniel Pielmeier <billie@gentoo.org> -hplip-3.9.12-r1.ebuild,
  -hplip-3.10.6.ebuild, -hplip-3.10.9.ebuild, +hplip-3.11.1.ebuild,
  +files/hplip-3.11.1-desktop.patch, +files/hplip-3.11.1-htmldir.patch,
  +files/hplip-3.11.1-udev-attrs.patch:
  Version bump. Fixes bug #352449. Thanks to Ben Sagal for reporting. Remove
  potential vulnerable versions.

  21 Jan 2011; Christian Faulhammer <fauli@gentoo.org>
  hplip-3.10.9-r1.ebuild:
  stable x86, security bug 352085

  21 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org>
  hplip-3.10.9-r1.ebuild:
  ppc/ppc64 stable wrt #352085

  20 Jan 2011; Markos Chandras <hwoarang@gentoo.org> hplip-3.10.9-r1.ebuild:
  Stable on amd64 wrt bug #352085

*hplip-3.10.9-r1 (20 Jan 2011)

  20 Jan 2011; Daniel Pielmeier <billie@gentoo.org> +hplip-3.10.9-r1.ebuild,
  +files/hplip-3.10.9-cve-2010-4267.patch:
  Revision bump to fix security bug #352085.

  10 Jan 2011; Brent Baude <ranger@gentoo.org> hplip-3.10.9.ebuild:
  stable ppc, bug 345457

  17 Nov 2010; Markus Meier <maekke@gentoo.org> hplip-3.10.9.ebuild:
  x86 stable, bug #345457

  15 Nov 2010; Markos Chandras <hwoarang@gentoo.org> hplip-3.10.9.ebuild:
  Stable on amd64 wrt bug #345457

  08 Nov 2010; Daniel Pielmeier <billie@gentoo.org> hplip-3.9.12-r1.ebuild,
  hplip-3.10.6.ebuild, hplip-3.10.9.ebuild:
  Switch to virtual/jpeg.

  10 Oct 2010; Samuli Suominen <ssuominen@gentoo.org> hplip-3.10.9.ebuild,
  hplip-3.10.6.ebuild, hplip-3.9.12-r1.ebuild:
  Fix PolicyKit dependencies (polkit-1 support is present).

*hplip-3.10.9 (04 Oct 2010)

  04 Oct 2010; Tomáš Chvátal <scarabeus@gentoo.org> +hplip-3.10.9.ebuild:
  Version bump to the latest. Acked by billie and flameeyes.

  28 Aug 2010; Daniel Pielmeier <billie@gentoo.org>
  -files/hplip-3.10.2-plugin.patch, -hplip-3.10.5.ebuild,
  hplip-3.10.6.ebuild, metadata.xml:
  Make kde-misc/skanlite available as additional sane frontend via
  USE="kde". Thanks to Enrico Tagliavini on IRC. Remove old version.

*hplip-3.10.6 (24 Jul 2010)

  24 Jul 2010; Daniel Pielmeier <billie@gentoo.org> +hplip-3.10.6.ebuild:
  Version bump.

  12 Jul 2010; Daniel Pielmeier <billie@gentoo.org> -hplip-3.10.2-r4.ebuild,
  -files/hplip-3.10.2-systray-segfault.patch,
  -files/hplip-3.10.2-udev-attrs.patch:
  Remove old.

  30 May 2010; Daniel Pielmeier <billie@gentoo.org>
  files/hplip-3.10.2-plugin.patch:
  Update plugin patch as ~arch patch does not seem to like it.

  27 May 2010; Daniel Pielmeier <billie@gentoo.org>
  files/hplip-3.10.2-plugin.patch:
  Use upstream patch to fix bug #274538.

  19 May 2010; Daniel Pielmeier <billie@gentoo.org>
  files/hplip-3.10.5-udev-attrs.patch:
  Patch using C locale. Don't know if this is important.

  19 May 2010; Daniel Pielmeier <billie@gentoo.org>
  +files/hplip-3.10.5-udev-attrs.patch:
  Add missing patch. Fixes bug #320637. Thanks Richard for reporting.

*hplip-3.10.5 (19 May 2010)

  19 May 2010; Daniel Pielmeier <billie@gentoo.org> +hplip-3.10.5.ebuild:
  Version bump. Fix doc installation.

  04 May 2010; Daniel Pielmeier <billie@gentoo.org> hplip-3.9.12-r1.ebuild,
  hplip-3.10.2-r4.ebuild, metadata.xml:
  Remove USE new-hpcups, as it does not do anything.

  04 May 2010; Daniel Pielmeier <billie@gentoo.org>
  files/hplip-3.10.2-plugin.patch:
  Another try to fix plugin installation. This should fix bug #274538 and
  #316777.

  17 Apr 2010; Raúl Porcel <armin76@gentoo.org> hplip-3.9.12-r1.ebuild,
  hplip-3.10.2-r4.ebuild:
  Re-add ~arm

  08 Apr 2010; Daniel Pielmeier <billie@gentoo.org> hplip-3.9.12-r1.ebuild,
  -hplip-3.10.2.ebuild, hplip-3.10.2-r4.ebuild, metadata.xml:
  Fix scanner dependencies. Remove old.

*hplip-3.10.2-r4 (06 Apr 2010)

  06 Apr 2010; Daniel Pielmeier <billie@gentoo.org> -hplip-3.10.2-r3.ebuild,
  +hplip-3.10.2-r4.ebuild:
  Revison bump. Fix bug #311489 reported by saft. Remove old revison.

*hplip-3.10.2-r3 (31 Mar 2010)

  31 Mar 2010; Daniel Pielmeier <billie@gentoo.org> -files/70-hpmud.rules,
  -hplip-3.10.2-r2.ebuild, +hplip-3.10.2-r3.ebuild,
  +files/hplip-3.10.2-systray-segfault.patch:
  Revision bump. Add systray segfault patch from upstream reported by netfab
  in bug #312301. Remove needless rules file.

*hplip-3.10.2-r2 (30 Mar 2010)

  30 Mar 2010; Daniel Pielmeier <billie@gentoo.org>
  -files/hplip-3.9.10-cupsddk.patch, -hplip-3.10.2-r1.ebuild,
  +hplip-3.10.2-r2.ebuild, +files/hplip-3.10.2-udev-attrs.patch:
  Further python eclass related fixes. Removed unused patch. Hopefully fixes
  bug #277391.

*hplip-3.10.2-r1 (20 Mar 2010)

  20 Mar 2010; Daniel Pielmeier <billie@gentoo.org>
  -files/hplip-3.9.4+glibc-2.10.patch, +hplip-3.10.2-r1.ebuild,
  +files/hplip-3.10.2-plugin.patch:
  Revision bump. Update ebuild to use newer python eclass related functions.
  Add a patch which fixes plugin installation from bug #274538. Remove
  unused patch.

  16 Mar 2010; Daniel Pielmeier <billie@gentoo.org> -hplip-2.8.6b.ebuild,
  -hplip-3.9.8-r3.ebuild, metadata.xml:
  Remove old.

  04 Mar 2010; Daniel Pielmeier <billie@gentoo.org> hplip-3.9.12-r1.ebuild,
  hplip-3.10.2.ebuild:
  Fix dependencies especially RDEPEND vs. DEPEND. Move the snmp use flag out
  of !minimal as it is needed for a minimal build. This fixes bug #292976,
  thanks to David Honour for reporting. Move dev-python/pygobject out of the
  qt4 use flag. media-gfx/sane-frontends dev-python/imaging are equal
  non-gui scanner frontends.

  02 Mar 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  hplip-3.9.12-r1.ebuild:
  x86 stable wrt bug #304079

*hplip-3.10.2 (28 Feb 2010)

  28 Feb 2010; Daniel Pielmeier <billie@gentoo.org> -hplip-3.9.4b-r1.ebuild,
  -hplip-3.9.10.ebuild, -hplip-3.9.12.ebuild, +hplip-3.10.2.ebuild:
  Version bump. Remove old.

  12 Feb 2010; Joseph Jezak <josejx@gentoo.org> hplip-3.9.12-r1.ebuild:
  Marked ppc/ppc64 stable for bug #304079.

  12 Feb 2010; Pacho Ramos <pacho@gentoo.org> hplip-3.9.12-r1.ebuild:
  amd64 stable, bug 304079

  12 Jan 2010; Daniel Pielmeier <billie@gentoo.org> metadata.xml:
  Rephrase USE flag description for static-ppds.

  10 Jan 2010; Markus Meier <maekke@gentoo.org> hplip-3.9.8-r3.ebuild:
  add ~arm, bug #289063

  02 Jan 2010; Ben de Groot <yngwin@gentoo.org> hplip-2.8.6b.ebuild:
  Remove remaining qt3 useflag usage

  02 Jan 2010; Ben de Groot <yngwin@gentoo.org> hplip-2.8.6b.ebuild,
  hplip-3.9.4b-r1.ebuild, hplip-3.9.8-r3.ebuild, hplip-3.9.10.ebuild,
  hplip-3.9.12.ebuild, hplip-3.9.12-r1.ebuild, metadata.xml:
  Drop qt3 support

*hplip-3.9.12-r1 (02 Jan 2010)

  02 Jan 2010; Pacho Ramos <pacho@gentoo.org> +hplip-3.9.12-r1.ebuild,
  +files/hplip-3.9.12-systray.patch:
  Let hp-systray wait longer time for system tray appearing even on slower
  machines

  26 Dec 2009; Peter Volkov <pva@gentoo.org> hplip-2.8.6b.ebuild,
  hplip-3.9.4b-r1.ebuild, hplip-3.9.8-r3.ebuild, hplip-3.9.10.ebuild,
  hplip-3.9.12.ebuild:
  virtual/ghostscript->app-text/ghostscript-gpl: ghostscript-gpl is the only
  implementation left in the tree.

  20 Dec 2009; Daniel Pielmeier <billie@gentoo.org> hplip-3.9.12.ebuild:
  Cleanup. Add missing dies.

*hplip-3.9.12 (20 Dec 2009)

  20 Dec 2009; Daniel Pielmeier <billie@gentoo.org> +hplip-3.9.12.ebuild,
  +files/hplip-3.9.12-cupsddk.patch:
  Version bump. Add new cupsddk patch, the old one failed although there are
  no changes.

  02 Dec 2009; Daniel Pielmeier <billie@gentoo.org> hplip-3.9.10.ebuild,
  +files/hplip-3.9.10-cupsddk.patch, +files/hplip-3.9.10-htmldir.patch:
  Patches part 2, replace sed expression with patches. If they don't get
  accepted upstream it is probaably a good idea to revert this. Ebuild
  cosmetics. Don't run gunzip/gzip on hpcups ppds as they don't use
  foomatic-rip.

  01 Dec 2009; Diego E. Pettenò <flameeyes@gentoo.org>
  hplip-3.9.8-r3.ebuild, hplip-3.9.10.ebuild:
  Actually, remove the zeroconf USE flag, since it was only used to depend
  on cups[zeroconf] (which would force a downgrade of cups).

  01 Dec 2009; Diego E. Pettenò <flameeyes@gentoo.org>
  hplip-3.9.8-r3.ebuild, hplip-3.9.10.ebuild:
  Fix dependencies over cups to avoid downgrades to 1.3 for users with
  zeroconf USE flag enabled.

  30 Nov 2009; Daniel Pielmeier <billie@gentoo.org> hplip-2.8.6b.ebuild,
  hplip-3.9.4b-r1.ebuild, hplip-3.9.8-r3.ebuild, hplip-3.9.10.ebuild:
  Update HOMEPAGE. Thanks to Pacho Ramos in bug #295187.

  14 Nov 2009; Daniel Pielmeier <billie@gentoo.org> hplip-3.9.10.ebuild,
  +files/hplip-3.9.10-browser.patch, +files/hplip-3.9.10-desktop.patch:
  Converted some ebuild hackery into patches for upstream integration.

*hplip-3.9.10 (12 Nov 2009)

  12 Nov 2009; Daniel Pielmeier <billie@gentoo.org>
  -files/hplip-3.9.2-high_cpu_utilization_logout.patch, -hplip-3.9.8.ebuild,
  -hplip-3.9.8-r1.ebuild, -hplip-3.9.8-r2.ebuild, +hplip-3.9.10.ebuild,
  metadata.xml:
  Version bump thanks to Manfred Knick in bug #292915. Remove old versions
  and unused files files. Cleanup metadata.xml.

*hplip-3.9.8-r3 (15 Oct 2009)

  15 Oct 2009; Pielmeier Daniel <billie@gentoo.org> +hplip-3.9.8-r3.ebuild,
  metadata.xml:
  Revision bump. Add zeroconf use flag, thanks to Piotr Mitas in bug
  #287156. Fix building of hpcups driver even with USE="-hpcups", thanks to
  John Feuerstein in bug #288751.

*hplip-3.9.8-r2 (14 Oct 2009)

  14 Oct 2009; Pielmeier Daniel <billie@gentoo.org> +hplip-3.9.8-r2.ebuild,
  metadata.xml:
  Revision bump. Replacing udev rules shouldn't be necessary anymore. New
  udev-acl use flag which installs 40-hplip.rules only if udev with acl
  support is available else 55-hpmud.rules is installed. Use minmal does not
  install files below libdir anymore.

  14 Oct 2009; Pielmeier Daniel <billie@gentoo.org> hplip-3.9.8.ebuild,
  hplip-3.9.8-r1.ebuild, metadata.xml:
  USE foomatic should go into hplip-3.9.8 instead of hplip-3.9.8-r1. Add
  myself to maintainers.

*hplip-3.9.8-r1 (14 Oct 2009)

  14 Oct 2009; Diego E. Pettenò <flameeyes@gentoo.org>
  +hplip-3.9.8-r1.ebuild, metadata.xml:
  Add missing foomatic USE flag in IUSE for old version; new ebuild by
  Daniel Pielmeier (billie), see bug #287005.

*hplip-3.9.8 (24 Sep 2009)

  24 Sep 2009; Diego E. Pettenò <flameeyes@gentoo.org> -hplip-2.8.7.ebuild,
  -hplip-3.9.2.ebuild, -hplip-3.9.4b.ebuild, hplip-3.9.4b-r1.ebuild,
  +hplip-3.9.8.ebuild, metadata.xml:
  Version bump, thanks to Oldrich Jedlicka in bug #275682. Fix bug #285840,
  thanks to Fabio Erculiani. Remove older versions, also closes bug #270354.

  13 Sep 2009; Timo Gurr <tgurr@gentoo.org> hplip-2.8.6b.ebuild,
  hplip-2.8.7.ebuild, hplip-3.9.2.ebuild, hplip-3.9.4b.ebuild,
  hplip-3.9.4b-r1.ebuild:
  Prepare for cups-1.4.

  08 Sep 2009; Mike Auty <ikelos@gentoo.org> hplip-2.8.6b.ebuild,
  hplip-2.8.7.ebuild, hplip-3.9.2.ebuild, hplip-3.9.4b.ebuild,
  hplip-3.9.4b-r1.ebuild:
  Making CONFIG_CHECK non-fatal for userland ebuilds, see bug 283320.

  05 Jul 2009; Robin H. Johnson <robbat2@gentoo.org> hplip-3.9.2.ebuild,
  hplip-3.9.4b.ebuild, hplip-3.9.4b-r1.ebuild:
  USB functionality seems to work in brief testing with libusb-compat.

*hplip-3.9.4b-r1 (20 Jun 2009)

  20 Jun 2009; Pielmeier Daniel <billie@gentoo.org> +hplip-3.9.4b-r1.ebuild:
  Revision bump. This should fix bug #274197.

  17 Jun 2009; Petteri Räty <betelgeuse@gentoo.org> hplip-3.9.4b.ebuild:
  Add dependency on dev-python/pygobject when dbus is on.

  02 Jun 2009; Diego E. Pettenò <flameeyes@gentoo.org> hplip-3.9.4b.ebuild:
  Depend on PyQt4 with X module enabled; closes bug #272178.

*hplip-3.9.4b (28 May 2009)

  28 May 2009; Diego E. Pettenò <flameeyes@gentoo.org>
  +files/hplip-3.9.4+glibc-2.10.patch, +hplip-3.9.4b.ebuild:
  Version bump; thanks to Yar Odin and Andrew Savchenko in bug #267546. Add
  patch to build with glibc-2.10.

  16 May 2009; Denis Dupeyron <calchan@gentoo.org> hplip-3.9.2.ebuild:
  Fixed hplip-3.9.2 for bug #270055.

  16 May 2009; Denis Dupeyron <calchan@gentoo.org> hplip-2.8.7.ebuild:
  Fixed hplip-2.8.7 for bug #270055.

  16 May 2009; Denis Dupeyron <calchan@gentoo.org> hplip-2.8.6b.ebuild:
  Fixed hplip-2.8.6b for bug #270055.

  29 Mar 2009; Thomas Sachau (Tommy[D]) <tommy@gentoo.org> metadata.xml,
  hplip-3.9.2.ebuild:
  Fix qt3/4 description, qt4 is preferred over qt3, thanks to Daniel
  Pielmeier for pointing it out

*hplip-3.9.2 (29 Mar 2009)

  29 Mar 2009; Thomas Sachau (Tommy[D]) <tommy@gentoo.org>
  +files/hplip-3.9.2-high_cpu_utilization_logout.patch, metadata.xml,
  +hplip-3.9.2.ebuild:
  Version bump for bug 245136, thanks to Yar Odin and Daniel Pielmeier and
  fix bug 242498 thanks Daniel Santos for reporting

  14 Mar 2009; Raúl Porcel <armin76@gentoo.org> hplip-2.8.7.ebuild:
  Add ~arm wrt #261391

  18 Aug 2008; Denis Dupeyron <calchan@gentoo.org> metadata.xml:
  Added description for USE=gtk in metadata.

  17 Aug 2008; Denis Dupeyron <calchan@gentoo.org> -hplip-2.7.10.ebuild,
  -hplip-2.7.12.ebuild, -hplip-2.7.12-r1.ebuild, -hplip-2.8.2.ebuild,
  -hplip-2.8.5.ebuild:
  Cleanup.

*hplip-2.8.7 (17 Aug 2008)

  17 Aug 2008; Denis Dupeyron <calchan@gentoo.org> +hplip-2.8.7.ebuild:
  Version bump, closing bugs #234153 and #234173.

  15 Aug 2008; Denis Dupeyron <calchan@gentoo.org> hplip-2.8.6b.ebuild:
  Fixed minor bug in debug output of device.py thanks to Gordon Malm.

  12 Aug 2008; Brent Baude <ranger@gentoo.org> hplip-2.8.6b.ebuild:
  Marking hplip-2.8.6b ppc stable.  Went direct to stable per security 
  request in bug 233968.

  07 Aug 2008; Denis Dupeyron <calchan@gentoo.org> metadata.xml:
  Implemented GLEP 56.

  07 Aug 2008; Denis Dupeyron <calchan@gentoo.org> hplip-2.8.6b.ebuild:
  Fixed hp-systray not starting up automatically with hp-toolbox, thanks to
  Gordon Malm (see bug #233968).

  06 Aug 2008; Markus Meier <maekke@gentoo.org> hplip-2.8.6b.ebuild:
  amd64/x86 stable, bug #233968

  05 Aug 2008; Markus Rothe <corsair@gentoo.org> hplip-2.8.6b.ebuild:
  Stable on ppc64; bug #233968

*hplip-2.8.6b (30 Jul 2008)

  30 Jul 2008; Denis Dupeyron <calchan@gentoo.org> +hplip-2.8.6b.ebuild:
  Version bump. Fixed bugs #223121, #223715 and #230913.

  29 May 2008; Ali Polatel <hawking@gentoo.org> hplip-2.7.12-r1.ebuild:
  python_mod_optimize is ROOT aware.

  22 May 2008; Markus Rothe <corsair@gentoo.org> hplip-2.8.5.ebuild:
  Added ~ppc64; bug #223043

*hplip-2.8.5 (21 May 2008)

  21 May 2008; Denis Dupeyron <calchan@gentoo.org> +hplip-2.8.5.ebuild:
  Version bump, see bug #222329.

*hplip-2.8.2 (04 Apr 2008)

  04 Apr 2008; Denis Dupeyron <calchan@gentoo.org> +hplip-2.8.2.ebuild:
  Version bump, bug #209641.

  24 Mar 2008; Denis Dupeyron <calchan@gentoo.org> hplip-2.7.10.ebuild,
  hplip-2.7.12.ebuild, hplip-2.7.12-r1.ebuild:
  Fixed kernel checks, thanks to Petteri Räty (bug #210890).

  14 Jan 2008; Denis Dupeyron <calchan@gentoo.org> hplip-2.7.10.ebuild,
  hplip-2.7.12.ebuild, hplip-2.7.12-r1.ebuild:
  Moved the part about avoiding collisions with cups-1.2 symlinks from
  pkg_setup() to pkg_preinst() so that a compilation failure doesn't result in
  changes to the filesystem. Thanks to Donnie Berkholz.

*hplip-2.7.12-r1 (13 Jan 2008)

  13 Jan 2008; Denis Dupeyron <calchan@gentoo.org> +hplip-2.7.12-r1.ebuild:
  Use python.eclass, thanks to Mart Raudsepp (bug #203669).

  27 Dec 2007; Denis Dupeyron <calchan@gentoo.org>
  -files/hplip-1.7.4a-subprocess_replacement.patch,
  -files/hplip-2.7.9-subprocess_replacement.patch, -files/hplip.init.d,
  -hplip-1.7.4a-r2.ebuild, -hplip-2.7.9-r1.ebuild:
  Post-stabilization cleanup.

  26 Dec 2007; Samuli Suominen <drac@gentoo.org> hplip-2.7.10.ebuild:
  amd64 stable wrt #202916

  24 Dec 2007; Brent Baude <ranger@gentoo.org> hplip-2.7.10.ebuild:
  Marking hplip-2.7.10 ppc64 for bug 202916

*hplip-2.7.12 (23 Dec 2007)

  23 Dec 2007; Denis Dupeyron <calchan@gentoo.org> +hplip-2.7.12.ebuild:
  Version bump, thanks to Francisco Lloret (bug #203095).

  22 Dec 2007; Markus Meier <maekke@gentoo.org> hplip-2.7.10.ebuild:
  x86 stable, bug #202916

  22 Dec 2007; Tobias Scherbaum <dertobi123@gentoo.org> hplip-2.7.10.ebuild:
  ppc stable, bug #202916

*hplip-2.7.10 (19 Nov 2007)

  19 Nov 2007; Denis Dupeyron <calchan@gentoo.org> +files/70-hpmud.rules,
  +hplip-2.7.10.ebuild:
  Version bump, bug #196795. Replaced udev rules, bug #197726.

  18 Nov 2007; Denis Dupeyron <calchan@gentoo.org> hplip-2.7.9-r1.ebuild:
  Fixed bug #193671 again.

  23 Oct 2007; Denis Dupeyron <calchan@gentoo.org> hplip-1.7.4a-r2.ebuild,
  hplip-2.7.9-r1.ebuild:
  Fixed bug #196743, thanks to Renato Alves.

  21 Oct 2007; Denis Dupeyron <calchan@gentoo.org> -hplip-1.7.4a-r1.ebuild:
  Removed useless ebuild after stabilization due to bug #195565.

  21 Oct 2007; Steve Dibb <beandog@gentoo.org> hplip-1.7.4a-r2.ebuild:
  amd64 stable, bug 195565

  20 Oct 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  hplip-1.7.4a-r2.ebuild:
  ppc stable, bug #195565

  19 Oct 2007; Christian Faulhammer <opfer@gentoo.org>
  hplip-1.7.4a-r2.ebuild:
  stable x86, security bug 195565

*hplip-1.7.4a-r2 (18 Oct 2007)

  18 Oct 2007; Denis Dupeyron <calchan@gentoo.org>
  +files/hplip-1.7.4a-subprocess_replacement.patch, -hplip-1.6.10.ebuild,
  +hplip-1.7.4a-r2.ebuild:
  Fixed bug #195565 for old 1.x branch. Fixed quoting.

*hplip-2.7.9-r1 (18 Oct 2007)

  18 Oct 2007; Denis Dupeyron <calchan@gentoo.org>
  -files/hplip-2.7.7-udev-kernel.2.6.22.diff,
  +files/hplip-2.7.9-subprocess_replacement.patch, -hplip-2.7.7-r3.ebuild,
  -hplip-2.7.9.ebuild, +hplip-2.7.9-r1.ebuild:
  Fixed bug #195565 for new 2.x branch. Fixed quoting.

  10 Oct 2007; Stefan Schweizer <genstef@gentoo.org> hplip-2.7.9.ebuild:
  Improve DEPEND-accuracy for jakub in bug 193671

*hplip-2.7.9 (30 Sep 2007)

  30 Sep 2007; Denis Dupeyron <calchan@gentoo.org> +hplip-2.7.9.ebuild:
  Version bump. Reworked minimal installation to fix bug #193671, thanks to
  Jakub Moc for his suggestions and Dan Ost for reporting and testing.

*hplip-2.7.7-r3 (29 Sep 2007)

  29 Sep 2007; Denis Dupeyron <calchan@gentoo.org> -hplip-2.7.7-r2.ebuild,
  +hplip-2.7.7-r3.ebuild:
  Fixed bug #194052, thanks to Dmitri Pogosian. Removed fix for bug #161926
  which isn't necessary anymore.

  20 Sep 2007; Denis Dupeyron <calchan@gentoo.org> -hplip-2.7.6.ebuild,
  -hplip-2.7.7.ebuild:
  Cleanup.

*hplip-2.7.7-r2 (22 Aug 2007)

  22 Aug 2007; Matthias Schwarzott <zzam@gentoo.org>
  files/hplip-2.7.7-udev-kernel.2.6.22.diff, -hplip-2.7.7-r1.ebuild,
  +hplip-2.7.7-r2.ebuild:
  Changed ATTR to ATTRS to also make it back working with old
  usb-kernel-interface, Bug #186906.

*hplip-2.7.7-r1 (21 Aug 2007)

  21 Aug 2007; Matthias Schwarzott <zzam@gentoo.org>
  +files/hplip-2.7.7-udev-kernel.2.6.22.diff, +hplip-2.7.7-r1.ebuild:
  Updated udev rules, to work with kernel 2.6.22. This uses new udev-syntax,
  so block versions before udev-114, Bug #186906.

*hplip-2.7.7 (08 Aug 2007)

  08 Aug 2007; Stefan Schweizer <genstef@gentoo.org> +hplip-2.7.7.ebuild:
  version bump thanks to Paul Bredbury <brebs@sent.com> in bug 187530

  28 Jul 2007; Denis Dupeyron <calchan@gentoo.org> hplip-2.7.6.ebuild:
  Added einfo about the init script not being used anymore, thanks to Heiko
  Baums (bug #186575).

  25 Jul 2007; Denis Dupeyron <calchan@gentoo.org> hplip-2.7.6.ebuild:
  Fixed bug #161926, thanks to Daniel Klaffenbach, Tom Dexter and Francisco
  Lloret.

  25 Jul 2007; Denis Dupeyron <calchan@gentoo.org> hplip-2.7.6.ebuild:
  Updated post-install info before unmasking the new release.

*hplip-2.7.6 (21 Jul 2007)

  21 Jul 2007; Denis Dupeyron <calchan@gentoo.org> +hplip-2.7.6.ebuild:
  Major version bump.

  16 Jun 2007; Denis Dupeyron <calchan@gentoo.org> -hplip-1.7.3.ebuild,
  -hplip-1.7.4.ebuild, -hplip-1.7.4a.ebuild:
  Post-stabilization cleanup. Kept version 1.6.10 due to bug #161926.

  11 Jun 2007; Daniel Gryniewicz <dang@gentoo.org> hplip-1.7.4a-r1.ebuild:
  Marked stable on amd64 for bug #181108

  10 Jun 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  hplip-1.7.4a-r1.ebuild:
  ppc stable, bug #181108

  07 Jun 2007; Markus Rothe <corsair@gentoo.org> hplip-1.7.4a-r1.ebuild:
  Added ~ppc64

  07 Jun 2007; Christian Faulhammer <opfer@gentoo.org>
  hplip-1.7.4a-r1.ebuild:
  stable x86, bug 181108

*hplip-1.7.4a-r1 (01 May 2007)

  01 May 2007; Denis Dupeyron <calchan@gentoo.org> +hplip-1.7.4a-r1.ebuild:
  Fixed bug #172341.

*hplip-1.7.4a (27 Apr 2007)

  27 Apr 2007; Denis Dupeyron <calchan@gentoo.org> metadata.xml,
  +hplip-1.7.4a.ebuild:
  Version bump. Added fax and parport local USE flags. Dependency cleanups.

*hplip-1.7.4 (23 Apr 2007)

  23 Apr 2007; Marcelo Goes <vanquirius@gentoo.org> +hplip-1.7.4.ebuild:
  1.7.4 version bump.

  07 Apr 2007; Stefan Schweizer <genstef@gentoo.org> hplip-1.7.3.ebuild:
  Add information about qt3 useflag needed thanks to Matthew Schultz
  <mattsch@gmail.com> in bug 173389

  27 Mar 2007; <genstef@gentoo.org> hplip-1.6.10.ebuild, hplip-1.7.3.ebuild:
  Add missing cups to IUSE thanks to Pacho Ramos
  <pacho@condmat1.ciencias.uniovi.es> in bug 172038

  25 Mar 2007; Marcelo Goes <vanquirius@gentoo.org> -hplip-0.9.7-r3.ebuild:
  Remove old ebuild.

  25 Mar 2007; Tobias Scherbaum <dertobi123@gentoo.org> hplip-1.6.10.ebuild:
  Stable on ppc wrt bug #158911.

*hplip-1.7.3 (24 Mar 2007)

  24 Mar 2007; Marcelo Goes <vanquirius@gentoo.org> -hplip-1.7.2.ebuild,
  +hplip-1.7.3.ebuild:
  1.7.3 version bump. Fixes scanning problem in bug 161926. Thanks to direx
  <jean-jaques at women-at-work dot org>, jim stead <jstead1 at twcny dot rr
  dot com> and others.

  17 Mar 2007; Steve Dibb <beandog@gentoo.org> hplip-1.6.10.ebuild:
  amd64 stable, bug 158911

  04 Mar 2007; <genstef@gentoo.org> hplip-1.7.2.ebuild:
  Correct DEPEND, bug 168179

*hplip-1.7.2 (03 Mar 2007)

  03 Mar 2007; Marcelo Goes <vanquirius@gentoo.org>
  -files/hplip-1.7.1-1.patch, -hplip-1.6.12.ebuild, -hplip-1.7.1.ebuild,
  +hplip-1.7.2.ebuild:
  1.7.2 version bump, remove old ebuilds. Note that this does not fix the SANE
  problem.

  26 Feb 2007; Christian Faulhammer <opfer@gentoo.org> hplip-1.6.10.ebuild:
  stable x86; bug 158911

  24 Feb 2007; Marcelo Goes <vanquirius@gentoo.org> +hplip-1.6.10.ebuild:
  Re-adding hplip-1.6.10 since scanning is broken with newer versions. This is
  a workaround for bug 161926. Thanks to direx <jean-jaques at women-at-work
  dot org>, Francisco Lloret <fcolloret at terra dot es> and jim stead
  <jstead1 at twcny dot rr dot com>. Versions 1.6.12 and 1.7.1 will be kept
  masked until the scanning problem is sorted out.

*hplip-1.7.1 (19 Feb 2007)

  19 Feb 2007; <genstef@gentoo.org> +files/hplip-1.7.1-1.patch,
  +hplip-1.7.1.ebuild:
  Version bump, thanks to Francisco Lloret <fcolloret@terra.es> in bug 163738

*hplip-1.6.12 (07 Jan 2007)

  07 Jan 2007; <genstef@gentoo.org> -hplip-1.6.10.ebuild,
  +hplip-1.6.12.ebuild:
  version bump thanks to Francisco Lloret <fcolloret@terra.es> in bug 158909

  28 Nov 2006; Stefan Schweizer <genstef@gentoo.org> hplip-1.6.10.ebuild:
  fully fix bug 150801

  26 Nov 2006; Stefan Schweizer <genstef@gentoo.org> hplip-1.6.10.ebuild:
  Add missing cp, thanks jakub in bug 150801

*hplip-1.6.10 (20 Oct 2006)

  20 Oct 2006; Stefan Schweizer <genstef@gentoo.org> -hplip-1.6.9.ebuild,
  +hplip-1.6.10.ebuild:
  version bump thanks to Francisco Lloret <fcolloret@terra.es> in bug 152139
  and fix san dll.conf thanks to rob miller <rob@janerob.com> in bug 150801

  23 Sep 2006; Stefan Schweizer <genstef@gentoo.org> hplip-1.6.9.ebuild:
  Fix get_libdir thanks to Georgi Georgiev <chutz@gg3.net> in bug 148732

*hplip-1.6.9 (22 Sep 2006)

  22 Sep 2006; Stefan Schweizer <genstef@gentoo.org> -hplip-1.6.6a.ebuild,
  -hplip-1.6.7.ebuild, +hplip-1.6.9.ebuild:
  version bump thanks to Francisco Lloret <fcolloret@terra.es> and Tom Simnett
  <tomsimnett@yahoo.co.uk> in bug 148393

*hplip-1.6.7 (16 Aug 2006)

  16 Aug 2006; Stefan Schweizer <genstef@gentoo.org> +hplip-1.6.7.ebuild:
  version bump thanks to Francisco Lloret <fcolloret@terra.es> and Eric
  Thibodeau <kyron@neuralbs.com> in bug 143551

  05 Aug 2006; Stefan Schweizer <genstef@gentoo.org> hplip-0.9.7-r3.ebuild,
  hplip-1.6.6a.ebuild:
  Depend on hotplug-base instead of hotplug thanks to Heiko Baums
  <heiko@baums-on-web.de> in bug 142604

*hplip-1.6.6a (20 Jul 2006)

  20 Jul 2006; Stefan Schweizer <genstef@gentoo.org> -hplip-1.6.6.ebuild,
  -hplip-1.6.6-r1.ebuild, +hplip-1.6.6a.ebuild:
  bump the foomatic-db, properly name 1.6.6a

*hplip-1.6.6-r1 (01 Jul 2006)

  01 Jul 2006; Marcelo Goes <vanquirius@gentoo.org> -hplip-0.9.8-r2.ebuild,
  -hplip-0.9.11-r1.ebuild, +hplip-1.6.6-r1.ebuild:
  1.6.6-r1 version bump - use 1.6.6a tarball from upstream. Also, cleaning up
  old ebuilds.

  24 Jun 2006; Doug Goldstein <cardoe@gentoo.org> hplip-0.9.7-r3.ebuild,
  hplip-0.9.8-r2.ebuild, hplip-0.9.11-r1.ebuild, hplip-1.6.6.ebuild:
  USE flag change qt->qt3/qt4 bug #137785

  17 Jun 2006; Stefan Schweizer <genstef@gentoo.org> hplip-1.6.6.ebuild:
  cups-1.2 fixes and major ebuild cleanups

*hplip-1.6.6 (16 Jun 2006)

  16 Jun 2006; Marcelo Goes <vanquirius@gentoo.org> +hplip-1.6.6.ebuild:
  1.6.6 version bump. Fixes bug 136937, reported by Kenton Groombridge
  <kenton.groombridge at us.army dot mil>.

  04 Jun 2006; Stefan Schweizer <genstef@gentoo.org> hplip-0.9.7-r3.ebuild,
  hplip-0.9.8-r2.ebuild, -hplip-0.9.9.ebuild, -hplip-0.9.10-r1.ebuild,
  hplip-0.9.11-r1.ebuild:
  Change foomatic depend to foomatic-db-engine and remove unused ebuilds

*hplip-0.9.11-r1 (03 Jun 2006)

  03 Jun 2006; Marcelo Goes <vanquirius@gentoo.org> -hplip-0.9.11.ebuild,
  +hplip-0.9.11-r1.ebuild:
  Add patch from upstream to 0.9.11.

*hplip-0.9.11 (14 May 2006)

  14 May 2006; Marcelo Goes <vanquirius@gentoo.org> +hplip-0.9.11.ebuild:
  0.9.11 version bump. Updated HOMEPAGE and SRC_URI. Thanks to genstef for
  letting me know of the bump.

  23 Apr 2006; Marcelo Goes <vanquirius@gentoo.org> hplip-0.9.7-r3.ebuild,
  hplip-0.9.8-r2.ebuild, hplip-0.9.9.ebuild, hplip-0.9.10-r1.ebuild:
  Make net-print/cups a hard dependency for bug 130871, reported by Martin
  <martinsw at linux-net dot dnsalias dot net>.

*hplip-0.9.10-r1 (23 Apr 2006)

  23 Apr 2006; Marcelo Goes <vanquirius@gentoo.org> -hplip-0.9.10.ebuild,
  +hplip-0.9.10-r1.ebuild:
  Add 0.9.10-2 patch from upstream.

  05 Apr 2006; Marcelo Goes <vanquirius@gentoo.org> hplip-0.9.9.ebuild,
  hplip-0.9.10.ebuild:
  Attempting to fix bug 126256 - hplip-0.9.9 does not work with foomatic/hpijs
  drivers and cups. Thanks to Peter Hjalmarsson <xake at telia dot com> for
  his suggestion.

*hplip-0.9.10 (01 Apr 2006)

  01 Apr 2006; Marcelo Goes <vanquirius@gentoo.org> hplip-0.9.9.ebuild,
  +hplip-0.9.10.ebuild:
  0.9.10 version bump. Kill usb USE flag for bug 126337 and make libusb and
  hotplug hardcoded dependencies, as they are no longer optional.
  Thanks to Bouvard Patrice <pabou at swing dot be>.

*hplip-0.9.9 (12 Mar 2006)

  12 Mar 2006; Marcelo Goes <vanquirius@gentoo.org> +hplip-0.9.9.ebuild:
  0.9.9 version bump.

*hplip-0.9.8-r2 (24 Feb 2006)

  24 Feb 2006; Marcelo Goes <vanquirius@gentoo.org> -hplip-0.9.8-r1.ebuild,
  +hplip-0.9.8-r2.ebuild:
  Update upstream patch to 0.9.8-4.

  17 Feb 2006; Simon Stelling <blubb@gentoo.org> hplip-0.9.7-r3.ebuild:
  stable on amd64

  14 Feb 2006; Marcelo Goes <vanquirius@gentoo.org> hplip-0.9.7-r3.ebuild,
  hplip-0.9.8-r1.ebuild:
  Do not install desktop entry if qt USE flag is not set for bug 122758.
  Thanks to Darcy <darcydot parks at gmail dot com>.

*hplip-0.9.8-r1 (11 Feb 2006)

  11 Feb 2006; Marcelo Goes <vanquirius@gentoo.org> -hplip-0.9.8.ebuild,
  +hplip-0.9.8-r1.ebuild:
  Add 0.9.8-3 patch from upstream, update foomatic-db-hpijs version.

*hplip-0.9.8 (06 Feb 2006)

  06 Feb 2006; Marcelo Goes <vanquirius@gentoo.org> +hplip-0.9.8.ebuild:
  0.9.8 version bump.

  25 Jan 2006; Marcelo Goes <vanquirius@gentoo.org> hplip-0.9.7-r3.ebuild:
  Mark 0.9.7-r3 x86 stable.

  24 Jan 2006; Marcelo Goes <vanquirius@gentoo.org> -hplip-0.9.5.ebuild,
  hplip-0.9.7-r3.ebuild:
  Use newinitd instead of exeinto, newexe.

  21 Jan 2006; Lars Weiler <pylon@gentoo.org> hplip-0.9.7-r3.ebuild:
  Stable on ppc; Bug #112425.

*hplip-0.9.7-r3 (19 Jan 2006)

  19 Jan 2006; Marcelo Goes <vanquirius@gentoo.org> -hplip-0.9.7-r2.ebuild,
  +hplip-0.9.7-r3.ebuild:
  Add net-print/foomatic-filters to RDEPEND for bug 94368. Thanks to Jakub
  Kocourek <jakub dot kocourek at gmail dot com> and others.

  15 Jan 2006; Marcelo Goes <vanquirius@gentoo.org> -hplip-0.9.3.ebuild,
  -hplip-0.9.4.ebuild, hplip-0.9.7-r2.ebuild:
  Take my devspace out of SRC_URI, remove old ebuilds.

*hplip-0.9.7-r2 (14 Jan 2006)

  14 Jan 2006; Marcelo Goes <vanquirius@gentoo.org> -hplip-0.9.7-r1.ebuild,
  +hplip-0.9.7-r2.ebuild:
  Do not install qt applications with USE=-qt. Fixes bug 106035. Thanks to
  Chris White <chriswhite at gentoo dot org> and others.

  14 Jan 2006; Marcelo Goes <vanquirius@gentoo.org> files/hplip.init.d:
  Add Alex Rostovtsev <tetromino at gmail dot com>'s init fix for bug 97033.
  Thanks to all bug participants.

*hplip-0.9.7-r1 (14 Jan 2006)

  14 Jan 2006; Marcelo Goes <vanquirius@gentoo.org> -hplip-0.9.7.ebuild,
  +hplip-0.9.7-r1.ebuild:
  Add python fix for bug 98428, thanks to Sridhar Dhanapalan <lists dot
  sridhar at dhanapalan dot com>, William Keaney <keaneyw at gmail dot com>,
  boris faure <billiob at gmail dot com> and others. Add upstream patch for
  bug 116952, thanks to Keri Harris <harriskeri at mcs dot vuw dot ac dot nz>.

  04 Dec 2005; Marcelo Goes <vanquirius@gentoo.org> hplip-0.9.7.ebuild:
  Use mirrors to host foomatic-db-hpijs tarball. This should fix bug 114033,
  reported by Jason Arndt <jarndt196 at yahoo dot com>.

*hplip-0.9.7 (26 Nov 2005)

  26 Nov 2005; Marcelo Goes <vanquirius@gentoo.org> +hplip-0.9.7.ebuild:
  0.9.7 version bump.

  16 Nov 2005; Luca Barbato <lu_zero@gentoo.org> hplip-0.9.5.ebuild:
  Fix big endian error

  25 Sep 2005; Luis Medinas <metalgod@gentoo.org> hplip-0.9.5.ebuild:
  Update to the latest foomatic-db-hpijs snapshot.

*hplip-0.9.5 (25 Sep 2005)

  25 Sep 2005; Luis Medinas <metalgod@gentoo.org> +hplip-0.9.5.ebuild:
  Version bump

  03 Aug 2005; David Holm <dholm@gentoo.org> hplip-0.9.4.ebuild:
  Added to ~ppc.

*hplip-0.9.4 (02 Aug 2005)

  02 Aug 2005; <metalgod@gentoo.org> +hplip-0.9.4.ebuild:
  Version Bump

  28 Jul 2005; Caleb Tennis <caleb@gentoo.org> hplip-0.9.3.ebuild:
  Fix qt dep per bug #100235

  05 Jul 2005; Sven Wegener <swegener@gentoo.org> hplip-0.9.3.ebuild:
  QA: Added cups and usb to IUSE.

  07 Jun 2005; Sven Wegener <swegener@gentoo.org> hplip-0.9.3.ebuild:
  Fixed invalid atoms in *DEPEND. Use scanner? once in *DEPEND.

*hplip-0.9.3 (07 Jun 2005)

  07 Jun 2005; Heinrich Wendel <lanius@gentoo.org> +metadata.xml,
  +hplip-0.9.3.ebuild:
  initial import, bug #73709