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
|
fig2dev (1:3.2.8-3+deb11u1) bullseye; urgency=medium
* Rebuild testsuite during build and in autopkgtest.
* 34_epsimport: Stop misplacement of embedded eps images.
* Adapt salsa CI pipeline to bullseye release.
* 35_CVE-2021-37529: Allow long names for non-existing images.
* 36_CVE-2021-37530: Avoid a segfault for non-existing image names.
-- Roland Rosenfeld <roland@debian.org> Fri, 26 Aug 2022 12:30:59 +0200
fig2dev (1:3.2.8-3) unstable; urgency=medium
* 30_arrow-poly: Remove arrows from polygon with single point.
* 31_trunc-subsuper: Allow truncated sub/superscripts in text.
* 32_arrow-point: Omit arrows without points in svg output.
* 33_sanitize-color: Sanitize color definitions.
-- Roland Rosenfeld <roland@debian.org> Fri, 30 Apr 2021 11:28:30 +0200
fig2dev (1:3.2.8-2) unstable; urgency=medium
[ Helmut Grohne ]
* Reduce Build-Depends: (Closes: #981131)
* Drop xutils-dev as fig2dev no longer uses xmkmf.
* Annotate netpbm and texlive-latex-extra <!nocheck> as they are only
used during tests.
[ Roland Rosenfeld ]
* Preserve some files, that are overwritten by dh_autoreconf or deleted
or changed.
* Add support for nodoc option.
-- Roland Rosenfeld <roland@debian.org> Sat, 06 Feb 2021 12:59:35 +0100
fig2dev (1:3.2.8-1) unstable; urgency=medium
* New upstream version 3.2.8.
* Update all patches to new upstream version.
* The following patches are now incorporated upstream:
30_CVE-2019-19555, 31_CVE-2019-19746, 32_fgets2getline,
33_test1_32bit, 34_incomplete_closed_splines.
* d/t/fig2dev-testsuite: use dh_autoreconf instead of autoconf.
* d/t/version: work around git snapshot naming version scheme.
* Remove libxpm-dev from Build-Depends and add zlib1g-dev.
* Update standards version to 4.5.1, no changes needed.
-- Roland Rosenfeld <roland@debian.org> Sat, 26 Dec 2020 16:40:20 +0100
fig2dev (1:3.2.7b-5) unstable; urgency=medium
* 34_incomplete_closed_splines: Do not crash on incomplete, closed
splines (Closes: #960736).
* Update list of output formats in package description (Closes: #966511).
* Add Forwarded headers to several debian/patches.
-- Roland Rosenfeld <roland@debian.org> Sun, 02 Aug 2020 13:51:50 +0200
fig2dev (1:3.2.7b-4) unstable; urgency=medium
* debian/tests/fig2dev-testsuite: Avoid suppressing output, but do not
handle build warnings as test fails.
* Update standards version to 4.5.0, no changes needed.
* Rename gitlab-ci.yml to salsa-ci.yml.
* Update debian/watch to version=4 and optimize regex.
* 33_test1_32bit: Fix autopkg test warning on 32bit architectures.
Thanks to Matthias Klose (Closes: #961126).
* Update to debhelper 13.
-- Roland Rosenfeld <roland@debian.org> Wed, 20 May 2020 18:26:07 +0200
fig2dev (1:3.2.7b-3) unstable; urgency=medium
[ Debian Janitor ]
* Add missing colon in closes line.
* Set upstream metadata fields: Archive, Bug-Submit (from
./configure).
[ Roland Rosenfeld ]
* Update upstream metadata and add several fields.
* 31_CVE-2019-19746: Reject huge arrow types causing integer overflow.
This fixes CVE-2019-19746 (Closes: #946628).
* 30_CVE-2019-19555: Add test to the patch.
* 32_fgets2getline: Replace most calls to fgets() by getline() in
read.c. This fixes CVE-2019-19797 (Closes: #946866).
-- Roland Rosenfeld <roland@debian.org> Mon, 06 Jan 2020 22:13:27 +0100
fig2dev (1:3.2.7b-2) unstable; urgency=medium
* 30_CVE-2019-19555: Allow Fig v2 text strings ending with multiple ^A.
This fixes CVE-2019-19555 (Closes: #946176).
-- Roland Rosenfeld <roland@debian.org> Wed, 04 Dec 2019 22:04:13 +0100
fig2dev (1:3.2.7b-1) unstable; urgency=medium
* New upstream version 3.2.7b.
* Update all patches to new version.
* 30_man_typo, 31_maxcomments, 32_freelinestorage, 33_hardeninput,
34_one_point_spline, 35_neg_colornum, 36_free_realname,
38_omit_showpage, 39_tikz-notex, and 40_circle_arrowhead are now
incorporated upstream.
* Do not clip objects with line-thickness 0 having arrows (Closes: #933604).
* Define version test as superficial.
* Upgrade to Standards-Version 4.4.1 (no changes).
-- Roland Rosenfeld <roland@debian.org> Fri, 08 Nov 2019 16:19:03 +0100
fig2dev (1:3.2.7a-7) unstable; urgency=medium
* 40_circle_arrowhead: Do not segfault on circle/half circle arrowheads
with a magnification larger 42. This fixes CVE-2019-14275.
(Closes: #933075).
-- Roland Rosenfeld <roland@debian.org> Sat, 27 Jul 2019 09:42:52 +0200
fig2dev (1:3.2.7a-6) unstable; urgency=medium
* d/gitlab-ci.yml stripped down using pipline-jobs.yml
* Replace 37_pgf-etex.patch by 39_tikz-notex.patch, which removes the
tikz test with etex, because tikz seems to be too fragile on tex.
* Upgrade to Standards-Version 4.4.0 (no changes).
-- Roland Rosenfeld <roland@debian.org> Thu, 11 Jul 2019 19:57:35 +0200
fig2dev (1:3.2.7a-5) unstable; urgency=medium
* 38_omit_showpage: Omit showpage when inserting jpeg into eps output
(Fixes LP#1804435).
* 37_pgf-etex: adapt skip definition.
* Build-depend on debhelper-compat (= 12) instead of using d/compat.
* Add version output test to testsuite.
-- Roland Rosenfeld <roland@debian.org> Mon, 28 Jan 2019 10:54:49 +0100
fig2dev (1:3.2.7a-4) unstable; urgency=medium
[ Ondřej Nový ]
* d/watch: Use https protocol
[ Roland Rosenfeld ]
* Add salsa CI pipeline in debian/gitlab-ci.yml.
* Upgrade to Standards-Version 4.3.0 (no changes).
* Upgrade to debhelper v12.
* Backup testuite output into artifacts.
* 37_pgf-etex: Use tikz/pgf with etex instead tex.
* Add buildlog to gitlab-ci test pipeline.
-- Roland Rosenfeld <roland@debian.org> Fri, 25 Jan 2019 14:30:38 +0100
fig2dev (1:3.2.7a-3) unstable; urgency=medium
* 33_hardeninput: Harden input in read.c, fixes tickets #27 and #28
This fixes CVE-2018-16140 (Closes: #907660).
* Upgrade to Standards-Version 4.2.1 (no changes).
* 34_one_point_spline: Ignore splines with less than 2 points, ticket #29.
* 35_neg_colornum: Change negative color number to default, ticket #30.
* 36_free_realname: Fix some memory leaks, harden reading files v1.3.
-- Roland Rosenfeld <roland@debian.org> Fri, 31 Aug 2018 11:44:49 +0200
fig2dev (1:3.2.7a-2) unstable; urgency=medium
* Upgrade to Standards-Version 4.2.0 (Declare Rules-Requires-Root: no).
* 31_maxcomments: Ignore more than MAXCOMMENTS comment lines
(Closes: #906740).
* 32_freelinestorage: Correctly free line-storage (Closes: #906743).
-- Roland Rosenfeld <roland@debian.org> Tue, 21 Aug 2018 19:46:22 +0200
fig2dev (1:3.2.7a-1) unstable; urgency=medium
* New upstream version 3.2.7a.
* This includes 33_testsuite32bit.patch.
* Adapt all patches to new upstream version.
-- Roland Rosenfeld <roland@debian.org> Sun, 06 May 2018 21:56:21 +0200
fig2dev (1:3.2.7-3) unstable; urgency=medium
* Depend on gs and netpbm instead of only Recommend them (Closes: #896461).
-- Roland Rosenfeld <roland@debian.org> Sat, 21 Apr 2018 21:50:58 +0200
fig2dev (1:3.2.7-2) unstable; urgency=medium
* 33_testsuite32bit: accept different error messages (from 32bit and
64bit) for test "survive debian bug #890016".
-- Roland Rosenfeld <roland@debian.org> Sat, 14 Apr 2018 23:29:02 +0200
fig2dev (1:3.2.7-1) unstable; urgency=medium
* New upstream version 3.2.7.
* This sanitizes input (Closes: #882021, #882022, #890015, #890016).
* This correctly embeds eps files with binary preview (Closes: #248807).
* The following patches are now incorporated upstream:
31_input_sanitizing, 32_fill-style-overflow.
* Adapt all other patches to new upstream version.
* Adapt testsuite to new upstream testsuite.
* Fix typo in 29_RGBFILE description.
* Upgrade to debhelper v11.
* Add Vcs-headers pointing to salsa.
* Remove symlink CHANGES -> changelog.
* Remove pgf alternative to texlive-pictures from Build-Deps.
* Upgrade to Standards-Version 4.1.4 (no changes).
* Fix debian/watch to handle versions without letters.
* 30_man_typo: Fix more spelling mistakes.
-- Roland Rosenfeld <roland@debian.org> Sat, 14 Apr 2018 19:03:37 +0200
fig2dev (1:3.2.6a-6) unstable; urgency=medium
* 32_fill-style-overflow: Sanitize input of fill patterns
(Closes: #881396).
-- Roland Rosenfeld <roland@debian.org> Mon, 13 Nov 2017 17:58:24 +0100
fig2dev (1:3.2.6a-5) unstable; urgency=medium
* 31_input_sanitizing: Some input sanitizing on FIG files.
(Closes: #881143, #881144).
-- Roland Rosenfeld <roland@debian.org> Thu, 09 Nov 2017 13:25:48 +0100
fig2dev (1:3.2.6a-4) unstable; urgency=medium
* Drop transitional transfig package for buster (Closes: #872627).
* Upgrade to Standards-Version 4.1.1
- Change copyright-format to https.
* Remove build-dep on dh-autoreconf, since this is default with dh 10.
* Remove Testsuite header, since this is automatically added.
-- Roland Rosenfeld <roland@debian.org> Wed, 01 Nov 2017 11:17:49 +0100
fig2dev (1:3.2.6a-3) unstable; urgency=medium
* build-dep on texlive-latex-extra instead of etoolbox (Closes: #865922).
* build-dep on texlive-latex-recommended instead of latex-beamer.
* Upgrade to Standards-Version 4.0.0 (no changes).
* 30_man_typo: Fix typo in man page fig2ps2tex.
* Add autopkgtest: fig2dev-testsuite.
* Upgrade from debhelper v9 to v10 (autoreconf is now default).
-- Roland Rosenfeld <roland@debian.org> Mon, 26 Jun 2017 22:43:10 +0200
fig2dev (1:3.2.6a-2) unstable; urgency=medium
* build-dep on etoolbox required with current texlive (Closes: #852915).
-- Roland Rosenfeld <roland@debian.org> Sat, 28 Jan 2017 10:30:50 +0100
fig2dev (1:3.2.6a-1) unstable; urgency=medium
* New upstream version 3.2.6a.
* Update all patches to new upstream version.
* 30_creation_date is now incorporated upstream.
* Fix debian/watch to support letters in version number.
-- Roland Rosenfeld <roland@debian.org> Tue, 10 Jan 2017 16:25:22 +0100
fig2dev (1:3.2.6-3) unstable; urgency=medium
* Optimize package description (including new formats added).
* Workaround for reproducible builds: Remove /ID from PDF documentation.
-- Roland Rosenfeld <roland@debian.org> Fri, 16 Sep 2016 11:55:07 +0200
fig2dev (1:3.2.6-2) unstable; urgency=medium
* 30_creation_date: Fix creation_date() function to give correct date
instead of 1970-01-01 on powerpc, hppa, and mips (Closes: #834222).
* 14_fig2mpdf: Fix some format extra args errors.
-- Roland Rosenfeld <roland@debian.org> Sun, 14 Aug 2016 20:22:25 +0200
fig2dev (1:3.2.6-1) unstable; urgency=medium
* New upstream version 3.2.6.
* The following patch is incorporated upstream now: 30_man_comment.
* Adapt all other patches to new upstream version.
* Keep upstream version and release date (remove 31_debian-version).
-- Roland Rosenfeld <roland@debian.org> Tue, 09 Aug 2016 20:06:00 +0200
fig2dev (1:3.2.6~rc-2) unstable; urgency=medium
* Fix handling of "rc" in version mangling of debian/watch file.
* Build VERSION and RELEASEDATE based on debian/changelog info.
Now the Debian version is included in PS/EPS files (Closes: #504986).
* Use dh-autoreconf to rebuild autoconf environment.
-- Roland Rosenfeld <roland@debian.org> Mon, 18 Jul 2016 10:28:54 +0200
fig2dev (1:3.2.6~rc-1) unstable; urgency=medium
* New upstream version 3.2.6-rc.
* The following patches were incorporated upstream: 04_displaywho,
05_locale, 09_maxfontsize, 18_fig2ps2tex_bashisms, 20_transfig_pdftex,
22_typos, 33_honour_SOURCE_DATE_EPOCH, 34_transfig.1,
35_manpage_typos, 36_manpage_ce2RS, 37_OBJ_typedef, 38_unusedcharset,
39_gs_quote, 40_ColorImageFilter, 41_arrowhead, 42_PDF_help.
* Install lintian overrides via dh_lintian. This repairs
"dpkg-buildpackage -A". Thanks to Santiago Vila (Closes: #830321).
* Add "rc" to version in debian/watch file.
* 29_RGBFILE: Add environment variable FIG2DEV_RGBFILE to point to
local rgb.txt in testsuite.
* 30_man_comment: Fix comment macro in man page.
* Add netpbm to build-dependencies, because pnmarith is needed for test
suite.
-- Roland Rosenfeld <roland@debian.org> Tue, 12 Jul 2016 21:13:31 +0200
fig2dev (1:3.2.6~beta-2) unstable; urgency=medium
* Add "Provides: transfig" header.
* Add patches by Brian Smith, that were planned for a (never published)
3.2.5f and adapt them to 3.2.6-beta:
- 36_manpage_ce2RS: Changed .ce (center lines) to .RS (right-justify) in
fig2ps2tex man page file because of issues when generating HTML
(From Eric Raymond).
- 37_OBJ_typedef: Changed object defs from O_ to OBJ_ because O_TEXT
conflicts with system typedef.
- 38_unusedcharset: Remove unused charset variables cs and ca.
- 39_gs_quote: Quotes added to output file name for several formats in
case there are blanks in the name.
- 40_ColorImageFilter: For PDF output, changed -dColorImageFilter from
/FlateEncode to /DCTEncode for lossy compression (smaller pdf files).
- 41_arrowhead: On lines with Round or Projecting cap style and
arrowheads, the line endpoint stuck out beyond the arrowhead (this
was fixed in xfig 3.2.5c, but not here until now).
(additionally adapt test 12 to the new behavior)
- 42_PDF_help: Optimize help string for PDF options.
-- Roland Rosenfeld <roland@debian.org> Sat, 02 Jul 2016 15:23:55 +0200
fig2dev (1:3.2.6~beta-1) unstable; urgency=medium
* New upstream version 3.2.6-beta (Thanks to Thomas Loimer for taking
over upstream maintainership and porting it to autoconf).
* The package is now renamed from transfig to fig2dev upstream and also
the Debian package.
* The following patches were incorporated upstream: 01_manual_fixup,
02_ru_RU.KOI8-R, 03_Imakefile_Debian, 08_genps_oldpatterns,
13_remove_extralibs, 20_transfig_pdftex, 21_rename_optopt,
30_fprintf_format, 31_index_not_static, 32_dev_Imake_typo.
* 06_gen_manual was moved into debian/rules.
* All other patches were adapted to the new upstream version.
* Update watch to new SourceForge location.
* Change installation stuff to use dh_install where possible.
* Change Homepage to sourceforge.
-- Roland Rosenfeld <roland@debian.org> Sat, 02 Jul 2016 12:58:37 +0200
transfig (1:3.2.5.e-6) unstable; urgency=medium
* 33_honour_SOURCE_DATE_EPOCH: Honour SOURCE_DATE_EPOCH environment
variable. Thanks to Alexis Bienvenüe (Closes: #819911).
* Use -std=c99 to make the former patch buildable on jessie.
* Add -p to QUILT_DIFF_OPTS.
* Upgrade to Standards-Version 3.9.8 (no changes).
* Make copyright DEP-5 compliant.
-- Roland Rosenfeld <roland@debian.org> Wed, 06 Apr 2016 09:19:18 +0200
transfig (1:3.2.5.e-5) unstable; urgency=medium
* Upgrade to Standards-Version 3.9.6 (no changes).
* Run wrap-and-sort.
* Upgrade to debhelper 9.
* 22_typos: Fix another typo in error messages and man page.
* debian/copyright: Refer to GPL-2.
-- Roland Rosenfeld <roland@debian.org> Sat, 30 Jan 2016 11:49:20 +0100
transfig (1:3.2.5.e-4) unstable; urgency=low
* 32_dev_Imake_typo: use gengbx.c instead of gengbx.o in SRCS, otherwise
gccmakedep fails (Closes: #759236).
-- Roland Rosenfeld <roland@debian.org> Tue, 26 Aug 2014 10:05:12 +0200
transfig (1:3.2.5.e-3) unstable; urgency=low
* New really set Multi-Arch: foreign (missed commit) (Closes: #732529).
* Build-Depend on texlive-pictures (>= 2013.20140314) | pgf to support
pgf transition to texlive (Closes: #746218).
* Enable hardening=+all.
-- Roland Rosenfeld <roland@debian.org> Sun, 11 May 2014 18:53:54 +0200
transfig (1:3.2.5.e-2) unstable; urgency=low
* Update debian/watch.
* Build-Depend on pgf for manual creation (Closes: #746075).
* Upgrade to Standards-Version 3.9.5 (no changes).
* override lintian spelling error ment meant.
* Set Multi-Arch: foreign, since this doesn't provide libs (Closes: #732529).
-- Roland Rosenfeld <roland@debian.org> Sun, 27 Apr 2014 18:38:44 +0200
transfig (1:3.2.5.e-1) unstable; urgency=low
* New upstream version 3.2.5e.
* Update all patches to new version.
* 23_MAXWIDTH, 24_PIC_precision, 25_PIC_leadspace, 26_gs_fail_doubleclose
removed, since they are now incorported upstream.
* debian/rules: Change build options to harden binaries.
* 30_fprintf_format: Add a format string to fprintf()/sprintf() call
instead of directly printing out Err_Mem. This is needed by harding
options.
* Upgrade to Standards-Version 3.9.4 (no changes).
* 31_index_not_static: index() is not static, otherwise transfig is liked
with -L/usr/lib. Thanks to YunQiang Su (Closes: #722857)
* Update homepage link.
-- Roland Rosenfeld <roland@debian.org> Tue, 15 Oct 2013 14:51:30 +0200
transfig (1:3.2.5.d-3) unstable; urgency=low
* 28_fix_fig2dev_chmod: Add missing sys/stat.h prototype, which leads to
an implicit declaration of fchmod(), which uses signed int while
kFreeBSD expects unsigned int, which results in a wrong bitmap, which
leads to a build failure. Thanks to Steven Chamberlain for finding
out what goes wrong here and providing a patch (Closes: #654767).
* Build-Depends on libpng-dev instead of libpng12-0-dev | libpng-dev.
-- Roland Rosenfeld <roland@debian.org> Wed, 11 Apr 2012 20:40:32 +0200
transfig (1:3.2.5.d-2) unstable; urgency=low
* Update debian/watch.
* Migrate from dpatch to 3.0 (quilt) format.
* Reformat all patches.
* Change build depenency from dpatch to debhelper (>= 7.0.50~).
* Change debian/compat to "7".
* Remove README.source.
* Complete rewrite of debian/rules.
* 26_gs_fail_doubleclose: avoid double closing of filedescriptor, if call
of ghostscript failed. Thanks to Kamil Dudka from Fedora.
(Closes: #426959).
* Upgrade to Standards-Version 3.9.2 (no changes).
* Undo changes from Ubuntu bug 561458 from 14_fig2mpdf, because that
workaround doesn't fit to fig2dev documentation.
-- Roland Rosenfeld <roland@debian.org> Thu, 29 Dec 2011 14:29:06 +0100
transfig (1:3.2.5.d-1) unstable; urgency=low
* New upstream version 3.2.5d.
* Update debian/copyright.
* Adapt all patches to new version.
* Remove 07_avoid_warnings, incorporated upstream.
* Remove 19_cups_workaround, better solution upstream.
* 23_MAXWIDTH: Increasese MAXWIDTH of embedded images from 8K to 16K
(Closes: #610466)
* 24_PIC_precision: Change the precision of PIC floating point output
from %.2f to %.3f. Thanks to Roger Leigh <rleigh@debian.org>.
(Closes: #611948).
* 25_PIC_leadspace: Avoid wrong leading spaces in PIC text. Thanks to
Roger Leigh <rleigh@debian.org> (Closes: #611977).
* 14_fig2mpdf: use list of layers instead of range of layers. See Ubuntu
bug https://bugs.launchpad.net/ubuntu/+source/transfig/+bug/561458
Thanks to Manuel López-Ibáñez for providing a patch.
* Add debian/source/format 1.0
* Upgrade to Standards-Version 3.9.1 (no changes).
-- Roland Rosenfeld <roland@debian.org> Thu, 03 Mar 2011 00:58:52 +0100
transfig (1:3.2.5.c-1) unstable; urgency=low
* New upstream version 3.2.5c.
* Adapt all patches to the new version.
* 04_displaywho: Rewritten, because the new "-a" option for anonymous is
not used by xfig at the moment. This patch changes the default to
have anonymous mode enabled all the time.
* Fix typo in package description (Closes: #557398).
* Upgrade to Standards-Version 3.8.4 (no changes).
* Added debian/README.source (from dpatch package) to explain how dpatch
works.
* 22_typos: Fix some spelling errors in the binaries.
-- Roland Rosenfeld <roland@debian.org> Wed, 19 May 2010 22:26:17 +0200
transfig (1:3.2.5.a-2.1) unstable; urgency=high
* Non-maintainer upload.
* High-urgency upload for RC bugfix.
* Fix FTBFS:
- Build-depend on texlive-font-utils instead of texlive-extra-utils for
epstopdf.
- debian/patches/14_fig2mpdf.dpatch: don't use -f and --outfile args
together, current epstopdf doesn't like this.
Thanks to Michael Bienia <michael@bienia.de> for the analysis.
Closes: #562364, LP: #534298.
-- Steve Langasek <vorlon@debian.org> Thu, 11 Mar 2010 00:52:05 +0000
transfig (1:3.2.5.a-2) unstable; urgency=low
* 21_rename_optopt: rename optopt parameter name in getopt.c to make
mips/mipsel happy (otherwise their linker fails with the message
/usr/bin/ld: non-dynamic relocations refer to dynamic symbol
optopt@@GLIBC_2.0
* 13_remove_extralibs: Remove -lz again (was lost in previous patch).
-- Roland Rosenfeld <roland@debian.org> Sun, 10 May 2009 11:12:23 +0200
transfig (1:3.2.5.a-1) unstable; urgency=low
* New upstream version 3.2.5a (as of 2009-03-16).
* Remove patches, that are incorporated upstream: 11_SetFigFont-params,
12_PNG_imagemap, 17_remove_debug.
* Replace 08.1_PS-DSC-fix and 08.2_genps_oldpatterns with
08.2_genps_oldpatterns, which reinvents the code from
genps_oldpatterns.[hc], that was removed in 3.2.5.a upstream.
This new patch brings the old files back and merged the DSC fixes.
* After all this the old 08.2_genps_oldpatterns no longer overwrites the
changes of 04_displaywho (Closes: #504985).
* Adapt all patches to new upstream version.
* 19_cups_workaround: Change PS magic string from PS-Adobe-2.0 to PS to
work around incompatibilities with CUPS (Closes: #449267).
* Remove trailing spaces from debian/patches/00list to make lintian happy.
* Stop ignoring "make clean" errors in debian/rules.
* Add lintian.overrides to avoid warning about "tk" typo in description
(this isn't a typo here but the value of a parameter).
* doc-base: Change section from Apps/Graphics to Graphics.
* Change all dependencies from gs* to ghostscript.
* Upgrade to Standards-Version 3.8.1 (no changes).
* Add some more cleanup from #497004 to 07_avoid_warnings. The main
patch from #497004 is incorporate upstream now (Closes: #497004).
* 20_transfig_pdftex by Jindrich Makovicka <makovick@gmail.com>
Support pdftex output in transfig (Closes: #497167).
* Fix spelling mistakes and other English errors in 14_fig2mpdf and
15_fig2mpdf-doc. Thanks to Dylan Thurston (Closes: #504979).
* Update debian/copyright.
-- Roland Rosenfeld <roland@debian.org> Wed, 25 Mar 2009 20:23:18 +0100
transfig (1:3.2.5-rel-3.1) unstable; urgency=medium
* Non-maintainer upload.
* Add '18_fig2ps2tex_bashisms.dpatch' to fix bashisms in fig2ps2tex script
(Closes: #480615)
* Fix debian/watch file (Closes: #449644)
* debian/control:
- Change "xutils" Build-Depends to required package "xutils-dev"
- Bump Standards-Version 3.8.0
- Move upstream URL to Homepage field
-- Chris Lamb <chris@chris-lamb.co.uk> Sun, 08 Jun 2008 15:12:08 +0100
transfig (1:3.2.5-rel-3) unstable; urgency=low
* Build-Depends: gs-gpl (>= 8.56.dfsg.1-1.1), cause older versions of
gs-gpl are broken on ia64 (why the hell are all gs verions broken on
64bit?)
* 17_remove_debug.dpatch: Remove debug messages on stderr, which
irritate xfig (Closes: #427956).
-- Roland Rosenfeld <roland@debian.org> Sat, 16 Jun 2007 18:41:53 +0200
transfig (1:3.2.5-rel-2) unstable; urgency=medium
* Build-Depends: gs-gpl, Build-Conflicts: gs-esp (<< 8.50), because
gs-esp 8.15.3.dfsg.1-1 segfaults based on this gs-esp in ps2pdf on
some architectures (Closes: #424977).
-- Roland Rosenfeld <roland@debian.org> Fri, 18 May 2007 22:19:56 +0200
transfig (1:3.2.5-rel-1) unstable; urgency=low
* New upstream version 3.2.5.
* this includes 10_arrow_tip.
* 14_fig2mpdf.dpatch by Michael Pfeiffer <p3fff@web.de>: creating
multilayered or singlelayer PDF or EPS figures for including into
LaTeX documents (see http://p3f.gmxhome.de/fig2mpdf/fig2mpdf.html)
This is version 1.2 of the extension.
* 15_fig2mpdf-doc.dpatch by Michael Pfeiffer <p3fff@web.de>: Contains
the documentation of the previous patch.
* 08.1_PS-DSC-fix by Ronald Lembcke <es186@fen-net.de>:
makes fig2dev produce more correctly structured PostScript.
- Files get printed via Cups on PostScript printers.
- When viewing a .ps-file in gv you can go to the last page and back
and to the last page again without getting PostScript errors
(Closes: #205574, #32843, #407302)
* 16_backup_makefile: Backup Makefiles, that are overwritten by build
process and restore them at the end. Remove some unnecessary files
(which shouldn't be in the orig.tar.gz) at the clean target
(Closes: #424210).
* Depend on texlive-latex-base, texlive-latex-recommended,
texlive-fonts-recommended, texlive-extra-utils, texlive-lang-german
instead of tetex-base, tetex-extra.
-- Roland Rosenfeld <roland@debian.org> Thu, 17 May 2007 17:54:11 +0200
transfig (1:3.2.5-alpha7-5) unstable; urgency=low
* Remove unnecessary dependencies on libz and libX11.
-- Roland Rosenfeld <roland@debian.org> Sat, 30 Sep 2006 11:26:42 +0200
transfig (1:3.2.5-alpha7-4) unstable; urgency=low
* Search for rgb.txt in /etc/X11/rgb.txt and depend on x11-common, which
contains this file (Closes: #385655).
-- Roland Rosenfeld <roland@debian.org> Sat, 9 Sep 2006 12:41:20 +0200
transfig (1:3.2.5-alpha7-3) unstable; urgency=low
* 10_arrow_tip.dpatch: fixes the bug where arrow heads fell short of the
intended endpoint.
* 11_SetFigFont-params.dpatch: Rename TeX macro \SetFigFont to
\SetFigFontNFSS if NFSS ist defined. This should work around problems
of users using PSTEX files generated by old and by new fig2dev in the
same document (Closes: #288774)
* 12_PNG_imagemap.dpatch by Eugen Dedu <Eugen.Dedu@pu-pm.univ-fcomte.fr>
Use PNG instead of GIF in HTML image maps (Closes: #258375).
-- Roland Rosenfeld <roland@debian.org> Sat, 5 Aug 2006 14:48:49 +0200
transfig (1:3.2.5-alpha7-2) unstable; urgency=low
* Upgrade to Standards-Version 3.7.2 (no changes).
* Upgrade to debhelper >= 5.
* Migrate to dpatch build process.
* Build-Depends on xpm-dev >= 1:3.5.4.2 now and change include path
accordingly (/usr/include/X11 instead of /usr/X11R6/include).
* 08_genps_oldpatterns.dpatch: use genps.oldpatterns.[hc] instead of the
new one again, because the new one creates "invisible" patterns in
PS/EPS output (Closes: #348034).
* 09_maxfontsize.dpatch: For fonts >=42pt use the given font size in TeX
instead of restricting this to 42pt. This allows to create posters
using \usepackage{type1cm} (Closes: #343139).
* Add debian/watch.
-- Roland Rosenfeld <roland@debian.org> Sun, 23 Jul 2006 15:49:52 +0200
transfig (1:3.2.5-alpha7-1) unstable; urgency=low
* New upstream version 3.2.5-alpha7
- fixed radius of circles in SVG output (Closes: #272466).
- fixes conversion of latin1 chars in special text (Closes: #275305).
- increasese MAXWIDTH of embedded images from 4K to 8K (Closes: #304958).
* Upgrade to Standards-Version 3.6.2 (no changes).
* Escape '-' in man page transfig.1.
* Remove comment "For: <user>@<host> (<Realname>)" from PS files
(generated in genps.c and genpictex.c), because we won't ship personal
information in output files (Closes: #316382).
* Add ru_RU.KOI8-R.ps for russion KOI8-R output (Closes: #310738).
-- Roland Rosenfeld <roland@debian.org> Sun, 18 Dec 2005 14:55:41 +0100
transfig (1:3.2.5-alpha5-3) unstable; urgency=low
* Remove static redefinition of paperspec in genibmgl.c (after non
static definition in fig2dev.h), which causes trouble on gcc 4.0
(Closes: #288599).
-- Roland Rosenfeld <roland@debian.org> Sun, 17 Jul 2005 22:42:37 +0200
transfig (1:3.2.5-alpha5-2) unstable; urgency=low
* Recommend netpbm (>= 2:10.0-4) instead of suggesting netpbm-nonfree,
because the GIF support is no longer nonfree but incorporated in the
main netpbm package again (Closes: #271684).
-- Roland Rosenfeld <roland@debian.org> Tue, 14 Sep 2004 19:19:34 +0200
transfig (1:3.2.5-alpha5-1) unstable; urgency=low
* New upstream version 3.2.5-alpha5.
- Add \pagestyle{empty} to epic/eepic preamble to avoid page number
(Closes: #240327).
* Build-Depends on libxpm-dev instead of xlibs-dev.
* Escape '-' in man pages transfig.1 and fig2dev.1.
-- Roland Rosenfeld <roland@debian.org> Tue, 11 May 2004 21:43:24 +0200
transfig (1:3.2.5-alpha4-1) unstable; urgency=low
* New upstream version 3.2.5-alpha4.
* Add some quotes to gensvg.c to make gcc 3.3 happy.
* Mention fig2dev in the package description, so users may find it with
apt-cache search when they get the error message "fig2dev: command not
found" (Closes: #212398).
-- Roland Rosenfeld <roland@debian.org> Sat, 21 Feb 2004 19:19:38 +0100
transfig (1:3.2.4-rel-6) unstable; urgency=low
* Fix standard colors in LaTeX output (Closes: #220728).
-- Roland Rosenfeld <roland@debian.org> Sun, 16 Nov 2003 14:47:20 +0100
transfig (1:3.2.4-rel-5) unstable; urgency=low
* Rewrote package description (Closes: #201596).
* Add missing \smash{} command to eepic output. Thanks to Martin
Godisch <martin@godisch.de> (Closes: #201645).
* Fix format string mismatch in read_eps_pdf(). Thanks to Kalle Olavi
Niemitalo <kon@iki.fi> (Closes: #200631).
* Upgrade to Standards-Version 3.6.1 (no changes).
* Convert the manual from PS to PDF (requires a build dependency on
gs-common).
* Add a doc-base file to reference the PDF version of the manual.
* Install LATEX.AND.XFIG.zh_CN and LATEX.AND.XFIG.zh_TW.
* Remove \input{transfig} from manual.tex, because this isn't needed and
it redefines \SetFigFont in a way that corrupts the figure in this
manual.
-- Roland Rosenfeld <roland@debian.org> Sat, 30 Aug 2003 14:06:48 +0200
transfig (1:3.2.4-rel-4) unstable; urgency=low
* Removed ununsed varargs.h from fig2dev.h (Closes: #196138).
* Add some quotes to gensvg.c to make gcc 3.3 happy.
* Disable strict-aliasing (which is usually activated with -O2).
* Fix format-string type mismatches (Thanks to Kalle Olavi Niemitalo
<kon@iki.fi>).
* Add cleandir target to doc/manual/Makefile to fix cleanup process.
* Upgrade to Standards-Version 3.5.10 (no changes).
-- Roland Rosenfeld <roland@debian.org> Tue, 24 Jun 2003 12:26:14 +0200
transfig (1:3.2.4-rel-3) unstable; urgency=low
* Build depend on "libpng12-0-dev | libpng-dev" instead "libpng2".
* Fix compiler warnings from fig2dev/dev/gentpic.c to compile without
problems on hppa, too.
-- Roland Rosenfeld <roland@debian.org> Sun, 6 Apr 2003 15:41:37 +0200
transfig (1:3.2.4-rel-2) unstable; urgency=low
* Apply patch.zerobounds by upstream maintainer, which fixes the problem
where if there are only LaTeX special texts and no other objects in
the figure, a bounding box of 0 width was produced (Closes: #184563).
* Apply patch.pdf by upstream maintainer, which changes the pdf
export to use eps options, in particular to ignore landscape and never
rotate the figure (Closes: #185857).
* Upgrade to Standards-Version 3.5.9 (no changes).
* Upgrade to debhelper 4.0.
-- Roland Rosenfeld <roland@debian.org> Mon, 24 Mar 2003 20:02:44 +0100
transfig (1:3.2.4-rel-1) unstable; urgency=low
* New upstream release 3.2.4.
- Corrected handling of relative paths in embedded files names
(Closes: #171536).
- Lists of languages in transfig.c and transfig.h synced again
(Closes: #170629).
* Upgrade to policy 3.5.8 (no changes).
-- Roland Rosenfeld <roland@debian.org> Sat, 21 Dec 2002 15:14:16 +0100
transfig (1:3.2.4-beta5-1) unstable; urgency=low
* New upstream beta version 3.2.4-beta5.
- fixes the problem that importing more than one or two images
causes fig2dev to segfault (Closes: #147062).
* Update debian/rules to newer debhelper (>=3.0.0) using dh_installman
instead of dh_installmanpages.
* Upgrade to Standards-Version: 3.5.7 (new DEB_BUILD_OPTIONS behavior).
* Do no longer build-depend on libjpeg, because it is no longer used.
-- Roland Rosenfeld <roland@debian.org> Sat, 2 Nov 2002 09:38:31 +0100
transfig (1:3.2.3.d-rel-4) unstable; urgency=low
* Apply upstream patch.importsegfault, which fixes the problem that
importing more than one or two images causes fig2dev to segfault.
-- Roland Rosenfeld <roland@debian.org> Fri, 17 May 2002 20:36:22 +0200
transfig (1:3.2.3.d-rel-3) unstable; urgency=medium
* XFIG.AND.LATEX, README.Debian: Add a comment that the transfig pstex
driver needs \usepackage{color} (Closes: #77516).
* Add % sign after the \end{picture} to avoid bad extra spacing when the
generated file is \input into a minipage or a framebox (Closes: #135893).
* Applied upstream patch.rotatepics, which fixes skewing rotated images
(Closes: #145260).
-- Roland Rosenfeld <roland@debian.org> Wed, 1 May 2002 01:00:24 +0200
transfig (1:3.2.3.d-rel-2) unstable; urgency=low
* Applying patch cluster from upstream maintainer:
- patch.depths: fixes a bug in the -D option (export or exclude
certain depths). It wouldn't accept 0 as a depth specifier.
- patch.jpeg: fixes the problem where fig2dev uses the
"transparentimage" code or JPEG images, which is only supposed to be
used for GIF (Closes: #106609).
- patch.linejoin: fixes the problem where the line join is not set to
"miter" and line cap is not set to "butt", in the document importing
a Fig file.
- patch.patterns: fixes the bug where the lines in the 45degree
left/right patterns were closer together than they should have been.
- patch.pdftex: adds the pdftex/pdftex_t export options.
-- Roland Rosenfeld <roland@debian.org> Wed, 10 Oct 2001 17:21:18 +0200
transfig (1:3.2.3.d-rel-1) unstable; urgency=low
* New upstream release 3.2.3d.
-- Roland Rosenfeld <roland@debian.org> Sun, 3 Jun 2001 10:39:43 +0200
transfig (1:3.2.3.d-beta2-2) unstable; urgency=low
* Add Build-Depends: libpng2-dev (Closes: #94799).
-- Roland Rosenfeld <roland@debian.org> Sun, 22 Apr 2001 21:52:14 +0200
transfig (1:3.2.3.d-beta2-1) unstable; urgency=low
* New upstream beta(!) version 3.2.3d-beta2.
* Upgrade to policy 3.5.2.
* Remove dh_suidregister from debian/rules.
* Depend on debhelper >=2.1.6 and remove nostrip handling, which is done
by dh_strip now.
-- Roland Rosenfeld <roland@debian.org> Wed, 18 Apr 2001 19:55:14 +0200
transfig (1:3.2.3.c-3) unstable; urgency=low
* Add xutils to build-dependencies, because xmkmf is needed.
(Closes: #80182).
-- Roland Rosenfeld <roland@debian.org> Thu, 21 Dec 2000 17:58:18 +0100
transfig (1:3.2.3.c-2) unstable; urgency=low
* Correct missing floating point conversions in MetaFont driver (Thanks
to Dylan Thurston <dpt@math.berkeley.edu> for sending me Brians patch)
(Closes: #79357).
* Build-Depends: xlib6g-dev, xpm4g-dev => xlibs-dev (for XFree86 4.0.1).
-- Roland Rosenfeld <roland@debian.org> Sat, 16 Dec 2000 13:48:50 +0100
transfig (1:3.2.3.c-1) unstable; urgency=low
* New upstream version.
* Upgrade to new debhepler:
- Change to DH_COMPAT=2.
* Upgrade to Standards-Version 3.2.1:
- Evaluate DEB_BUILD_OPTIONS for -g and strip.
- Move binary and manpage from /usr/X11R6/* to /usr/*.
-- Roland Rosenfeld <roland@debian.org> Tue, 10 Oct 2000 00:39:50 +0200
transfig (1:3.2.3.b-1) unstable; urgency=low
* New upstream version 3.2.3b.
* #include <signal.h> in genpdf.c, otherwise this doesn't compile.
* Add \usepackage{color} to doc/manual/setup1.tex (needed for using
trans.tex created with the latex driver of fig2dev).
* Apply patch.latexppi (by Brian) to fix problems with latex driver.
-- Roland Rosenfeld <roland@debian.org> Thu, 20 Jul 2000 12:31:13 +0200
transfig (1:3.2.3-rel-0-4) unstable; urgency=low
* Handle transparent color "-3" correct (Closes: #66099).
-- Roland Rosenfeld <roland@debian.org> Sun, 2 Jul 2000 18:38:13 +0200
transfig (1:3.2.3-rel-0-3) frozen unstable; urgency=low
* "fig2dev -Lps" does not support the -P option, so remove this from the
man page (Closes: #60724).
* Correct documentation of -p option in fig2dev.1 manpage (patch
supplied by upstream author).
* Fix problem with missing filename "(null)". Thanks for supplying the
patch to reiter@netspace.net.au (Closes: #61971).
-- Roland Rosenfeld <roland@debian.org> Fri, 7 Apr 2000 17:49:06 +0200
transfig (1:3.2.3-rel-0-2) frozen unstable; urgency=low
* This is a pre-release of the new upstream 3.2.3a. It's a bugfix only
release, so it should go into frozen!
* This fixes the -f segfault (Closes: #58986).
-- Roland Rosenfeld <roland@debian.org> Mon, 28 Feb 2000 21:08:11 +0100
transfig (1:3.2.3-rel-0-1) unstable; urgency=low
* New upstream version (munged the official 3.2.3 according to packaging
manual section 5 to make it bigger than the betas).
-- Roland Rosenfeld <roland@debian.org> Fri, 14 Jan 2000 10:39:17 +0100
transfig (1:3.2.3-beta-4-1) unstable; urgency=low
* New upstream version.
* This version solves the problems with the PS/LaTeX driver on landscape
graphics, with PS as landscape and LaTeX as portrait (Closes: #54540).
-- Roland Rosenfeld <roland@debian.org> Wed, 12 Jan 2000 21:04:14 +0100
transfig (1:3.2.3-beta-3-1) unstable; urgency=low
* New upstream version (Closes: #54024).
-- Roland Rosenfeld <roland@debian.org> Wed, 5 Jan 2000 23:26:55 +0100
transfig (1:3.2.3-beta-1-2) unstable; urgency=low
* Add tetex-extra to build-depends, because documentation needs
times.sty (Closes: #53195).
-- Roland Rosenfeld <roland@debian.org> Tue, 21 Dec 1999 18:24:29 +0100
transfig (1:3.2.3-beta-1-1) unstable; urgency=low
* New upstream version (incorporates most patches, only Korean is
missing upstream and is now applied by Debian diff).
* Removed unused #include <varargs.h>
* Adapt manual to use LaTeX2e and use \usepackage{times}, which makes
manual smaller and more readable as Postscript file.
-- Roland Rosenfeld <roland@debian.org> Wed, 15 Dec 1999 21:35:09 +0100
transfig (1:3.2.1-14) unstable; urgency=low
* Upgrade to Standards version 3.1.0: Add Build-Depends.
* Fix problem with arrow heads in combination with ghostscript 5.50 and
some postscript printers. Thanks to Brian V. Smith for the patch.
(Closes: #34984).
-- Roland Rosenfeld <roland@debian.org> Tue, 16 Nov 1999 10:05:52 +0100
transfig (1:3.2.1-13) unstable; urgency=low
* Upgrade to Debian Standards version 3.0.1
* Applied Korean support patch provided by Changwoo Ryu
<cwryu@debian.org> (Closes: #45378).
* Replaced LANG with LC_CTYPE in Korean patch, otherwise we will have
strange effects with LC_NUMERIC creating "," as the decimal separator,
which is wrong for postscript code.
* Comment out debug output (added by Korean patch) of locale value in
genps.c.
-- Roland Rosenfeld <roland@debian.org> Thu, 30 Sep 1999 17:14:43 +0200
transfig (1:3.2.1-12) unstable; urgency=low
* Use new japanese.ps from
http://member.nifty.ne.jp/tsato/xfig/patch/japanese2-ps
* Add -I/usr/include/db1 and #include <ndbm.h> again. This should work
with all versions of libc (Closes: #41369).
* Make doc/manual/trans.tex writable (it isn't in orig.tar.gz).
* Remove #include <varargs.h> from genepic.c, which isn't used.
* Get rid of redefinition warning of strchr and use string.h instead of
strings.h with linux.
-- Roland Rosenfeld <roland@debian.org> Thu, 15 Jul 1999 19:18:44 +0200
transfig (1:3.2.1-11) unstable; urgency=low
* Merged in patch collection from upstream author Brian V. Smith
<xfigmail@epb1.lbl.gov>, which results in an unofficial transfig
3.2.1a with the following patches:
- fixes the problem of uninitialized bounding box vars, which
only seem to manifest problems with Sun's native Solaris cc.
- Fixes problem where box appears in output
- This fixes the difference between xfig and fig2dev splines
- fig2dev should always write to stdout if no output file is given.
This did not work for all output languages (Closes: #24724).
- Imakefile patch.
-- Roland Rosenfeld <roland@debian.org> Wed, 19 May 1999 19:42:51 +0200
transfig (1:3.2.1-10) unstable; urgency=low
* New Debian maintainer.
* Added japanese.ps from xfig package which is needed by fig2dev.
* Added a note to README.Debian, where to find grafbase.mf, which is
needed for the metafont driver. (Closes: #11050)
* Updated copyright file.
-- Roland Rosenfeld <roland@debian.org> Wed, 12 May 1999 22:18:21 +0000
transfig (1:3.2.1-9) frozen unstable; urgency=low
* Complied against libc6.1 required some small changes.
* Lintian warned against compiling using libjpegg-dev, so libjpeg62-dev is
used instead
* Lintian v1.1 now gives it a clean bill of health.
* Fixes bug #32520, files go into /usr/X11R6 not /usr/lib/X11
* Added note about requiring netpbm-nonfree for gif support, fixes 35686.
Still need to modify transfig so it complains when an attempt is made to
create a gif images if ppmtogif is not present.
-- Edward Betts <edward@debian.org> Wed, 5 May 1999 19:07:55 +0100
transfig (1:3.2.1-8) frozen unstable; urgency=low
* Really fix Bug#32520 this time.
-- Edward Betts <edward@hairnet.demon.co.uk> Tue, 2 Feb 1999 22:22:23 +0000
transfig (1:3.2.1-7) frozen unstable; urgency=low
* Fixes Bug#32520: transfig: puts files in /usr/lib/X11, should use
/usr/X11R6/lib/X11.
-- Edward Betts <edward@debian.org> Fri, 29 Jan 1999 19:53:56 +0000
transfig (1:3.2.1-6) frozen unstable; urgency=low
* Added a number of includes of stdlib.h for malloc() prototype based on
a NMU by Paul Slootman <paul@debian.org>
-- Edward Betts <edward@debian.org> Tue, 19 Jan 1999 10:20:50 +0000
transfig (1:3.2.1-5) frozen unstable; urgency=low
* Passes Lintian v0.9.5
* Added Recommends: netpbm, gs - Needed for ps and other formats
* Added Suggests: netpbm-nonfree - Needed for exporting to gif
-- Edward Betts <edward@debian.org> Mon, 28 Dec 1998 23:02:43 +0000
transfig (1:3.2.1-4) frozen unstable; urgency=low
* Passes Lintian v0.9.4
- Removed csh script, replaced with sh script because
W: transfig: csh-considered-harmful usr/X11R6/bin/fig2ps2tex
* Removed suggests: c-shell because no more csh code
* Removed dh_link from debian/rules, (dh_link is from an unstable version of
debhelper not avaliable in slink). It is no longer needed because of the
removal of the csh version of the fig2psp2tex script. Thanks to Paul
Slootman for spotting this one, and James Troop reminding me that dh_link is
only in the unstable version of debhelper that appears in spud.
* Fixed the missing DESTDIR in the install rule of fig2dev/Imakefile. Thanks
goes to Paul again for spotting this one.
* When installing the documentary, the it was assumed that fig2dev was
installed, this has been fixed. This completes the fixing of Bug#30753. And
a final thanks goes to Paul for spotting this one.
* Removed debian/rules.old - it was a bit silly keeping it.
-- Edward Betts <edward@debian.org> Sat, 19 Dec 1998 21:05:55 +0000
transfig (1:3.2.1-3) frozen unstable; urgency=low
* New maintainer
- Please include in slink so that the maintainer field is correct
* Converted to debhelper
* Updated standards version to 2.5.0.0
* Passes Lintian v0.9.4
- Apart from W: transfig: csh-considered-harmful usr/X11R6/bin/fig2ps2tex
- Added suggests: c-shell to make it happy
* Added suggests: xfig
-- Edward Betts <edward@debian.org> Thu, 3 Dec 1998 16:53:05 +0000
transfig (1:3.2.1-2) unstable; urgency=low
* fig2dev now handles output to stdout (it segfaulted before). fixes: #24725
-- Enrique Zanardi <ezanard@debian.org> Tue, 21 Jul 1998 16:05:10 +0100
transfig (1:3.2.1-1) unstable; urgency=low
* New upstream release
-- Enrique Zanardi <ezanard@debian.org> Wed, 15 Jul 1998 14:53:22 +0100
transfig (1:3.2.0-2.2) frozen unstable; urgency=low
* non-maintainer upload because Enrique is busy with the boot-floppies
* patch from upstream author to fix annoying bug #21474
* corrected binary target in rules; fixes bug #21249
-- Christian Meder <meder@isr.uni-stuttgart.de> Thu, 14 May 1998 23:52:52 +0200
transfig (1:3.2.0-2.1) frozen unstable; urgency=low
* non-maintainer upload for Alpha.
* First (!) "binary" target in rules changed to binary-arch.
-- Paul Slootman <paul@debian.org> Thu, 16 Apr 1998 23:57:44 +0200
transfig (1:3.2.0-2) unstable; urgency=low
* Use double constants for M_PI and M_PI_2, instead of long double
constants as defined in /usr/include/math.h. (Fixes Bug#13891)
-- Enrique Zanardi <ezanardi@molec1.dfis.ull.es> Mon, 20 Oct 1997 17:31:04 +0100
transfig (1:3.2.0-1) unstable; urgency=low
* New maintainer
* Pristine sources
* Minor tweaks for libc6
-- Enrique Zanardi <ezanardi@molec1.dfis.ull.es> Sat, 27 Sep 1997 20:05:48 +0100
transfig (3.2.0-beta2-2) unstable; urgency=low
* added fig2dev/fig2dev to shilbdep commandline in debian/rules
(fixing bug#6752)
-- joost witteveen <joost@rulcmc.leidenuniv.nl> Tue, 21 Jan 1997 22:33:38 +0100
transfig (3.2.0-beta2-1) unstable; urgency=low
* new upstream version
-- joost witteveen <joost@rulcmc.leidenuniv.nl> Sun, 19 Jan 1997 14:47:43 +0100
transfig (3.1.2a-4) unstable; urgency=low
* Uses new source format
* Added a few doc's from the upstream package.
-- joost witteveen <joost@rulcmc.leidenuniv.nl> Sat, 4 Jan 1997 22:22:34 +0100
|