~ubuntu-branches/ubuntu/jaunty/ghostscript/jaunty-updates

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
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
ghostscript (8.64.dfsg.1-0ubuntu6) jaunty; urgency=low

  * SECURITY UPDATE: Arbitrary code execution due to integer overflows and
    insufficient upper-bounds checks in the ICC library
    - debian/patches/38_CVE-2009-0583_0584.dpatch: fix multiple integer
      overflows and perform bounds checking in icclib/icc.c.
    - CVE-2009-0583
    - CVE-2009-0584

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Fri, 27 Mar 2009 08:51:14 -0400

ghostscript (8.64.dfsg.1-0ubuntu5) jaunty; urgency=low

  * debian/patches/00list: Really apply the patch for LP: #333429.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Wed, 25 Mar 2009 18:32:49 +0100

ghostscript (8.64.dfsg.1-0ubuntu4) jaunty; urgency=low
					 
  * debian/patches/37_fix-segfault-in-cups-raster-output-device.dpatch:
    Fixed segfault in the "cups" (CUPS Raster) output device of Ghostscript
    (LP: #333429, upstream bug 690338).

  * debian/ghostscript.postinst: Silenced non-fatal error messages when
    post-install script updates PPDs and there are PPDs not belonging to
    a CUPS queue in /etc/cups/ppd/ (LP: #345866).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Wed, 25 Mar 2009 16:13:49 +0100

ghostscript (8.64.dfsg.1-0ubuntu3) jaunty; urgency=low

  * debian/local/apport-hook.py, debian/rules: Added apport hook (LP: #338442).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Thu, 19 Mar 2009 12:39:49 +0100

ghostscript (8.64.dfsg.1-0ubuntu2) jaunty; urgency=low

  * debian/patches/35_bitcmyk-blank-output.dpatch: The bitcmyk output device
    produces zero length output (LP: #331127, upstream bug #690287).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Wed, 18 Feb 2009 19:52:54 +0100

ghostscript (8.64.dfsg.1-0ubuntu1) jaunty; urgency=low

  * New upstream release (Ghostscript 8.64 final release)
     o No functional change. This is only to let the final release not
       appear as a release candidate in the help output and documentation.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Tue, 03 Feb 2009 21:42:54 +0100

ghostscript (8.64.dfsg.1~svn9432-0ubuntu1) jaunty; urgency=low

  * New upstream release (SVN rev 9432, RC3)
     o Fix regression of X output being broken with large images or other
       cases of the image buffer being used (Upstream bug #690222, #690260).
     o Fixed the bbox output device for example3.ps in LP: #160203.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Mon, 02 Feb 2009 21:42:53 +0100

ghostscript (8.64.dfsg.1~svn9415-0ubuntu1) jaunty; urgency=low

  * New upstream release (SVN rev 9415, RC2)
     o Fix problem of X display not completely clearing the previous page
       before drawing the next page (Upstream bug #690255).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Wed, 28 Jan 2009 00:12:16 +0100

ghostscript (8.64.dfsg.1~svn9403-0ubuntu1) jaunty; urgency=low

  * New upstream release (SVN rev 9403, RC1)
     o Output of PDF-to-PostScript conversion was not DSC-conforming and
       prevented CUPS from switching trays when the page size changes in
       the middle of the document (LP: #310575)
     o All but one Debian patches are incorporated upstream now.
  * debian/patches/32_improve-handling-of-media-size-changes-from-gv.dpatch:
    Removed, applied upstream.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Tue, 27 Jan 2009 10:28:07 +0100

ghostscript (8.64.dfsg.1~svn9377-0ubuntu1) jaunty; urgency=low

  * New upstream release (SVN rev 9377)
     o Fixes many bugs concerning PDF rendering, to make the PDF printing
       workflow correctly working.
     o Fixes long-standing bugs in many drivers, like input paper tray and
       duplex options not working for the built-in PCL 4, 5, 5c, 5e, and
       6/XL drivers, PDF input not working for bjc600, bjc800, and cups
       output devices, several options not working and uninitialized
       memory with cups output device.
     o Merged nearly all patches of the Ubuntu and Debian packages upstream.
     o Fixes LP: #317810, LP: #314439, LP: #314018.
  * debian/patches/03_libpaper_support.dpatch,
    debian/patches/11_gs-cjk_font_glyph_handling_fix.dpatch,
    debian/patches/12_gs-cjk_vertical_writing_metrics_fix.dpatch,
    debian/patches/13_gs-cjk_cjkps_examples.dpatch,
    debian/patches/20_bbox_segv_fix.dpatch,
    debian/patches/21_brother_7x0_gdi_fix.dpatch,
    debian/patches/22_epsn_margin_workaround.dpatch,
    debian/patches/24_gs_man_fix.dpatch,
    debian/patches/25_toolbin_insecure_tmp_usage_fix.dpatch,
    debian/patches/26_assorted_script_fixes.dpatch,
    debian/patches/29_gs_css_fix.dpatch,
    debian/patches/30_ps2pdf_man_improvement.dpatch,
    debian/patches/31_fix-gc-sigbus.dpatch,
    debian/patches/34_ftbfs-on-hurd-fix.dpatch,
    debian/patches/35_disable_libcairo.dpatch,
    debian/patches/38_pxl-duplex.dpatch,
    debian/patches/39_pxl-resolution.dpatch,
    debian/patches/42_gs-init-ps-delaybind-fix.dpatch,
    debian/patches/45_bjc600-bjc800-pdf-input.dpatch,
    debian/patches/48_cups-output-device-pdf-duplex-uninitialized-memory-fix.dpatch,
    debian/patches/50_lips4-floating-point-exception.dpatch,
    debian/patches/52_cups-device-logging.dpatch,
    debian/patches/55_pcl-input-slot-fix.dpatch,
    debian/patches/57_pxl-input-slot-fix.dpatch,
    debian/patches/60_pxl-cups-driver-pdf.dpatch,
    debian/patches/62_onebitcmyk-pdf.dpatch,
    debian/patches/65_too-big-temp-files-1.dpatch,
    debian/patches/67_too-big-temp-files-2.dpatch,
    debian/patches/70_take-into-account-data-in-stream-buffer-before-refill.dpatch:
    Removed, applied upstream.
  * debian/patches/01_docdir_fix_for_debian.dpatch,
    debian/patches/02_gs_man_fix_debian.dpatch,
    debian/patches/01_docdir-fix-for-debian.dpatch,
    debian/patches/02_docdir-fix-for-debian.dpatch: Renamed patches to
    make merging with Debian easier.
  * debian/patches/32_improve-handling-of-media-size-changes-from-gv.dpatch, 
    debian/patches/33_bad-params-to-xinitimage-on-large-bitmaps.dpatch:
    regenerated for new source directory structure.
  * debian/rules: Corrected paths to remove cidfmap (it is in Resource/Init/
    in GS 8.64) and to install headers (source paths are psi/ and base/ now).
  * debian/rules: Remove all fontmaps, as DeFoMa replaces them.
  * debian/local/pdftoraster/pdftoraster.c,
    debian/local/pdftoraster/pdftoraster.convs, debian/rules: Removed
    added pdftoraster filter and use the one which comes with Ghostscript.
  * debian/ghostscript.links: s/8.63/8.64/

 -- Till Kamppeter <till.kamppeter@gmail.com>  Tue, 20 Jan 2009  16:40:45 +0100

ghostscript (8.63.dfsg.1-2ubuntu2) jaunty; urgency=low

  * debian/rules: Removed /usr/share/ghostscript/8.63/lib/cidfmap, so that
    DeFoMa's cidfmap gets used. Otherwise Ubuntu's CJK fonts will not get
    found by Ghostscript (Thanks to Koji Otani from BBR Inc., Japan for the
    hint).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Tue,  6 Jan 2009 09:40:45 +0100

ghostscript (8.63.dfsg.1-2ubuntu1) jaunty; urgency=low

  * debian/patches/02_gs_man_fix_debian.dpatch: Corrected paths in the man
    page.
  * debian/patches/14_gs-cjk_big_cmap_post_table.dpatch,
    debian/patches/23_gdevxini_segv_fix.dpatch,
    debian/patches/28_print_encrypted_PDFs_from_adobe_reader_8.dpatch:
    Removed obsolete patches which were not applied any more for longer time.
  * debian/patches/48_cups-output-device-pdf-duplex-uninitialized-memory.patch.dpatch:
    Removed accidentally generated file.
  * Merge from debian unstable, remaining changes:
    - gs-esp and gs-common depend only on ghostscript, not on ghostscript-x,
      as gs-esp had already split off gs-esp-x in Ubuntu
    - Resource/Font directory left in the .orig.tar.gz, therefore also left
      the lines for removing faulty fonts in debian/rules active.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Mon,  5 Jan 2009 12:21:45 +0100

ghostscript (8.63.dfsg.1-2) unstable; urgency=low

  * libgs-dev: put versioned dependency on libgs8 - closes: #510691

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Sun, 04 Jan 2009 12:09:59 +0900

ghostscript (8.63.dfsg.1-1) unstable; urgency=low

  [Masayuki Hatta]
  * Maintainer upload, New upstream release.
  * Acknowledged NMUs, thanks tv - closes: #472645, #495703, #503712
  * debian/patches/32_improve-handling-of-media-size-changes-from-gv.dpatch: 
    Allow gv to change the image and media size (Upstream bug #688943) 
    - closes: #142228
  * debian/patches/33_bad-params-to-xinitimage-on-large-bitmaps.dpatch:
    Fixed zooming problem in gv (Upstream bug #689547)
    - closes: #419183
  * debian/patches//34_ftbfs-on-hurd-fix.dpatch:
    Fixed FTBFS on hurd-i386 - closes: #475704
  * Added Homepage, Vcs-Svn and Vcs-Browser headers in control.
  * Sync'd with the Ubuntu 8.63.dfsg.1-0ubuntu13.
	
  [Till Kamppeter]
  * debian/libgs8.shlibs: Removed. All libgs8 versions should have the same
    API and ABI. The artificial restriction set by this file required all
    reverse dependencies to be rebuilt for every stable release of Ghostscript.
  * debian/patches/35_disable_libcairo.dpatch: Added possibility to
    compile Ghostscript without the "cairo" output device. The device
    is still in experimental state and with its dependency on libcairo
    it pulls in a dependency on X.
  * debian/control, debian/rules: Build Ghostscript without the "cairo"
    output device.
  * debian/patches/38_pxl-duplex.dpatch: The Duplex option of the "pxlmono"
    and "pxlcolor" drivers did not work.
  * debian/patches/39_pxl-resolution.dpatch: The resolution must be also set
    as PJL command for the "pxlmono" and "pxlcolor" drivers.
  * debian/patches/42_gs-init-ps-delaybind-fix.dpatch: Make "ps2ascii" working
    again (Upstream bug #690124) - closes: #81430, #229748, #131528
  * debian/patches/45_bjc600-bjc800-pdf-input.dpatch: Fix setting of the
    "DitheringType" option. With PDF input Ghostscript crashes, with
    PostScript input the "DitheringType" option was probably ignored
    (Upstream bug #690032).
  * debian/patches/48_cups-output-device-pdf-duplex-uninitialized-memory.patch.dpatch:
    Fixed several bugs in the "cups" (CUPS Raster) output device:
     - Ghostscript crashed with PDF input data
     - The "Duplex" and "MediaWeight" options were ignored
     - There was uninitialized memory and wrong usage of pointers, potential
       cause for segmentation faults or even vulnerabilities
     - There were mismatches in data types, leading to possible breakage
       of the "AdvanceDistance", "MediaWeight", and "cupsStringXX" options.
    (Upstream bug #690101).
  * debian/local/pdftoraster/pdftoraster.c,
    debian/local/pdftoraster/pdftoraster.convs, debian/rules: Added pdftoraster
    filter from the Ghostscript SVN repository - closes: #505282
  * debian/patches/50_lips4-floating-point-exception: Fixed floating-point
    exception in "lips4" and other drivers (Upstream bug #690122).
  * debian/patches/52_cups-device-logging.dpatch: Made logging of the "cups"
    output device much less verbose. The log of one jub in debug mode did not
    fit into the maximum log file size of CUPS.
  * debian/patches/55_pcl-input-slot-fix.dpatch: Made the paper tray selection
    via "-dMediaPosition=..." in the PCL 4/5/5e drivers work (Upstream bug
    #690182).
  * debian/patches/57_pxl-input-slot-fix.dpatch: Made the paper tray selection
    via "-dMediaPosition=..." in the PCL 6/XL drivers work.
  * debian/patches/60_pxl-cups-driver-pdf.dpatch: Made the PCL-XL CUPS filter
    and PPDs work with PDF input.
  * debian/patches/62_onebitcmyk-pdf.dpatch: Check the whole Decode array to
    detect special cases of identity and inverse decoding in PDF files 
    (Upstream bug #690178).
  * debian/ghostscript.postinst: Added automatic update of the PPD files
    of already existing print queues.
  * debian/ghostscript.postinst: Do not try to update the PPDs of existing
    print queues if CUPS is not installed or not running.
  * debian/patches/60_pxl-cups-driver-pdf.dpatch: The pstopxl filter did not
    remove its temporary file after finishing.
  * debian/patches/65_too-big-temp-files-1.dpatch: Ghostscript produced much 
    too big temporary files (> 10 GB) when printing photos from GNOME apps in 
    1200 dpi. Part 1 of the fix which reduces the temp file size to less than 
    2 GB (Upstream bug #690133).
  * debian/patches/67_too-big-temp-files-2.dpatch: Complete fix for the too big
    temporary files. Now the bug is completely fixed. Temp files are not much
    bigger than the jobs themselves now (Upstream bug #690133).
  * debian/patches/70_take-into-account-data-in-stream-buffer-before-refill.dpatch:
    Certain files lead to a Ghostscript error due to wrong handling of the
    stream buffer (Upstream bug #690090).
  
 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Sun, 04 Jan 2009 09:30:13 +0900

ghostscript (8.63.dfsg.1-0ubuntu13) jaunty; urgency=low

  * debian/patches/70_take-into-account-data-in-stream-buffer-before-refill.dpatch:
    Certain files lead to a Ghostscript error due to wrong handling of the
    stream buffer (LP: #306125, upstream bug #690090).

  * debian/patches/67_too-big-temp-files-2.dpatch: Complete fix for the too big
    temporary files. Now the bug is completely fixed. Temp files are not much
    bigger than the jobs themselves now (LP: #288570, upstream bug #690133).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Sun, 14 Dec 2008 15:37:45 +0100

ghostscript (8.63.dfsg.1-0ubuntu12) jaunty; urgency=low

  * debian/patches/65_too-big-temp-files-1.dpatch: Ghostscript produced much too
    big temporary files (> 10 GB) when printing photos from GNOME apps in
    1200 dpi. Part 1 of the fix which reduces the temp file size to less than
    2 GB (LP: #288570, upstream bug #690133).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Wed,  3 Dec 2008 23:37:45 +0100

ghostscript (8.63.dfsg.1-0ubuntu11) jaunty; urgency=low

  * debian/patches/60_pxl-cups-driver-pdf.dpatch: The pstopxl filter did not
    remove its temporary file after finishing.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Sat, 29 Nov 2008 13:37:45 +0100

ghostscript (8.63.dfsg.1-0ubuntu10) jaunty; urgency=low

  * debian/ghostscript.postinst: Do not try to update the PPDs of existing
    print queues if CUPS is not installed or not running (LP: #302532).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Wed, 26 Nov 2008 22:26:45 +0100

ghostscript (8.63.dfsg.1-0ubuntu9) jaunty; urgency=low

  * debian/ghostscript.postinst: Added automatic update of the PPD files
    of already existing print queues.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Wed, 26 Nov 2008 18:18:22 +0100

ghostscript (8.63.dfsg.1-0ubuntu8) jaunty; urgency=low

  * Release for assorted upstream fixes.

  * debian/patches/52_cups-device-logging.dpatch: Made logging of the "cups"
    output device much less verbose. The log of one jub in debug mode did not
    fit into the maximum log file size of CUPS.

  * debian/patches/55_pcl-input-slot-fix.dpatch: Made the paper tray selection
    via "-dMediaPosition=..." in the PCL 4/5/5e drivers work (Upstream bug
    #690182).

  * debian/patches/57_pxl-input-slot-fix.dpatch: Made the paper tray selection
    via "-dMediaPosition=..." in the PCL 6/XL drivers work.

  * debian/patches/60_pxl-cups-driver-pdf.dpatch: Made the PCL-XL CUPS filter
    and PPDs work with PDF input.

  * debian/patches/62_onebitcmyk-pdf.dpatch: Check the whole Decode array to
    detect special cases of identity and inverse decoding in PDF files 
    (Upstream bug #690178).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Wed, 26 Nov 2008 11:30:22 +0200

ghostscript (8.63.dfsg.1-0ubuntu7) jaunty; urgency=low

  * debian/local/pdftoraster/pdftoraster.c,
    debian/local/pdftoraster/pdftoraster.convs, debian/rules: Added pdftoraster
    filter from the Ghostscript SVN repository (LP: #290395).

  * debian/control: Added conflict with cups < 1.3.9-4 because the pdftoraster
    filter was there before.

  * debian/patches/50_lips4-floating-point-exception: Fixed floating-point
    exception in "lips4" and other drivers (Upstream bug #690122).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Tue, 11 Nov 2008 10:33:22 +0200

ghostscript (8.63.dfsg.1-0ubuntu6) intrepid; urgency=low

  * debian/patches/42_gs-init-ps-delaybind-fix.dpatch: Make "ps2ascii" working
    again (LP: #281419, upstream bug #690124).

  * debian/patches/45_bjc600-bjc800-pdf-input.dpatch: Fix setting of the
    "DitheringType" option. With PDF input Ghostscript crashes, with
    PostScript input the "DitheringType" option was probably ignored
    (Upstream bug #690032).

  * debian/patches/48_cups-output-device-pdf-duplex-uninitialized-memory.patch.dpatch:
    Fixed several bugs in the "cups" (CUPS Raster) output device:
     - Ghostscript crashed with PDF input data
     - The "Duplex" and "MediaWeight" options were ignored
     - There was uninitialized memory and wrong usage of pointers, potential
       cause for segmentation faults or even vulnerabilities
     - There were mismatches in data types, leading to possible breakage
       of the "AdvanceDistance", "MediaWeight", and "cupsStringXX" options.
    (Upstream bug #690101).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Sun, 19 Oct 2008 12:48:22 +0200

ghostscript (8.63.dfsg.1-0ubuntu5) intrepid; urgency=low

  * debian/patches/38_pxl-duplex.dpatch: The Duplex option of the "pxlmono"
    and "pxlcolor" drivers did not work (part 1 of the fix for LP: #282738).

  * debian/patches/39_pxl-resolution.dpatch: The resolution must be also set
    as PJL command for the "pxlmono" and "pxlcolor" drivers.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Mon, 13 Oct 2008 22:55:22 +0200

ghostscript (8.63.dfsg.1-0ubuntu4) intrepid; urgency=low

  * debian/control, debian/rules: Merge ghostscript-fonts back into
    ghostscript, since this is not needed at present.
  * debian/rules: Drop most of the fonts from ghostscript since gsfonts
    ships newer versions.

 -- Steve Langasek <steve.langasek@ubuntu.com>  Thu, 21 Aug 2008 07:29:40 +0000

ghostscript (8.63.dfsg.1-0ubuntu3) intrepid; urgency=low

  * debian/rules: Fixed typo (LP: #256975).
  * debian/ghostscript.links: s/8.62/8.63/
  * debian/patches/35_disable_libcairo.dpatch: Added possibility to
    compile Ghostscript without the "cairo" output device. The device
    is still in experimental state and with its dependency on libcairo
    it pulls in a dependency on X.
  * debian/control, debian/rules: Build Ghostscript without the "cairo"
    output device (LP: #256859).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Mon, 11 Aug 2008 17:10:22 +0200

ghostscript (8.63.dfsg.1-0ubuntu2) intrepid; urgency=low

  * debian/control, debian/rules: Split the fonts off into its own
    "ghostscript-fonts" package. Changes dependencies of "ghostscript"
    package that either "ghostscript-fonts" or "gsfonts" can be used.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Mon, 11 Aug 2008 10:10:22 +0200

ghostscript (8.63.dfsg.1-0ubuntu1) intrepid; urgency=low

  * New upstream release
  * Merge from debian unstable, remaining changes:
    - gs-esp and gs-common depend only on ghostscript, not on ghostscript-x,
      as gs-esp had already split off gs-esp-x in Ubuntu
  * debian/patches/12_gs-cjk_vertical_writing_metrics_fix.dpatch,
    debian/patches/30_ps2pdf_man_improvement.dpatch: Adapted to upstream
    changes.
  * debian/control: Added libcairo2-dev to the build dependencies, as
    Ghostscript has a libcairo-based output device now.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Tue,  5 Aug 2008 11:10:22 +0200

ghostscript (8.62.dfsg.1-3.2) unstable; urgency=low

  * Non-maintainer upload.
  * Make ghostscript depend on gs-common to prevent removal.
    Drop gs-common -> ghostscript-x dependency to not force the
    X version on all users. Hopefully Closes: #503712.

 -- Thomas Viehmann <tv@beamnet.de>  Sun, 28 Dec 2008 11:18:18 +0100

ghostscript (8.62.dfsg.1-3.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Add (empty) gs-common.prerm to enable upgrades
    etch->lenny to succeed when the old gs-common.prerm
    fails. Closes: #495703.
    Thanks to Niko Tyni for the bug report and analysis.

 -- Thomas Viehmann <tv@beamnet.de>  Sun, 31 Aug 2008 22:26:34 +0200

ghostscript (8.62.dfsg.1-3) unstable; urgency=low

  * Acknowledged NMU, thanks madcoder - closes: #453903
  * Bumped to Standards-Version: 3.8.0.
  * Fixed fakeroot build error, thanks Bob Lindell - closes: #484712
  * ghostscript-doc.doc-base: Made file mask *.htm* instead of *.html.

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Sun, 20 Jul 2008 08:59:17 +0900

ghostscript (8.62.dfsg.1-2.1ubuntu1) intrepid; urgency=low

  * Merge from debian unstable, remaining changes:
    - gs-esp and gs-common depend only on ghostscript, not on ghostscript-x,
      as gs-esp had already split off gs-esp-x in Ubuntu
  * debian/libgs8.shlibs: Removed. All libgs8 versions should have the same
    API and ABI. The artificial restriction set by this file required all
    reverse dependencies to be rebuilt for every stable release of Ghostscript.
  * debian/ghostscript.doc-base: Removed. The file conflicts with the
    corresponding file of ghostscript-doc and it also points to documentation
    files which make only part of ghostscript-doc, so the files can be not
    installed when this doc-base file is installed.
  * debian/ghostscript-doc.doc-base: Corrected file mask for all HTML files.
    The Ghostscript documentation is in *.htm files.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Mon,  9 Jun 2008 18:41:22 +0200

ghostscript (8.62.dfsg.1-2.1) unstable; urgency=high

  * Non-maintainer upload.
  * Add patches/31_fix-gc-sigbus.dpatch to avoid sigbus/segfaults on sparc and
    hppa (and probably errors on other architectures as well).
    Closes: #453903.

 -- Pierre Habouzit <madcoder@debian.org>  Wed, 14 May 2008 15:25:03 +0200

ghostscript (8.62.dfsg.1-2) unstable; urgency=low

  * ghostscript: Tighten up versioned dependency on libgs8 
    - closes: #470253
  * preinsts for each dummy packages now call update-alternatives
    to make sure gs symlinks are removed before the new ghostscript 
    package is installed - closes: #449173

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Thu, 13 Mar 2008 02:30:51 +0900

ghostscript (8.62.dfsg.1-1) unstable; urgency=low

  * New upstream release.
  * Removed Resource/Font for a minor licensing problem.  
    I'm now contacting the upstream, so they might be back soon.
  * Fixed in the upstream - closes: #418706
    See also http://bugs.ghostscript.com/show_bug.cgi?id=689600
  * Now it can handle DEB_BUILD_OPTS as expected - closes: #446819
  * 10_ijs_krgb_support.dpatch: incorporated into the upstream, removed.
  * 27_cups_filters_with_buffered_input.dpatch: incorporated into 
    the upstream, removed. 
  * 28_print_encrypted_PDFs_from_adobe_reader_8.dpatch: incorporated into
    the upstream, removed.
  * 31_CVE-2008-0411.dpatch: incorporated into the upstream, removed. 
    thanks Nico Golde for NMU.
  * shlibs: loosen the libgs8 shlibs version specification, 
    thanks Sune Vuorela for pointing it out - closes: #469218
  * control: ghostscript doesn't provide gs, gs-esp, gs-gpl, gs-afpl 
    and gs-aladdin anymore - ghostscript-x does - closes: #448702, #462678
  * control: tighten up versioned Conflicts on dummy packages.
  * rules: removes /usr/share/doc/ghostscript/README.gz explicitly 
    - closes: #460692
  * postinst: removes old /etc/alternative symlinks explicitly 
    - closes: #447495, #449061
 
 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Sun, 09 Mar 2008 10:39:31 +0800

ghostscript (8.61.dfsg.1-1.1) unstable; urgency=high

  * Non-maintainer upload by security team.
  * Fix stack based buffer overflow in the zseticcspace() function possibly
    leading to arbitrary code exeuction via a crafted ps file.
    (31_CVE-2008-0411.dpatch; Closes: #468190).
  * Adjusting libgs shlibs file to match the new version number.

 -- Nico Golde <nion@debian.org>  Sat, 01 Mar 2008 11:18:27 +0100

ghostscript (8.61.dfsg.1-1ubuntu3) hardy; urgency=low

  * SECURITY UPDATE: buffer overflow in color space handling code
  * debian/patches/31_CVE-2008-0411.dpatch: fix zseticcspace() to perform
    range checks
  * References
    CVE-2008-0411 

 -- Jamie Strandboge <jamie@ubuntu.com>  Tue, 08 Apr 2008 11:58:11 -0400

ghostscript (8.61.dfsg.1-1ubuntu2) hardy; urgency=low

  * Fix debian/libgs8.shlibs for ubuntu version number

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sat, 16 Feb 2008 18:45:47 +0000

ghostscript (8.61.dfsg.1-1ubuntu1) hardy; urgency=low

  * Merge from debian unstable, remaining changes:
    - gs-esp and gs-common depend only on ghostscript, not on ghostscript-x,
      as gs-esp had already split off gs-esp-x in Ubuntu
    - Updated the KRGB patch from HP to the newest upstream version with
      added checks for null forward device in the graphic procedures to fix
      segfault bug LP: #69905 and corrected "force banding" code in gsijs_open
      for small images (IE: hagaki in landscape).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Wed,  6 Feb 2008 17:41:22 +0100

ghostscript (8.61.dfsg.1-1) unstable; urgency=low

  [Masayuki Hatta]

  * New upstream release.
  * Now pdf2dsc can handle PageLabels properly - closes: #266166
  * Bumped up Standards-Version to 3.7.3 (no physical changes).
  * NEWS, README.Debian, copyright: Revised.
  * NEWS: Fixed wrong version number - closes: #454514, #454515
  * Sorted out dpatches:
    01-09: Debian-specific patches
    10-19: Bigger 3rd party patches (KRGB & CJKV)
    20-: Temporary bug fixes (should be incorporated into the upstream)
  * debian/patches/29_gs_css_fix.dpatch: Fixes a syntax error in gs.css
    - closes: #457118
  * debian/patches/30_ps2pdf_man_improvement.dpatch: Improved manpages for 
    ps2pdf - closes: #193461

  [Till Kamppeter]

  * debian/patches/09_ijs_krgb_support.dpatch: Adapted to upstream changes.
  * debian/rules: Updated CUPS-related variables for "make install" calls.
  * debian/rules: Remove /usr/include/ghostscript from the ghostscript
    package, they go into libgs-dev.
  * debian/patches/40_cups_filters_with_buffered_input.dpatch: Modified
    cups/psto* filters to let Ghostscript always use buffered input. This
    works around a Ghostscript bug which prevents printing encrypted PDF
    files with Adobe Reader 8.1.1 and Ghostscript built as shared library
    (Ghostscript bug #689577, Ubuntu bug LP: #172264)
  * debian/patches/42_print_encrypted_PDFs_from_adobe_reader_8.dpatch:
    Fixed printing of encrypted PDF files from Adobe Reader 8.1.1.  This
    is the real fix now and not only a workaround. (Ghostscript bug
    #689577, Ubuntu bug LP: #172264).

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Sun, 13 Jan 2008 02:13:25 +0900

ghostscript (8.61.dfsg.1-0ubuntu5) hardy; urgency=low

  * debian/rules: Do not ship README.gz in ghostscript, it collides with
    ghostscript-doc. (LP: #185602, Debian #460692)

 -- Martin Pitt <martin.pitt@ubuntu.com>  Wed, 30 Jan 2008 11:11:03 +0100

ghostscript (8.61.dfsg.1-0ubuntu4) hardy; urgency=low

  * debian/patches/09_ijs_krgb_support.dpatch: Updated the KRGB patch from
    HP to the newest upstream version with added checks for null forward
    device in the graphic procedures to fix segfault bug LP: #69905 and
    corrected "force banding" code in gsijs_open for small images (IE:
    hagaki in landscape).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Wed, 23 Jan 2008 13:17:43 +0000

ghostscript (8.61.dfsg.1-0ubuntu3) hardy; urgency=low

  * debian/patches/42_print_encrypted_PDFs_from_adobe_reader_8.dpatch:
    Fixed printing of encrypted PDF files from Adobe Reader 8.1.1. This is
    the real fix now and not only a workaround. (Ghostscript bug #689577,
    Ubuntu bug LP: #172264).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Mon, 12 Dec 2007 12:17:43 +0000

ghostscript (8.61.dfsg.1-0ubuntu2) hardy; urgency=low

  * Merge with Debian unstable. Remaining Ubuntu changes:
    - gs-esp and gs-common depend only on ghostscript, not on ghostscript-x,
      as gs-esp had already split off gs-esp-x in Ubuntu
    - Upstream version 8.61 final
  * debian/patches/40_cups_filters_with_buffered_input.dpatch: Modified 
    cups/psto* filters to let Ghostscript always use buffered input. This
    works around a Ghostscript bug which prevents printing encrypted PDF
    files with Adobe Reader 8.1.1 and Ghostscript built as shared library
    (Ghostscript bug #689577, Ubuntu bug LP: #172264)

 -- Till Kamppeter <till.kamppeter@gmail.com>  Wed,  5 Dec 2007 13:17:43 +0000

ghostscript (8.61.dfsg.1-0ubuntu1) hardy; urgency=low

  * New upstream release
    o Final 8.61 release
  * debian/patches/09_ijs_krgb_support.dpatch: Adapted to upstream changes.
  * debian/rules: Updated CUPS-related variables for "make install" calls.
  * debian/rules: Remove /usr/include/ghostscript from the ghostscript
    package, they go into libgs-dev.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Thu, 22 Nov 2007 12:17:43 +0000

ghostscript (8.61.dfsg.1~svn8187-3) unstable; urgency=low

  * Maintainer upload.
  * Acknowledged NMU, thanks Cyril - closes: #422723, #430337
  * 06_libpaper_support.dpatch: fixed to cope with being called repeatedly.  Thanks Carlos Garcia Campos - closes: #453048
  * debian/watch: Now it works.  Thanks Raphael Geissert - closes: #449310

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Wed, 05 Dec 2007 06:06:23 +0900

ghostscript (8.61.dfsg.1~svn8187-2.1) unstable; urgency=low

  * Non-maintainer upload.
  * Fix long-standing implicit pointer conversions by backporting a fix from
    SVN revision 8232, as pointed by Dann Frazier (Closes: #422723):
     - 40_implicit_pointer_conversion_fix.dpatch added for this purpose. It
       also contains an additional tweak for src/gpmisc.c so that no attempt
       to use fdopen64() is made, fdopen() is the way to go. That tweak also
       solves the FTBFS on GNU/kFreeBSD (Closes: #430337).
     - DEB_AUTO_UPDATE_AUTOCONF set to “yes” in debian/rules so that the
       configure script gets updated at build time (the needed build
       dependencies are already there).

 -- Cyril Brulebois <cyril.brulebois@enst-bretagne.fr>  Sat, 24 Nov 2007 06:35:17 +0100

ghostscript (8.61.dfsg.1~svn8187-2) unstable; urgency=low

  * Maintainer upload, acknowledged NMU - closes: #447188
  * Made all dummy packages depend on ghostscript AND ghostscript-x, so
    their nominal "functionality" should virtually be the equivalent to
    the former gs|gs-gpl|gs-esp|gs-afpl packages - closes: #446825
  * Revised debian/copyright - closes: #444468, #444467
  * debian/rules: Clean files from package ghostscript which are moved to
    ghostscript-doc on i386 (where arch-all packages are built). On all
    non-i386 platforms the files remained in the main package, which
    causes file conflicts and unnecessary package growth - closes: #446927
    (fix from Ubuntu)
  * debian/patches/06_libpaper_support.dpatch: Added missing "#include
    <paper.h>", this made Ghostscript not working at all on IA64 - closes:
    #428055 (fix from Ubuntu)

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Wed, 31 Oct 2007 02:27:38 +0900

ghostscript (8.61.dfsg.1~svn8187-1.1) unstable; urgency=high

  * Non-maintainer upload by testing security team.
  * Included 31-CVE-2007-2721.dpatch to fix remote
    user-assisted denial of service via malformed image
    files in embedded copy of jasper (Closes: #447188)

 -- Nico Golde <nion@debian.org>  Sat, 20 Oct 2007 12:46:44 +0200

ghostscript (8.61.dfsg.1~svn8187-1) unstable; urgency=low

  * New upstream release - closes: #437848, #291452
  * Important CJK handling fixes are absent from the current 8.60 or SVN, so I
    decided to use this SVN snapshots until the issue is fixed (Ubuntu does the same).  
  * Can be built with the modern GCC now - closes: #440427
  * Complete re-organization: gs-gpl, gs-esp and gs-afpl are discontinued and
    gone altogether, and now there's only one ghostscript package - closes: #52603, #159516, #434791, #394628, #394350, #295377, #246983, #416253, #323867
  * Imported Ubuntu's various improvements on packaging.
    Thanks for Ubuntu people, especially Till Kamppeter.
  * Sorted out dummy packages - closes: #321989, #401137
  * Separated -doc package - closes: #138549, #391082, #389872
  * Separated -x package, the main ghostscrpt doesn't depend X anymore - cloese: #76814, #393980, #240215
  * Separated libgs* packages - closes: #344351
  * Enabled cdj880 driver - closes: #157067
  * Enabled Lexmark 3200 driver - closes: #157067
  * Enabled pcl3 driver - closes: #259075
  * Added /usr/share/fonts/type1/gsfonts to fontpath - closes: #434310
  * Sorted out licensing information.
  * Removed jasper/doc/*.pdf since those are shipped without
    "transparent" copies a la GFDL. 

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Sun, 14 Oct 2007 22:24:34 +0900

ghostscript (8.61.dfsg.1~svn8187-0ubuntu4) hardy; urgency=low

  * debian/rules: Clean /usr/share/doc/*.html files from package
    'ghostscript', too (incomplete fix in previous versions), since they are
    already shipped in ghostscript-doc and thus have a file conflict.
    (LP: #153218)

 -- Martin Pitt <martin.pitt@ubuntu.com>  Mon, 22 Oct 2007 17:21:21 +0200

ghostscript (8.61.dfsg.1~svn8187-0ubuntu3) gutsy; urgency=low

  [ Till Kamppeter ]
  * debian/rules: Install missing *.upp files (usptream bug, LP: #150985).

  [ Martin Pitt ]
  * debian/rules: Clean files from package ghostscript which are moved to
    ghostscript-doc on i386 (where arch-all packages are built). On all
    non-i386 platforms the files remained in the main package, which causes
    file conflicts and unnecessary package growth. This is a quick hack for
    Gutsy. In Hardy, this horribly broken build system should be fixed
    properly.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Tue, 09 Oct 2007 23:00:28 +0200

ghostscript (8.61.dfsg.1~svn8187-0ubuntu2) gutsy; urgency=low

  * debian/patches/06_libpaper_support.dpatch: Added missing 
    "#include <paper.h>", this made Ghostscript not working at all
    on IA64 (Fixes LP: #130842, thanks to Ralph Giles from ghostscript.com
    for the fix and to Matthias Klose for the IA64 test machine).
  * debian/ghostscript.links: Bumped version number in link for CJK fonts
    (Fixes LP: #139911).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Tue, 18 Sep 2007 10:00:58 +0100

ghostscript (8.61.dfsg.1~svn8187-0ubuntu1) gutsy; urgency=low

  * New upstream release
    o SVN snapshot rev 8187
    o CJK patches from Koji Otani to fix several issues with CJK text
      (should fix http://bugs.ghostscript.com/show_bug.cgi?id=689304).
      These patches were also applied to ESP Ghostscript and having them
      in Gutsy's GPL GS will avoide regressions against Feisty's ESP GS.
    o Minor bug fixes from upstream.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Mon, 13 Aug 2007 21:49:58 +0100

ghostscript (8.60.dfsg.6-0ubuntu2) gutsy; urgency=low

  * debian/patches/30_assorted_script_fixes.dpatch: Back out the update
    to pdf2eps, causing build failures on the buildds.
  * debian/control: Build-depend on freeglut3-dev | libglut-dev.

 -- Matthias Klose <doko@ubuntu.com>  Fri, 10 Aug 2007 10:50:08 +0200

ghostscript (8.60.dfsg.6-0ubuntu1) gutsy; urgency=low

  * Final release of Ghostscript 8.60
    o First official release of GPL Ghostscript with merged functionality
      of ESP Ghostscript.
    o Closes: LP: #128801
  * debian/patches/50_gv_kghostview_compatibility.dpatch: Removed workaround,
    real fix done upstream

 -- Till Kamppeter <till.kamppeter@gmail.com>  Thu, 02 Aug 2007 02:13:11 +0100

ghostscript (8.60.dfsg.5-0ubuntu1) gutsy; urgency=low

  * New upstream release
    o SVN snapshot rev 8127
    o Carried over some bug fixes from ESP Ghostscript (see
      http://bugs.ghostscript.com/show_bug.cgi?id=689315)
    o Minor bug fixes from upstream.
  * debian/patches/30_assorted_script_fixes.dpatch: Updated.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Mon, 16 Jul 2007 17:43:58 +0100

ghostscript (8.60.dfsg.4-0ubuntu1) gutsy; urgency=low

  * New upstream release
    o SVN snapshot rev 8050
    o From now on we take snapshots from the trunk, as the merger of ESP and
      GPL Ghostscript is completed and moved into the trunk. The branch
      "gs-esp-gpl-merger" has been removed.
    o Minor bug fixes from upstream.
  * debian/patches/50_gv_kghostview_compatibility.dpatch: Updated.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Thu, 14 Jun 2007 2:53:50 -0700

ghostscript (8.60.dfsg.3-0ubuntu2) gutsy; urgency=low

  * debian/control:
    + Make gsfonts a Depends instead of Recommends as it was before on the
      gs-common package. This fixes the GStreamer build failure.

 -- Sebastian Dröge <slomo@ubuntu.com>  Tue, 12 Jun 2007 21:15:25 +0200

ghostscript (8.60.dfsg.3-0ubuntu1) gutsy; urgency=low

  * New upstream release
    o SVN snapshot rev 8025, branch "gs-esp-gpl-merger"
    o Minor bug fixes from upstream.
  * debian/rules: Renamed executable /usr/bin/gsc to /usr/bin/gs to not
    conflict with the gambc package (Fixes LP: #118785).

 -- Till Kamppeter <till.kamppeter@gmail.com>  Wed, 06 Jun 2007 17:22:27 +0100

ghostscript (8.60.dfsg.2-0ubuntu2) gutsy; urgency=low

  * debian/ghostscript.preinst:
    - Only remove the gs alternatives on upgrades from before
      8.60.dfsg.2-0ubuntu1, and don't let the lack of alternatives fail
      installation.
    - Remove "rm -rf /etc/ghostscript /etc/gs-gpl" insanity.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Fri, 01 Jun 2007 14:18:02 +0200

ghostscript (8.60.dfsg.2-0ubuntu1) gutsy; urgency=low

  * New upstream release
    o SVN snapshot rev 7997, branch "gs-esp-gpl-merger"
    o Added functionality to compile with shared libgs and without GTK
      via "--disable-gtk" configure option (feature overtaken from ESP
      Ghostscript).
    o Minor bug fixes from upstream.
  * debian/patches/40_fix_imdi_patch.dpatch: Removed, fixed upstream.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Wed, 23 May 2007 11:54:11 +0100

ghostscript (8.60.dfsg.1-0ubuntu2) gutsy; urgency=low

  * debian/rules: Added forgotten option "--disable-gtk" to the "./configure"
    command line, this prevented ghostscript from building on the build
    servers.
  * Added missing version number to "Conflicts: gs-common" in the ghostscript
    package.
  * Do away with the update-alternatives, we have one grand unified Ghostscript
    now!

 -- Till Kamppeter <till.kamppeter@gmail.com>  Tue, 22 May 2007 21:38:21 +0100

ghostscript (8.60.dfsg.1-0ubuntu1) gutsy; urgency=low

  * This is the first Debian/Ubuntu package reflecting Artifex' move to do
    the head development of Ghostscript under GPL and the merger of ESP
    Ghostscript into GPL Ghostscript which followed after that.
  * Renamed from "gs-gpl" to "ghostscript" on agreement with Debian Ghostscript
    maintainer Masayuki Hatta
  * New upstream release
    o SVN snapshot rev 7979, branch "gs-esp-gpl-merger"
    o This is the head of the Ghostscript development now. There is no separate
      AFPL Ghostscript any more. See http://www.ghostscript.com/awki/News.
    o All extra functionality of ESP Ghostscript is merged into GPL
      Ghostscript now and the development of ESP Ghostscript is discontinued.
      See http://www.cups.org/espgs/.
  * debian/control: Added tags and transitional packages to make this package
    (ghostscript) replacing gs-esp and gs-afpl (Closes: LP#47432, LP#47458,
    LP#75894, LP#83769, LP#103595, LP#105752, LP#108159, LP#109304).
  * debian/rules, debian/control, debian/dirs, debian/ghostscript.*,
    debian/README.Debian, debian/gs.defoma: Merged in gs-common.
  * debian/control: Set Ubuntu maintainer.
  * debian/rules: Activated full functionality by appropriate "./configure"
    command line options. This is now the one and only Ghostscript in Ubuntu
    Linux.
  * debian/rules: Do not build static executable, to reduce the build time
    to one half of the former build time of gs-esp (or to not double the
    build time of ghostscript).
  * debian/rules, debian/control: Split package into ghostscript, libgs8,
    libgs-dev, and ghostscript-x, like we did with gs-esp, also split off
    documentation into ghostcript-doc.
  * debian/NEWS: Added info about merger of ESP and GPL Ghostscript
  * debian/patches/: Removed 01_gsdir_for_gs-gpl.dpatch, 
    02_fontpath_for_debian, 20_additional_drivers, 21_additional_drivers_mak,
    22_gdi_support, 23_hl12x0_support: They are not needed any more after
    merging in the ESP GS functionality and moving to "ghostscript" as 
    package name.
  * debian/patches/09_ijs_krgb_support.dpatch: Updated to version 1.3
    of the KRGB patch (from HPLIP 1.7.3).
  * debian/patches/04_gdevxini_segv_fix.dpatch: Removed, it makes the X
    device being reopened on every page size change and breaks output with
    tools like gv (gv hangs without showing any page).
  * debian/patches/40_fix_imdi_patch.dpatch: Fixed imdi directory location
    in src/devs.mak
  * debian/patches/50_gv_kghostview_compatibility.dpatch: Fixed compatibility
    with GUIs like gv and kghostview (see upstream bug 689237,
    http://bugs.ghostscript.com/show_bug.cgi?id=689237, note: reintroduces
    upstream bug 687125 but that bug is much less a problem).
  * debian/ghostscript.postinst: update-alternatives configuration does not get
    correctly updated when the obsolete gs-esp and gs-afpl packages get removed
    via the transitional packages. Let the post-install script of the
    ghostscript package reset update-alternatives to auto mode for such a case.

 -- Till Kamppeter <till.kamppeter@gmail.com>  Mon, 21 May 2007 13:00:21 +0100

gs-gpl (8.56.dfsg.1-1) unstable; urgency=low

  * New upstream release.
  * man/gs.1: Paths are adjusted to Debian - closes: #405049
  * man/gs.1: Fixed various typos - closes: #323534
  * Fixed insecure /tmp usage in toolbin scripts (CAN-2005-2352) - closes: #291373
  * Now opdfread.ps is installed - closes: #401755

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Sat, 05 May 2007 00:58:39 +0900

gs-gpl (8.54.dfsg.1-5) unstable; urgency=high

  * Oops, I forgot to apply dpatch #20, so the large amount of drivers are missing in -4.  Mea Culpa.
  * Added Brother HL-1240/1250 support - closes: #280693
  * Make sure /etc/gs-gpl is removed - closes: #333474
  * Remove Fontmap and Fontmap.GS from the package - closes: #325400
  * Provides the index.html symlink - closes: #303792
  * Added binary-indep rules in debian/rules - closes: #267398

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Sat, 21 Oct 2006 10:25:56 +0900

gs-gpl (8.54.dfsg.1-4) unstable; urgency=high

  * Brought back KRGB colorspace support to ijs - closes: #355616
  * Brought back Samsung GDI support - closes: #365337
  * gs depends on gs-gpl | gs-esp - closes: #297024
  * rules, gs-gpl.links: s/8.15/8.54/g.

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Wed, 18 Oct 2006 21:33:33 +0900

gs-gpl (8.54.dfsg.1-3) unstable; urgency=low

  * Supports big post table for CMap - closes: #205055
  * Fixed a potential segv problem in src/gdevxini.c, thanks Ian Jackson for providing a patch - closes: #254206

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Wed, 18 Oct 2006 03:48:57 +0900

gs-gpl (8.54.dfsg.1-2) unstable; urgency=high

  * Made qsort call in src/gxfcopy.c 64-bit clean, thanks Andreas - closes: #390875

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Thu, 12 Oct 2006 09:28:26 +0900

gs-gpl (8.54.dfsg.1-1) unstable; urgency=low

  * New upstream release - closes: #373805
  * Acknowledged NMUs, since crash on ppc has been fixed in the upstream  - closes: #357326, #327288, #324796

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Tue, 26 Sep 2006 01:25:04 +0900

gs-gpl (8.50-1.1) unstable; urgency=high

  * Non-maintainer upload.
  * debian/patches/00list: Re-enable patch 10_powerpc_crash_fix; upstream
    delayed to fix after the 8.50 release. Cures segfaults on ppc (again).
    Thanks to Roger Leigh for testing. Closes: #357326

 -- Daniel Kobras <kobras@debian.org>  Wed, 29 Mar 2006 14:22:21 +0200

gs-gpl (8.50-1) unstable; urgency=low

  * Works done at Codefest in Malaysia 2006.
  * New upstream release - closes: #347637, #348834
  * Updated debian/watch - closes: #354352
  * Bumped to Standards-Version: 3.6.2.2 (no physical changes).

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Sun,  5 Mar 2006 10:46:33 +0900

gs-gpl (8.15-4.1) unstable; urgency=low

  * Non-maintainer upload.
  * Use gcc-3.4 on s390. 

 -- Bastian Blank <waldi@debian.org>  Thu, 29 Dec 2005 10:52:10 +0000

gs-gpl (8.15-4) unstable; urgency=low

  * Apply patch 10 working around a crashing bug on powerpc (details in
    the patch file itself). This closes: bug#324796, #325570, #327288
    (thanks to Paul Brossier <piem@debian.org> for first reporting, Ian
    Jackson <ian@davenant.greenend.org.uk> for providing the patch, and
    Thomas Bushnell BSG <tb@becket.net> for shouting about the problem).

 -- Jonas Smedegaard <dr@jones.dk>  Mon, 19 Sep 2005 15:15:44 +0200

gs-gpl (8.15-3) unstable; urgency=low

  * Bumped Standards-Version to 3.6.2.1 (no physical changes).
  * Removed patch 04, since it doesn't affect at all.
  * Enabled jbig2dec support.
  * Now uses cidfmap generated by defoma.
  * gs-gpl.links: make a symlink of CMap directory under /usr/share/gs-gpl/8.15/Resource.
    NOTE: even if CMap files can be found somewhere in the font path, gs-esp
    fails to prepare a composed font with CIDFont and CMap. This hack is
    a workaround for "the CMap files must be put into the first directory of
    the font path" problem.  Many Thanks Akira TAGOH for suggestion.

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Thu, 18 Aug 2005 03:38:59 +0900

gs-gpl (8.15-2) unstable; urgency=low

  * Drop stp patch:
    + Remove stp-related parts of additional_drivers patches 20 and 21.
    + Drop build-dependency on libgimpprint-dev.
    + Remove stp note from README.Debian.
    + Closes: bug#313026 (thanks to Roger Leigh <rleigh@debian.org>).

 -- Jonas Smedegaard <dr@jones.dk>  Wed, 20 Jul 2005 14:05:26 +0200

gs-gpl (8.15-1) unstable; urgency=low

  * Repackaged source tarball with non-free CMaps stripped.
  * Added check in debian/rules to fail if CMaps exist in the source.
  * Mention in debian/copyright that CMaps are stripped.
  * Add myself as uploader (acknowledged by Masayuki), and re-upload as
    regular maintainer upload. This package closes: bug#280352 (thanks
    to some anonymous(?) lilypond-lover offering virtual beer for
    pushing this newer release, and Wouter Verhelst <wouter@debian.org>
    for delivering the message).
  * Correct UTF8-encoding of debian/changelog.

 -- Jonas Smedegaard <dr@jones.dk>  Fri, 15 Jul 2005 13:27:05 +0200

gs-gpl (8.15-0.1) unstable; urgency=low

  * NMU of newer upstream release.
  * Update and unfuzz patches (Note: source patched by
    04_resourcedir_fix_for_debian slightly changed upstream, so may no
    longer be needed).
  * Use fine-grained X11 build-dependencies.

 -- Jonas Smedegaard <dr@jones.dk>  Tue, 12 Jul 2005 10:52:11 +0200

gs-gpl (8.01-5) unstable; urgency=high

  * [NEWS] added a note on CJK TTF support.
  * Revive Samsung GDI support, thanks plum - closes: #250180
  * Revive Brother 7x0 GDI support - closes: #253479
  * Added KRGB colorspace support to gs IJS driver - closes: #249166
  * Fix SEGV on -sDEVICE=bbox - closes: #250290, #254877
  * Adjust the margins for Epson drivers - closes: #48975
  * Now Suggests hpijs - closes: #161953

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Sun, 15 Aug 2004 13:03:15 +0900

gs-gpl (8.01-4) unstable; urgency=low

  * Fixed the priority to 20 - closes: #246983
  * Removed funky character in NEWS, thanks tbm for pointing it out.

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Wed,  5 May 2004 16:09:24 +0900

gs-gpl (8.01-3) unstable; urgency=low

  * Added Build-Dep: libgimpprint1-dev - closes: #244143
  * Added lj3100sw driver - closes: #243963
  * Revised description.
  * Added notes on stp.

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Wed, 28 Apr 2004 05:40:05 +0900

gs-gpl (8.01-2) unstable; urgency=low

  * Added STP support culled from gimp-print 4.2.6.

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Tue, 13 Apr 2004 13:20:31 +0900

gs-gpl (8.01-1) unstable; urgency=low

  * New maintainer with torsten's blessing.  He is still a co-maintainer.
  * The package name has been changed to gs-gpl.
  * Now uses dpatch.
  * Acknowledged NMUs - closes: #63163, #136652, #105179, #128314, #128416
  * New upstream release - closes: #235686, #226088
  * Revised copyright - closes: #226020
  * Moved *map under /etc/gs-gpl - closes: #179244
  * Do not run "update-alternatives --remove" when upgrade - closes: #163267
  * Improved libpaper support - closes: #182268
  * Set the font path appropriately - closes: #122828, #159816, #111874, #195931, #128955
  * Removed stp driver - closes: #170550
  * Added cfax driver - closes: #183438
  * Set the priority to 20.

 -- Masayuki Hatta (mhatta) <mhatta@debian.org>  Sat, 27 Mar 2004 00:00:05 +0900

gs (7.07-1) unstable; urgency=low

  * New upstream release.
    + Uses /dev/urandom instead of /dev/random so does not block forever
      waiting for quality random numbers (closes: #176850).
  * Fix buffer overflow in gdevhpij.c (sizeof(PK) < PIPE_BUF...) and
    remove the old patch (closes: #184345).
  * debian/devices: Add pngalpha device.

 -- Torsten Landschoff <torsten@debian.org>  Wed, 18 Jun 2003 10:51:53 +0200

gs (7.06-1.1) unstable; urgency=low

  * NMU
  * Fix unconditional PIPE_BUF bug to build on GNU. (Closes: #184345)

 -- Robert Millan <rmh@debian.org>  Sun, 13 Apr 2003 14:01:41 +0200

gs (7.06-1) unstable; urgency=low

  * New upstream release.
  * debian/rules: 
    + Include History7.htm into the changelog.
    + Kill the /usr/share/man/de hierarchy which only documents stuff
      in gs-common, not even the gs command.

 -- Torsten Landschoff <torsten@debian.org>  Thu,  3 Apr 2003 11:34:02 +0200

gs (7.05-3) unstable; urgency=low

  * Reextract the source without running ntpdate on another console
    and rebuild to fix the search path (closes: #173493, #173560).

 -- Torsten Landschoff <torsten@debian.org>  Fri, 20 Dec 2002 15:54:29 +0100

gs (7.05-2) unstable; urgency=low

  * debian/control: Conflicts, Provides and Replaces gs-pdfencrypt - that
    functionality is now included in gs itself and the old stuff breaks
    with current gs (closes: #173222).
  * Apply the patch from Florian Zumbiehl (identical to the upstream 
    solution in newer releases) to fix the scaling of the psmono/psgray
    driver - the output was scaled twice (closes: #171530).

 -- Torsten Landschoff <torsten@debian.org>  Tue, 17 Dec 2002 11:44:44 +0100

gs (7.05-1) unstable; urgency=low

  * New upstream release. 
  * debian/control: Use libpng3-dev instead libpng2-dev.

 -- Torsten Landschoff <torsten@debian.org>  Sun,  1 Sep 2002 01:10:37 +0200

gs (6.53-7) unstable; urgency=low

  * debian/rules (binary-arch): Use rm -Rf to kill the man dir as rm -R
    seems to ask for permission for some users (closes: #152037).

 -- Torsten Landschoff <torsten@debian.org>  Wed, 28 Aug 2002 01:28:36 +0200

gs (6.53-6) unstable; urgency=low

  * debian/devices: Enable the ljet4d driver as suggested by 
    Isidro Cachadiña Gutiérez.

 -- Torsten Landschoff <torsten@debian.org>  Tue, 27 Aug 2002 11:29:17 +0200

gs (6.53-5) unstable; urgency=low

  * Apply the hpijs margin patch from 
    http://hpinkjet.sourceforge.net/gdevijs2.patch (closes: #151869).

 -- Torsten Landschoff <torsten@debian.org>  Thu,  4 Jul 2002 09:54:39 +0200

gs (6.53-4) unstable; urgency=low

  * Enable the hl1240 driver (the hl1250 should already be there, but it
    seems it isn't...).
  * debian/control: Change build dependency on libgimpprint-dev to 
    libgimpprint1-dev.

 -- Torsten Landschoff <torsten@debian.org>  Wed,  3 Jul 2002 19:36:58 +0200

gs (6.53-3) unstable; urgency=high
  
  * debian/copyright: Include information about add on packages and
    their licenses.

  * debian/devices: Move x11 in front of x11alpha which has problems with 
    mono displays at least (closes: #138844).
  * src/unix-gcc.mak: Reenable the pipe device as it seems harmless after
    all and many filters will break as they are using this feature to
    circumvent the old Ghostscript problem with -sOutputFile=- when
    the PostScript file writes text to stdout which interferes with the
    printer commands... (closes: #138364).
  * debian/control: Remove the reference to gs-pdfencrypt which is now 
    obsolete as it is included in the official Ghostscript now.

  * Lintian cleanup:
    + Remove the extra license file /usr/share/doc/gs/COPYING.gz
    + Copying.htm stays as it is since it is linked in the docs
    + Convert History[56].htm to changes.gz using html2text to have an
      upstream changelog.
  * Included a few important patches from the Ghostscript CVS:
    + Handle the margins from an ijs server correctly. It was my hope that 
      this would account for #141608, but that does not seem to be the
      case :(
    + src/gdevx.c: Patched to use the "right" color depth on X11 for 
      all cases. It used to take the actual number of bits to store
      the color info as opposed to the number of bits actually used.
    + lib/pdf2dsc.ps: This was broken because of the security fix. 
      Patched to open the files before dropping privileges.

  * lib/stcolor.ps: Compare the product name with "GNU Ghostscript" instead
    of just "Ghostscript" to detect the interpreter (closes: #108120).
  * src/gdevbj10.c: Apply the patch to fix the margins for the Canon BJ10e
    submitted by Jim Hague (closes: #118078).
  * debian/postinst: Link the manpage to gs.1.gz as well as a slave of 
    the /usr/bin/gs alternative (closes: #122538).
  * gimp-print/README.stp: Copy from gimp-print source tree.
  * debian/docs: Install that file as $(docdir)/README.stp for those
    using that driver and needing some infos (closes: #122099).
    + debian/README.Debian: Refer the user to README.stp.
  * debian/rules: Install the documentation of the pcl3 driver 
    (closes: #39342).
  * debian/docs: Add the README.lexmark of the lexmarkgs driver to the 
    installed documentation.

 -- Torsten Landschoff <torsten@debian.org>  Tue,  9 Apr 2002 02:29:10 +0200

gs (6.53-2) unstable; urgency=high

  * [SECURITY] src/unix-gcc.mak: Disable the pipe device as well since it
    still allows executing arbitrary commands. I'll turn it back on when I am
    sure it does not cause any security problems.

 -- Torsten Landschoff <torsten@debian.org>  Thu,  7 Mar 2002 12:24:53 +0100

gs (6.53-1) unstable; urgency=high

  * New upstream release (closes: #130426).
    + Fixes the security problem allowing reading all files and 
      executing random commands (closes: #136652).
  * debian/gen-makefile: Fix the BUILD_OPTIONS check (closes: #121871).
  * Should fix the cjk stuff I hope (closes: #116516). In case there is 
    another problem please could somebody provide me with information
    how to check that it works? I am more than deeply frustrated with
    getting readmes in japanese, web pages in japanese etc. That's just
    deeply frustrating.

 -- Torsten Landschoff <torsten@debian.org>  Wed,  6 Mar 2002 01:20:30 +0100

gs (6.51-7) unstable; urgency=medium

  * Urgency medium because it works around a bug breaking the package 
    on one Debian architecture.
  * src/gxobj.h [IA64]: Lock the object alignment to 16 bytes, as the
    initial setjmp segfaults because of a bad alignment. jmp_buf needs
    to be on 16 byte boundaries for this arch. This is a quick work
    around until somebody comes up with a better fix - at least it 
    gets gs to work on ia64 - I am not certain how much memory overhead
    this causes though. Kudos to John Daily <jdaily@progeny.com> for his 
    investigative work. I am leaving the bug open for now, since it does
    not really fix the problem (#128314).

 -- Torsten Landschoff <torsten@debian.org>  Tue,  8 Jan 2002 21:12:22 +0100

gs (6.51-6) unstable; urgency=low

  * ijs/*: Include the ijs driver from the hpijs source.
  * debian/devices: Add ijs to the device list.
  * src/contrib.mak: Include ijs/contrib.mak-6.51.add

 -- Torsten Landschoff <torsten@debian.org>  Mon, 31 Dec 2001 15:00:45 +0100

gs (6.51-5) unstable; urgency=low

  * gimp-print/gdevstp.c: Update from gimp-print 4.1.99-rc1 (closes: #120009)

 -- Torsten Landschoff <torsten@debian.org>  Fri, 16 Nov 2001 14:29:11 +0100

gs (6.51-4) unstable; urgency=low

  * src/gdevxini.c: Apply the patch supplied by Chanop Silpa-Anan
    (closes: #85811). Thanks for your support, Chanop!
  * debian/gen-makefile: Add /usr/share/ghostscript/common to the 
    search path to get gs-pdfencrypt working again (closes: #119406).
  * Download the lex5000 driver and include it in the build system
    (closes: #58657).
  * debian/devices: Add lx5000, lex5000.

 -- Torsten Landschoff <torsten@debian.org>  Wed, 14 Nov 2001 16:47:57 +0100

gs (6.51-3) unstable; urgency=low

  * debian/devices: Enabled the cfax driver as requested by a user.

 -- Torsten Landschoff <torsten@debian.org>  Fri,  9 Nov 2001 17:48:23 +0100

gs (6.51-2) unstable; urgency=low

  * Enable the Brother HL 1250 driver (closes: #63027). 

 -- Torsten Landschoff <torsten@debian.org>  Wed, 17 Oct 2001 12:07:23 +0200

gs (6.51-1) unstable; urgency=low

  * New upstream release (closes: #101928).
  * The new upstream release fixes many problems with the interpreter.
    These bugs were fixed in Ghostscript 6.0:
    + the font rendering problem in X11 is fixed (closes: #28579)
    + ps2pdf does not write rectangles for polygons anymore (closes: #36200)
    + the PDF which crashed gs does not lead to any problems (closes: #45361)
    + a PDF which was inverted by pdf2ps stays black on
      white now (closes: #49659).
    + Philipp's file crashing gs does not do so anymore (closes: #58468)
    + the invalid LanguageGroup in fonts does not cause gs to abort
      anymore (closes: #67462).
    + another PDF file which caused a crash is working now (closes: #89995)
  * Rewrote the build system.
  * The libjpeg sources are now included in the diff which is not nice
    but working (closes: #87896).
  * lynx is not used anymore to convert the changelog to plain text
    (closes: #93722).
  * The hpijs driver is now included upstream (closes: #106294).
  * Driver support for the Apple Imagewriter is now included (closes: #110740).
  * Make the package use update-alternatives so that different gs packages 
    can cooperate (closes: #98227).
  * Add in the gdi driver provided by Daniel Burrows (closes: #105885).
  * debian/devices: Add omni to the list
    + debian/gen-makefile: Add threading and dynamic linking support.
  * debian/control: Add libglib1.2-dev to the Build-Depends as it is 
    needed for the Omni driver.
  * debian/devices: Go through the list of available drivers and add 
    what we seem to be able to build. Among the new devices:
    - cdj970 (closes: #112434)
    - cljet5, cljet5pr, cljet5c
    - dl2100, hl7x0
    - the generic hpijs device (supports hpijs 0.97, closes: #102369, #110657)
    - imagen, inferno, jetp3852
    - lex2050, lex3200, lex5700
    - oki4w
    - plan9bm
    - psrgb
    - x11cmyk2, x11cmyk4, x11cmyk8, x11gray4
  * src/contrib.mak: Add missing generic hpijs device.
  * Enable stp driver and link with libgimpprint 
    (closes: #82454, #87004, #103036)
  * debian/control: Build-Depend on libgimpprint-dev.
  * debian/gen-makefile: Add support for the DEB_BUILD_OPTIONS environment
    variable (more precisely, the debug option leads to a build with 
    debugging support and exported private variables).
  * Add in the CJK support using the patch from 
    Yasuhiro Take <take@debian.org>. A huge "THANK YOU" to him for his 
    work!!! His changes:
    + Add debian/patches/gs-cjk-M2-R1+CJKPDF.diff & .info, and apply it
      to the source.
    + debian/control: Conflicts: Add gs-cjk-resource (<< 1.20010910-1) because
      the new gs-cjk patch requires new gs-cjk-resource that i've already
      prepared and doesn't work with older ones.
    + debian/control: Depends: Add gs-common (>= 0.2) because font 
      configuration for the new gs-cjk patch is completely different from 
      the old one.
  * debian/control: Removed the conflict with gs_x, gs_svga and gs_both. 
    I don't even remember when those packages where in Debian, probably
    before Debian 1.3 so a direct upgrade is going to fail anyway. And 
    with intermediate upgrades it will not be a problem.
  * src/imainarg.c: Reapply the papersize diff from debian/patches.

 -- Torsten Landschoff <torsten@debian.org>  Tue, 16 Oct 2001 21:06:14 +0200

gs (5.50-8) unstable; urgency=low

  * debian/rules: Use html2text to convert the html changelog into 
    plain text instead of lynx (closes: #93722).
  * debian/control: Update Build-Depends.
  * debian/prerm: Fix the case to handle both removal and upgrade 
    instead of handling upgrading in two cases (closes: #98458).
  * debian/control: Merge multi-line Build-Depends into one line for
    now until our tools support multi line fields (closes: #98459).

 -- Torsten Landschoff <torsten@debian.org>  Mon,  4 Jun 2001 01:22:36 +0200

gs (5.50-7) unstable; urgency=low

  * debian/postrm: Add missing #DEBHELPER# (arg!).
  * debian/prerm: Add defoma-app clean on upgrade.
  * debian/gs.templates: Remove the double negation of the previewer
    question (closes: #94146).
  * Merge german translation for debconf templates (closes: #93840).
  * debian/shlibs.local: Depend on svgalibg1 or svgalib-dummyg1 
    alternatively (closes: #93811).

 -- Torsten Landschoff <torsten@debian.org>  Tue,  1 May 2001 22:24:55 +0200

gs (5.50-6) unstable; urgency=low

  * debian/README: 
    + Move copyright info to debian/copyright.
    + Mention the align.ps file (closes: #67317).
  * gdevbbox.c: Use default color methods instead of NULL pointers so 
    that gs -sDEVICE=bbox does not crash anymore (closes: #36883).

 -- Torsten Landschoff <torsten@debian.org>  Sat,  7 Apr 2001 21:09:55 +0200

gs (5.50-5) unstable; urgency=low

  * debian/default_path.sh:
    + Include defoma dir in search path.
    + Search local directories before system directories.
    + Defoma is preferred if available...
  * debian/postinst: Fix the hopefully last bashism (s/source/g/).
  * Included support for Hewlett Packard's own printer driver called
    hpijs (closes: #92010). Note that you will need the hpijs package
    for using it.

 -- Torsten Landschoff <torsten@debian.org>  Sat,  7 Apr 2001 02:40:15 +0200

gs (5.50-4) unstable; urgency=low

  * Install interesting Postscript files as examples (closes: #79461).
  * Finally include the missing if-hpdj filter (closes: #63705).
  * Also add the documentation of hp8xx (closes: #63566).

 -- Torsten Landschoff <torsten@debian.org>  Thu,  5 Apr 2001 03:58:27 +0200

gs (5.50-3) unstable; urgency=low

  * debian/rules: 
    + Don't remove debian/postinst anymore in clean target.
    + Read package and version info from changelog.
    + Convert to debhelper.
  * debian/postinst: Again rewritten from scratch (guess why!? *arg*)

 -- Torsten Landschoff <torsten@debian.org>  Thu,  5 Apr 2001 02:34:17 +0200

gs (5.50-2) unstable; urgency=low

  * debian/postinst: Completely rewritten.
    + Fixes the bashism reported by Joey Hess (closes: #92056).
    + Does not mess with /usr/local anymore (closes: #57276).
  * unix-gcc.mak: Readd the x11 device (closes: #92586).
  * debian/config: Change the priority of the defoma questions to
    low. I don't see how the defaults can cause any problems.
  * debian/shlibs.local: Removed. Let's see if it works without.

 -- Torsten Landschoff <torsten@debian.org>  Thu,  5 Apr 2001 01:36:09 +0200

gs (5.50-1) unstable; urgency=low

  * Finally upgrade to new upstream version, still based on the old 
    package (the reimplementation is still under the hood ;)
    (closes: #65832, #87673).
  * unix-gcc.mak: Make x11alpha the default device on X11 as already
    done in gs-aladdin. Modern systems should be able to handle the 
    anti aliasing fast enough.
  * debian/control: Update build dependencies for new X11.
  * debian/control: Removed Conflicts with local defoma packages made
    by Yasuhiro.
  * debian/patches/svgalib: Adjust for name change of the main Makefile 
    and move the targets out of the ifeq so that one can run the file
    standalone.
  * debian/patches/hpdj: 
    - Don't patch zmedia2.c since upstream changed it since 5.10.
    - Adjust for name change of the main makefile.
    - Use the right patch from the hpdj distribution for 5.50.
  * debian/patches/hp8xx:
    - Update the devs.mak diff for gs 5.50.
    - Adjust for name change of main makefile.
  * debian/rules: Disable kanji and jpdrivers support (needs update for 5.50).
  * debian/patches/lexmarkgs: 
    - Update the devs.mak diff for 5.50.
  * debian/control: Add missing build-depends (closes: #82114, #88393).
  * debian/rules: Make debian/addentry executable before running it
    (closes: #90278).
  * time_.h: Include <time.h> as well as sys/time.h (closes: #90433, #88391).

 -- Torsten Landschoff <torsten@debian.org>  Thu, 29 Mar 2001 01:17:54 +0200

gs (5.10-11.5defoma2) unstable; urgency=low

  * Add kanji patches.

 -- Yasuhiro Take <take@debian.org>  Tue, 27 Mar 2001 20:58:55 +0900

gs (5.10-11.5defoma1) unstable; urgency=low

  * Add Defoma support.
  * Remove kanji patches.

 -- Yasuhiro Take <take@debian.org>  Tue, 20 Mar 2001 18:21:22 +0900

gs (5.10-11) unstable; urgency=low

  * debian/control: Added build time dependency for libfreetype2-dev
    (closes: #82114).
  * Included upp files for stc740 printer provided by Gregory P. Smith
    (closes: #76845).
 
 -- Torsten Landschoff <torsten@debian.org>  Mon, 15 Jan 2001 00:53:32 +0100

gs (5.10-10.1) stable unstable; urgency=high

  * Non-maintainer upload by security team
  * Patch from Werner Fink:
    + Create temporary files securely using mkstemp instead of mktemp
    + Don't set LD_RUN_PATH to empty, that makes the runtime linker look
      in the current path as well

 -- Wichert Akkerman <wakkerma@debian.org>  Wed, 22 Nov 2000 03:35:35 +0100

gs (5.10-10) unstable; urgency=low

  * contrib/kanji/man/ps2jpdf.1: Changed ".SH PS2JPDF" into ".SH NAME"
    (closes: #59925, #60002, #60474).
  * debian/rules: Added -isp to call of dpkg-gencontrol (lintian).

 -- Torsten Landschoff <torsten@debian.org>  Wed, 15 Mar 2000 23:30:41 +0100

gs (5.10-9) frozen unstable; urgency=high

  * Applied patch from Colin Phipps to fix security problem in ps2epsi
    (closes: #57034)

 -- Torsten Landschoff <torsten@debian.org>  Sun,  6 Feb 2000 02:24:33 +0100

gs (5.10-8) frozen unstable; urgency=low

  * Only a simple change to close a bugreport: The package contained a 
    directory in /usr/local in violation with policy. Sorry for this, 
    the directories are now created by the postinst (closes: #56396).

 -- Torsten Landschoff <torsten@debian.org>  Fri, 28 Jan 2000 09:52:17 +0100

gs (5.10-7) frozen unstable; urgency=low

  * This can go into frozen since the changes are absolutely simple.
  * debian/control: Fixed build dependencies (closes: #55451).
  * debian/patches/hpdj: Added installation of margin files as requested in 
    #39342 (for gs-aladdin).
  * gcc-head.mak: Added path for local fonts as requested in #31898
    (/usr/local/lib/ghostscript/{common,5.10,fonts})
  * debian/rules: Make the directories intended for local fonts.
  * gs.1: Added documentation for local postscript files.

 -- Torsten Landschoff <torsten@debian.org>  Thu, 20 Jan 2000 12:47:48 +0100

gs (5.10-6) unstable; urgency=low

  * Added driver for Lexmark 7000. Thanks to Alex Winbow for pointing 
    me to the patch.
  * debian/rules: Completely rewritten and a bit modularized.
  * hpdj driver updated to version 2.6.

 -- Torsten Landschoff <torsten@debian.org>  Wed, 12 Jan 2000 20:24:44 +0100

gs (5.10-5) unstable; urgency=low

  * New maintainer.
  * debian/control: Added build dependencies.
  * Applied patch from Taketoshi Sano to remove copyrighted stuff from 
    the package (closes: #52575).
  * This release is based on Wicherts NMU (thanks for the work Wichert!)
    closes: #53071

 -- Torsten Landschoff <torsten@debian.org>  Wed, 29 Dec 1999 22:22:02 +0100

gs (5.10-4.1) unstable; urgency=low

  * Non-maintainer upload
  * Apply patch to fix mac ttf rendering, Closes: Bug#52590

 -- Wichert Akkerman <wakkerma@debian.org>  Sun, 19 Dec 1999 17:05:38 +0100

gs (5.10-4) unstable; urgency=low

  * Small patch applied to file gs_init.ps, so that japanese
    fonts are required only for japanese people (many thaks to 
    Fumitoshi Ukai) (closes: Bug#49725, #49732, #49867)

 -- Marco Pistore <pistore@debian.org>  Fri, 12 Nov 1999 12:45:37 +0100

gs (5.10-3) unstable; urgency=low

  * Many thanks to Taketoshi Sano for his great job 
    with the Japanese support (closes Bug#41570)

 -- Marco Pistore <pistore@debian.org>  Sun,  7 Nov 1999 02:56:13 +0100

gs (5.10-2.0.vflib.2) experimental; urgency=low

  * Non Maintainer.
  * Add support for many drivers included in gs510j49
  * FHS transition
  * Lintian free

 -- Taketoshi Sano <sano@debian.org>  Sun, 31 Oct 1999 09:21:06 +0900

gs (5.10-2.0.vflib.1) experimental; urgency=low

  * Non Maintainer.
  * Experimental revision for Japanese VFlib support enhancement.
  * Please check and modify this experimental revision to add
    Japanese support on the Debian package of "gs"

 -- Taketoshi Sano <sano@debian.org>  Sat, 30 Oct 1999 15:03:07 +0900

gs (5.10-2) unstable; urgency=low

  * Added support for hp8xx drivers by Uli Wortmann (closes Bug#40807).
  * Added support for epsf and ttfont features.
  * Changed "Aladdin Ghostscript" into "GNU Ghostscript" in 
    file stcolor.ps e stcinfo.ps (closed Bug#35411, Bug#35525).

 -- Marco Pistore <pistore@di.unipi.it>  Sat, 10 Jul 1999 23:29:57 +0200

gs (5.10-1) unstable frozen; urgency=low

  * Ghostscript 5.10 is GPL! 
    This package essentially corresponds to package gs-aladdin_5.10-12,
    but redistributed under GPL. Changes w.r.t. gs-aladdin_5.10-12
    are:
      * Corrected "regulamentations" --> "regulations" 
        in description of package.
      * Filenames in script pdf2ps are now enclosed in double quotes
      * Fixed the manpages for bdftops, printafm and wftopfa, 
        so that they work with apropos.
    The various patches to ghostscript 5.10 that have been proposed
    by L.P.Deutsch and that appear in gs-aladdin_5.10-12 also appear
    in this package.
    
 -- Marco Pistore <pistore@di.unipi.it>  Sun,  3 Jan 1999 18:22:57 +0100

gs (4.03-6) unstable; urgency=low

  * Moved to version 2.5 of hpdj driver by Martin Lottermoser (debian/rules 
    is changed accordingly).
  * Mentined package gsfonts in description of gs.

 -- Marco Pistore <pistore@di.unipi.it>  Mon,  7 Dec 1998 22:06:21 +0100

gs (4.03-5) frozen unstable; urgency=low

  * Fixed the manpages for bdftops, printafm and wftopfa,
    so that they work with apropos.

  * Removed *.1.gz files from /usr/doc/gs (they already are in the
    /usr/man/man1 directory).

 -- Marco Pistore <pistore@di.unipi.it>  Fri,  6 Nov 1998 10:52:31 +0100

gs (4.03-4) frozen unstable; urgency=low

  * Fixed files stcolor.ps and stcinfo.ps so that they recognize that
    they are called by GNU ghostscript; thanks to Gordon Matzigkeit
    (closes Bug#28726).

 -- Marco Pistore <pistore@di.unipi.it>  Thu,  5 Nov 1998 21:44:07 +0100

gs (4.03-3) unstable; urgency=low

  * Changed "Recommends: gs-pdfencrypt" to "Suggests: gs-pdfencrypt" in
    control file (closes Bug#27431)
  * Removed "Provides: gs_x, gs_svga, gs_both", since "_" cannot appear
    in package names, and no packages should depend on these quite old 
    virtual packages.
  * Changed directory name for the libjpeg source from ../libjpeg-6a
    to ../libjpeg: so it does not depend on the particular version
    of libjpeg (changes in files gcc-head.mak, debian/rules and 
    debian/jpeg).
  * Linked against libjpeg-6b.

 -- Marco Pistore <pistore@di.unipi.it>  Sat, 10 Oct 1998 00:01:15 +0200

gs (4.03-2) unstable; urgency=low

  * Now /usr/lib/ghostscript/common is searched for library files
    before /usr/lib/ghostscript/X.YY (where X.YY is the version of 
    ghostscript). This is useful for installing packages like
    gs-pdfencrypt, that provide (modified) library files
    to ghostscript that are independent from the version of gs
    (also gs.1 is changed accordingly)
  * Now gs-pdfencrypt (in the nonUS distribution) is suggested by 
    gs-aladdin. Changed the message in the file pdf_sec.ps so that
    it suggests to install that package if an encrypted pdf file is
    being processed.
  * Linked against libpng2 (closes Bug#26924)

 -- Marco Pistore <pistore@di.unipi.it>  Tue, 29 Sep 1998 21:01:10 +0200

gs (4.03-1) unstable; urgency=low

  * New upstream version (gs 4.03 is finally GPL!!!)
  * Pristine source
  * Set options in gcc-head.mak
  * Added man pages for all the binaries
  * All example files in /usr/doc/gs/examples start now with %!
  * Script font2c moved from /usr/bin to /usr/lib/ghostscript
    (there is really no reason to put this script in /usr/bin)
  * Patched devs.mak and gdevpng.c so to work with version 0.96 of libpng.
  * Patched gdevcdj.c so that device cdeskjet works 
    (and is identical to cdj500)
  * Patched gdevl256.c imainarg.c so that superuser rights are given away
    as soon as possible, and re-obtained only to start svgalib (see 
    /usr/doc/gs/README.Debian and /usr/doc/gs/setuid.Debian)
  * Patched imainarg.c to set default paper accordig to the system paper
    as reported by libpaper, also patched imaiarg.c so that the lvga256
    device is chosen as the default one if gs is not called from X
  * Patched zlib.mak: here the shared file for zlib is called libz, 
    not libgz

 -- Marco Pistore <pistore@di.unipi.it>  Thu, 4 Jun 1998 20:29:47 +0100

gs (3.33-7) unstable; urgency=low

  * Corrected address of FSF in copyright file
  * All the scripts start now with #!
  * Added man pages for all the binaries
  * bdftops, font2c and wftopfa moved from /usr/bin to
    /usr/lib/ghostscript
    (there is really no reason to put these scripts in /usr/bin)
  * gs.real moved to /usr/lib/ghostscript (it should not be
    called by the user)

 -- Marco Pistore <pistore@di.unipi.it>  Thu, 12 Mar 1998 20:29:38 +0100

gs (3.33-6) unstable; urgency=low

  * New maintainer
  * Libc6 (hamm) release
  * Minor fixes in debian/rules
  * Bug 10270 fixed: now manpages are compressed
  * Bug 9935 fixed: package works with svgalib-dummy
  * Redundant dependencies removed in debian/control
    (this also fixes Bug 9157)
  * Now device cdeskjet works (and is identical to cdj500)

 -- Marco Pistore <pistore@di.unipi.it>  Mon, 29 Sep 1997 20:41:47 +0200

gs (3.33-5) stable; urgency=low

  * Examples used to be in /usr/doc/$(examples)/examples, but $(examples)
    was empty (should have been $(package), must have been sleeping)

 -- joost witteveen <joost@rulcmc.leidenuniv.nl>  Fri, 7 Feb 1997 15:15:37 +0100

gs (3.33-4) stable; urgency=low

  * debian/rules didn't install some files in ./debian/tmp, but in /!!!
    Why do I need root to build packages?
  * Minor fix in wrapper.c (no change in binary)

 -- joost witteveen <joost@rulcmc.leidenuniv.nl>  Tue, 21 Jan 1997 19:15:53 +0100

gs (3.33-3) stable; urgency=low

  * apparently, gs-3.33 never got compiled with all devices (only a
    pitiful few ones). Fixed this.

 -- joost witteveen <joost@rulcmc.leidenuniv.nl>  Fri, 8 Nov 1996 21:49:49 +0100

gs (3.33-2) unstable; urgency=low

  * Converted to new source format
  * Removed the "+1" bug in the wrapper that caused coredumps with 
    libc5.4.7
  * included x11alpha x11cmyk devices
  * removed dependancy on gsfonts
  * Improved argument parsing of wrapper
  * Stripped the executables
  * Fixed discription bug "This version is aladdin coright,..."!
    (Sorry!)
  
 -- joost witteveen <joost@rulcmc.leidenuniv.nl>  Thu, 31 Oct 1996 20:56:01 +0100