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
|
libtool (2.5.4-9) unstable; urgency=medium
[ Gioele Barabucci ]
* d/rules fix for FTCBFS not producing debs on binary-arch. Closes: #1122141
[ Alastair McKinstry ]
* Add d/salsa-ci.yml for CI/CD pipeline
-- Alastair McKinstry <mckinstry@debian.org> Mon, 08 Dec 2025 10:20:55 +0000
libtool (2.5.4-8) unstable; urgency=medium
[ Cyril Brulebois ]
* Fix sanitation of libtool vs. libtoolize; the former is shipped in
libtool-bin (arch:any, so binary-arch target), the latter in libtool
(arch:all, so binary-indep target).
* Use a single sed call (no pipefail in dash).
* Make sure failures are noticed inside for loops.
* Unhardcode upstream version from sanitation loops.
[ Gioele Barabucci ]
* d/rules: Use standard `dh` sequence to d/rules (Closes: #1122012, #1122013)
[ Alastair McKinstry ]
* Close previously fixed bugs. Closes: #286341, #733935
-- Alastair McKinstry <mckinstry@debian.org> Sun, 07 Dec 2025 12:19:28 +0000
libtool (2.5.4-7) unstable; urgency=medium
* Fix libtool automake dependency handling. Thanks to Santiago Vila.
Closes: #1118477
-- Alastair McKinstry <mckinstry@debian.org> Tue, 21 Oct 2025 12:49:42 +0100
libtool (2.5.4-6) unstable; urgency=medium
* Depend on automake >= 1.18. Closes: #1118312
-- Alastair McKinstry <mckinstry@debian.org> Mon, 20 Oct 2025 16:59:20 +0100
libtool (2.5.4-5) unstable; urgency=medium
[ Alastair McKinstry ]
* Clean more autogenerated files for repeated builds. Closes: #1048097
* Drop Suggests: gck-jdk. Closes: #982873
[ Helmut Grohe ]
* Fix FTCBFS: Use gfortran-for-host. (Closes: #1086592)
As a result gfortran must be triplet-prefixed even in native builds.
-- Alastair McKinstry <mckinstry@debian.org> Sat, 30 Aug 2025 10:36:25 +0100
libtool (2.5.4-4) unstable; urgency=medium
[ Jordi Mallach ]
* Update VERSION and SERIAL in debian/rules. Closes: #1099559
[ Alastair McKinstry ]
* Standards-Version: 4.7.2
-- Jordi Mallach <jordi@debian.org> Wed, 05 Mar 2025 00:03:06 +0100
libtool (2.5.4-3) unstable; urgency=medium
* Drop B-D on libltdl-dev. Closes: #1094361
-- Alastair McKinstry <mckinstry@debian.org> Fri, 31 Jan 2025 12:12:49 +0000
libtool (2.5.4-2.1) unstable; urgency=medium
* Non-maintainer upload.
* Fix aclocal version matching to cope with minor-less versions. (Closes:
#1094400)
-- Helmut Grohne <helmut@subdivi.de> Wed, 29 Jan 2025 14:07:27 +0100
libtool (2.5.4-2) unstable; urgency=medium
* Upload to unstable
-- Alastair McKinstry <mckinstry@debian.org> Mon, 06 Jan 2025 09:41:19 +0000
libtool (2.5.4-1) experimental; urgency=medium
* New upstream release. Closes: #1077058
* Drop merged/obsolete patches:
- 0050-documentation.patch
- 0055-pass-flags-unchanged.patch
- 0080-struct-names.patch
- 0085-tcc-path.patch
- grep-spaces.patch
- libtool-eval-nm.patch
- man-add-whatis-info.diff
- no_hostname.patch
- version_string.patch
* Fix broken vcs url
* Standards-Version now 4.7.0
-- Alastair McKinstry <mckinstry@debian.org> Sun, 01 Dec 2024 18:13:26 +0000
libtool (2.4.7-7) unstable; urgency=medium
* Remove obsole Breaks: for oldstable , Provides: libltdl7-dev
* Replace Breaks: libltdl3-dev with Conflicts: libltdl3-dev.
Thanks Andreas Beckmann. Closes: #1041229
-- Alastair McKinstry <mckinstry@debian.org> Mon, 17 Jul 2023 16:03:58 +0100
libtool (2.4.7-6) unstable; urgency=medium
* Incorrect check for += operator causes func_append to fail
Patch from Ernesto Alfonso. Closes: #1039612
* Standards-Version: 4.6.2
* Add Breaks/Replaces on libtldl3-dev. Closes: #1039583
-- Alastair McKinstry <mckinstry@debian.org> Sat, 15 Jul 2023 09:09:39 +0100
libtool (2.4.7-5) unstable; urgency=medium
* Standards-Version: 4.6.1
* Ack fixed FTBFS bug : Closes: #1020067
-- Alastair McKinstry <mckinstry@debian.org> Wed, 23 Nov 2022 11:34:12 +0000
libtool (2.4.7-4) unstable; urgency=medium
* Update VERSION and SERIAL in d/rules
-- Alastair McKinstry <mckinstry@debian.org> Wed, 04 May 2022 09:09:59 +0100
libtool (2.4.7-3) unstable; urgency=medium
* Re-add provides: libltdl3-dev
-- Alastair McKinstry <mckinstry@debian.org> Tue, 05 Apr 2022 16:07:10 +0100
libtool (2.4.7-2) unstable; urgency=medium
[ Alastair McKinstry ]
* Add runpath with CC=tcc LD=tcc, with the -rpath option.
Closes: #814091
[ Nicolas Boulenguez ]
* Drop dependencies older than oldoldstable
* Machine-readable d/copyright
* Use dpkg-dev snippets for architecture build flags
* Lintian fixes
* Shorten-definition-of-AM_VERSION
-- Alastair McKinstry <mckinstry@debian.org> Fri, 25 Mar 2022 12:53:16 +0000
libtool (2.4.7-1) unstable; urgency=medium
* New upstream release
* Patches merged upstream:
- 0001-libtool-fix-GCC-linking-with-specs.patch
- 0003-libtoolize-fix-infinite-recursion-in-m4.patch
- 0010-libtool-mitigate-the-sed_quote_subst-slowdown.patch
- 0012-funclib-refactor-quoting-methods-a-bit.patch
- 0015-syntax-check-fix-sed-syntax-errors.patch
- 0020-libtool-fix-GCC-clang-linking-with-fsanitize.patch
- libtool-2.4.6-am-1.16-test.patch
- 0025-libtool-pass-use-ld.patch
- 0035-ac-prereq.patch
- 0060-ar.patch
- 0065-autoconf-version.patch
- 0070-libtool-bigsur.patch
* Standards-version: 4.6.0
-- Alastair McKinstry <mckinstry@debian.org> Mon, 21 Mar 2022 11:47:25 +0000
libtool (2.4.6-15) unstable; urgency=medium
* Drop shipping /usr/lib/*/libltdl.la
* Update autoconf requirement. Closes: #979123
* Standards-Version: 4.5.1, no changes required
* Move to debhelper compat level 13
* Move to DEP-14 branches; add d/gbp.conf to point to these
* Point vcs-git to debian/latest branch
* Remove dates/times from documentation. Closes: #951031
* Include libtool patch for MacOS BigSur support. Closes: #975257
* Update watch file to version 4; add sig checking
* Drop useless autotools-dev build-dependency
* Fix perms for ltmain.sh
* Patch for incorrect struct names. Closes: #304400
* Ensure libtool-2.4.6-am-1.16-test.patch is used
-- Alastair McKinstry <mckinstry@debian.org> Sat, 09 Jan 2021 20:49:30 +0000
libtool (2.4.6-14) unstable; urgency=medium
* Add Breaks/Replaces on libtool-doc. Closes: #950916
* Ack bug fixed in -12 release: Closes: #929184
-- Alastair McKinstry <mckinstry@debian.org> Mon, 02 Mar 2020 09:35:42 +0000
libtool (2.4.6-13) unstable; urgency=medium
* Drop d/libtool.docs; ship the docs in libtool-docs.
Closes: #950916
-- Alastair McKinstry <mckinstry@debian.org> Sun, 16 Feb 2020 12:06:34 +0000
libtool (2.4.6-12) unstable; urgency=medium
[ Helmut Grohe ]
* Avoid build-dependency cycle with libtool. Closes: #924184
[ Vagrant Cascadian ]
* all ./configure with explicit GREP=/bin/grep and SED=/bin/sed,
to prevent variation when built on a merged /usr system.
Closes: #949270
* Remove file-prefix-map/debug-prefix-map arguments from the libtool.1 manpage,
which results in an unreproducible package when the build path varies.
Closes: #949271
[ Alastair McKinstry ]
* Standards-Version: 4.5.0
* Use debhelper-compat (= 12)
* Increment AC_PREREQ to 2.63. Closes: #948511
* Remove unsafe debug_cmd. Closes: #866631
* Close ENOFIX a 15-yr old wishlist. Closes: #258261
* Close old bugs believed fixed. Closes: #243618, #644744
* Minor documentation fix. Closes: #253904
* Set AR_FLAGS=cr by default. Closes: #864018
[ Vincent Lefevre ]
* Pass fcilkplus and sanitizer flags unchanged. Closes: #751161
-- Alastair McKinstry <mckinstry@debian.org> Fri, 07 Feb 2020 16:15:16 +0000
libtool (2.4.6-11) unstable; urgency=medium
* Close unreproducible bug (timing related? ). Closes: #922689
* Standards-Version: 4.4.0
-- Alastair McKinstry <mckinstry@debian.org> Wed, 28 Aug 2019 14:42:23 +0100
libtool (2.4.6-10) unstable; urgency=medium
* 0030-flang-support.patch: Support for Flang Fortran compiler
-- Alastair McKinstry <mckinstry@debian.org> Mon, 18 Feb 2019 15:53:43 +0000
libtool (2.4.6-9) unstable; urgency=medium
* From upstream: add support for --use-ld= flag. Closes: #920529
-- Alastair McKinstry <mckinstry@debian.org> Mon, 28 Jan 2019 09:07:40 +0000
libtool (2.4.6-8) unstable; urgency=medium
* Fix Typos in sed expressions in d/rules. Closes: #919341
* Close bug fixed in previous release. Closes: #918588
-- Alastair McKinstry <mckinstry@debian.org> Tue, 15 Jan 2019 13:42:46 +0000
libtool (2.4.6-7) unstable; urgency=medium
* Standards-Version: 4.3.0
* Close old bugs:
- patch included upstream. Closes: #668707
* Homepage: use https protocol
* Add Vcs-* pointing to salsa.d.o
* Sanitize /usr-merge paths
* Undo 0010-libtool-mitigate-the-sed_quote_subst-slowdown.patch to
test #918588
-- Alastair McKinstry <mckinstry@debian.org> Sat, 12 Jan 2019 14:10:59 +0000
libtool (2.4.6-6) unstable; urgency=medium
* Undo broken patch inclusion. Closes: #910076
* Disable refactor patch 0012-funclib-refactor-quoting-methods-a-bit.patch
that breaks pkgs on AIX (no bash optimization). Closes: #900276
* Add build-dep on libltdl-dev for test 102
-- Alastair McKinstry <mckinstry@debian.org> Wed, 10 Oct 2018 10:49:43 +0100
libtool (2.4.6-5) unstable; urgency=medium
* Patch from Vincent Lefevre for AC_TRY_EVAL. Closes: #910076
-- Alastair McKinstry <mckinstry@debian.org> Wed, 03 Oct 2018 17:01:12 +0100
libtool (2.4.6-4) unstable; urgency=medium
* Become Maintainer. Closes: #905994
* Add automake dependency on automake version that aclocal.m4 is built
with. Closes: #905841, #906394, #906395, #906423, #906501, #906507.
* Set libtool-doc as Multi-Arch: foreign
-- Alastair McKinstry <mckinstry@debian.org> Tue, 11 Sep 2018 11:21:56 +0100
libtool (2.4.6-3.1) unstable; urgency=medium
* Non-maintainer upload
* Fix handling of grep for link lines where path contains "-L".
- patch grep-spaces.patch. Closes: #896861
-- Alastair McKinstry <mckinstry@debian.org> Fri, 07 Sep 2018 09:11:08 +0100
libtool (2.4.6-3) unstable; urgency=medium
* QA upload.
* Fix FTBFS test failure with automake 1.16; patch from Fedora tested by
Juhani Numminen and Shirish. Closes: #906380.
* Set maintainer to the QA team.
* Use debhelper compat 9.
* R³.
-- Adam Borowski <kilobyte@angband.pl> Thu, 06 Sep 2018 22:28:05 +0200
libtool (2.4.6-2.1) unstable; urgency=medium
* Non-maintainer upload.
* Mitigate exessive sed forking (Closes: #848864):
- Add 0010-libtool-mitigate-the-sed_quote_subst-slowdown.patch
- Add 0011-libtool-optimizing-options-parser-hooks.patch
- Add 0012-funclib-refactor-quoting-methods-a-bit.patch
- Refresh 0020-libtool-fix-GCC-clang-linking-with-fsanitize.patch
-- Andreas Boll <aboll@debian.org> Tue, 17 Apr 2018 19:50:37 +0200
libtool (2.4.6-2) unstable; urgency=medium
* Don't show the debain version in --version, just in --help
(Closes: #832874)
-- Kurt Roeckx <kurt@roeckx.be> Sat, 20 Aug 2016 14:34:31 +0200
libtool (2.4.6-1) unstable; urgency=medium
* Add sparc64 to the nopic.patch (Closes: #760328)
* Don't have a "Libtool was configured on host" line anymore
(Closes: #819767)
* Make the build-arch and build-indep target do the same thing.
The libtool package is now arch all, so it makes little sense
to just build the documentation in the build-indep target. The
binary-indep depends on install which depends on build anyway.
* Add upstream signing key
* Change clean target to remove all generated files.
* Add --skip-po to bootstrap call
* Remove git-version-gen and gitlog-to-changelog from bootstrap.conf
* Update way of adding the Debian version to the files.
* Build-Depend on gnulib and tell bootstrap where to found it.
* Use --copy for bootstrap. It defaults to creating symlinks.
-- Kurt Roeckx <kurt@roeckx.be> Mon, 25 Jul 2016 19:42:23 +0200
libtool (2.4.6-0.1) unstable; urgency=medium
* Non maintainer upload.
[ Rico Tzschichholz ]
* New upstream release
Remove patches applied upstream:
- hurd.patch
- x32.patch
- ppc64el.patch
* Cherry-picked patches from upstream git:
- 0001-libtool-fix-GCC-linking-with-specs.patch
- 0003-libtoolize-fix-infinite-recursion-in-m4.patch
- 0015-syntax-check-fix-sed-syntax-errors.patch
- 0020-libtool-fix-GCC-clang-linking-with-fsanitize.patch
* Build-depend on texinfo needed by bootstrap.
* *.install/rules: Updated for upstream changes.
-- Matthias Klose <doko@debian.org> Sun, 07 Feb 2016 17:02:04 +0100
libtool (2.4.2-1.11) unstable; urgency=medium
* Non-maintainer upload.
* Drop libtool's dependency on libtool-bin.
* Add libtool-bin dependency on libtool.
* Make libtool Multi-Arch: foreign. Closes: #682045.
* Bump standards version to 3.9.6.
-- Matthias Klose <doko@debian.org> Tue, 14 Oct 2014 19:21:11 +0200
libtool (2.4.2-1.10) unstable; urgency=medium
* Non-maintainer upload.
* Run the tests in the build target, not the install target.
-- Matthias Klose <doko@debian.org> Tue, 19 Aug 2014 16:31:18 +0200
libtool (2.4.2-1.9) unstable; urgency=medium
* Non-maintainer upload.
* Fix the architecture only build.
-- Matthias Klose <doko@debian.org> Tue, 19 Aug 2014 14:41:15 +0200
libtool (2.4.2-1.8) unstable; urgency=medium
* Non-maintainer upload with maintainer's permission.
* Split-out the libtool binary into a libtool-bin package, let libtool
still depend on the libtool-bin package.
* Set the architecture for libtool to `all'.
* The next steps are:
- Fix package builds with libtool's dependency on libtool-bin removed,
either by changing the package build not to require libtool or by
adding a build dependency on libtool-bin.
- Drop libtool's dependency on libtool-bin.
* Build using dpkg-buildflags.
* Fix some lintian warnings. Closes: #711521.
* Only ship the complete upstream changelogs in the -doc package.
* Move texinfo to Build-Depends-Indep (Daniel Schepler). Closes: #737941.
* Build-depend on most recent autoconf and automake versions to minimize
the risk of mismatching files in the libltdl-dev M-A: same package.
Closes: #733935.
-- Matthias Klose <doko@debian.org> Sun, 17 Aug 2014 19:01:14 +0200
libtool (2.4.2-1.7) unstable; urgency=medium
* Non-maintainer upload.
* Fix typo in the ppc64el guessing in config.guess.
-- Matthias Klose <doko@debian.org> Mon, 10 Feb 2014 12:36:45 +0100
libtool (2.4.2-1.6) unstable; urgency=low
* Non-maintainer upload.
* Rebuild using the recent automake 1.14.1 version. Closes: #733935.
-- Matthias Klose <doko@debian.org> Thu, 02 Jan 2014 19:23:20 +0100
libtool (2.4.2-1.5) unstable; urgency=medium
* Non-maintainer upload.
* Update the powerpc little endian support, outdated in the Debian
patch in #726404.
-- Matthias Klose <doko@debian.org> Thu, 02 Jan 2014 18:29:44 +0100
libtool (2.4.2-1.4) unstable; urgency=low
* Non-maintainer upload with maintainer's permission.
* Add powerpc little endian updates. Closes: #726404.
* Build-conflict with and suggest gcj-jdk instead of gcj.
-- Matthias Klose <doko@debian.org> Wed, 01 Jan 2014 22:03:26 +0100
libtool (2.4.2-1.3) unstable; urgency=low
* Non-maintainer upload.
* Build-depend on help2man (closes: #712413).
-- Colin Watson <cjwatson@debian.org> Mon, 01 Jul 2013 18:33:15 +0100
libtool (2.4.2-1.2) unstable; urgency=low
* Non-maintainer upload with maintainer's permission.
* Backport support for x32 from upstream git. Closes: #692222.
-- Daniel Schepler <schepler@debian.org> Fri, 23 Nov 2012 15:26:44 -0800
libtool (2.4.2-1.1) unstable; urgency=low
* Non-maintainer upload.
* Apply upstream fix for hurd-i386 linker flags (Closes: #648514).
-- Samuel Thibault <sthibault@debian.org> Tue, 12 Jun 2012 00:05:43 +0200
libtool (2.4.2-1) unstable; urgency=low
* New upstream release
Remove patches applied upstream:
- define_shlibpath_overrides_runpath4hurd.patch
- tagdemo-libfoo.patch
* Remove disable_cmdline_wrap4hurd.patch as it never really was
needed in the first place. The other tests failing made the
cmdline_wrap test fail.
* Add multiarch support. Patch from
Steve Langasek <steve.langasek@canonical.com> (Closes: #646771)
-- Kurt Roeckx <kurt@roeckx.be> Sat, 29 Oct 2011 20:08:48 +0200
libtool (2.4-4) unstable; urgency=low
* dpkg-dev decided to also reverse apply the arm change, so remove
the revert (Closes: #632614)
-- Kurt Roeckx <kurt@roeckx.be> Wed, 24 Aug 2011 14:10:54 +0000
libtool (2.4-3) unstable; urgency=low
* Also cat test-suite.log (Closes: #632613)
* Also disable broken tests with non-PIC code on arm. (Closes: #632614)
-- Kurt Roeckx <kurt@roeckx.be> Fri, 29 Jul 2011 15:45:31 +0200
libtool (2.4-2) unstable; urgency=low
* Add support for hurd (Closes: #612204)
Patches from Svante Signell <srs@kth.se> and
Pino Toscano <toscano.pino@tiscali.it>
-- Kurt Roeckx <kurt@roeckx.be> Thu, 07 Apr 2011 21:57:09 +0200
libtool (2.4-1) unstable; urgency=low
* New upstream release
- Update build-depends to automake (>= 1:1.11.1), autoconf (>= 2.62)
- Update patches to apply to current version:
- link_all_deplibs.patch
- deplib_binary.patch
* convert to a 3.0 (quilt) source format, and drop quilt build-dependency.
* Make tagdemo link to libfoo (Closes: #619845)
-- Kurt Roeckx <kurt@roeckx.be> Sat, 02 Apr 2011 19:07:56 +0000
libtool (2.2.10-1) experimental; urgency=low
* New upstream release (Closes: #586246)
- Change license of documentation to GFDL 1.3
- Upstream now provides manpages for libtool and libtoolize, use
those instead of our own.
- drop lt_dlopenext.patch, bogus_directory.patch,
skip_setlocale.patch, kopensolaris.patch and
gold_symbol_versioning.patch applied upstream.
-- Kurt Roeckx <kurt@roeckx.be> Thu, 17 Jun 2010 20:09:14 +0200
libtool (2.2.6b-2) unstable; urgency=low
* Add build depedency on zlib1g-dev needed by the search-path.at
testsuite test. (Closes: #560219)
-- Kurt Roeckx <kurt@roeckx.be> Wed, 09 Dec 2009 21:51:21 +0100
libtool (2.2.6b-1) unstable; urgency=low
* New upstream release
- Fixes CVE-2009-3736 (Closes: #559797)
* Skip demo-deplibs.test. This is basicly the same as
deplibs_test_disable.patch from the 1.5.26 version.
* Skip the link-order2.at test. It has the same problem
as the deplibs test.
* Since deplibs-ident.at now passes, just let it return that
the result is ok.
* Skip localization test when setlocale is not functional.
* Renable test suite.
* Remove the "Apps/" part of the doc-base entry.
* Change debhelper compatibility to 7.
* Replace dh_clean -k with dh_prep
* Change build dependency of automake to 1.10.1 (Closes: #542190)
* Add support for GNU/kOpenSolaris (Closes: #545687)
* Update Standards-Version from 3.8.1 to 3.8.3: No changes required.
* Add ${misc:Depends} to libtool-doc's Depends so we have proper
depedencies for it.
* Build-Conflict against gcj for now, to avoid a regression test
failure. See #555801.
* Symbol versioning works with the GNU gold linker now. (Closes: #554821)
-- Kurt Roeckx <kurt@roeckx.be> Wed, 09 Dec 2009 20:05:39 +0100
libtool (2.2.6a-4) unstable; urgency=low
* link_all_deplibs was only set to no for the CXX tag. Set it to no
again for all tags. (Closes: #522663)
* Don't let a failed testsuite also fail to build for now. The combination
of setting link_all_deplibs=no and the deplib_binary.patch make some test
fail, but those look like testsuite errors.
-- Kurt Roeckx <kurt@roeckx.be> Tue, 07 Apr 2009 19:55:06 +0200
libtool (2.2.6a-3) unstable; urgency=low
* Don't pull in depedency libs when linking a binary. (Closes: #522663)
* DEB_BUILD_OPTIONS nocheck worked inverted.
-- Kurt Roeckx <kurt@roeckx.be> Mon, 06 Apr 2009 22:43:44 +0200
libtool (2.2.6a-2) unstable; urgency=low
* Rename libltdl7-dev to libltdl-dev, and make it provide libltdl3-dev
and libltdl7-dev.
* We don't have an arm arch anymore, so remove from build depedency
exception. Instead add hppa since that doesn't have gcj.
* Add all info pages (Closes: #495411, #512013)
* Force /bin/bash as shell of /usr/bin/libtool instead of /bin/sh. The
generate scripts excepts to have them same shell when it's run.
(Closes: #512013, #518905)
* Do not add bogus directory arguments to link command lines.
Patch from upstream. (Closes: #517501)
* Fix bogus error on successful loading of library with lt_dlopenext.
Patch already applied upstream. (Closes: #510006)
* Add support for the DEB_BUILD_OPTIONS nocheck option
* Update to Standards-Version 3.8.1
-- Kurt Roeckx <kurt@roeckx.be> Mon, 30 Mar 2009 22:40:04 +0200
libtool (2.2.6a-1) experimental; urgency=low
* New upstream release (Closes: #501783)
* libtool.info-1 anddoc/libtool.info-2 are change during build,
remove during clean.
-- Kurt Roeckx <kurt@roeckx.be> Tue, 18 Nov 2008 20:41:42 +0100
libtool (2.2.2-1) experimental; urgency=low
* New upstream release (Closes: #470057)
* Remove fortran 77 build dependencies (Closes: #463744)
* Make sure that we use atleast automake 1.10
* Merge with unstable:
- Remove comment about being a daily snapshot.
- Readd watch file.
- Update copyright file.
- Use ${binary:Version} in Depends field instead of ${Source-Version}
- Check for precense of Makefile instead of ignoring failures
from make distclean, as suggested by lintian.
- Change patch system from dpatch to quilt.
- Readded m68k java support.
- Change DH_COMPAT to a debian/compat file with 4 in it.
* Remove separate copyright files for individual packages.
-- Kurt Roeckx <kurt@roeckx.be> Sat, 09 Feb 2008 16:23:34 +0000
libtool (2.1a+cvs1.2525+20071016-1) experimental; urgency=low
* New CVS snapshot.
* Dropped java support on arm and m68k architectures.
* Added homepage field to debian/control.
-- Piotr Roszatycki <dexter@debian.org> Mon, 29 Oct 2007 14:30:17 +0100
libtool (2.1a+cvs1.2460+20070510-1) experimental; urgency=low
* New CVS snapshot.
* Revert patches adapted to new libtool: link_all_deplibs, netbsdelf,
version_type.
* Build-Depends on automake1.10.
* Mark libtool version with Debian tag.
* Remove outdated /usr/share/libtool/libtool.m4 symlink.
* Revert original order in debian/control file.
* Show testsuite.log on failure.
* Clean up after build.
-- Piotr Roszatycki <dexter@debian.org> Sun, 13 May 2007 22:05:54 +0200
libtool (2.1a+cvs1.2458+20070509-1) experimental; urgency=low
* New CVS snapshot.
* New libltdl7 library package.
* Removed all patches.
* Compile with gfortran | fortran95-compiler.
-- Piotr Roszatycki <dexter@debian.org> Thu, 10 May 2007 00:14:22 +0200
libtool (1.5.22-4) unstable; urgency=low
* Change gcj build dependency to not !kfreebsd-amd64
(Closes: #356388)
-- Kurt Roeckx <kurt@roeckx.be> Sat, 11 Mar 2006 19:33:24 +0100
libtool (1.5.22-3) unstable; urgency=low
* Properly set link_all_deplibs on k*bsd*-gnu. The previous
patch for kfreebsd didn't set it in all cases. Patch from
Aurelien Jarno <aurel32@debian.org> (Closes: #355789)
* Make k*bsd*-gnu do the same as on Linux in all cases. It
should behave the same. Based on patch by Aurelien Jarno.
* Don't build depend on gcj on kfreebsd-amd64
* Rename bsd.dpatch to netbsdelf.dpatch, since it now
only adds support for netbsdelf*-gnu.
-- Kurt Roeckx <kurt@roeckx.be> Sat, 11 Mar 2006 16:11:11 +0100
libtool (1.5.22-2) unstable; urgency=low
* Remove a "--" line from the generate tag for BINCC. It
resulted in "--: command not found" error. Thanks to
John V. Belmonte for reporting it and Ralf Wildenhues
for the fix. (Closes: #345607)
-- Kurt Roeckx <kurt@roeckx.be> Mon, 9 Jan 2006 16:06:58 +0100
libtool (1.5.22-1) unstable; urgency=low
* New upstream release
- libtoolize --ltdl now fails if libltdl3-dev is not installed.
(Closes: #344756)
* Also set link_all_deplibs to no on kfreebsd*-gnu. Patch from
Aurelien Jarno <aurel32@debian.org> (Closes: #341978)
-- Kurt Roeckx <kurt@roeckx.be> Mon, 26 Dec 2005 13:36:48 +0100
libtool (1.5.20-2) unstable; urgency=low
* Add a conflict on libtool1.4 for libltdl3-dev. They have overlapping
files and libtool1.4 should get removed anyway. (Closes: #329697)
* Put usr/share/libtool/libltdl in the libltdl3-dev, so libtoolize --ltdl
works again
* Don't build-depend gcj on kfreebsd-i386, they don't have it.
(Closes: #329703)
* Change Standards-Version to 3.6.2, no changes.
-- Kurt Roeckx <kurt@roeckx.be> Sun, 25 Sep 2005 16:16:17 +0200
libtool (1.5.20-1) unstable; urgency=low
* New maintainer (Closes: #302484)
* New upstream release (Closes: #265005)
- Configure test to detect -fPIC support in combination with other CFLAGS
could fail to detect if it's supported. (1.5.16) (Closes: #219490)
- ia64 tests should have been fix, run them again. (1.5.10)
- Fix .libs/.libs/libfoo.so link problem when linking against an other lib
from the same package. (1.5.8)
* Enable gcj on hppa again since gcj-4.0 is available on it.
* Enable the test suite on m68k again, slow is not a good reason not to run
it.
* Move ltdl.m4 from libtool to libltdl-dev package, where it belongs.
Add a conflicts/replaces from libltdl-dev to the libtool package.
* Remove usr/share/libtool/libltdl from the libtool package
* Make the libtool.m4 in /usr/share/libtool a symlink to the one in
/usr/share/aclocal.
* libltdl3-dev.preinst: No longer remove the old directory on upgrade.
libltdl3-dev.preinst does nothing now so remove the file.
* libtool.postinst: We don't run ltconfig anymore, so don't play with
cc's alternatives.
* Put the config.guess and config.sub symlinks in the package instead
of creating them in the libtool.postinst. Remove the libtool.postinst
and libtool.prerm scripts since they do nothing now.
* Add AUTHORS, README, THANKS and TODO in the docs dir.
* Remove obsolete conflicts/replaces for libltdl0.1 and libltdl0,
it's not even in woody.
* Split out patches, and convert to using dpatch
* Always do a full bootstrap of the configure scripts before
building so I only have to patch 1 file.
* Embed the debian version in libtool.m4 and ltmain.in/sh
* Add a watch file.
-- Kurt Roeckx <kurt@roeckx.be> Wed, 14 Sep 2005 21:11:24 +0200
libtool (1.5.6-6) unstable; urgency=low
* Orphan.
-- Scott James Remnant <scott@netsplit.com> Fri, 1 Apr 2005 01:28:13 +0100
libtool (1.5.6-5) unstable; urgency=low
* Apply patch from upstream to allow five digits in version-info.
-- Scott James Remnant <scott@netsplit.com> Tue, 8 Mar 2005 18:12:26 +0000
libtool (1.5.6-4) unstable; urgency=low
* Correct accidental slide into a native package.
* Apply patch to fix memory leak in libltdl. Closes: #281929.
* Usual postinst change to support only gcc 3.4 or gcc 4.0. Closes: #281708.
* Remove build-essential dependencies from libltdl3-dev. Closes: #260298.
-- Scott James Remnant <scott@netsplit.com> Sat, 22 Jan 2005 14:17:59 +0000
libtool (1.5.6-3) unstable; urgency=low
* Don't build-depend on gcj on netbsd-i386 or hurd-i386. Closes: #260299.
* Apply patch to correct problem with "-lfoo -Ldir -lbar" picking bar up
from the same directory as foo, instead of in 'dir'
-- Scott James Remnant <scott@netsplit.com> Tue, 26 Oct 2004 10:37:41 +0100
libtool (1.5.6-2) unstable; urgency=low
* Apply patch from Joel Baker to support Debian GNU/kNetBSD systems
with *-*-netbsdelf-gnu triplet. Closes: #244770.
* Fail earlier on invalid version_type so we output a useful error
message. Closes: #247169.
* Skip the Non-PIC test on x86-64, it can't handle Non-PIC code inside
shared libraries. Closes: #246746.
-- Scott James Remnant <scott@netsplit.com> Tue, 6 Jul 2004 17:52:19 +0100
libtool (1.5.6-1) unstable; urgency=low
* New upstream release.
- Correctly installs libltdl.
- Correctly provides shrext_cmds to libltdl.
Closes: #242161, #242380, #242457, #242488, #243008, #243033, #243107,
#243261.
-- Scott James Remnant <scott@netsplit.com> Mon, 12 Apr 2004 18:17:59 +0100
libtool (1.5.4-1) unstable; urgency=low
* New upstream release.
-- Scott James Remnant <scott@netsplit.com> Sat, 3 Apr 2004 19:10:11 +0100
libtool (1.5.2-2) unstable; urgency=low
* Remove .svn check from debian/rules, no longer necessary.
* Correctly pass CFLAGS to configure.
* No longer dlopens libraries with RTLD_GLOBAL. Closes: #195821, #221811.
* Don't add the contents of dependency_libs to the link line when
linking programs. Closes: #191425, #199423, #238681.
-- Scott James Remnant <scott@netsplit.com> Sun, 28 Mar 2004 20:08:59 +0100
libtool (1.5.2-1) unstable; urgency=low
* New upstream release.
This largely just included our patches from 1.5, there are a couple
of additional bug fixes in this release though.
* Move to a single libtool.info file.
-- Scott James Remnant <scott@netsplit.com> Sun, 25 Jan 2004 14:45:02 +0000
libtool (1.5-9) unstable; urgency=low
* Apply patch from Robert Millan <zeratul2@wanadoo.es> to complete
support for GNU/kNetBSD. Closes: #224440.
* Apply keybuk-precious-files.patch (backported from 1.6) to add
an option to prevent the removal of files from the temporary
output directory. Closes: #221420.
-- Scott James Remnant <scott@netsplit.com> Sun, 11 Jan 2004 01:33:18 +0000
libtool (1.5-8) unstable; urgency=medium
* Bring the various copyright files up to par.
* Apply patch to infer tagged configuration in link mode with all
compiler arguments available, rather than just the first.
* Remove the mkdir -p option from when creating a temporary output
directory to prevent symlink abuse.
* Generate the info files on build as we need a certain --split-size
for hysterical raisins.
-- Scott James Remnant <scott@netsplit.com> Sat, 3 Jan 2004 14:49:52 +0000
libtool (1.5-7) unstable; urgency=high
* Add missing 'continue' line when acting on finding -pthread and friends
in $deplibs. This line of code is in all my copies of ltmain, it's in
my test package of libtool, it's in the upstream CVS where I comitted it,
it's in the patch file I made to do that and is in the 1.4.3 package that
used the same patch; but for no apparent reason it vanished from the
Debian 1.5-6 package! Closes: #221467.
-- Scott James Remnant <scott@netsplit.com> Tue, 18 Nov 2003 17:08:17 +0000
libtool (1.5-6) unstable; urgency=low
* Error in the binary targets if a .svn directory exists, to prevent
me accidentally shipping them in the diff. To create binary packages
from the svn source add TEST=yes to the debian/rules line.
Closes: #219461.
* Fix libtoolize so the cd command run when AC_CONFIG_AUX_DIR is used
is shown when --dry-run is given. Closes: #153699.
* Yet Another(tm) patch to prevent hardcoding of dependency library
rpaths, replacing the one in 1.5-3. Any path listed in /etc/ld.so.conf
is now not rpathed. This is more palatable upstream.
* The Ultimate -pthread Patch(tm), the previous change broke placing
-pthread in libs' $deplibs. This new patch treats the arguments the
same for libraries and programs, and even honours them when found
in dependency_libs but doesn't place them there first.
* Infer near-default configuration when invoked as 'libtool cc' rather
than complaining that we can't infer a tag.
* Fix -static, -prefer-pic and -prefer-non-pic when used with a tagged
configuration. Closes: #217834.
* Synchronise with upstream CVS. The changes are:
- MinGW reverted back to an objdump-base test.
See changelog.gz for more detail.
-- Scott James Remnant <scott@netsplit.com> Sun, 16 Nov 2003 15:10:15 +0000
libtool (1.5-5) unstable; urgency=low
* Apply upstream patch to preserve --tag, --debug, --quiet and
--silent arguments when invoking ourselves to perform
relink or finish modes. Closes: #214484.
* Don't propogate -pthread and friends to dependency_libs, but also
don't complain when we find it there. This fixes the recent GNOME
problems without breaking anything else (I hope).
-- Scott James Remnant <scott@netsplit.com> Wed, 29 Oct 2003 17:31:07 +0000
libtool (1.5-4) unstable; urgency=low
* Remove Build-Depends-Indep placing texi2html and texinfo in
Build-Depends. Policy is wrong, the buildds do not ensure these are
installed for the "build" target of debian/rules. Closes: #216492.
* Built with dpkg 1.10.10, the latest version ignores the
[!hppa !mips !mipsel] clause in Build-Depends.
-- Scott James Remnant <scott@netsplit.com> Sun, 19 Oct 2003 16:19:22 +0100
libtool (1.5-3) unstable; urgency=low
* Synchronise with upstream CVS, in case they decide to skip 1.5.1
after all and go straight to 1.6. The changes are:
- GNU/KNetBSD support added.
- lt_dlrealloc now part of the libltdl API. Closes: #120169.
See changelog.gz for more detail.
* Run 'make check' after build to make sure it all works.
* Fix permissions of tests/mdemo2-*.test so "make check" will work.
* Move rules to create info files and examples .tar.gz files to
the build target so we don't pollute them with stuff from "make check".
* Disable demo-nopic test on hppa.
* Add /usr/local/lib and /usr/X11R6/lib to sys_lib_dlsearch_path_spec.
* Add gcc-3.3 to the list of packages we maintain the /usr/bin/cc
alternative for. Closes: #216349.
* Remove dead code from libtool.m4. Closes: #210378.
* Add the various compiler threading options to dependency_libs, and
don't barf if we find them.
* Merge addition of --no-supress option from HEAD. Closes: #207475.
* Mention that libtool-doc will become non-free after sarge.
-- Scott James Remnant <scott@netsplit.com> Wed, 1 Oct 2003 00:27:19 +0100
libtool (1.5-2) unstable; urgency=low
* Make mdemo2-*.test executable so they don't fail when you go
"make check"
* Prevent recursion on missing ltmain.sh by checking ltmain.in
exists first. Closes: #164452.
* Remove build dependency on gcj on hppa, mips and mipsel to
fix build failure. Closes: #207923.
* Remove fallback suggestion of java-compiler, libtool will
only support gcj for the forseeable future.
* Place NEWS and ChangeLog files in all packages, also add missing
ChangeLog.1 file. Closes: #205458.
* Always use pass_all on Linux ELF, host_cpu is irrelevant.
Closes: #208552.
* Don't pass -nostdlib to gcc when creating an archive so we can
throw away all the gcc version-specific hardcoding. Closes: #206356.
* Ensure STRIP variable is properly quoted.
-- Scott James Remnant <scott@netsplit.com> Wed, 10 Sep 2003 23:42:48 +0100
libtool (1.5-1) unstable; urgency=low
* Initial Release of the "multi language" version of GNU Libtool.
This is a cooler and more froody version of Libtool than 1.4 was
and not only makes C++ libraries properly but does Fortran77 and
compiled Java libraries too. The catch? It won't work with
packages still using Autoconf 2.13. Either upgrade your
configure.in to Autoconf 2.5x, or install the libtool1.4 package.
Closes: #190216, #195278, #192918.
-- Scott James Remnant <scott@netsplit.com> Sat, 2 Aug 2003 02:08:10 +0100
libtool (1.3.3-9.1) frozen; urgency=low
* NMU (requested by maintainer)
* Create a pre-binary target to call dh_movefiles that is dep'd on by the
binary-arch *and* binary-indep target
-- Ben Collins <bcollins@debian.org> Fri, 31 Mar 2000 14:30:58 -0500
libtool (1.3.3-9) frozen; urgency=low
* Removed alternative libc-dev dependency for libltdl0-dev. If libltdl
was built with a specific set of C library header then those should
always be used for that particular build of libltdl.
-- Ossama Othman <ossama@debian.org> Thu, 17 Feb 2000 10:40:14 -0800
libtool (1.3.3-8) frozen; urgency=low
* Added the URL for the Libtool web site to the copyright file. (#57453)
* Libtool should also depend on "libc6-dev | libc-dev" since many of its
tests require it. I was never able to reproduce this problem since
libc6-dev is always installed on my system. This should correct the
installation problem users reported. Many thanks to Joost Witteveen
<joostje@debian.org> for figuring this out! (#48412)
* Added libc-dev virtual package as alternative dependency for the
libltdl0-dev package, in case there is every a C library development
package with a name other than "libc6-dev."
-- Ossama Othman <ossama@debian.org> Wed, 16 Feb 2000 15:20:36 -0800
libtool (1.3.3-7) frozen; urgency=low
* Patched libtool.m4 with patch sent in by from Chris Butler
<chrisb@sandy.force9.co.uk>. This fixes a libtool C compiler test on
SCO when the test language is other than C. The patch has been
included upstream. (#42530)
* Updated config.{guess,sub} from libtool 1.3.4.
* Updated location of libtool license in copyright file.
* Updated Standards Version to 3.1.1.1.
* Patched ltmain.in so that it includes the "-s" strip argument to
the install program when installing shared libraries with that
argument. Previously, the "-s" argument wasn't being used. This
is just a temporary patch since the current upstream CVS sources
have a fix in place. (#41904)
-- Ossama Othman <ossama@debian.org> Sun, 30 Jan 2000 15:04:56 -0800
libtool (1.3.3-6) unstable; urgency=low
* Remove vestigial `libltdl.tar.gz' archive during libtool uninstall, if
it exists.
-- Ossama Othman <ossama@debian.org> Tue, 26 Oct 1999 17:42:12 -0500
libtool (1.3.3-5) unstable; urgency=low
* Linked libltdl0-dev documentation to libltdl0 documentation. (#47949)
* Created a man page for libtool.
* Removed all remnants of the patch I created in the "-3" debs. I
inadvertently left some in the last libtool deb revision.
-- Ossama Othman <ossama@debian.org> Sun, 24 Oct 1999 15:20:29 -0500
libtool (1.3.3-4) unstable; urgency=low
* Reverted ltconfig.in back to unpatched upstream version. There were
too many good arguments against patching. For now, maintainers will
have to patch libtool manually.
-- Ossama Othman <ossama@debian.org> Wed, 20 Oct 1999 14:29:40 -0500
libtool (1.3.3-3) unstable; urgency=low
* Changed the rpath hack to check if debuild is currently running and if
DEB_BUILD_ARCH variable is of non-zero length. If both conditions are
satisfied, it should be safe to assume that libtool is being used in
the middle of a Debian package build.
This change allows Debian's libtool to retain the same behavior as the
upstream libtool, and at the same time enforce Debian's policy of not
encoding library paths into binaries. Specifically, libtool will
encode library paths into binaries only if a Debian package isn't
being built.
-- Ossama Othman <ossama@debian.org> Tue, 19 Oct 1999 14:43:47 -0500
libtool (1.3.3-2) unstable; urgency=low
* Patched ltconfig.in so that the generated ltconfig script will not
generate commands to hardcode library paths since Debian policy
mandates this. Software packages that use Debian's patched libtool
will no longer have to provide their own patches to conform to Debian
policy. (#46766)
* Updated documentation directories to conform to FHS.
-- Ossama Othman <ossama@debian.org> Sun, 17 Oct 1999 13:57:44 -0500
libtool (1.3.3-1) unstable; urgency=low
* New upstream release.
-- Ossama Othman <ossama@debian.org> Wed, 7 Jul 1999 19:44:53 -0500
libtool (1.3.2-3) unstable; urgency=low
* Moved the compiler check from the libtool package preinst script to
the libtool package postinst script since compilers, such as gcc,
should be configured by that stage of the installation.
-- Ossama Othman <ossama@debian.org> Tue, 22 Jun 1999 16:31:00 -0500
libtool (1.3.2-2) unstable; urgency=low
* Improved libtool preinst script so that it fixes broken or missing C
compiler alternatives that should point to gcc. This fix should
correct the problem of the C compiler alternative not being available
until after gcc has been setup during a fresh installation. The
libtool installation will simply create the alternative. gcc's
postinst script won't have any problems since update-alternatives will
just leave the existing alternative intact. (#39422)
-- Ossama Othman <ossama@debian.org> Tue, 22 Jun 1999 15:56:47 -0500
libtool (1.3.2-1) unstable; urgency=low
* New upstream release.
-- Ossama Othman <ossama@debian.org> Thu, 27 May 1999 21:40:56 -0500
libtool (1.3-8) unstable; urgency=low
* Patched config.sub with Christopher Chimelis' alpha patch. Forwarded
the patch upstream (#37702)
-- Ossama Othman <ossama@debian.org> Sat, 15 May 1999 12:45:51 -0500
libtool (1.3-7) unstable; urgency=low
* Updated libtool and libltdl0-dev dependencies to use `gcc | c-compiler'
instead of just `c-compiler'. (#37398)
-- Ossama Othman <ossama@debian.org> Mon, 10 May 1999 14:11:24 -0500
libtool (1.3-6) unstable; urgency=low
* Patched libtool.m4 with upstream fix. (Fixes the if/ifelse issue).
* Fixed libtool-doc.doc-base so that the document ID is libtool-doc.
This appears to make dh_installdocs happier.
* Removed info file removal command from prerm since I accidentally
left it there after I moved it to libtool-doc.prerm.
-- Ossama Othman <ossama@debian.org> Thu, 6 May 1999 21:18:32 -0500
libtool (1.3-5) unstable; urgency=low
* Yet another correction. :(
libltdl's soname is libltdl.so.0 so the libltdl packages should be
called libltdl0 and libltdl0-dev.
-- Ossama Othman <ossama@debian.org> Wed, 5 May 1999 12:43:41 -0500
libtool (1.3-4) unstable; urgency=low
* Reverted my "correction" of the libltdl* package name. The soname
of the libltdl libraries is currently 0.1.1, therefore the libltdl
packages should be named libltdl0.1, according to current Debian
policy.
* Bug fixes/suggestions from Thomas Tanner (thanks Thomas! :)
- Created a seperate libtool-doc package.
- Included ChangeLog.0 in the packages.
- The latest libtool can take advantage of installed libtool
archive (`*.la') files. As such, included `libltdl.la' in
the libltdl0.1-dev package.
-- Ossama Othman <ossama@debian.org> Tue, 4 May 1999 12:33:10 -0500
libtool (1.3-3) unstable; urgency=low
* Added a Conflicts control field for autoconf (< 2.13) and
automake (< 1.4). Many thanks to Adam Di Carlo for pointing out
that 'Conflicts' would provide the desired behavior.
-- Ossama Othman <ossama@debian.org> Mon, 3 May 1999 17:54:44 -0500
libtool (1.3-2) unstable; urgency=low
* Updated "Suggests" control field to suggest autoconf >= 2.13, not just
"autoconf" since libtool >= 1.2f requires autoconf >= 2.13. Autoconf
should *not* be a dependency since some users may use libtool in the
stand-alone fashion, and so shouldn't be forced to install autoconf.
Also updated automake suggestion to "automake (>= 1.4)."
(#37086)
-- Ossama Othman <ossama@debian.org> Mon, 3 May 1999 12:14:54 -0500
libtool (1.3-1) unstable; urgency=low
* New upstream release.
* Corrected libltdl package versions. The correct version is 1.0.
* Updated control area to use doc-base instead of dhelp.
-- Ossama Othman <ossama@debian.org> Thu, 29 Apr 1999 12:04:12 -0500
libtool (1.2f-5) unstable; urgency=low
* One `$echo' command was missing a backslash after it. The text it is
supposed to display is then incorrectly interpreted as a command.
Patch forwarded to upstream maintainers.
(#36282)
-- Ossama Othman <ossama@debian.org> Sun, 18 Apr 1999 16:44:14 -0500
libtool (1.2f-4) unstable; urgency=low
* Accidentally removed libtool HTML documentation during chnage to
debhelper style rules files and control area.
-- Ossama Othman <ossama@debian.org> Thu, 8 Apr 1999 20:40:53 -0500
libtool (1.2f-3) unstable; urgency=low
* Added a preinst script that checks for an existing C compiler at
`/usr/bin/cc'. If one isn't there then it probably means that the
C compiler alternatives got corrupted somehow. ltconfig was
choking during the postinst phase of the libtool installation
on installations that had an invalid C compiler alternative even
though the C compiler dependency was satisfied. (#34676, #35619)
-- Ossama Othman <ossama@debian.org> Thu, 8 Apr 1999 11:46:09 -0500
libtool (1.2f-2) unstable; urgency=low
* Updated debian/rules file to use debhelper.
* Added README.Debian file for the sake of being consistent.
* Created seperate packages for `libltdl'.
* Added cdemo.tar.gz to /usr/doc/libtool/examples.
* Accidentally included Makefile, config.log and config.cache in the
Debian diff. I removed them.
* Updated libtoolize man page to include descriptions of the new
--ltdl and --ltdl-tar command line options.
-- Ossama Othman <ossama@debian.org> Tue, 6 Apr 1999 15:38:46 -0500
libtool (1.2f-1) unstable; urgency=low
* New upstream release (#34644)
* New maintainer upload.
* Added `cpp' to the `Depends' list.
-- Ossama Othman <ossama@debian.org> Fri, 2 Apr 1999 20:06:14 -0600
libtool (1.2d-2) unstable; urgency=low
* Correctly identify MSB Linux shared library magic (closes: #34069).
From Roman Hodek.
-- Gordon Matzigkeit <gord@debian.org> Wed, 3 Mar 1999 11:23:53 -0600
libtool (1.2d-1) unstable; urgency=low
* New upstream release. (closes: #31851)
* Upstream release now incorporates shared library dependencies.
(closes: #18233)
* Add dhelp documentation index support. (closes: #31179)
* Postinst script now handles standard options.
* Move postrm to prerm.
* Add mdemo.tar.gz to /usr/doc/libtool/examples.
-- Gordon Matzigkeit <gord@debian.org> Sat, 13 Feb 1999 08:36:20 -0600
libtool (1.2-3) frozen unstable; urgency=high
* Make libtool package depend on c-compiler. (Fixes: #33105)
-- Gordon Matzigkeit <gord@debian.org> Mon, 8 Jan 1999 22:10:58 -0600
libtool (1.2-2) frozen unstable; urgency=high
* Update config.guess and config.sub from latest glibc snapshots.
(Fixes: #32384, #25779, #25815)
* Exit normally at the end of the postinst script. (Fixes: #24522)
-- Gordon Matzigkeit <gord@debian.org> Sun, 31 Jan 1999 20:31:39 -0600
libtool (1.2-1) unstable; urgency=low
* new upstream release.
-- Frederic Lepied <Lepied@debian.org> Fri, 21 Aug 1998 11:27:43 +0200
libtool (1.0h-5) frozen unstable; urgency=high
* upload to frozen too !!!
-- Frederic Lepied <Lepied@debian.org> Tue, 7 Jul 1998 05:33:17 +0200
libtool (1.0h-4) unstable; urgency=low
* (postinst) build libtool from the /usr/share/libtool directory. Closes Bug#23884.
-- Frederic Lepied <Lepied@debian.org> Mon, 6 Jul 1998 19:49:15 +0200
libtool (1.0h-3) frozen unstable; urgency=high
* (postinst) check if there is a /tmp/libtool. Closes Bug#23884.
-- Frederic Lepied <Lepied@debian.org> Mon, 29 Jun 1998 05:36:22 +0200
libtool (1.0h-2) unstable; urgency=low
* Applied patch from Marcelo E. Magallón to enable Inter-library
dependencies. Fixes Bug#18233.
* Added a man page for libtoolize to correct a lintian error.
-- Frederic Lepied <Lepied@debian.org> Tue, 17 Feb 1998 06:00:58 +0100
libtool (1.0h-1) unstable; urgency=low, closes=15938 14187 15592
* new upstream release (closes Bug#15938 Bug#14187).
* do a make install instead of installing by hand (closes Bug#15592)
-- Frederic Lepied <Lepied@debian.org> Sun, 11 Jan 1998 13:41:05 +0100
libtool (1.0c-1) unstable; urgency=low
* new upstream release.
-- Frederic Lepied <Lepied@debian.org> Sun, 21 Sep 1997 19:37:01 +0200
libtool (1.0b-1) unstable; urgency=low
* new maintainer.
* new upstream version.
-- Frederic Lepied <Lepied@debian.org> Sat, 13 Sep 1997 23:56:38 +0200
libtool (1.0a-2) unstable; urgency=low
* Corrected debian/rules and debian/control for architecture-independence
(bug #12118).
-- Karl Sackett <krs@debian.org> Tue, 19 Aug 1997 10:12:50 -0500
libtool (1.0a-1) unstable; urgency=low
* Latest upstream release. Fixes bug #11177.
* debian/rules: upstream changelog placed in /usr/doc/libtool/changelog.gz
(bug #11596).
-- Karl Sackett <krs@debian.org> Tue, 29 Jul 1997 10:52:41 -0500
libtool (1.0-1) unstable; urgency=low
* Latest upstream release.
* debian/rules: installs all info pages, not just libtool.info.
-- Karl Sackett <krs@debian.org> Thu, 24 Jul 1997 10:09:46 -0500
libtool (0.9-2) unstable; urgency=low
* config.sub: replaced with more current config.sub from autoconf
2.12 (bug #11009).
-- Karl Sackett <krs@debian.org> Mon, 7 Jul 1997 09:25:58 -0500
libtool (0.9-1) unstable; urgency=low
* Latest upstream release.
-- Karl Sackett <krs@debian.org> Thu, 3 Jul 1997 10:08:38 -0500
libtool (0.7-4) unstable; urgency=low
* Incorporated Michael Dorman's patch to support recent versions
of ld (bug #8816).
-- Karl Sackett <krs@debian.org> Mon, 28 Apr 1997 10:06:25 -0500
libtool (0.7-3) unstable; urgency=low
* debian/rules: config.guess, config.sub, ltmain.sh moved to /usr
/share/libtool. libtool.m4 installed in /usr/share/aclocal.
* debian/postinst: configure and install system-specific libtool.
* debian/postrm: remove system-specific libtool.
-- Karl Sackett <krs@debian.org> Thu, 30 Jan 1997 08:21:52 -0600
libtool (0.7-2) unstable; urgency=low
* debian/control: changed architecture to 'any'.
-- Karl Sackett <krs@debian.org> Tue, 14 Jan 1997 11:02:31 -0600
libtool (0.7-1) unstable; urgency=low
* First Debian release.
-- Karl Sackett <krs@debian.org> Mon, 30 Dec 1996 10:36:12 -0600
Local variables:
mode: debian-changelog
add-log-mailing-address: "mckinstry@debian.org"
End:
|