1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919
|
openmpi (3.1.3-11) unstable; urgency=medium
[ Alastair McKinstry ]
* Build-Depend on gfortran | fortran-compiler
* Drop B-D on gcc >= 4, obsolete
* Drop -g flag if compiling with flang
[ Andreas Beckmann ]
* Team upload.
* Add Breaks against mpich and lam predating mpi-$MULTIARCH alternatives.
-- Andreas Beckmann <anbe@debian.org> Tue, 30 Apr 2019 23:40:47 +0200
openmpi (3.1.3-10) unstable; urgency=medium
* Remove obsolete debian/TODO comments
* Include cleanups of alternatives handling by Andreas Beckmann.
Closes: #915025
* Add Breaks: libmpich-dev (<< 3.3~b1-5) to libopenmpi-dev as the mpi
alternatives handling changed.
-- Alastair McKinstry <mckinstry@debian.org> Sun, 20 Jan 2019 13:12:03 +0000
openmpi (3.1.3-9) unstable; urgency=medium
* Re-enable external pmix now that it works with 32-bit systems again.
Closes: #918713.
-- Alastair McKinstry <mckinstry@debian.org> Tue, 08 Jan 2019 19:20:33 +0000
openmpi (3.1.3-8) unstable; urgency=medium
* dh-fortran-mod >= 0.11 to properly remove files on purge.
Closes: #918000, #915025.
* Use internal pmix until pmix pkg works.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 07 Jan 2019 21:19:05 +0000
openmpi (3.1.3-7) unstable; urgency=medium
* Standards-Version: 4.3.0
* Use dh-fortran-mod and place mod files in $fmoddir/openmpi to avoid
collision with mpich. Closes: #917133
* Patch to remove PMIX_MODEX (removed in latest pmix release)
-- Alastair McKinstry <mckinstry@debian.org> Tue, 01 Jan 2019 13:25:39 +0000
openmpi (3.1.3-6) unstable; urgency=medium
* Rebuild with dh-fortran-mod >= 0.6 to fix broken postrm script.
Closes: #916890
-- Alastair McKinstry <mckinstry@debian.org> Thu, 20 Dec 2018 09:23:45 +0000
openmpi (3.1.3-5) unstable; urgency=medium
* Use dh-fortran-mod >= 0.4: insert tracking via Fortran-Mod rather than
Depends. mod file is now placed in /usr/lib/$arch/fortran/gfortran-8
($fmoddir) but also in usual place until gfortan reads $fmoddirOA
-- Alastair McKinstry <mckinstry@debian.org> Tue, 11 Dec 2018 14:14:53 +0000
openmpi (3.1.3-4) unstable; urgency=medium
* More robust alternatives handling. Closes: #915025
* Don't call dpkg-parsechangelog in rules
-- Alastair McKinstry <mckinstry@debian.org> Fri, 07 Dec 2018 13:04:38 +0000
openmpi (3.1.3-3) unstable; urgency=medium
* Use dh-fortran-mod to track Fortran module version
* Change symlink /usr/include/openmpi to /usr/include/$ma/openmpi
-- Alastair McKinstry <mckinstry@debian.org> Wed, 28 Nov 2018 17:08:03 +0000
openmpi (3.1.3-2) unstable; urgency=medium
* Check if mpi alternatives is corrupt. If so, delete. Closes: #912437
* openmpi-dev.postinst: don't call update-alt on abort
* openmpi-bin.postinst: silence grep output on check
-- Alastair McKinstry <mckinstry@debian.org> Wed, 31 Oct 2018 17:12:52 +0000
openmpi (3.1.3-1) unstable; urgency=medium
* New upstream release Closes: #902101
* Drop alioth mailing list (OpenMPI maintainers) from Uploaders.
Closes: #899289.
* Openmpi-bin is not labelled M-A: foreign. Closes: #901874
* preinst, postinst scripts: recast conditionals to allow 'set -e'
* Add Recommends: libopenmpi-dev to openmpi-bin
-- Alastair McKinstry <mckinstry@debian.org> Tue, 30 Oct 2018 16:14:16 +0000
openmpi (3.1.3~rc1-1) experimental; urgency=medium
* New upstream release.
* Build against libpmix 3.1.0rc1
* Drop hard-coded xz compression for tarball
* btl.patch now merged upstream.
* library soname changes:
libmpi 40.10.2 -> 40.10.3
libopen-pal 40.10.2 -> 40.10.3
libopen-rte 40.10.2 -> 40.10.3
libmpi_usempif08. 40.10.1 -> 40.10.2
-- Alastair McKinstry <mckinstry@debian.org> Wed, 24 Oct 2018 16:49:41 +0100
openmpi (3.1.2-7) experimental; urgency=medium
* Test builtin atomics on riscv64
* Compile with gcc-7 on ia64 (ICE on gcc8*)
-- Alastair McKinstry <mckinstry@debian.org> Wed, 17 Oct 2018 12:08:52 +0100
openmpi (3.1.2-6) unstable; urgency=medium
* Fixes for regression (segfaults in liggghts, etc) due to btl patch.
Closes: #905418, #910263
-- Alastair McKinstry <mckinstry@debian.org> Mon, 08 Oct 2018 11:44:08 +0100
openmpi (3.1.2-5) unstable; urgency=medium
* Fix by Nathan Hjelm for hangs on archs with 32-bit atomics tags
Closes: #905418, #907267, #907407
* make openmpi-bin depend on libopenmpi-dev, as its needed for mpicc, etc.
* Drop link-libfabric.patch as obsolete
-- Alastair McKinstry <mckinstry@debian.org> Wed, 03 Oct 2018 13:15:03 +0100
openmpi (3.1.2-4) unstable; urgency=medium
* Reccomend libopencoarrays-openmpi-dev, (and drop opencoarrays-bin), now
that coarrays pkg split to openmpi, mpich parts
* Sanitize build paths from opal_config.h
-- Alastair McKinstry <mckinstry@debian.org> Tue, 18 Sep 2018 07:10:44 +0100
openmpi (3.1.2-3) unstable; urgency=medium
* Regression: don't ship ompi_monitoring_prof.so in libopenmp3.
Closes: #908503.
* Standards-Version: 4.2.1. No changes required
-- Alastair McKinstry <mckinstry@debian.org> Tue, 11 Sep 2018 11:44:22 +0100
openmpi (3.1.2-2) unstable; urgency=medium
* Mark openmpi-common as M-A: foreign
* Fix FTBFS with dpkg-buildpackage -A. Closes: #908148
* Fix pmix dependency on -1 version to -1~.
* Closing old bugs fixed in previous releases:
Closes: #904779
-- Alastair McKinstry <mckinstry@debian.org> Fri, 07 Sep 2018 10:09:52 +0100
openmpi (3.1.2-1) unstable; urgency=medium
* New upstream release
- library changes:
libmpi_mpifh.so.40.10.1 -> libmpi_mpifh.so.40.10.2
libmpi.so.40.10.1 -> libmpi.so.40.10.2
libopen-pal.so.40.10.1 -> libopen-pal.so.40.10.2
libopen-rte.so.40.10.1 -> libopen-rte.so.40.10.2
- hang-fix patch merged upstream
* Re-enable use of external libpix, libevent
* Add Recommends: on open-coarrays (dev and bin packages)
-- Alastair McKinstry <mckinstry@debian.org> Tue, 28 Aug 2018 19:07:54 +0100
openmpi (3.1.1.real-7) unstable; urgency=medium
* Patch from upstream for OMPI/PMIX hang. Closes: #906118
* Change openmpi-common to Arch: all
* Standards-Version: 4.2.0
-- Alastair McKinstry <mckinstry@debian.org> Sun, 19 Aug 2018 19:06:13 +0100
openmpi (3.1.1.real-6) unstable; urgency=medium
* Typo on d/control Breaks. pmix-dev -> pmix2
-- Alastair McKinstry <mckinstry@debian.org> Thu, 09 Aug 2018 15:02:02 +0100
openmpi (3.1.1.real-5) unstable; urgency=medium
* Include zlib1g-dev to build against
* Use internal libpmix, libevent to fix hang on MPI_Abort.
Closes: #904825.
-- Alastair McKinstry <mckinstry@debian.org> Thu, 09 Aug 2018 12:55:50 +0100
openmpi (3.1.1.real-4) unstable; urgency=medium
* Make libopenmpi3 pull in libpmix2 >= 3.0.0-1
-- Alastair McKinstry <mckinstry@debian.org> Wed, 18 Jul 2018 11:20:16 +0100
openmpi (3.1.1.real-3) unstable; urgency=medium
* Patch ext2x to use pmix 3.0
Closes: #903561, #903492, #903549, #903655
* Fix broken symlinks for libmpi_usempif08
-- Alastair McKinstry <mckinstry@debian.org> Sat, 14 Jul 2018 13:47:37 +0100
openmpi (3.1.1.real-2) unstable; urgency=medium
* Use internal pmix (2.1.2rc1) not external which is currently
incompatible. Closes: #903596
* Standards-Version: 4.1.5
-- Alastair McKinstry <mckinstry@debian.org> Thu, 12 Jul 2018 07:18:14 +0100
openmpi (3.1.1.real-1) unstable; urgency=medium
* Real upstream 3.1.1 release (previous was a mislabelled 3.1.1rc2)
-- Alastair McKinstry <mckinstry@debian.org> Mon, 02 Jul 2018 16:14:02 +0100
openmpi (3.1.1-1) unstable; urgency=medium
* New upstream release
* Depend on pmix >= 2.1.2rc1
-- Alastair McKinstry <mckinstry@debian.org> Sun, 01 Jul 2018 17:12:05 +0100
openmpi (3.1.1~git.20180627-1) experimental; urgency=medium
* Nightly tarball to test fix for armel
* Update soversions:
libmpi_mpifh.so.40.10.1
libmpi.so.40.10.1
libmpi_usempif08.so.40.10.1
libmpi_usempi_ignore_tkr.so.40.10.1
libopen-pal.so.40.10.1
libopen-rte.so.40.10.1
* mpi*-wrapper-data.txt is arch-dependent, so:
Set openmpi-common as Arch: any, not all
Drop M-A: foreign from openmpi-bin (which uses it)
-- Alastair McKinstry <mckinstry@debian.org> Wed, 27 Jun 2018 15:53:25 +0100
openmpi (3.1.0-8) unstable; urgency=medium
* Remove powerpc build patch; now obsoleted upstream
* Remove arm64 build patch; now obsoleted upstream
-- Alastair McKinstry <mckinstry@debian.org> Fri, 22 Jun 2018 12:26:38 +0100
openmpi (3.1.0-7) unstable; urgency=medium
* Enable libpsm2. Closes: #901132
-- Alastair McKinstry <mckinstry@debian.org> Sat, 09 Jun 2018 13:36:15 +0100
openmpi (3.1.0-6) unstable; urgency=medium
* Dump libtool on FTBFS for debugging
* Remove -rpath from compiler wrappers,too: Closes: #900069
-- Alastair McKinstry <mckinstry@debian.org> Mon, 28 May 2018 19:46:30 +0100
openmpi (3.1.0-5) unstable; urgency=medium
* Fix overly strong dependencies on openmpi-bin causing upgrade issues.
Closes: #899388
* Remove -rpath flags from pkgconfig files. Closes: #899391
* Add --with-package-string to configure for reproducibility
-- Alastair McKinstry <mckinstry@debian.org> Fri, 25 May 2018 10:15:38 +0100
openmpi (3.1.0-4) unstable; urgency=medium
* Patch to fix underlinking. Closes: #899104
-- Alastair McKinstry <mckinstry@debian.org> Wed, 23 May 2018 15:47:13 +0100
openmpi (3.1.0-3) unstable; urgency=medium
* libmca_common_ofi, monitoring: handle with being arch-dependent.
Closes: 899169
-- Alastair McKinstry <mckinstry@debian.org> Sun, 20 May 2018 20:08:01 +0100
openmpi (3.1.0-2) unstable; urgency=medium
* Include new libs libmca_common_monitoring, ofi. Closes: #899077
-- Alastair McKinstry <mckinstry@debian.org> Sat, 19 May 2018 08:20:20 +0100
openmpi (3.1.0-1) unstable; urgency=medium
* New upstream release
- Java support re-enabled;
- PPC patch no longer needed
* Update soversions: all now 40.10.0
* Need to drop --disable-wrapper-rpath
* Drop --disable-vt; removed in OpenMPI 2.0
* Use simply '--with-libltdl', no args needed
-- Alastair McKinstry <mckinstry@debian.org> Wed, 16 May 2018 17:44:34 +0100
openmpi (3.0.1.real-4) unstable; urgency=medium
* Add patch to support OpenJDK 10
-- Alastair McKinstry <mckinstry@debian.org> Wed, 09 May 2018 15:40:07 +0100
openmpi (3.0.1.real-3) unstable; urgency=medium
* Add kfreebsd, sh4 to the non-Java list (no openjdk-9 support).
Closes: #897452
-- Alastair McKinstry <mckinstry@debian.org> Thu, 03 May 2018 04:49:34 +0100
openmpi (3.0.1.real-2) unstable; urgency=medium
* Builds against openjdk-9 as openjdk-19 (now default) doesn't ship
javah, which we need for java bindings. Closes: #897417
-- Alastair McKinstry <mckinstry@debian.org> Wed, 02 May 2018 15:33:57 +0100
openmpi (3.0.1.real-1) unstable; urgency=medium
* Upgrade from 3.0.1rc5 to real 3.0.1 release. Closes: #896105
* Works on kfreebsd*. Closes: #846635, #873450
* Enable extra debugging on dh_auto_build failure for random FTBFS
* Drop --enable-mpi-thread-multiple as obsolete
* Enable dh --no-parallel
* Depend on pmix >= 2.1.1rc1-4 for full extern support
-- Alastair McKinstry <mckinstry@debian.org> Tue, 01 May 2018 06:33:35 +0100
openmpi (3.0.1-9) unstable; urgency=medium
* Enable verbose output in build. Closes: #896863
-- Alastair McKinstry <mckinstry@debian.org> Tue, 24 Apr 2018 17:47:14 +0100
openmpi (3.0.1-8) unstable; urgency=medium
* Fix for update-alternatives error in postinst. Closes: #896189
-- Alastair McKinstry <mckinstry@debian.org> Tue, 24 Apr 2018 06:31:20 +0100
openmpi (3.0.1-7) unstable; urgency=medium
* Delete old non-mpi alternatives if needed. Closes: #896189
-- Alastair McKinstry <mckinstry@debian.org> Sun, 22 Apr 2018 15:20:35 +0100
openmpi (3.0.1-6) unstable; urgency=medium
* Ship internal libpmix shlib where external is not available
* Ensure arch-dependent build rules are consistent
-- Alastair McKinstry <mckinstry@debian.org> Wed, 18 Apr 2018 06:34:01 +0100
openmpi (3.0.1-5) unstable; urgency=medium
* Fix broken symlink
* PMIX build check reversed; Closes: #895827
* Ack olf bugs fixed: Closes: #877069, #886644
-- Alastair McKinstry <mckinstry@debian.org> Mon, 16 Apr 2018 13:01:55 +0100
openmpi (3.0.1-4) unstable; urgency=medium
* Update hurd patch for pmix (Add MAXPATHLEN)
-- Alastair McKinstry <mckinstry@debian.org> Sat, 14 Apr 2018 07:14:05 +0100
openmpi (3.0.1-3) experimental; urgency=medium
* Re-enable PPC using -O3 as documented upstream
* Add riscv64 to current no-java list
* Add m68k, hurd-i386 to no-pmix list
* rm -f the incorrect symlink in perms; may not be present on kfreebsd
-- Alastair McKinstry <mckinstry@debian.org> Mon, 09 Apr 2018 15:44:23 +0100
openmpi (3.0.1-2) experimental; urgency=medium
* Undo arm_support patch that breaks armel
* Standard-Version: 4.1.4. No changes required
* Don't use pmix on minor archs due to pmix dependencies missing;
(sh4 x32, riscv64, powerpcspe)
* Don't depend on default-jdk on archs which don't use it
* Fix more manpage macros for whatis entries
-- Alastair McKinstry <mckinstry@debian.org> Sun, 08 Apr 2018 16:17:25 +0100
openmpi (3.0.1-1) experimental; urgency=medium
* New upstream release
-- Alastair McKinstry <mckinstry@debian.org> Tue, 03 Apr 2018 15:59:29 +0100
openmpi (3.0.1~rc4-1) experimental; urgency=medium
[ Alastair McKinsty ]
* New upstream release
* Delete obsolete conflicts
* Fix logic in update-alternatives, libopenmpi-dev.prerm
[ Andreas Beckmann ]
* Fix Vcs-* URLs.
* Fix libmca_common_ompio.so.41 symlink.
* Fix *.so -> SONAME symlinks.
-- Alastair McKinstry <mckinstry@debian.org> Thu, 22 Mar 2018 09:22:40 +0000
openmpi (3.0.1~rc2-2) experimental; urgency=medium
* Fix multi-arch alternatives handling. Closes: #889715
* Move mpicc, etc. binaries to openmpi-bin for M-A safe libopenmpi-dev
* Add breaks/conflicts for bin move
-- Alastair McKinstry <mckinstry@debian.org> Mon, 26 Feb 2018 06:05:17 +0000
openmpi (3.0.1~rc2-1) experimental; urgency=medium
* New upstream release
* Disable Java on ia64. Closes: 888286
* Move VCS to point to salsa.debian.org
-- Alastair McKinstry <mckinstry@debian.org> Sun, 04 Feb 2018 10:36:39 +0000
openmpi (3.0.1~rc1-2) experimental; urgency=medium
* Remove obsolete pmix-disable-check.patch
* Remove "--enable-heterogeneous" as buggy. Closes: #886336
* Remove Sylvestre Ledru from Uploaders, with thanks for all the work
he's done. Closes: #886552
* Add MultiArch versioning to mpi alternatives (See #886644)
* Add dependency on openssh-client to openmpi-bin. Closes: #882603
* Ack old bug closed in 3.0.1rc1: Closes: #876142
-- Alastair McKinstry <mckinstry@debian.org> Tue, 23 Jan 2018 16:25:35 +0000
openmpi (3.0.1~rc1-1) experimental; urgency=medium
* New upstream release
* libopenmpi-dev now depends on openmpi-bin; doesn't ship conflicting
etc/ that it depends on
* Standards-Version: 4.1.3; change VCS to https:
* libopenmpi3 no longer conflicts with libopenmpi1 / libopenmpi2
* Now have DH_COMPAT=11
-- Alastair McKinstry <mckinstry@debian.org> Thu, 04 Jan 2018 15:21:01 +0000
openmpi (3.0.0-3) experimental; urgency=medium
* Rebuild against reconfigured pmix.
-- Alastair McKinstry <mckinstry@debian.org> Sun, 26 Nov 2017 08:03:40 +0000
openmpi (3.0.0-2) experimental; urgency=medium
* Build against external pmix. Closes: #881967
* Standatds-Version: 4.1.1
* Change Priority: extra to Priority: optional
* Fix for Hurd FTBFS.
-- Alastair McKinstry <mckinstry@debian.org> Fri, 17 Nov 2017 14:56:53 +0000
openmpi (3.0.0-1) experimental; urgency=medium
* New upstream release;
- Arm detection patch now merged upstream
* Remove obsolete dependency on libcr-dev. Closes: #877009
* Re-enable opalcc.1, opalc++.1 manpages
* Depend on external libevent (2.1 in debian better than internal 2.0.22)
* Change so lib from openmpi -> openmpi3 in libopenmpi3 to avoid collisions
* Include pmix (until separate package is in debian/)
* Drop redundant --parallel --autodev_tools on dh line
* openmpi-bin depends on openssh-client to ensure jobs launch.
Closes: #882603
* Ack. old bug closed with upload: Closes: #876142
-- Alastair McKinstry <mckinstry@debian.org> Sat, 30 Sep 2017 16:56:07 +0100
openmpi (2.1.1-7) unstable; urgency=medium
* Add multistage support to make bootstrappable. Closes: #871243
* Standards-Version: 4.1.0; no changes required
* Typos in package names in rules: openpi -> openmpi
* Move to debhelper level 10; remove dependencies on automake,
autoconf, autotools-dev, libtool
-- Alastair McKinstry <mckinstry@debian.org> Wed, 27 Sep 2017 13:33:11 +0100
openmpi (2.1.1-6) unstable; urgency=medium
* Use --enable-builtin-atomics on s390x. Delete test patch Closes: #865465
-- Alastair McKinstry <mckinstry@debian.org> Thu, 22 Jun 2017 22:46:24 +0100
openmpi (2.1.1-5) unstable; urgency=medium
* Remove Multi-Arch: foreign on -dev. Closes: #865468
* Standards-Version: 4.0.0; no changes required
* Update soversions to fix symlinks:
- libopen-pal 20.10.0 -> 20.10.1
- libopen-rte 20.10.0 -> 20.10.1
- libmca_common_sm 20.10.0 -> 20.10.1
- libmpi_mpifh 20.10.0 -> 20.11.0
Closes: #865471, #865540
* Fix typo in test patch for s390x
-- Alastair McKinstry <mckinstry@debian.org> Thu, 22 Jun 2017 16:18:21 +0100
openmpi (2.1.1-4) unstable; urgency=medium
* Push to unstable
* Test fix for s390x FTBFS
-- Alastair McKinstry <mckinstry@debian.org> Wed, 21 Jun 2017 08:06:45 +0100
openmpi (2.1.1-3) experimental; urgency=medium
* Test patch #3589 for s390x
-- Alastair McKinstry <mckinstry@debian.org> Thu, 01 Jun 2017 14:15:25 +0100
openmpi (2.1.1-2) experimental; urgency=medium
* Add updated patch for x32 detection
* Delete old ignore-cma.patch
-- Alastair McKinstry <mckinstry@debian.org> Mon, 15 May 2017 11:22:44 +0100
openmpi (2.1.1-1) experimental; urgency=medium
* New upstream release
* Add sparc64 to the no-CMA support list
-- Alastair McKinstry <mckinstry@debian.org> Fri, 05 May 2017 12:28:12 +0100
openmpi (2.1.1~rc1-1) experimental; urgency=medium
* New upstream release
- Disable CMA on archs where it fails
- x32 patch now merged upstream
-- Alastair McKinstry <mckinstry@debian.org> Thu, 04 May 2017 16:51:00 +0100
openmpi (2.1.0rc2-2) experimental; urgency=medium
* Patch for arm64 FTBFS
* Patch for mipsel, other FTBFS
-- Alastair McKinstry <mckinstry@debian.org> Thu, 04 May 2017 14:56:55 +0100
openmpi (2.1.0rc2-1) experimental; urgency=medium
* New upstream release
-- Alastair McKinstry <mckinstry@debian.org> Tue, 21 Mar 2017 17:04:18 +0000
openmpi (2.1.0rc1-1) experimental; urgency=medium
* New upstream release
* Update soversion minor versions to 20.10.0
-- Alastair McKinstry <mckinstry@debian.org> Mon, 06 Mar 2017 09:58:38 +0000
openmpi (2.0.2-2) unstable; urgency=medium
* Move to unstable. Closes: #8487574
-- Alastair McKinstry <mckinstry@debian.org> Fri, 10 Feb 2017 05:43:32 +0000
openmpi (2.0.2-1) experimental; urgency=medium
* New upstream release
- opal_fifo.patch obsoleted
- reproducible.patch merged upstream
- libpmix no longer built
* Fix some manpage macros that break whatis.
* Disable rpath generation by mpi wrappers.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 06 Feb 2017 08:44:44 +0000
openmpi (2.0.2~git.20161225-9) unstable; urgency=medium
* Fix incorrect SONAME version in symlink. Closes: #847805
-- Alastair McKinstry <mckinstry@debian.org> Sun, 15 Jan 2017 11:08:14 +0000
openmpi (2.0.2~git.20161225-8) unstable; urgency=medium
* Multiarch support. Closes: #833728, #842881.
-- Alastair McKinstry <mckinstry@debian.org> Sat, 17 Dec 2016 14:17:24 +0000
openmpi (2.0.2~git.20161225-7) unstable; urgency=medium
[ Thibaut Jean-Claude Paumard ]
* Fix opal_fifo test. Closes: #848218.
-- Alastair McKinstry <mckinstry@debian.org> Thu, 15 Dec 2016 13:52:51 +0000
openmpi (2.0.2~git.20161225-6) unstable; urgency=medium
* More hurd fixes: man pages for oshrun need to be conditional.
Closes: #846965.
-- Alastair McKinstry <mckinstry@debian.org> Tue, 13 Dec 2016 07:10:17 +0000
openmpi (2.0.2~git.20161225-5) unstable; urgency=medium
* Updated build_hurd patch, Samuel Thibault. Closes: #846965
* Ack. prevously fixed bug. Closes: #847806
-- Alastair McKinstry <mckinstry@debian.org> Mon, 12 Dec 2016 11:38:15 +0000
openmpi (2.0.2~git.20161225-4) unstable; urgency=medium
* Multiarch support
* Fix manpages
-- Alastair McKinstry <mckinstry@debian.org> Sun, 11 Dec 2016 14:58:34 +0000
openmpi (2.0.2~git.20161225-3) experimental; urgency=medium
* Fix conditional inclusion and linking of liboshmem.so and
libmca_common_ompio.so. Closes: #838623.
* Mark openmpi-doc as Multi-Arch: foreign
* Mark as fixed in previous release: Closes: #845594. #846635
* Invert NO_TEST condition as broken for hppa, i386 in debian/rules
* Forward patches upstream and update comments in patch:
- arm_detection.patch
- x32.patch
- link_libfabric.patch
* Remove obsolete (unapplied) patches from debian/patches/*
* Updates to build_hurd patch from Samuel Thibault Closes: #846965
-- Alastair McKinstry <mckinstry@debian.org> Mon, 05 Dec 2016 10:34:42 +0000
openmpi (2.0.2~git.20161225-2) experimental; urgency=medium
* Add B-D for flex.
* Don't use external libevent in experimental; not threaded
-- Alastair McKinstry <mckinstry@debian.org> Sat, 03 Dec 2016 08:23:29 +0000
openmpi (2.0.2~git.20161225-1) experimental; urgency=medium
* Test build of upstream snapshot for #845594
- ship libpmix and plugins
- orte-submit no longer included
-- Alastair McKinstry <mckinstry@debian.org> Fri, 02 Dec 2016 15:52:04 +0000
openmpi (2.0.1-8) experimental; urgency=medium
* Disable java on hurd-i386. Closes: #842746.
* Test building with psm support on amd64, intel
-- Alastair McKinstry <mckinstry@debian.org> Thu, 03 Nov 2016 09:16:55 +0000
openmpi (2.0.1-7) unstable; urgency=medium
* Link libfabric. Closes: #841643
-- Alastair McKinstry <mckinstry@debian.org> Fri, 21 Oct 2016 19:01:25 +0100
openmpi (2.0.1-6) experimental; urgency=medium
* Enable BTL unit tests
* Build against external libevent (>= 2.1 in experimental)
-- Alastair McKinstry <mckinstry@debian.org> Wed, 14 Sep 2016 05:40:27 +0100
openmpi (2.0.1-5) unstable; urgency=medium
* Fix for wait that breaks mpi4py. Closes: #837536.
* Incorrect SONAME links. Patch thanks to Andread Beckmann.
Closes: #837525
* Build with java bindings on mipsel, but not hppa. Closes: #837446
-- Alastair McKinstry <mckinstry@debian.org> Mon, 12 Sep 2016 07:54:45 +0100
openmpi (2.0.1-4) unstable; urgency=medium
* Fixes for build_hurd. Also, don't run tests on hurd
* Remove buggy ${pkgincludedir} references from pkgconfig files.
Closes: #837062.
* Add Breaks/Replaces for libopenmpi1.6 to -dev. Closes: #837392
-- Alastair McKinstry <mckinstry@debian.org> Sun, 11 Sep 2016 11:32:28 +0100
openmpi (2.0.1-3) unstable; urgency=medium
* libopen-pal.so link broken due to typo.
* Re-enable rest of hurd patch (non hostnamelen parts)
* commit missed: Don't run tests on slow hppa
-- Alastair McKinstry <mckinstry@debian.org> Tue, 06 Sep 2016 10:58:45 +0100
openmpi (2.0.1-2) experimental; urgency=medium
* Fix for powerpc/--enable-mpi-cxx FTBFS.
* Don't run tests on slow hppa
-- Alastair McKinstry <mckinstry@debian.org> Mon, 05 Sep 2016 15:33:00 +0100
openmpi (2.0.1-1) experimental; urgency=medium
* New upstream release
- soversion patch now merged upstream.
- build_hurd patch obsoleted/merged upstream.
- arm patches now merged upstream
- update soversion minor numbers
* Ship libmpi_java shared library
* regression: oshmem ships on Linux only; make conditional in rules
* Make java conditional; not on mipsel (segfaults there, fails on hppa)
* Adapt arm64 atomics patch for new ifdefs.
-- Alastair McKinstry <mckinstry@debian.org> Sun, 04 Sep 2016 16:35:04 +0100
openmpi (2.0.0-6) experimental; urgency=medium
* Fix --with-fabric; regression
-- Alastair McKinstry <mckinstry@debian.org> Thu, 01 Sep 2016 05:36:34 +0100
openmpi (2.0.0-5) experimental; urgency=medium
* More ompi -> opal_ changes; need testing
* --verbs conditional support was also inverted
* conditional syntax: --with-jdk-dir, not --with-jdk
* --enable-builtin-atomics: test against mips, powerpc lockups
-- Alastair McKinstry <mckinstry@debian.org> Wed, 31 Aug 2016 09:24:53 +0100
openmpi (2.0.0-4) experimental; urgency=medium
* Test versioning patch
* Change OMPI_ -> OPAL_ names in patches for opal/ directory;
-- Alastair McKinstry <mckinstry@debian.org> Tue, 30 Aug 2016 02:46:59 +0100
openmpi (2.0.0-3) experimental; urgency=medium
* Remove obsolete /empty patches that were unused from debian/patches
* Build-Depend on pkg-config
* Fix more manpage macros
* Ensure --fabric only used on amd64, i386 not the other way round ...
* Include libmca_common_libfabric.so.20.* library and link
* Create lib*verbs, lib*fabric symlinks only on archs where lib is included.
* Don't ship libmca_*.so files; private interface only.
-- Alastair McKinstry <mckinstry@debian.org> Thu, 04 Aug 2016 04:05:23 +0100
openmpi (2.0.0-2) experimental; urgency=medium
* Build against libfabric only on amd64
* B-D on default-jdk to build java, set --enable-mpi-java
* Fix manpage issues. Merge manpage change patches
* Change ompitrace soname 0 -> 20. Closes: #832235
* Need autotools-dev for ompitrace fix.
* 2.0.0 obsoletes old bug. Closes: #826007
* Fix verbs support on KFreeBSD. Closes: #826202
* ompi now uses gcc atomics where available. Closes: #405929.
* Move .mod files from libopenmpi1.10, libopenmpi2 to -dev.
* Add conflicts/replaces on libopenmpi1.10 to cope.
-- Alastair McKinstry <mckinstry@debian.org> Tue, 02 Aug 2016 12:52:24 +0100
openmpi (2.0.0-1) experimental; urgency=medium
* New upstream release
- Patch refresh.
- Alpha no longer supported in 2.0
- libopenmpi1.10 -> libopenmpi2
- Thread support: now --enable-mpi-thread-support
- libnuma is dropped; discovered through hwloc
- manual page changes for -doc package
* Add Apache license for Java/* code
-- Alastair McKinstry <mckinstry@debian.org> Sun, 17 Jul 2016 08:45:06 +0100
openmpi (1.10.3-3) unstable; urgency=medium
* Fix libmca_common_verbs 7.0.0 -> 7.0.1
* lenny Breaks: add version to libopenmpi1.4
-- Alastair McKinstry <mckinstry@debian.org> Tue, 21 Jun 2016 13:00:37 +0100
openmpi (1.10.3-2) unstable; urgency=medium
Fix missing shlib version change:
* _tkr moved from 6.1.1 -> 6.2.0
-- Alastair McKinstry <mckinstry@debian.org> Thu, 16 Jun 2016 12:46:06 +0100
openmpi (1.10.3-1) unstable; urgency=medium
* New upstream release
- patch opal_thread_add64.patch merged upstream
- mpi_win.patch merged upstream
* Shlib version changes:
- libmpi 12.0.2 -> 12.0.3
- libmpi_mpifh 12.0.0 -> 12.0.1
- libmpi_usempif08 11.1.0 -> 11.1.1
- libmpi_usempi_ignore_tkr 6.1.0 -> 6.2.0
- libopen-pal 13.0.2 -> 13.0.3
- libopen-rte.so 12.0.2 -> 12.0.3
- liboshmem.so 8.1.0 -> 8.1.1
-- Alastair McKinstry <mckinstry@debian.org> Thu, 16 Jun 2016 07:12:57 +0100
openmpi (1.10.2-15) unstable; urgency=medium
* Regression: liboshmem.so.8.1.0 not shipped. Closes: #825575
* Build against libfabric-dev where possible.
* Fix: bad regex check on list meant not building against verbs
on some archs.
-- Alastair McKinstry <mckinstry@debian.org> Thu, 02 Jun 2016 06:44:30 +0100
openmpi (1.10.2-14) unstable; urgency=medium
* Standards-Version: 3.9.8. No changes required
* Reproducible builds: Sort glob'bed filelists.
* Add Breaks/Replaces for libopenmpi1 (lenny upgrade). Closes: #822913.
* Undo mips chrpath workaround. Closes: #818909
* Ack. fixed bug. Closes: #818935.
* Close obsolete bug; cannot occur with openmpi1.10. Closes: 801988.
-- Alastair McKinstry <mckinstry@debian.org> Tue, 24 May 2016 13:31:19 +0100
openmpi (1.10.2-13) unstable; urgency=medium
* Fix chrpath on mips64el, mipsel too. Closes: #818909
-- Alastair McKinstry <mckinstry@debian.org> Sat, 09 Apr 2016 12:14:48 +0100
openmpi (1.10.2-12) unstable; urgency=medium
* Workaround for chrpath problem on mips. Closes: #818909
-- Alastair McKinstry <mckinstry@debian.org> Thu, 07 Apr 2016 14:11:30 +0100
openmpi (1.10.2-11) unstable; urgency=medium
* Typo in install file. Thanks to Patrice DUROUX. Closes: #817020.
-- Alastair McKinstry <mckinstry@debian.org> Tue, 14 Mar 2016 08:03:38 +0000
openmpi (1.10.2-10) experimental; urgency=medium
* test fix for big-endian systems problem on mpi4py
-- Alastair McKinstry <mckinstry@debian.org> Fri, 11 Mar 2016 14:02:42 +0000
openmpi (1.10.2-9) unstable; urgency=medium
* Drop Suggests: for openmpi-checkpoint, which no longer exists.
Closes: #816648.
* libopenmpi1.10: Depend on libhwloc-plugins. Closes: #790540.
* opal_thread_add64.patch: Fix for OPAL_THREAD_ADD64 not
defined on 32-bit systems. Closes: #816303.
* Fix broken symlinks in -dev package. Closes: #817020.
* Fix arch- and bin-only builds (debian/rule). Closes: #816985.
* Drop unreproducible ia64 bug report. Closes: #720419.
-- Alastair McKinstry <mckinstry@debian.org> Wed, 09 Mar 2016 11:00:41 +0000
openmpi (1.10.2-8) unstable; urgency=medium
* Don't ship opal.pc link that conflicts with libopal-dev. Closes: #814515
* openmpi-doc breaks/replaces openmpi-checkpoint (<< 1.10.2).
Closes: #814518.
-- Alastair McKinstry <mckinstry@debian.org> Wed, 17 Feb 2016 11:45:09 +0000
openmpi (1.10.2-7) unstable; urgency=medium
* x32 support from Adam Borowski. Closes: #814332.
-- Alastair McKinstry <mckinstry@debian.org> Wed, 10 Feb 2016 13:40:56 +0000
openmpi (1.10.2-6) unstable; urgency=medium
* libopenmpi-dev recommends openmpi-doc. Closes: #813929.
* Fix formatting errors in man pages. Silences lintian :-)
* Define PATH_MAX in ompi_config.h and other fixes for Hurd.
* Change packages to Arch: any so s390x can build. Closes: #813734.
* Test suite enabled, so Closes: #719896.
* Close old bugs as we now support hppa, s390: Closes: #376833, #389306.
* Build-Conflict on libmpich-dev.
-- Alastair McKinstry <mckinstry@debian.org> Sat, 06 Feb 2016 02:09:58 +0000
openmpi (1.10.2-5) unstable; urgency=medium
* Do not use --with-verbs on s390x.
* Enable test suite. Do initial run as experimental to see what breaks :-(
-- Alastair McKinstry <mckinstry@debian.org> Fri, 05 Feb 2016 11:48:41 +0000
openmpi (1.10.2-4) unstable; urgency=medium
* Change to Arch: any, as s390x, builds. Closes: #813694.
* Standards-Version: 3.9.7
-- Alastair McKinstry <mckinstry@debian.org> Thu, 04 Feb 2016 12:59:21 +0000
openmpi (1.10.2-3) unstable; urgency=medium
* Add missing links to .pc files in /usr/lib/pkgconfig
* Disable --with-verbs on kFreeBSD, Hurd.
* Update openmpi-docs man pages
* Add links for mpifort. Closes: #813060, #813057.
* Fix alternatives in postinst. Closes: #734096
* Delete torque deps in rules; Closes: #769578
* Close old bug - mpicc-wrapper data no longer contains /usr/lib.
Closes: #812991.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 01 Feb 2016 18:41:01 +0000
openmpi (1.10.2-2) unstable; urgency=medium
* libopenmpi1.10 conflicts with libopenmpi1.6. Closes: #813042.
* Fixes for hppa, hurd patches.
* checkpoint/restart disabled - lack of upstream maintenance support
since 1.7+.
* Drop references to tools no longer shipped in 1.10.2
* oshmem only supported on Linux, so only try to install on Linux, not
Hurd or KFreeBSD
-- Alastair McKinstry <mckinstry@debian.org> Fri, 29 Jan 2016 04:29:18 +0000
openmpi (1.10.2-1) experimental; urgency=medium
* New upstream release.
Closes: #753001, #796982, #796985, #659134, #657625, #584702,
Closes: #579505.
LP: #1365152, #1390198
* Patch refresh:
- ompi_autogen_sh.patch. Disabled as unnecessary
- fix-bashims.diff: upstream code removed
- fix-testsuite-compile: fixed upstream
- mips-support-upstream-1.7.3.diff: fixed upstream
- mips-support-fix.diff: ditto
- ppc64el-support.patch: ditto
* Change package names 1.6 -> 1.10
* Close Ophaning bug. Set myself as Maintainer, team as Uploaders.
Closes: #810079.
* Include HPPA support from Helge Deller. Closes: #776730.
* Replace __DATE__ with $(DEBIAN_VERSION) in debug output to make
build bit-reproducible.
* libopenmp1.6 recommends openmpi-common; needed for programs to run.
LP: #398095.
* Ack. that torque support is dropped. Closes: #767411. Presume that
openmpi will be informed if a new Torque is introduced to stretch,++.
* Set --with-ldtl=/usr/ not external; not detected otherwise ?
* Drop -dbg package as automatic -dbsym packages now generated.
-- Alastair McKinstry <mckinstry@debian.org> Tue, 26 Jan 2016 11:23:11 +0000
openmpi (1.6.5-11) unstable; urgency=medium
* Build against gcc,gfortran5 for transition.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 10 Aug 2015 07:55:56 +0100
openmpi (1.6.5-10) unstable; urgency=medium
* Acknowledge taking maintainership. Closes: #766859.
* Ack. patch from Willi Mann that fixes FTBFS. Closes: #782653.
* Move to debhelper compatabililty level 9.
* Use 'xz' compression
* Depend on libibverbs >= 1.1.7 for libibverbs ABI change (From Ubuntu)
-- Alastair McKinstry <mckinstry@debian.org> Mon, 22 Jun 2015 18:56:29 +0100
openmpi (1.6.5-9.2) unstable; urgency=medium
* Non-maintainer upload.
* libopenmpi1.6: Fix two incorrect soname links. (Closes: #736675)
* openmpi-common: Set Multi-Arch: foreign. (Closes: #769378)
-- Andreas Beckmann <anbe@debian.org> Tue, 25 Nov 2014 12:42:38 +0100
openmpi (1.6.5-9.1) unstable; urgency=medium
* Non-maintainer upload.
* Disable torque support (see #767411).
-- Julien Cristau <jcristau@debian.org> Fri, 14 Nov 2014 17:57:11 +0100
openmpi (1.6.5-9) unstable; urgency=medium
* Add myself as uploader.
* Standards-Version: 3.9.6; no changes required.
* Rebuild against lastest gfortran. Closes: #647908, #675115.
* Patch for mpi.pc support. Closes: #752785.
* Patch from Michael Cree to fix bad atomic ops on Alpha that
causes mpi4py to segfault. Closes: #754524.
-- Alastair McKinstry <mckinstry@debian.org> Tue, 28 Oct 2014 11:07:44 +0000
openmpi (1.6.5-8) unstable; urgency=low
[ Dimitri John Ledkov ]
* Set ppc64el gnu-type to use ppc atomics code-path.
* Attempt ppc64el build.
[ Sylvestre Ledru ]
* Sync changes from Ubuntu (it would be nice to have contribution
directly in Debian btw)
* Fix a link issue on libopen-pal.so (Closes: #733086)
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 26 Dec 2013 14:29:07 +0100
openmpi (1.6.5-7) unstable; urgency=low
[ Logan Rosen ]
* Bring over Ubuntu changes from openmpi1.6:
- Call dh_shlibdeps with -lfoo to not break fakeroot.
- Add basic AArch64 support (Leif Lindholm).
- Use and install AArch64 header files, not ARM header files.
[ Adam Conrad ]
* Remove unnecessary fakeroot from dh_shlibdeps call.
-- Sylvestre Ledru <sylvestre@debian.org> Wed, 18 Dec 2013 12:10:47 -0500
openmpi (1.6.5-6) unstable; urgency=low
* Add the support of mips64 & mips64el. (Closes: #727141)
Thanks to YunQiang Su
* Also support of mips & mipsel. Thanks to Jurica Stanojkovic
(Closes: #732027)
* Fix an upgrade issue (Closes: #730622)
* Standards-Version updated to 3.9.5
-- Sylvestre Ledru <sylvestre@debian.org> Wed, 04 Dec 2013 18:14:59 +0100
openmpi (1.6.5-5) unstable; urgency=low
* Fix the incorrect symlink in libopenmpi1.6 (Closes: #722888)
-- Sylvestre Ledru <sylvestre@debian.org> Sat, 14 Sep 2013 18:54:05 +0200
openmpi (1.6.5-4) unstable; urgency=low
* Fix again the HURD build. Thanks to Pino Toscano (Closes: #720395)
* orte_snapc manpage has moved from openmpi-checkpoint to openmpi-doc
(Closes: #717978)
-- Sylvestre Ledru <sylvestre@debian.org> Wed, 28 Aug 2013 08:54:09 +0200
openmpi (1.6.5-3) unstable; urgency=low
* Increase the priority of the libopenmpi-dev package to make sure OpenMPI
is used before mpich. Otherwise, it causes issues like:
«PKGBUILDDIR»/./src/mpi.c:143: undefined reference to `ompi_mpi_comm_world'
«PKGBUILDDIR»/./src/mpi.c:143: undefined reference to `ompi_mpi_double'
-- Sylvestre Ledru <sylvestre@debian.org> Tue, 20 Aug 2013 13:39:25 +0200
openmpi (1.6.5-2) unstable; urgency=low
* Update of the HURD port (Closes: #719797)
* Fix path mistakes on libmpi_f90 (Closes: #720124)
-- Sylvestre Ledru <sylvestre@debian.org> Sat, 17 Aug 2013 19:35:24 +0200
openmpi (1.6.5-1) unstable; urgency=low
* Upload to unstable (will need a transition)
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 15 Aug 2013 08:55:11 +0200
openmpi (1.6.5-1~exp2) experimental; urgency=low
* quilt as dependency is not necessary
* Limit the usage of libibverbs-dev on Linux kernels
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 11 Jul 2013 09:36:23 +0200
openmpi (1.6.5-1~exp1) experimental; urgency=low
* New upstream release
* Build-Conflicts libopenmpi1.3 (avoid wrong dependencies)
-- Sylvestre Ledru <sylvestre@debian.org> Mon, 01 Jul 2013 09:43:57 +0200
openmpi (1.6.4+-1~exp1) experimental; urgency=low
* Upload the 1.6 release over the 1.4
Note that this will require a transition
* Standards-Version updated to 3.9.4
* Add libfakeroot path to the LD_LIBRARY_PATH
-- Sylvestre Ledru <sylvestre@debian.org> Tue, 04 Jun 2013 17:16:16 +0200
openmpi1.6 (1.6.4-2) unstable; urgency=low
* Inconsistency in debian/libopenmpi1.6.install.
Thanks Hiroyuki Yamamoto (Closes: #704936)
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 11 Apr 2013 16:02:35 +0200
openmpi1.6 (1.6.4-1) unstable; urgency=low
* New upstream release
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 22 Feb 2013 09:27:09 +0100
openmpi1.6 (1.6.3-3) unstable; urgency=low
* Rename manpages to avoid conflicts with mpich2-doc (Closes: #692937)
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 16 Nov 2012 17:42:56 +0100
openmpi1.6 (1.6.3-2) unstable; urgency=low
* Bring back manpages for MPI functions (LP: #1027289)
* Remove mca_rml_ftrm.so on ia64 & sparc
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 09 Nov 2012 14:09:11 +0100
openmpi1.6 (1.6.3-1) unstable; urgency=low
* New upstream release
* Fix bashims (Closes: #690929)
* Remove mca_pml_crcpw.so on ia64 & sparc
-- Sylvestre Ledru <sylvestre@debian.org> Wed, 07 Nov 2012 11:50:54 +0100
openmpi1.6 (1.6.2-2) unstable; urgency=low
* Remove mca_grpcomm_hier.so on all archs
-- Sylvestre Ledru <sylvestre@debian.org> Sat, 29 Sep 2012 14:03:42 +0200
openmpi1.6 (1.6.2-1) unstable; urgency=low
* New upstream release
* Add dpkg-dev (>= 1.16.1~) dependency (hardening)
* Enable hardening flags (but not taken in account everywhere)
-- Sylvestre Ledru <sylvestre@debian.org> Sat, 29 Sep 2012 09:40:58 +0200
openmpi1.6 (1.6.1-1) unstable; urgency=low
* New upstream release
* Some libs have been removed from upstream: mca_rmcast_tcp.so,
mca_rmcast_udp.so & mca_io_romio.so
* Remove fix_orte_default_hostfile_path.diff (applied upstream)
* Switch to automake as build dependency
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 23 Aug 2012 15:49:02 +0200
openmpi1.6 (1.6-4) unstable; urgency=low
* Update library list for sparc & ia64
* --enable-mpi-threads -> --enable-opal-multi-threads
* --enable-ft-thread is needed to have a similar level of checkpointing as
before
Thanks to Matthieu Volat for the two last changes
-- Sylvestre Ledru <sylvestre@debian.org> Sun, 01 Jul 2012 14:38:42 +0200
openmpi1.6 (1.6-3) unstable; urgency=low
* Try another change in the detection of armel (v5 instead of v6)
* Fix a problem in the default hostfile with orte. Thanks to Matthieu Volat
for the patch
* Update lib library for sparc, armhf and armel
-- Sylvestre Ledru <sylvestre@debian.org> Wed, 27 Jun 2012 22:34:28 +0200
openmpi1.6 (1.6-2) unstable; urgency=low
* Update the detection of armel & armhf (See arm_detection.diff)
* Add the dependency on hwloc-dev from libopenmpi1.6-dev (Closes: #677744)
-- Sylvestre Ledru <sylvestre@debian.org> Mon, 25 Jun 2012 13:47:07 +0200
openmpi1.6 (1.6-1) unstable; urgency=low
* Sync from Ubuntu (which has been uploaded with a new name).
* Rename openmpi 1.5 => 1.6
* Standards-Version updated to version 3.9.3
-- Sylvestre Ledru <sylvestre@debian.org> Wed, 06 Jun 2012 17:45:07 +0200
openmpi1.5 (1.5.4-0ubuntu1) precise; urgency=low
[ Robie Basak ]
* Fork new openmpi1.5 package for co-existence with openmpi 1.4
(LP: #889644).
* Move required plugins from openmpi-checkpoint to libopenmpi1.5-2:
- d/control: openmpi-checkpoint now depends on libopenmpi1-5-2
- d/libopenmpi1.5-2.install*: switch to wildcard plugin install, drop
specific install files for armel and armhf.
- d/openmpi-checkpoint.install: Don't install any plugins.
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 18 May 2012 17:06:10 +0200
openmpi (1.5.4-2~exp2) experimental; urgency=low
[ Manuel Prinz ]
* Fixed dangling symlinks. Thanks to Roderich Schupp for the patch!
Closes: #658594.
[ James Pages ]
* The checks for FAKEROOT introduced to fix this bug upstream are
preceeded by a new check that calls stat re-producing the original bug.
Re-ordering the checks to ensure that FAKEROOT is detected first
appears to resolve this issue.
Closes: #658600.
-- Sylvestre Ledru <sylvestre@debian.org> Sun, 19 Feb 2012 15:42:41 +0100
openmpi (1.5.4-2~exp1) experimental; urgency=low
[ Manuel Prinz ]
* Moved all CR components from libopenmpi2 to openmpi-checkpoint. Fixes the
build issue on ia64.
[ Jani Monoses ]
* Build for armhf as well.
* Add armel/armhf specific libopenmpi2.install files.
* debian/patches/configure_arm_fix.patch: Fix arm FTBFS.
-- Sylvestre Ledru <sylvestre@debian.org> Tue, 24 Jan 2012 16:34:52 +0100
openmpi (1.5.4-1) experimental; urgency=low
* New upstream release. Closes: #619998.
- ABI changes, bumped SONAME.
* Changes in packaging:
- Using "3.0 (quilt)" source format.
- Deleted README.source (obsolete).
- Updated watch file.
- Bumped Standards-Version to 3.9.2. No changes needed.
- Changed hard-coded list of non-Linux architectures in Build-Depends to
"linux-any". Closes: #634628.
- openmpi-bin now "Suggests" openmpi-checkpoint instead of recommending it.
- Deleted shlibs.local (obsolete).
- Updated debian/copyright.
- Updated patches.
- Substituted "OpenMPI" with "Open MPI" (official writing).
- Fixed a small bug when calling dh_installdocs. Thanks to Jean-Louis Dupond
for the patch! Closes: #634899.
- Dropped .la files (no rdepends with .la files). Closes: #628070.
- Build against libltdl and libhwloc provided by Debian.
* Acknowledge NMU. Thanks to Riku Voipio!
* Builds support for GridEngine. Closes: #626164.
* Enabled support for MPI threads. Closes: #602132.
-- Manuel Prinz <manuel@debian.org> Wed, 21 Dec 2011 00:38:25 +0100
openmpi (1.4.3-2.1) unstable; urgency=low
* Non-maintainer upload
* Add openmpi link fix, closes: #621978
- Thanks to Daniel Schepler <dschepler@gmail.com>
* Add arm support from ubuntu, closes: #617779
- Thanks to Jani Monoses <jani@ubuntu.com>
-- Riku Voipio <riku.voipio@iki.fi> Wed, 20 Apr 2011 19:53:03 +0300
openmpi (1.4.3-2) unstable; urgency=low
* Fixed symlinks for shared libraries. Thanks to Matthias Klose
for the patch! Closes: #608717, #609830.
* Fixed symlink loop in openmpi-checkpoint. Closes: #611454.
-- Manuel Prinz <manuel@debian.org> Fri, 11 Mar 2011 14:45:20 +0100
openmpi (1.4.3-1) unstable; urgency=low
* New upstream release.
* Removed the following patches, all applied upstream:
- build_kfreebsd
- manpage-errors-checkpoint
- manpage-errors-macro
- manpage-errors-whatis
- manpage-spelling-errors
- var-copy
* Added a patch that fixes man page issues.
* Added sparc64 to Architecture list. Thanks to Aurelien Jarno for
the patch! Closes: #596134.
-- Manuel Prinz <manuel@debian.org> Wed, 15 Dec 2010 18:50:16 +0100
openmpi (1.4.2-4) unstable; urgency=low
* Added patch to remove use of AS_VAR_GET. Closes: #592892.
* debian/control: Added powerpcspe to architecture list. Thanks to
Sebastian Andrzej Siewior for the patch! Closes: #593481.
* Build with support for Torque (except on HURD). Closes: #592887.
* Updated Standards-Version to 3.9.1. No changes needed.
-- Manuel Prinz <manuel@debian.org> Wed, 01 Sep 2010 17:53:44 +0200
openmpi (1.4.2-3) unstable; urgency=low
* Fixed build issue on kFreeBSD. Closes: #589467.
* Added and updated patch meta-information.
-- Manuel Prinz <manuel@debian.org> Tue, 20 Jul 2010 17:31:52 +0200
openmpi (1.4.2-2) unstable; urgency=low
* Fixed broken broken library symlinks. Closes: #589319.
-- Manuel Prinz <manuel@debian.org> Fri, 16 Jul 2010 20:49:24 +0200
openmpi (1.4.2-1) unstable; urgency=low
* New upstream release. Closes: #585800.
* Updated patches.
* Updated Standards-Version. No changes needed.
* Install previously uninstalled files. Closes: #589043.
* Fixed several errors in man pages.
-- Manuel Prinz <manuel@debian.org> Thu, 15 Jul 2010 17:19:23 +0200
openmpi (1.4.1-3) unstable; urgency=low
* Added slave alternatives symlinks for MPI FORTRAN libraries.
Thanks to Adam C. Powell, IV for the patch! Closes: #563705.
* Recommend openmpi-checkpoint only on available architectures.
* Increased update-alternatives priority of libopenmpi-dev.
-- Manuel Prinz <manuel@debian.org> Thu, 25 Mar 2010 16:32:21 +0100
openmpi (1.4.1-2) unstable; urgency=low
* Fixed build issues on HURD. Thanks to Pino Toscano for the patch!
Closes: #552397.
* Recreate autotools stuff during build. Added autoconf, automake,
libtool and libltdl-dev to Build-Depends.
* openmpi-checkpoint now depends on blcr-util. Closes: #572229.
* Fixed symlink issues with ompi-{checkpoint,restart}. Closes: #572021.
* Retroactively adding LP entries to close bugs in Ubuntu's Launchpad.
-- Manuel Prinz <manuel@debian.org> Thu, 18 Mar 2010 17:57:30 +0100
openmpi (1.4.1-1) unstable; urgency=low
[ Sylvestre Ledru ]
* New upstream release. Libtool patch removed, included upstream.
* Watch file updated.
[ Manuel Prinz ]
* Bumped Standards-Version to 3.8.4. No changes needed.
* Updated section on alternatives in README.Debian.
* Removed conflict with libopal-dev in libopenmpi-dev. Closes: #559161.
* Removed conflict with ancient pgapack in libopenmpi-dev.
* Fixed several spelling-error-in-manpage lintian warnings.
* Deleted man pages provided by Debian, all included upstream.
* Changed .install files to match soname bumps. The soname bumps were
introduced by upstream to follow the libtool versioning guidelines.
The ABI did not change and recompilations of rdepends are not needed.
* Compile with support for heterogeneous environments and memory affinity.
LP: #419074.
* Provide symlinks for orte-{checkpoint,restart} for smoother transition.
The tools were merged with ompi-{checkpoint,restart}.
* Added ${misc:Depends} everywhere so lintian is happy.
-- Manuel Prinz <manuel@debian.org> Tue, 16 Feb 2010 17:59:12 +0100
openmpi (1.3.3-4) unstable; urgency=medium
* Fixed security issue in copy of libtool, see CVE-2009-3736.
Closes: #559836.
-- Manuel Prinz <manuel@debian.org> Tue, 08 Dec 2009 00:58:02 +0100
openmpi (1.3.3-3.1) unstable; urgency=low
* Non-maintainer upload with the maintainer's permission.
* Improve alternatives upgrade.
-- Lucas Nussbaum <lucas@lucas-nussbaum.net> Thu, 19 Nov 2009 16:44:20 -0600
openmpi (1.3.3-3) unstable; urgency=low
* Removed mpiexec alternative, as discussed in #552429. It is now a slave
of the mpirun master alternative. Also raised the priority to 40, along
with MPICH2. Closes: #493876.
-- Manuel Prinz <manuel@debian.org> Wed, 11 Nov 2009 21:16:59 +0100
openmpi (1.3.3-2) unstable; urgency=low
* Removing ancient mpirun alternatives in preinst. Closes: #534740, #544372.
* Build with BLCR support on supported architectures. The openmpi-checkpoint
package includes the binaries for checkpointing and documentation. Many
thanks to Alan Woodland for the implementation! Closes: #545919.
* Added a README.source file.
* Empty dependency_libs in .la files.
-- Manuel Prinz <manuel@debian.org> Tue, 13 Oct 2009 20:50:51 +0200
openmpi (1.3.3-1) unstable; urgency=low
* New upstream version
* Change of my email address since I am now DD
* Standards-Version updated to 3.8.3
* XS-Dm-Upload-Allowed tag removed
* Patch disable-memory-allocator (see bug #531522) removed. Applied upstream
-- Sylvestre Ledru <sylvestre@debian.org> Sat, 29 Aug 2009 18:39:48 +0200
openmpi (1.3.2-4) unstable; urgency=low
[ Cyril Brulebois ]
* Fix installability of libopenmpi-dev on non-Linux architectures, where
libibverbs-dev isn't built (due to its being Linux-specific) by removing
the latter from the dependencies of the former for kfreebsd-* and
hurd-i386 (for reference, that was already done for Build-Depends).
(Closes: #535225)
-- Sylvestre Ledru <sylvestre.ledru@inria.fr> Tue, 30 Jun 2009 23:52:42 +0200
openmpi (1.3.2-3) unstable; urgency=low
* Re-uploading, as last upload was not successful.
* Acknowledgement of NMU. Thanks to Steve M. Robbins for the patches and
NMUs! Closes: #531522.
* Removing ancient mpicc, mpiCC and mpiexec master alternatives in preinst.
Closes: #531184, #532008, #532910.
* debian/control: Bumped Standards-Version. No changes needed.
* Fixed typo in README.Debian of openmpi-bin.
-- Manuel Prinz <manuel@debian.org> Wed, 24 Jun 2009 00:33:23 +0200
openmpi (1.3.2-2.2) unstable; urgency=low
* Non-Maintainer Upload (NMU)
* debian/patches/disable-memory-allocator: Replace with improved patch
from upstream.
-- Steve M. Robbins <smr@debian.org> Sun, 21 Jun 2009 13:08:05 -0500
openmpi (1.3.2-2.1) unstable; urgency=low
* Non-Maintainer Upload (NMU)
* debian/patches/disable-memory-allocator: New. Patch
opal/mca/memory/ptmalloc2/hooks.c to add check for environment
variable OMPI_MCA_disable_memory_allocator. If set, avoid setting up
malloc hooks and avoid stat() calls from the malloc init hook.
Closes: #531522.
-- Steve M. Robbins <smr@debian.org> Wed, 17 Jun 2009 22:03:31 -0500
openmpi (1.3.2-2) unstable; urgency=low
* Upload to unstable. No changes compared to 1.3.2-1.
-- Manuel Prinz <manuel@debian.org> Thu, 28 May 2009 12:28:37 +0200
openmpi (1.3.2-1) experimental; urgency=low
* New upstream release. (Closes: #520597, #515116)
- Manpage and VampirTrace patches removed, included upstream.
* Fixed build issues on Alpha. Huge thanks to Arthur Loiret for providing
access to his machines for testing! (Closes: #510845, #517543)
* Fixed build issues on Sparc. (Closes: #519725)
* Fixed manpage-has-errors-from-man lintian warnings.
* Faked SONAME change by renaming library package. (Closes: #512616)
* Made libopenmpi-dev depend on libibverbs-dev. (Closes: #522153, LP: #342344)
* Support for "nocheck" build option in debian/rules.
* Updated Standards-Version in debian/control.
* Changed section of libopenmpi-dbg to "debug".
* Updated debian/copyright.
* Dirk Eddelbuettel removed himself from Uploaders. The team thanks Dirk
for his long-term contribution and effort to get Open MPI back to life.
I personally thank Dirk for encouraging me to become a Debian Developer
and his support and mentoring on that way and beyond.
-- Manuel Prinz <manuel@debian.org> Thu, 23 Apr 2009 14:01:21 +0200
openmpi (1.3-2) unstable; urgency=low
* Updated debian/watch to point to 1.3 series download location
* Added a patch to fix build issues with VampirTrace
* Added a patch to fix lintian warnings: manpage-has-errors-from-man
* Added a patch to enable Open MPI to build on MIPS. Many thanks to
Thiemo Seufer, he will be missed!
-- Manuel Prinz <manuel@debian.org> Wed, 28 Jan 2009 23:38:02 +0100
openmpi (1.3-1) unstable; urgency=low
[ Dirk Eddelbuettel ]
* New upstream version.
* debian/rules: Pass empty LDFLAGS to configure call to prevent seg.fault.
on load due to overly hungry link command on Ubuntu
[ Manuel Prinz ]
* Header files are now available under /usr/include/openmpi via symlink
(Closes: #493875)
-- Dirk Eddelbuettel <edd@debian.org> Tue, 20 Jan 2009 20:10:20 -0600
openmpi (1.2.8-3) unstable; urgency=low
* Building static libraries (again) (Closes: #502232)
* Removed *.so files from libopenmpi-dev package (Closes: #504161)
-- Manuel Prinz <manuel@debian.org> Sun, 02 Nov 2008 15:53:19 +0100
openmpi (1.2.8-2) unstable; urgency=low
* Reverted back to revision r137 corresponding to Debian release 1.2.7-1
(Closes: #504161)
-- Dirk Eddelbuettel <edd@debian.org> Sat, 01 Nov 2008 17:37:07 -0500
openmpi (1.2.8-1) unstable; urgency=low
* New upstream version.
* libopenmpi-dev ships static libraries (Closes: #502232)
* Remaining lintian warnings removed
-- Sylvestre Ledru <sylvestre.ledru@inria.fr> Tue, 28 Oct 2008 23:49:37 +0200
openmpi (1.2.7-1) unstable; urgency=low
* New upstream version.
[ Sylvestre Ledru ]
* debian/control: Added myself to Uploaders field
[ Manuel Prinz ]
* debian/control: Changed my email address in Uploaders field
-- Manuel Prinz <manuel@debian.org> Wed, 24 Sep 2008 21:22:35 +0200
openmpi (1.2.7~rc2-2) unstable; urgency=low
* Updated README.Debian of libopenmpi-dev. It contained references to closed
bugs. Also added a recommendation on correct linking.
* debian/control: Removed XS-Autobuild field
* debian/copyright: Added missing copyrights and licenses for ROMIO and
GNU libltdl
-- Manuel Prinz <debian@pinguinkiste.de> Mon, 25 Aug 2008 22:41:16 +0200
openmpi (1.2.7~rc2-1) unstable; urgency=low
[ Dirk Eddelbuettel ]
* New upstream pre-release version
* Thanks to Manuel for the work on this release, and on 1.2.6-3 which
we never uploaded, and to the Open MPI team for the integrating the patch
from 1.2.6-3 into what will be 1.2.7
[ Manuel Prinz ]
* debian/control: Changed Standards-Version to 3.8.0
* Deleted all patches, removed Build-Depends of dpatch
-- Dirk Eddelbuettel <edd@debian.org> Wed, 02 Jul 2008 19:08:07 -0500
openmpi (1.2.6-3) unstable; urgency=low
[ Manuel Prinz ]
* debian/patches/01openfabrics.dpatch: Applied patch by Jeff Squyres that
deals with the warnings printed when OpenFabrics hardware is not present.
Thanks to Jeff for the patch!
* debian/patches/10fix_config_infiniband.dpatch: Removed, it's obsoleted
by the above mentioned OpenFabrics patch.
* Updated README.Debian with information about the OpenFabrics patch.
* debian/patches/02manpages-lintian-fix.dpatch: Applied patch another patch
by Jeff Squyres that fixes Lintian manpage-has-errors-from-man issues.
Thanks again to Jeff for the patch!
-- Manuel Prinz <debian@pinguinkiste.de> Sat, 31 May 2008 23:49:13 +0200
openmpi (1.2.6-2) unstable; urgency=low
[ Sylvestre Ledru ]
* Can be built under ppc64. Thanks to Andreas Jochens (Closes: #478427)
[ Dirk Eddelbuettel ]
* Built and uploaded. Thanks to Sylvestre for applying the patch.
-- Dirk Eddelbuettel <edd@debian.org> Mon, 05 May 2008 07:16:49 -0500
openmpi (1.2.6-1) unstable; urgency=low
[ Dirk Eddelbuettel ]
* New upstream version
* debian/patches/00list: Disabled man page patches 60* which
has been included upstream in version 1.2.6
-- Dirk Eddelbuettel <edd@debian.org> Tue, 08 Apr 2008 20:19:24 -0500
openmpi (1.2.5-3) unstable; urgency=low
[ Dirk Eddelbuettel ]
* debian/control: Version the Conflicts: of libopenmpi-dev with pgapack to
'pgapack (<= 1.0.0.1-4.2)' as newer pgapack do not exhibit a conflict.
-- Dirk Eddelbuettel <edd@debian.org> Mon, 10 Mar 2008 16:55:37 -0500
openmpi (1.2.5-2) unstable; urgency=low
[ Dirk Eddelbuettel ]
* Debian build and upload
* Thanks to Manuel for all the work, and to Ondrej for persistent debugging.
[ Manuel Prinz ]
* Added missing ${shlibs:Depends} to Depends: line of libopenmpi-dev
* debian/shlibs.local: Added entry for libibverbs until the package provides
the necessary information. (Closes: #464705)
* debian/control: Added versioned dependency to libibverbs in Build-Depends
* debian/libopenmpi-dev.postinst: Corrected dead symlinks. Thanks to Ondrej
Certik for reporting the issue! (Closes: #464795)
* debian/patches/60_fix_manpage_name_section.dpatch: Fixing name line in the
MPI_Comm_f2c.3 manpage. Thanks to Jeff Squyres!
-- Dirk Eddelbuettel <edd@debian.org> Thu, 14 Feb 2008 20:54:06 -0600
openmpi (1.2.5-1) unstable; urgency=low
[ Dirk Eddelbuettel ]
* New upstream version
* debian/patches/00list: Disabled man page patches 20*, 30* and 31* which
have been included upstream
* debian/patches/60_fix_manpage_name_section.dpatch: Applied small correction
* Debian build and upload
[ Manuel Prinz ]
* debian/*.lintian-override: Deleted, all issues are fixed
- debian/libopenmpi{1,-dev}.links, debian/libopenmpi1.install:
Moved *.so.0 links from /usr/lib/openmpi/lib to /usr/lib. Created
*.so.0.0.0 symlinks in /usr/lib, pointing to /usr/lib/openmpi/lib.
This fixes postinst-has-useless-call-to-ldconfig, postrm-has-useless-
call-to-ldconfig and package-name-doesnt-match-sonames warnings.
- debian/rules, debian/control: Added chrpath to Build-Depends and
deleting all rpath info with chrpath in install-arch target. This
fixes all binary-or-shlib-defines-rpath warnings.
* debian/rules: Adjusted target dependencies to be more sane. Renamed
"test" target to "check".
* Applied a patch by Adam Powell IV that adds /usr/lib/libmpi++.so via
update-alternatives for compatibility with LAM/MPI and MPICH. Thanks to
Adam for the patch! (Closes: #459642)
-- Dirk Eddelbuettel <edd@debian.org> Wed, 09 Jan 2008 16:30:33 -0600
openmpi (1.2.4-5) unstable; urgency=low
[ Manuel Prinz ]
* Several changes in the libopenmpi-dev package to correct the library
soname links (Closes: #456721)
[ Dirk Eddelbuettel ]
* Debian build and upload
-- Dirk Eddelbuettel <edd@debian.org> Tue, 18 Dec 2007 20:00:53 -0600
openmpi (1.2.4-4) unstable; urgency=low
[ Manuel Prinz ]
* debian/rules: Several minor changes
- Added cross-compilation support
- Replaced (un)patch targets with dpatch's makefile snippet
* debian/control: Changed Standards-Version to match latest policy
* debian/control: Several cosmetic changes to control fields
- XS-Vcs-*: Renamed fields to Vcs-*
- XS-DM-Upload-Allowed: Added, allowing uploads for Debian Maintainers
- Homepage: Newly added
- Build-Depends: Removed libsysfs-dev (Closes: #449084)
- Build-Depends: Removed automake
- Uploaders: Added myself
* Moved include files and libraries to /usr/lib/openmpi and use the "mpi"
alternative. Thanks to Nicholas Breen for assistance! (Closes: #452047)
[ Dirk Eddelbuettel ]
* Debian build and upload
-- Dirk Eddelbuettel <edd@debian.org> Wed, 12 Dec 2007 09:40:29 -0600
openmpi (1.2.4-3) unstable; urgency=low
[ Manuel Prinz ]
* debian/control: Added openmpi-common to libopenmpi-dev's Depends
(Closes: #445230)
[ Dirk Eddelbuettel ]
* Debian build and upload
-- Dirk Eddelbuettel <edd@debian.org> Sat, 06 Oct 2007 07:54:47 -0500
openmpi (1.2.4-2) unstable; urgency=low
[ Manuel Prinz ]
* debian/control: Added sparc to list of supported architectures
[ Dirk Eddelbuettel ]
* Debian build and upload
-- Dirk Eddelbuettel <edd@debian.org> Tue, 02 Oct 2007 22:04:04 -0500
openmpi (1.2.4-1) unstable; urgency=low
[ Manuel Prinz ]
* debian/control: Modified package relationships to prevent problems when
upgrading from 1.2.3-4 (Closes: #444432)
[ Dirk Eddelbuettel ]
* Debian build and upload
-- Dirk Eddelbuettel <edd@debian.org> Fri, 28 Sep 2007 16:25:13 -0500
openmpi (1.2.4-0) unstable; urgency=low
* New upstream release
[ Sylvestre Ledru ]
* debian/patches: Removed 50fix_kfreebsd_build patch (Fixed upstream)
[ Manuel Prinz ]
* Patch added: Please shut up libibverbs (Closes: #439730)
* Moved compiler wrappers from package openmpi-bin to libopenmpi-dev.
[ Dirk Eddelbuettel ]
* Debian build and upload
-- Dirk Eddelbuettel <edd@debian.org> Wed, 26 Sep 2007 22:07:15 -0500
openmpi (1.2.3-4) unstable; urgency=low
[ Manuel Prinz ]
* Fixed: openmpi-bin: FTBFS on kFreeBSD and maybe Hurd. Thanks to
Uwe Hermann for providing the patches! (Closes: #437839)
* debian/rules: Disabled threading support (Closes: #435581)
* debian/openmpi-bin.README.Debian: Documented disabling of threading
* debian/patches: Removed 10opal_noexecstack and 99autoconf patches
because they are no longer needed. Thanks to Brian Barrett for
clarification.
[ Dirk Eddelbuettel ]
* debian/control: Add 'kfreebsd-i386 kfreebsd-amd64 hurd-i386' to list
of build architecture (via Uwe's patch referenced above)
-- Dirk Eddelbuettel <edd@debian.org> Mon, 20 Aug 2007 20:10:46 -0500
openmpi (1.2.3-3) unstable; urgency=low
[ Manuel Prinz ]
* Fixed: openmpi-bin: libibverbs only available for Linux. Thanks to
Uwe Hermann for providing the patch! (Closes: #435573)
* Changed section of openmpi-doc to doc to satisfy overrides
[ Dirk Eddelbuettel ]
* debian/control: Trying something moderately radical here -- we are
switching the binary packages from 'Architecture: any' to the set
of five architectures that can actually build the package, given the
lack of upstream support for atomistic operations on the other
architectures (c.f. Debian BTS for openmpi)
-- Dirk Eddelbuettel <edd@debian.org> Sun, 12 Aug 2007 19:43:29 -0500
openmpi (1.2.3-2) unstable; urgency=low
[ Dirk Eddelbuettel ]
* debian/control: Added some per-package text to the common titles
of the Descriptions
[ Manuel Prinz ]
* Fixed: FTBFS on GNU/kFreeBSD, Thanks to Petr Salinger for providing
the patch! (Closes: #433142).
* debian/control: Changed priority to "extra" to comply with the Debian
Policy, section 2.5.
-- Dirk Eddelbuettel <edd@debian.org> Mon, 30 Jul 2007 21:12:11 -0500
openmpi (1.2.3-1) unstable; urgency=low
[ Dirk Eddelbuettel ]
* debian/rules: Ensure AUTHORS NEWS README are installed everywhere
* debian/rules: Add examples/ directory to openmpi-doc
* debian/control: More Conflicts/Replaces/Provides for renamed packages
-- Dirk Eddelbuettel <edd@debian.org> Sun, 24 Jun 2007 21:18:31 -0500
openmpi (1.2.3-0) unstable; urgency=low
* First release by the new maintainer group 'pkg-openmpi'
* Takeover of the package is coordinated with the previous maintainer.
Our thanks to Florian for his initial packaging.
* We also would like to thank everybody who has prepared a previous NMU,
[ Dirk Eddelbuettel ]
* debian/control: Add myself as Uploaders
* debian/patches/31_fix_manpages_lintian.dpatch: Another small man page fix
* debian/{ompi_info.1,opal_wrapper.1,orted.1}: Contributed three man pages
* Renaming some sub-package:
- openmpi-libs0 package renamed to libopenmpi1
- openmpi-dev package renamed to libopenmpi-dev
- openmpi-dbg package rename to libopenmpi-dbg
- new openmpi-mpidoc package renamed to openmpi-doc
* debian/control: Add Build-Depends: on 'gcc (>= 4.1.2)' to build for the
'long double' transition -- and as we happen to have renamed the library
package name, is requivalent to the 'ldbl' suffix (Closes: #430321)
[ Upstream ]
* Fixed: mpif77 and mpif90 incorrect default include file search path
(Closes: #405472)
[ Sylvestre Ledru ]
* New upstream release 1.2.3
* New upstream release 1.2.2 (Closes: #427356)
* Patch removed: 20implicit_pointer_conversion.dpatch
* Apply all of Tilman's patches below (Closes: #415338)
* Add the correct XS-Autobuild, XS-Vcs-Svn and XS-Vcs-Browser fields in
debian/control.
* Fix errors in manpages (Lintian complaining)
[ Manuel Prinz ]
* Patch removed: 30_alpha_inline_assembly.dpatch (Fixed upstream)
* Updated patch of autogenerated autoconf files by Steve Langasek.
* Fixed: Please make openmpi thread-compartible by adding
--enable-mpi-threads and --enable-progress-threads (Closes: #419867)
* Fixed: Use Debian alternatives (Closes: #396761)
* Added watch file.
[ Tilman Koschnick ]
* New upstream release 1.2.0
* Acknowledge previous NMUs (Closes: #386491, #392633, #404003, #404026).
* Fix: mpicc.openmpi fails to run when named mpicc.openmpi (Closes: #388216).
* Include manual pages (Closes: #413607).
* Add openmpi-mpidoc package for man pages describing the MPI standard.
* Update copyrights.
[ Andreas Barth ]
* Spelling mistake in the description of the package (Closes: #390238)
-- Dirk Eddelbuettel <edd@debian.org> Sat, 23 Jun 2007 18:55:31 -0500
openmpi (1.1-2.5) unstable; urgency=high
* Non-maintainer upload.
* High urgency upload for RC bugfix.
* Add missing build-dependency on libsysfs-dev, which is used in the build
but was previously pulled in via libibverbs-dev.
-- Steve Langasek <vorlon@debian.org> Sun, 29 Apr 2007 22:03:58 -0700
openmpi (1.1-2.4) unstable; urgency=low
* Non-maintainer upload.
* 0-day alpha porter upload.
* Fix wrong inline assembler check on alpha: 'zero' is not recognized
as a mnemonic for $31 with binutils. This broken check resulted
in various atomic operations remaining undefined, leading to a build
failure on alpha. Likewise, fix the inline assembly provided in
opal/include/opal/sys/alpha/atomic.h so that it's valid under GNU
binutils. Closes: #384792.
-- Steve Langasek <vorlon@debian.org> Sun, 29 Apr 2007 02:27:51 -0700
openmpi (1.1-2.3) unstable; urgency=high
* Non-maintainer upload.
* Add conflicts between openmpi-dev and libopal-dev, pgapack.
Closes: #404003, #404026
-- Andreas Barth <aba@not.so.argh.org> Fri, 22 Dec 2006 13:57:13 +0000
openmpi (1.1-2.2) unstable; urgency=low
* Non-maintainer upload.
* Remove --host=* from debian/rules to make autoconf not enable
cross-building mode. Thanks to Steve Langasek for pointing this out.
Closes: #392633.
-- Mark Hymers <mark@hymers.org.uk> Sun, 15 Oct 2006 00:46:11 +0100
openmpi (1.1-2.1) unstable; urgency=high
* NMU
* Make sparc build UltraSPARC-only, since upstream seems to have
dropped support for 32-bit machines. closes: #386491.
-- Clint Adams <schizo@debian.org> Tue, 26 Sep 2006 00:31:36 -0400
openmpi (1.1-2) unstable; urgency=low
* Apply patch by Tilman Koschnick <til@subnetz.org> to add a new package
with debugging symbols (Closes: #383997).
-- Florian Ragwitz <rafl@debian.org> Wed, 23 Aug 2006 12:43:16 +0200
openmpi (1.1-1) unstable; urgency=low
* New upstream release.
* Applied patch by dann frazier <dannf@debian.org> to fix an implicit
pointer conversion on 64bit platforms (Closes: #377725).
* Fixed mix-up in package descriptions (Closes: #379594).
* Use the alternatives system for the mpi* executables in openmpi-bin
(Closes: #377297).
-- Florian Ragwitz <rafl@debian.org> Mon, 7 Aug 2006 16:57:42 +0200
openmpi (1.0.2-1) unstable; urgency=low
* Initial release (Closes: #340426).
-- Florian Ragwitz <rafl@debian.org> Fri, 6 Jan 2006 15:13:31 +0100
|