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
|
pdl (1:2.100-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Bump Standards-Version to 4.7.2, no changes.
* Drop reproducible-pp_line_number.patch, included upstream.
-- Bas Couwenberg <sebastic@debian.org> Thu, 27 Mar 2025 05:35:25 +0100
pdl (1:2.099-3) unstable; urgency=medium
* Team upload.
* Fix double comma in Recommends.
-- Bas Couwenberg <sebastic@debian.org> Tue, 04 Feb 2025 05:36:59 +0100
pdl (1:2.099-2) unstable; urgency=medium
* Update to recommend recently-removed packages
-- Ed J <etj@cpan.org> Mon, 03 Feb 2025 12:24:24 +0000
pdl (1:2.099-1) unstable; urgency=medium
* New upstream version 2.099
* Drop patches applied upstream, refresh
* Add reproducible line-number patch
-- Ed J <etj@cpan.org> Thu, 23 Jan 2025 13:36:23 +0000
pdl (1:2.098-4) unstable; urgency=medium
* Team upload.
* Add upstream patches to fix FTBFS on hppa.
(closes: #1092246)
-- Bas Couwenberg <sebastic@debian.org> Tue, 07 Jan 2025 08:19:28 +0100
pdl (1:2.098-3) unstable; urgency=medium
* Team upload.
* Add upstream patch to fix FTBFS on arm64/mips64el/riscv64.
-- Bas Couwenberg <sebastic@debian.org> Sun, 05 Jan 2025 08:00:17 +0100
pdl (1:2.098-2) unstable; urgency=medium
* Team upload.
* Move libfile-map-perl from Suggests to Depends.
* Re-add libpod-parser-perl to (build) dependencies.
-- Bas Couwenberg <sebastic@debian.org> Sun, 05 Jan 2025 06:37:37 +0100
pdl (1:2.098-1) unstable; urgency=medium
* Team upload.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sun, 05 Jan 2025 05:58:15 +0100
pdl (1:2.098-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Update smoke-files paths.
* Drop patches applied upstream.
-- Bas Couwenberg <sebastic@debian.org> Fri, 03 Jan 2025 19:00:29 +0100
pdl (1:2.097-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
(closes: #1090769)
* Update copyright file.
* Drop obsolete patches. Refresh remaining patches.
* Update rules for (re)moved files.
* Prune (build) dependencies.
* Add patch to fix spelling errors.
* Add patch to fix POD errors.
-- Bas Couwenberg <sebastic@debian.org> Thu, 02 Jan 2025 19:51:49 +0100
pdl (1:2.095-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Remove generated files in clean target.
* Update paths for smoke-files, moved from PDL to PDL::Basic.
-- Bas Couwenberg <sebastic@debian.org> Mon, 04 Nov 2024 10:12:05 +0100
pdl (1:2.094-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Add libtest-deep-perl to build dependencies.
* Drop chrpath for Minuit.so, no longer built.
* Drop obsolete dh_missing override.
* Refresh patches.
* Add libextutils-f77-perl to build dependencies for PDL::Slatec.
* Update path to scantree.pl, moved from PDL::Doc to PLD::Basic::Doc.
* Update path to Bugs.pod, from PDL to PDL::Basic::Pod.
* Update lintian overrides.
-- Bas Couwenberg <sebastic@debian.org> Sat, 02 Nov 2024 20:22:07 +0100
pdl (1:2.093-1) unstable; urgency=medium
* Team upload.
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Tue, 01 Oct 2024 09:48:31 +0200
pdl (1:2.092-1) unstable; urgency=medium
* Team upload.
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Sat, 07 Sep 2024 16:40:09 +0200
pdl (1:2.091-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Fri, 06 Sep 2024 19:33:23 +0200
pdl (1:2.090-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Bump Standards-Version to 4.7.0, no changes.
* Remove generated files in clean target.
* Refresh patches.
* Add patch to fix spelling errors.
-- Bas Couwenberg <sebastic@debian.org> Sat, 24 Aug 2024 06:52:12 +0200
pdl (1:2.089-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Drop primitive-misc.patch, included upstream.
Refresh remaining patches.
-- Bas Couwenberg <sebastic@debian.org> Sun, 12 May 2024 15:47:39 +0200
pdl (1:2.088-2) unstable; urgency=medium
* Team upload.
* Add upstream patch to fix FTBFS on i386.
-- Bas Couwenberg <sebastic@debian.org> Thu, 25 Apr 2024 05:35:06 +0200
pdl (1:2.088-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Add libdebhelper-perl to dependencies for Dh_Lib.pm used by dh_pdl.
(closes: #1068716)
* Update README filename in docs file.
* Update lintian overrides.
-- Bas Couwenberg <sebastic@debian.org> Mon, 22 Apr 2024 11:02:24 +0200
pdl (1:2.087-1) unstable; urgency=medium
* Team upload.
* New upstream release.
(closes: #1068204)
* Remove additional generated files in clean target.
-- Bas Couwenberg <sebastic@debian.org> Sat, 06 Apr 2024 08:31:39 +0200
pdl (1:2.086-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Move libpgplot-perl to Recommends.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Mon, 01 Apr 2024 19:48:34 +0200
pdl (1:2.085-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Remove generated files in clean target.
* Drop hdf-4.2.16.patch, applied upstream.
* Refresh patches.
* Update lintian overrides.
-- Bas Couwenberg <sebastic@debian.org> Mon, 05 Feb 2024 19:35:02 +0100
pdl (1:2.084-1) unstable; urgency=medium
* Team upload.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sat, 17 Jun 2023 12:33:46 +0200
pdl (1:2.084-1~exp2) experimental; urgency=medium
* Team upload.
* Drop doc-base registration, related symlinks, and lintian overrides.
* Re-instate postinst to update pdldoc.db required for pdldoc executable.
* Add patch to fix FTBFS with hdf4 4.2.16.
-- Bas Couwenberg <sebastic@debian.org> Sat, 17 Jun 2023 08:44:49 +0200
pdl (1:2.084-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Mon, 22 May 2023 19:42:06 +0200
pdl (1:2.083-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Drop absolute-doc-paths.patch, fixed upstream. Refresh remaining patches.
* Drop mkhtmldoc.pl execution in postinst, HTML docs removed upstream.
-- Bas Couwenberg <sebastic@debian.org> Mon, 01 May 2023 15:43:27 +0200
pdl (1:2.082-1~exp1) experimental; urgency=medium
[ Bas Couwenberg ]
* Add Rules-Requires-Root to control file.
* Add a debhelper sequence to run dh_pdl.
* Bump Standards-Version to 4.6.2, no changes.
* Drop libtest-deep-perl from build dependencies.
[ Debian Janitor ]
* Update lintian override info to new format:
+ debian/source/lintian-overrides: line 2
+ debian/pdl.lintian-overrides: line 6, 10, 22, 28
* Use secure URI in Homepage field.
[ Ed J ]
* New upstream version 2.082
* Refresh patches.
-- Ed J <etj@cpan.org> Wed, 22 Mar 2023 18:36:45 +0000
pdl (1:2.081-1) unstable; urgency=medium
* Team upload.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Thu, 27 Oct 2022 18:57:46 +0200
pdl (1:2.081-1~exp1) experimental; urgency=medium
[ Bas Couwenberg ]
* Downgrade libtext-balanced-perl requirement to 2.05.
* Update lintian overrides.
[ Ed J ]
* New upstream version 2.081
* Refresh patches.
-- Ed J <etj@cpan.org> Wed, 26 Oct 2022 17:02:20 +0100
pdl (1:2.080-3) unstable; urgency=medium
* Team upload.
* Bump Standards-Version to 4.6.1, no changes.
* Update lintian overrides.
* Make libtext-balanced-perl dependency versioned.
(closes: #1014280)
-- Bas Couwenberg <sebastic@debian.org> Sun, 03 Jul 2022 17:08:56 +0200
pdl (1:2.080-2) unstable; urgency=medium
* Change to depend on libtext-balanced-perl
-- Ed J <etj@cpan.org> Sun, 19 Jun 2022 17:45:05 +0100
pdl (1:2.080-1) unstable; urgency=medium
* New upstream version 2.080
* Revert Text::Balanced monkeypatch-removal since 2.05 on CPAN but not
yet in Debian.
-- Ed J <etj@cpan.org> Sat, 28 May 2022 18:36:39 +0100
pdl (1:2.079-3) unstable; urgency=medium
* Team upload.
[ Ed J ]
* Add upstream patch to fix clash with PDL::VectorValued
-- Bas Couwenberg <sebastic@debian.org> Sat, 07 May 2022 19:43:35 +0200
pdl (1:2.079-2) unstable; urgency=medium
* Team upload.
* Add upstream patch to fix FTFBS on big endian architectures.
* Add upstream patch to fix TriD POD errors.
-- Bas Couwenberg <sebastic@debian.org> Sat, 07 May 2022 06:54:45 +0200
pdl (1:2.079-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Tue, 03 May 2022 21:10:16 +0200
pdl (1:2.078-1) unstable; urgency=medium
[ Bas Couwenberg ]
* Fix variable to disable reprotest in CI.
[ Ed J ]
* New upstream version 2.078
* Refresh patches.
-- Ed J <etj@cpan.org> Sun, 10 Apr 2022 06:17:40 +0100
pdl (1:2.077-1) unstable; urgency=medium
[ Debian Janitor ]
* Remove constraints unnecessary since buster:
+ Build-Depends: Drop versioned constraint on libopengl-perl.
+ pdl: Drop versioned constraint on libopengl-perl in Suggests.
+ pdl: Drop versioned constraint on dpkg in Pre-Depends.
[ Ed J ]
* New upstream version 2.077
* Refresh patches.
* Add self to Uploaders per sebastic suggestion.
* Disable reprotest CI job since failure is from debug symbols.
-- Ed J <etj@cpan.org> Wed, 16 Mar 2022 18:03:46 +0000
pdl (1:2.076-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Tue, 01 Mar 2022 21:50:11 +0100
pdl (1:2.074-1) unstable; urgency=medium
* Team upload.
* New upstream version 2.074
-- Ed J <etj@cpan.org> Tue, 08 Feb 2022 07:02:45 +0000
pdl (1:2.073-1) unstable; urgency=medium
* Team upload.
* New upstream version 2.073
-- Ed J <etj@cpan.org> Mon, 07 Feb 2022 21:33:45 +0000
pdl (1:2.072-1) unstable; urgency=medium
* Team upload.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Tue, 01 Feb 2022 05:45:56 +0100
pdl (1:2.072-1~exp1) experimental; urgency=medium
* Team upload.
[ Ed J ]
* New upstream version 2.072
-- Bas Couwenberg <sebastic@debian.org> Sun, 30 Jan 2022 06:59:39 +0100
pdl (1:2.070-1) unstable; urgency=medium
* Team upload.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sat, 29 Jan 2022 08:40:55 +0100
pdl (1:2.070-1~exp1) experimental; urgency=medium
[ Ed J ]
* Team upload.
* New upstream version 2.070
* drop dev-release patch
[ Bas Couwenberg ]
* Add upstream patches to fix test failures.
-- Ed J <etj@cpan.org> Fri, 28 Jan 2022 21:58:05 +0000
pdl (1:2.068-1~exp6) experimental; urgency=medium
* Team upload.
[ Ed J ]
* Also disable LINALG on mips*
-- Bas Couwenberg <sebastic@debian.org> Wed, 26 Jan 2022 08:08:02 +0100
pdl (1:2.068-1~exp5) experimental; urgency=medium
* Team upload.
[ Ed J ]
* Reproducible-build changes from upstream
* disable GSL::LINALG on PPC/Sparc64
[ Bas Couwenberg ]
* Update lintian overrides
* Don't ignore test failures on mipsel & mips64el.
-- Bas Couwenberg <sebastic@debian.org> Mon, 24 Jan 2022 05:59:44 +0100
pdl (1:2.068-1~exp4) experimental; urgency=medium
* Team upload.
[ Ed J ]
* Update dev-release patch to latest dev-release
-- Bas Couwenberg <sebastic@debian.org> Sat, 22 Jan 2022 11:28:25 +0100
pdl (1:2.068-1~exp3) experimental; urgency=medium
* Team upload.
[ Ed J ]
* updated dev-release patch to _03
-- Bas Couwenberg <sebastic@debian.org> Thu, 20 Jan 2022 07:16:20 +0100
pdl (1:2.068-1~exp2) experimental; urgency=medium
* Team upload.
[ Ed J ]
* remove patches that are superseded by upstream fixes
* Patch HDF4 modules to not use Alien
* Update build requires, and runtime suggests
* Patch Proj4 modules to not use Alien, restore PROJ deps
* Add upstream dev-release to ensure build success improves
* Patch reverting OpenGL changes until OpenGL::GLUT packaged
[ Bas Couwenberg ]
* Enable Salsa CI.
-- Bas Couwenberg <sebastic@debian.org> Wed, 19 Jan 2022 07:25:55 +0100
pdl (1:2.068-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Fri, 14 Jan 2022 10:21:04 +0100
pdl (1:2.067-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Thu, 13 Jan 2022 21:06:31 +0100
pdl (1:2.066-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Drop obsolete PROJ (build) dependencies.
* Add libfile-which-perl to (build) dependencies.
* Refresh patches.
* Don't include TODO in docs, removed upstream.
* Update lintian overrides.
* Add patch to fix POD errors.
-- Bas Couwenberg <sebastic@debian.org> Tue, 11 Jan 2022 07:09:45 +0100
pdl (1:2.063-2) unstable; urgency=medium
* Team upload.
* Build-depend on libpgplot-perl to re-enable PDL::Graphics::PGPLOT.
-- Roland Mas <lolando@debian.org> Fri, 03 Dec 2021 00:07:48 +0100
pdl (1:2.063-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Wed, 01 Dec 2021 08:00:09 +0100
pdl (1:2.061-1) unstable; urgency=medium
* Team upload.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sat, 13 Nov 2021 08:05:14 +0100
pdl (1:2.061-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Thu, 11 Nov 2021 17:51:18 +0100
pdl (1:2.059-1~exp1) experimental; urgency=medium
* Team upload.
[ Bas Couwenberg ]
* New upstream release.
* Bump Standards-Version to 4.6.0, no changes.
* Drop transform-align.patch, no longer applies. Refresh remaining patches.
* Drop debian/perldl.conf, Makefile.PL no longer supports PDLCONF.
* Add patch to customize perldl.conf.
* Don't strip RPATH from Minuit.so, no longer built.
* Update lintian overridesd.
[ gregor herrmann ]
* debian/rules: make usage of $Config{vendorarch}
cross-build-compatible.
-- Bas Couwenberg <sebastic@debian.org> Tue, 09 Nov 2021 16:50:41 +0100
pdl (1:2.057-3) unstable; urgency=medium
* Team upload.
[ Debian Janitor ]
* Bump debhelper from old 12 to 13.
* Remove obsolete field Name from debian/upstream/metadata
(already present in machine-readable debian/copyright).
[ Bas Couwenberg ]
* Fix architecture name.
-- Bas Couwenberg <sebastic@debian.org> Thu, 02 Sep 2021 21:12:13 +0200
pdl (1:2.057-2) unstable; urgency=medium
* Team upload.
* Ignore test failures on mips64el & mipsel.
-- Bas Couwenberg <sebastic@debian.org> Thu, 02 Sep 2021 16:20:33 +0200
pdl (1:2.057-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Update lintian overrides.
-- Bas Couwenberg <sebastic@debian.org> Wed, 01 Sep 2021 06:23:14 +0200
pdl (1:2.054-1) unstable; urgency=medium
* Team upload.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sun, 15 Aug 2021 18:20:15 +0200
pdl (1:2.054-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Sun, 01 Aug 2021 06:49:54 +0200
pdl (1:2.051-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Thu, 01 Jul 2021 07:41:14 +0200
pdl (1:2.050-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Thu, 03 Jun 2021 18:20:07 +0200
pdl (1:2.049-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Tue, 01 Jun 2021 06:33:49 +0200
pdl (1:2.043-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Sat, 01 May 2021 11:50:32 +0200
pdl (1:2.042-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Fri, 30 Apr 2021 14:58:34 +0200
pdl (1:2.041-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Drop linalg patch, included upstream.
* Update lintian overrides.
-- Bas Couwenberg <sebastic@debian.org> Fri, 30 Apr 2021 06:34:48 +0200
pdl (1:2.040-1~exp2) experimental; urgency=medium
* Team upload.
* Add upstream patch to fix FTBFS on 32 bit architectures.
* Update lintian overrides.
-- Bas Couwenberg <sebastic@debian.org> Thu, 29 Apr 2021 07:04:11 +0200
pdl (1:2.040-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Wed, 28 Apr 2021 06:16:13 +0200
pdl (1:2.039-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Sat, 24 Apr 2021 07:37:42 +0200
pdl (1:2.038-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Wed, 21 Apr 2021 06:07:23 +0200
pdl (1:2.037-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Refresh patches.
* Update copyright file.
-- Bas Couwenberg <sebastic@debian.org> Sat, 17 Apr 2021 17:13:57 +0200
pdl (1:2.035-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Refresh patches.
* Update lintian overrides.
-- Bas Couwenberg <sebastic@debian.org> Fri, 16 Apr 2021 07:00:11 +0200
pdl (1:2.034-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Fri, 02 Apr 2021 11:14:34 +0200
pdl (1:2.033-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Wed, 31 Mar 2021 07:07:55 +0200
pdl (1:2.032-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Sat, 27 Mar 2021 06:43:39 +0100
pdl (1:2.031-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Tue, 23 Mar 2021 05:51:53 +0100
pdl (1:2.029-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Refresh patches.
* Update copyright file.
* Remove empty manpage.
-- Bas Couwenberg <sebastic@debian.org> Mon, 15 Mar 2021 06:52:04 +0100
pdl (1:2.028-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Sun, 07 Mar 2021 07:30:34 +0100
pdl (1:2.026-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Bump debhelper compat level to 12.
* Fix write_config_debian.pl, thanks to gregor herrmann.
* Bump Standards-Version to 4.5.1, no changes.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Mon, 15 Feb 2021 05:43:38 +0100
pdl (1:2.025-1) unstable; urgency=medium
* Team upload.
[ gregor herrmann ]
* Update lintian overrides for renamed tags.
[ Bas Couwenberg ]
* New upstream release.
* Refresh patches.
* Update lintian overrides.
* Drop as-needed linker flag, set by default.
-- Bas Couwenberg <sebastic@debian.org> Thu, 19 Nov 2020 15:19:39 +0100
pdl (1:2.021-2) unstable; urgency=medium
* Team upload.
* Add build and runtime dependencies on libpod-parser-perl,
anticipating changes in Perl 5.32.
-- Niko Tyni <ntyni@debian.org> Sun, 17 May 2020 12:16:11 +0300
pdl (1:2.021-1) unstable; urgency=medium
* Team upload.
[ Bas Couwenberg ]
* New upstream release.
* Bump Standards-Version to 4.5.0, no changes.
* Drop patches applied upstream. Refresh remaining patches.
[ gregor herrmann ]
* debian/copyright: replace tabs with spaces / remove trailing
whitespace.
* debian/control: update Build-Depends for cross builds.
* debian/watch: use uscan version 4.
-- Bas Couwenberg <sebastic@debian.org> Mon, 02 Mar 2020 05:53:06 +0100
pdl (1:2.020-3) unstable; urgency=medium
* Team upload.
* Add patch to fix pdlpp_postamble oneliner.
(closes: #949157)
-- Bas Couwenberg <sebastic@debian.org> Sat, 18 Jan 2020 13:19:04 +0100
pdl (1:2.020-2) unstable; urgency=medium
* Team upload.
* Restore postinst maintainer script.
-- Bas Couwenberg <sebastic@debian.org> Sat, 14 Dec 2019 10:29:17 +0100
pdl (1:2.020-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Bump Standards-Version to 4.4.1, no changes.
* Update gbp.conf to use --source-only-changes by default.
* Drop patches applied upstream, refresh remaining patches.
* Don't install Known_problems, removed upstream.
* Drop unused override for hardening-no-fortify-functions.
* Add lintian override for manpage-without-executable.
* Add lintian override for doc-base-file-references-wrong-path.
* Drop obsolete `dpkg-maintscript-helper dir_to_symlink` calls.
* Add patch to fix spelling errors.
* Add patch to fix MANIFEST test failure.
-- Bas Couwenberg <sebastic@debian.org> Sat, 14 Dec 2019 08:14:03 +0100
pdl (1:2.019-5) unstable; urgency=medium
* Team upload.
[ gregor herrmann ]
* Install PDL::IO::Browser: Set WITH_IO_BROWSER to 1 in
debian/perldl.conf.
Thanks to Fedor Zuev for the bug report. (Closes: #911866)
* debian/rules: Replace `dh_install --list-missing' with
`dh_missing --list-missing'.
* debian/copyright: use HTTPS for perl.org URL and drop POD fragments.
* Enable use.t autopkgtest by providing the module name in
debian/tests/pkg-perl/use-name.
[ Bas Couwenberg ]
* Require at least debhelper 10.3 for dh_missing.
* Bump debhelper compatibility to 10, remove explicit --parallel option.
-- Bas Couwenberg <sebastic@debian.org> Fri, 26 Oct 2018 07:28:23 +0200
pdl (1:2.019-4) unstable; urgency=medium
* Team upload.
* Bump Standards-Version to 4.2.1, no changes.
* Rebuild with PROJ 5.2.0 which adds the 'eqearth' projection alias.
-- Bas Couwenberg <sebastic@debian.org> Sun, 16 Sep 2018 08:41:07 +0200
pdl (1:2.019-3) unstable; urgency=medium
* Team upload.
* Bump Standards-Version to 4.1.5, no changes.
* Add transform-align.patch by Iain Lane to fix build failure on
armhf-on-arm64.
* Add sensible-utils to Depends for sensible-pager.
* Add patch to fix wrong-path-for-interpreter lintian issue.
-- Bas Couwenberg <sebastic@debian.org> Fri, 27 Jul 2018 07:36:52 +0200
pdl (1:2.019-2) unstable; urgency=medium
* Team upload.
* Change fits-tilde-expansion.patch to incorporate upstream feedback.
* Rebuild with PROJ 5.1.0 which adds the 'webmerc' projection alias.
-- Bas Couwenberg <sebastic@debian.org> Sat, 02 Jun 2018 10:42:10 +0200
pdl (1:2.019-1) unstable; urgency=medium
* Team upload.
[ Bas Couwenberg ]
* New upstream release.
* Add patch to fix spelling errors.
* Add Testsuite: autopkgtest-pkg-perl to control file.
* Strip trailing whitespace from changelog, control & rules files.
* Use '-noawait' trigger variant.
* Update Vcs-* URLs for Salsa.
* Bump Standards-Version to 4.1.4, no changes.
* Add smoke-files for files required by tests.
* Update upstream metadata for move to GitHub.
* Refresh patches.
* Add patch to fix tilde expansion tests with non-existent $HOME.
* Update spelling-errors.patch to fix additional typo.
* Add lintian override for shared-lib-without-dependency-information.
[ Damyan Ivanov ]
* declare conformance with Policy 4.1.3 (no changes needed)
-- Bas Couwenberg <sebastic@debian.org> Tue, 15 May 2018 07:39:55 +0200
pdl (1:2.018-2) unstable; urgency=medium
* Team upload.
[ Bas Couwenberg ]
* Bump Standards-Version to 4.1.1, no changes.
[ gregor herrmann ]
* Change build dependency from libgd2-xpm-dev to libgd-dev.
The former is gone, and also not provided anymore by the latter.
Thanks to Adrian Bunk for the bug report. (Closes: #880777)
-- gregor herrmann <gregoa@debian.org> Sat, 04 Nov 2017 21:22:01 +0100
pdl (1:2.018-1) unstable; urgency=medium
* Team upload.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sun, 18 Jun 2017 15:16:26 +0200
pdl (1:2.018-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Drop patches applied upstream. Refresh remaining patches.
* Add lintian override for spelling-error-in-manpage false positive.
-- Bas Couwenberg <sebastic@debian.org> Sat, 27 May 2017 11:28:11 +0200
pdl (1:2.017-1) unstable; urgency=medium
* Team upload.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Mon, 10 Oct 2016 08:39:13 +0200
pdl (1:2.017-1~exp1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Drop patches applied upstream. Refresh remaining patches.
* Update copyright format URL to use HTTPS.
* Add patch to fix spelling errors.
* Add patch to fix pod2man errors.
-- Bas Couwenberg <sebastic@debian.org> Sun, 09 Oct 2016 13:28:32 +0200
pdl (1:2.016-4) unstable; urgency=medium
* Team upload.
* Apply patch by Reiner Herrmann to update reproducible-build.patch.
(closes: #829365)
-- Bas Couwenberg <sebastic@debian.org> Mon, 04 Jul 2016 19:30:45 +0200
pdl (1:2.016-3) unstable; urgency=medium
* Team upload.
* Add patches by Reiner Herrmann for reproducible builds.
(closes: #829323, #829365)
-- Bas Couwenberg <sebastic@debian.org> Sun, 03 Jul 2016 00:37:46 +0200
pdl (1:2.016-2) unstable; urgency=medium
* Team upload.
* Add libfile-map-perl & libmodule-compile-perl to (build) dependencies.
-- Bas Couwenberg <sebastic@debian.org> Sat, 02 Jul 2016 00:42:57 +0200
pdl (1:2.016-1) unstable; urgency=medium
* Team upload.
* Add patch to use absolute paths for symlinked documentation.
* Add patch to fix additional spelling errors.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Fri, 24 Jun 2016 12:13:03 +0200
pdl (1:2.016-1~exp3) experimental; urgency=medium
* Team upload.
* Disable generation of documentation as part of the build.
The documentation is generated on installation via postinst.
* Add patch to fix manpage-has-bad-whatis-entry lintian issue.
* Add patch to use LDFLAGS for pdl executable.
-- Bas Couwenberg <sebastic@debian.org> Sun, 19 Jun 2016 11:08:55 +0200
pdl (1:2.016-1~exp2) experimental; urgency=medium
* Team upload.
* Strip RPATH from Minuit.so & Slatec.so.
* Add lintian overrides for hardening-no-fortify-functions issues.
-- Bas Couwenberg <sebastic@debian.org> Sat, 18 Jun 2016 15:36:07 +0200
pdl (1:2.016-1~exp1) experimental; urgency=medium
* Team upload
[ Andreas Tille ]
* New upstream version (2.015)
(closes: #811247)
* cme fix dpkg-control
* DEP5
[ Bas Couwenberg ]
* Update watch file to use metacpan.org.
* Add gbp.conf to use pristine-tar by default.
* Change Maintainer from Debian Science Team to Debian Perl Group.
* Update Vcs-* URLs for pkg-perl git repository.
* Imported new upstream release (2.016).
* Update copyright file, changes:
- Add Upstream-Contact field
- Update Source URL to use metacpan.org
- Fix license for "same terms as Perl itself": Artistic or GPL-1+
- Add copyright holders
- Add license & copyright for differently licensed files
* Reorder (build) dependencies.
* Drop Release_Notes from pdl.docs, removed upstream.
* Separate lintian overrides with newlines.
* Align paths in install files.
* Add upstream metadata.
* Add libdevel-checklib-perl to build dependencies.
* Use minimal dh rules.
* Update perldl.conf for PDL 2.016.
* Add libinline-c-perl to (build) dependencies.
* Add patch to fix doc_vendor_install target by supporting DESTDIR.
* Regenerate control files from templates in separate target.
* Disable parallel dh_auto_install, race condition between make targets.
* Override dh_install to use --list-missing.
* Drop libhdf4-0-alt from Suggests, already included in ${shlibs:Depends}.
* Add patch to fix spelling errors.
* Add patch to use CPPFLAGS for pdl executable.
* Add libtest-{deep,exception}-perl to build dependencies.
-- Bas Couwenberg <sebastic@debian.org> Sat, 18 Jun 2016 12:08:56 +0200
pdl (1:2.007-5) unstable; urgency=medium
* Team upload.
[ Andreas Tille ]
* Package migrated to Debian Science team Git as Uploader Henning Glawe agreed
* Add watch file
[ Sebastiaan Couwenberg ]
* Update build dependencies for GSL 2, change libgsl0-dev to libgsl-dev.
* Add patch to fix FTBFS with GSL 2.x.
Closes: #805824
-- Andreas Tille <tille@debian.org> Fri, 15 Jan 2016 13:47:31 +0100
pdl (1:2.007-4) unstable; urgency=high
* Fix "problems upgrading from wheezy due to triggers"; print warning
to STDERR if doc index could not be updated instead of causing
postinst failure. (Closes: #729220)
This will apply only in subsequent releases, as the upgrade problem
is caused by the pdl package in wheezy.
Cloned bug to perl (#773323), in order to have a 'Breaks: pdl (<<1:2.007)'
for smooth wheezy->jessie updates.
Changes to pdl.postinst have been tested by backporting to wheezy's pdl
version, which solved the wheezy->jessie upgrade issues.
-- Henning Glawe <glaweh@debian.org> Wed, 17 Dec 2014 10:29:01 +0100
pdl (1:2.007-3) unstable; urgency=low
* Acknowledge NMU
* For the time being, always use 64bit integers in Fortran libs
slatec and minuit by default, as debian perl packages switched
to ivsize=8 on all arches, implying a 64bit index type in PDL
-- Henning Glawe <glaweh@debian.org> Wed, 24 Sep 2014 20:14:23 +0200
pdl (1:2.007-2.1) unstable; urgency=medium
[ gregor herrmann ]
* Non-maintainer upload.
* Fix "hardcodes /usr/lib/perl5":
- rename files in debian/ which contain "/usr/lib/perl5" to .in, replace
"/usr/lib/perl5" with a variable
- create original files from debian/rules, replacing the variable with
the current value of $Config{vendorarch}
(Closes: #752351)
-- Damyan Ivanov <dmn@debian.org> Mon, 04 Aug 2014 07:54:19 +0000
pdl (1:2.007-2) unstable; urgency=low
* successfully built with gcc 4.8 (closes: #701335, #713346)
* add build log evalution helpers to source package: extract
test suite output from buildlog, cross-refernce test/subtest
failures between architectures
* use shell to join stderr into stdout while running test suite
* fix Dumper.pm on kfreebsd: 'gnukfreebsd' was assumed as a bsd
userland, which disabled/broke calls to 'uuencode' and 'uudecode'
* fix debian/filter-test.pl, which cut the test log too early
due to a too-unspecific regex
* prefer F77Conf over ExtUtils::F77 in t/flexraw_fortran.t in order
to prevent test failures on kfreebsd* and hurd*
-- Henning Glawe <glaweh@debian.org> Mon, 11 Nov 2013 13:34:09 +0100
pdl (1:2.007-1) unstable; urgency=low
* new upstream release
* upstream now builds with gcc 4.8 and perl 5.18 (closes: #721589)
* disable PDL::FFTW and PDL::Graphics::PLplot, both are depreciated
upstream and are available as separate module distributions
* make successful testsuite run mandatory
* include /usr/share/perl5/PDL in trigger modify upstream's
scantree.pl to accept comma-separated directory lists
(closes: #681937)
-- Henning Glawe <glaweh@debian.org> Thu, 07 Nov 2013 09:23:38 +0100
pdl (1:2.4.11-4) unstable; urgency=low
* fix pdl versioned dep in dh_pdl
-- Henning Glawe <glaweh@debian.org> Wed, 30 May 2012 16:06:03 +0200
pdl (1:2.4.11-3) unstable; urgency=low
* fix the building of pdl wrapper
* set -fPIC when compiling fortran extensions
-- Henning Glawe <glaweh@debian.org> Mon, 28 May 2012 20:44:46 +0200
pdl (1:2.4.11-2) unstable; urgency=low
* fix calls to croak in Lib/GIS/Proj/Proj.pd and IO/GD/GD.pd (croak was
not called with a format string literal, causing
-Werror=format-security to abort the compilation)
-- Henning Glawe <glaweh@debian.org> Sun, 27 May 2012 16:01:22 +0200
pdl (1:2.4.11-1) unstable; urgency=low
* new upstream release
* acknowledge NMU (closes: #670693), thanks to Jari Aalto
* switch to 3.0 quilt packaging format, the +dfsg repackaging
of upstream source is not needed anymore
* provide pdlapi-$version virtual package to keep binary extension
modules from breaking silently
* introduce dh_pdl providing ${pdl:Depends} for extension packages
* use dpkg-buildflags in debian/rules to determine flags
* link with --as-needed to avoid spurious dependencies
* switch to dh_auto_configure to call EU::MM with the proper flags
* read LDFLAGS and FFLAGS in f77conf.pl from env
* depend on newer dpkg-dev due to buildflags options
-- Henning Glawe <glaweh@debian.org> Sat, 26 May 2012 10:30:55 +0200
pdl (1:2.4.10+dfsg-1.1) unstable; urgency=low
* Non-maintainer upload.
* Remove deprecated dpatch and upgrade to packaging format "3.0 quilt".
* Update to Standards-Version to 3.9.3 and debhelper to 9.
* Add build-arch and build-indep targets; use dh_prep in rules file.
* Fix copyright-refers-to-symlink-license (Lintian).
* Fix duplicate-in-relation-field libastro-fits-header-perl (Lintian).
* Fix unused-override (Lintian).
-- Jari Aalto <jari.aalto@cante.net> Sat, 28 Apr 2012 08:44:59 +0300
pdl (1:2.4.10+dfsg-1) unstable; urgency=low
* new upstream release
* sync debian/perldl.conf with perldl.conf
-- Henning Glawe <glaweh@debian.org> Sun, 19 Feb 2012 10:42:56 +0100
pdl (1:2.4.7+dfsg-2) unstable; urgency=low
* remove left-over file 'test.log', which slipped into the 1:2.4.7+dfsg-1
debian diff
* include upstream release notes in deb
* fix Pod of PDL::IO::FastRaw
* add lintian override: it is OK to have dpatch dependency with an empty
patch list. Usually I am adding fixes as dpatch patches, and it is useless
to add/remove the dpatch support in case there are no patches for one
particular revision.
* add a lintian override for a long code line in a manpage, which cannot be
easily broken
-- Henning Glawe <glaweh@debian.org> Sun, 22 Aug 2010 21:19:32 +0200
pdl (1:2.4.7+dfsg-1) unstable; urgency=low
* new upstream version
- much improved documentation (closes: #132900)
* build-depend on netpbm (improves testsuite runs)
* build-depend on proj-bin (alternatively with proj) to have 'proj'
command available
* build-depend and suggest libdevel-repl-perl (for new pdl2 shell)
* update debian standards-version to 3.9.1 (no further changes needed)
* improve test suite run output in build log
-- Henning Glawe <glaweh@debian.org> Thu, 19 Aug 2010 11:40:22 +0200
pdl (1:2.4.6+dfsg-2) unstable; urgency=low
* pgperl is back in debian, name changed to libpgplot-perl; changed the
pdl recommends to reflect that (closes: #407463)
-- Henning Glawe <glaweh@debian.org> Tue, 11 May 2010 07:56:50 +0200
pdl (1:2.4.6+dfsg-1) unstable; urgency=low
* fix paths in generated HTML docs
* add dpkg trigger for documentation index and HTML documentation updates
* add ${misc:Depends} to pdl's Depends (recommended by lintian due to
debhelper usage)
* use DESTDIR instead of PREFIX when installing (recommended by lintian,
as this works only due to a debian-specific MakeMake extension)
* bump (build-)dependency on libopengl-perl to 0.62
* update to standards-version 3.8.4
* build-depend on libhdf4-alt-dev (closes: #540404)
* modify hdf support build scripts to autodetect the 'alt'-flavour
* build-depend on libproj-dev (closes: #521822)
* move Homepage to Homepage control field and improve description
(closes: #574372)
-- Henning Glawe <glaweh@debian.org> Sat, 08 May 2010 17:10:16 +0200
pdl (1:2.4.5+dfsg-2) unstable; urgency=low
* switch TriD from X11 to freeglut
* patch test suite to give more meaningful results
* repair f77config, link against libgfortran.so
* run testsuite in verbose mode to get more information
* build-depend and suggest ExtUtils::F77
* suggest Astro::FITS::Header
-- Henning Glawe <glaweh@debian.org> Mon, 09 Nov 2009 12:32:34 +0100
pdl (1:2.4.5+dfsg-1) unstable; urgency=low
* new upstream release
* repacked upstream source without debian dir
* build-depend on sharutils to have uuencode/uudecode available for
test suite
* build-depend on libraries needed for the reworked TriD module
* remove maintainer script postrm, it was actually empty
* bump standards-version to 3.8.3
* bump debhelper compatibility level to 7
* generate html docs and doc index in /var/lib/pdl
* put symlink to files in /var/lib/pdl into /usr/lib/perl5/PDL
-- Henning Glawe <glaweh@debian.org> Fri, 06 Nov 2009 21:45:44 +0000
pdl (1:2.4.3-8) unstable; urgency=low
* add proper description to the dpatch pathes (6 lintian warnings)
* backport documentation 'apropos' search function from upstream cvs
(closes: #499758)
* remove empty manpage /usr/share/man/man3/PDL::PP.3pm (lintian warning)
* update standarts version to 3.8.0 (lintian warning)
* build-depend on x11proto-core-dev instead of x-dev (lintian error)
* remove libgl1 from Suggests; there is no 3d support presently
* bump readline Suggests: to Recommends:, as users are lost in
interactive mode without it
* Fix doc-base entry (Science/Mathematics instead of Apps/Math)
* suggest doc-base
-- Henning Glawe <glaweh@debian.org> Mon, 22 Sep 2008 09:42:25 +0200
pdl (1:2.4.3-7) unstable; urgency=low
* patch upstream IO/Makefile.PL to also install Dicom IO module
(closes: #474751)
* disable opengl based PDL::Graphics::TriD, it is not working
with perl 5.10. this considerably lowers PDL's dependencies,
upstream does not yet have a solution for this problem
(closes: #495379)
* apply upstream patch for the pct() problem (closes: #488092)
-- Henning Glawe <glaweh@debian.org> Sat, 20 Sep 2008 13:44:57 +0200
pdl (1:2.4.3-6) unstable; urgency=low
[ Rafael Laboissiere ]
* Switch from g77 to gfortran
[ Henning Glawe ]
* apply Rafael's patch (closes: #468637)
-- Henning Glawe <glaweh@debian.org> Tue, 4 Mar 2008 09:05:08 +0100
pdl (1:2.4.3-4) unstable; urgency=low
* clean up leftover files not caught by pdl's distclean target
(closes: #424345)
* clearly state in PDL::Fit::Gaussian synopsis that PDL has to be loaded
first (closes: #379932)
* apply patch for uniqvec/qsortvec from upstream BTS (closes: #415426)
* encode Latin1 characters in POD documentation as roff
* postprocess the "reduce" manpage's NAME section to remove roff macros
(closes: #304217)
* remove misplaced whitespace characters from changelog
* fix the menu entry to reflect current menu policy
* add lintian override to ignore the missing html files; they are
generated in the postinst script, so lintian can not see them
* fix the gsl version check
* comment out the dump() calls in t/xvals.t test, as this seems to confuse
the test result parser
* rebuild for the ldbl128 transition (closes: #430319)
-- Henning Glawe <glaweh@debian.org> Tue, 16 Oct 2007 10:25:18 +0200
pdl (1:2.4.3-3) unstable; urgency=low
* add -DGLvoid=void in the cpp call for setting up the OpenGL typemaps in
order to make PDL build with newer mesa versions (closes: #390122)
-- Henning Glawe <glaweh@debian.org> Mon, 9 Oct 2006 18:07:41 +0200
pdl (1:2.4.3-2) unstable; urgency=low
* upstream: enhance the 64bit-excludelist for the flexraw-test
* let the build continue anyways if problems are found in the
testsuite, so its output is only informational
-- Henning Glawe <glaweh@debian.org> Mon, 25 Sep 2006 10:43:58 +0200
pdl (1:2.4.3-1) unstable; urgency=low
* new upstream
* enable gd, proj and HDF support
* force-enable WITH_3D, as on debian autobuilders, there is no
$DISPLAY and therefore the autodetection does not work
-- Henning Glawe <glaweh@debian.org> Thu, 17 Aug 2006 12:27:03 +0200
pdl (1:2.4.2-6) unstable; urgency=low
* Graphics::TriD did not compile anymore. Backport this module from HEAD.
* update standarts-version to 3.7.2
* build-depend on libxext-dev, as the TriD GL needs it
* incorporate OpenGL build fix from upstream BTS 1505132
-- Henning Glawe <glaweh@debian.org> Tue, 13 Jun 2006 10:14:39 +0200
pdl (1:2.4.2-5) unstable; urgency=low
* add workaround for broken ExtUtils::MakeMaker in perl 5.8.8
(closes: #356975):
- as EU::MM generated Makefiles reference PERLRUN instead of PERLRUNINST,
explicitly "use blib;" in the BAD{,2}_demo.pm.PL
-- Henning Glawe <glaweh@debian.org> Fri, 2 Jun 2006 10:17:39 +0200
pdl (1:2.4.2-4) unstable; urgency=low
* make the xlibs-dev transition for x.org 6.9 (closes: #346926):
- build-depending on x-dev should be enough according to
http://www.inutil.org/jmm/xlibs/xlibs-split-2005-11-15.tar-bz2
* Suggest libplplot-dev and tell about the PDL::Graphics::PLplot
examples it contains in pdl's README.Debian
-- Henning Glawe <glaweh@debian.org> Mon, 9 Jan 2006 09:15:31 +0100
pdl (1:2.4.2-3) unstable; urgency=low
* change Build-dependencies to build with xorg (closes: #318258)
* add libinline-perl to suggests
* add perl readline modules to suggests
-- Henning Glawe <glaweh@debian.org> Thu, 14 Jul 2005 14:49:42 +0000
pdl (1:2.4.2-2) unstable; urgency=low
* use dpatch for patch management
* split out Makefile clean target patch
* split out patch preventing the generation of an empty manpage pdl.1p
* get fix for transform.pd from cvs (problem reported on pdl mailing list)
* fix a second problem with PDL_Double used not in C code in transform.pd
* patch mkhtmldoc.pl to generate relative links instead of absolute ones;
absolute pathnames confused dhelp sometimes.
* move debhelper template in prerm up, so the doc-base remove call is done
before the dynamically generated html files are removed
* patch remove obsolete upstream debian files until these changes are
checked in.
* mention new pdl htmldoc location in README.Debian
-- Henning Glawe <glaweh@debian.org> Sun, 16 Jan 2005 18:42:29 +0100
pdl (1:2.4.2-1) unstable; urgency=low
* new upstream release
* remove comment about not including m51.fits from debian/copyright
* re-import COPYING to debian/copyright
* include perldl.conf used in "official" package as debian/perldl.conf
* install Known_problems to docdir
* fix clean target in upstream makefiles
* use upstream makefile distclean target in debian/rules clean target
* fix description+synopsis
* remove references to obsolete websites from README
* rework packaging with debhelper
* build html docs in /usr/share/doc/pdl/html/PDL and install doc-base
entry for this
* remove lintian override, slatec is now built with -fPIC
* disable building of pdl.1p from pdl.PL, so the correct pdl.1p from
Basic/Pod/Intro.pod is included
-- Henning Glawe <glaweh@debian.org> Mon, 10 Jan 2005 15:59:25 +0100
pdl (1:2.4.1-1) unstable; urgency=low
* new upstream release
* don't print debug info in preinst (Closes: #69978)
* enable bad value support, the impact should be minimal on modern
hardware (Closes: #113607)
* took plplot from PDL HEAD
* clean up doc index and html docs in prerm (Closes: #160034)
-- Henning Glawe <glaweh@debian.org> Thu, 22 Jul 2004 19:16:24 +0200
pdl (1:2.4.0-1) unstable; urgency=low
* new maintainer (Closes: #215543)
* acknowlege NMU (Closes: #141117, #104630, #140104, #170182)
* new upstream release.
* enable plplot support (Closes: #196185)
* enable gsl support
* enable fftw support
* swap out m51.fits and COPYING, taken from PDL CVS HEAD (Closes: #223793)
-- Henning Glawe <glaweh@debian.org> Sat, 13 Dec 2003 22:25:41 +0100
pdl (1:2.3.2-0.6) unstable; urgency=low
* NMU for xlib6g-dev dependency (Closes: #170182)
-- Joshua Kwan <joshk@triplehelix.org> Sat, 15 Mar 2003 16:55:39 -0800
pdl (1:2.3.2-0.5) unstable; urgency=low
* NMU for perl 5.8. Set build-dependency to perl 5.8.
* debian/rules: moved prefix selection to installation time.
-- Josselin Mouette <joss@debian.org> Wed, 21 Aug 2002 22:39:24 +0200
pdl (1:2.3.2-0.2) unstable; urgency=low
* Non-Maintainer Upload
* In postinst, specify path to /usr/bin/perl so that users with a conflicting
perl in /usr/local/bin do not get a blow-up. (Closes: #141117)
* (Note that the above change was made in debian/rules, NOT debian/postinst,
because of the very strange way the original maintainer made the
debian/postinst be auto-generated..)
-- Ben Gertzfield <che@debian.org> Mon, 8 Apr 2002 18:47:16 +0900
pdl (1:2.3.2-0.1) unstable; urgency=low
* Non-Maintainer Upload
* Newest version needed to fix gimp-perl build problems (perl
segfaults on alpha otherwise).
* Use F77CONF=debian/f77conf.pl, signify hppa needed changes in
there instead of hacking Lib/Slatec/Makefile.PL .
* Include small patch to change $(INST_LIBDIR)/PDL to
$(INST_LIBDIR) in Basic/Gen/Makefile.PL (debian/rules has
a very long, strange find command that barfs if there are
multiple directories named PDL, and this looks like a typo
anyway)
* debian/rules was writing to file called "substvers", and
was missing a $ anyway when writing Perl depends substvars.
Commented out, added a call to dh_perl and tightened Build-Depends
on debhelper to (>= 3.0.18).
* Add call to dh_clean to clean up debhelper-generated files.
-- Ben Gertzfield <che@debian.org> Tue, 2 Apr 2002 22:07:56 +0900
pdl (1:2.2.1-7.1) unstable; urgency=low
* Non-Maintainer Upload
* Fix to build on hppa, patch in BTS. Closes: #104630
-- Matt Taggart <taggart@debian.org> Wed, 5 Dec 2001 19:42:37 -0700
pdl (1:2.2.1-7) unstable; urgency=low
* rebuild with dh_gencontrol instead of dpkg-gencontrol, new
perl policy seems to need this.
* include lintian override for non-pic code in Slatec.so
* include debian/all (build/check script) in source
-- Raul Miller <moth@debian.org> Sun, 26 Aug 2001 21:44:51 -0400
pdl (1:2.2.1-6) unstable; urgency=low
* Introduced a build-depends on libextutils-f77-perl. [Which
breaks cross compilation since I've not released that package yet --
waiting on DFSG copyright, but allows building with slatec.]
-- Raul Miller <moth@debian.org> Sat, 9 Jun 2001 22:54:30 -0400
pdl (1:2.2.1-5) unstable; urgency=low
* fix postinst.base -- postinst was missing set -e
-- Raul Miller <moth@debian.org> Fri, 25 May 2001 11:09:44 -0400
pdl (1:2.2.1-4) unstable; urgency=low
* Ok, found out how to resolve $Config{version}.
-- Raul Miller <moth@debian.org> Fri, 25 May 2001 01:04:12 -0400
pdl (1:2.2.1-3) unstable; urgency=low
* changed INSTALLDIRS=perl to INSTALLDIRS=vendor in debian/rules,
for the new perl policy, changed Build-Depends to match.
(fixes #95423)
* made other changes to debian/rules and debian/control as indicated
by this new policy. I hope the OPTIMIZE attribute doesn't hose PDL...
* FIXME: I've backed out compliance with 3.4.2 of the new perl policy:
"Binary modules must specify a dependency on either perl or
perl-base with a minimum version of the perl package used to
build the module, and must additionally depend on the expansion of
perlapi-$Config{version}."
This fails to indicate what context to use for that expansion. In
my initial tests, this broke the package, and `apt-cache search
perlapi` turns up nothing.
-- Raul Miller <moth@debian.org> Thu, 24 May 2001 14:01:33 -0400
pdl (1:2.2.1-2) unstable; urgency=low
* replaced mesag-dev with xlibmesa-dev in build depends. (fixes #97508)
replaced mesag3 with libgl1 in depends.
* Rant: [None of this rant is immediately relevant to this version
of PDL, except through examining the implications of bug #97508.]
This whole "trash the old i/o-library interface" thing strikes
me as *really bad*. Interfaces should be treated as sacred,
and maintaining backwards compatibility is important for long term
system survivability. Basically, what we're saying here is that
these interfaces are immature, and people who built code against
the earlier (obsolete) libraries acted prematurely. Either that,
or we're saying that distributing binary packages for debian is
a mistake on the part of anyone outside of debian.
* I'm leaving the Build-Depends for libncurses-dev in the control file,
even though it's now a virutal package, to see if I get any bug
reports filed against pdl because of it (for the record, I'm using
version 5.2.20010318-1 of libncurses5-dev to build this instance).
* updated debian/rules (added prerm, minor cleanups)
-- Raul Miller <moth@debian.org> Mon, 21 May 2001 10:18:55 -0400
pdl (1:2.2.1-1) unstable; urgency=low
* renamed directory from PDL-2.2.1 to pdl-2.2.1, and chmod +x debian/rules
(required so that dpkg-buildpackage works).
* changed Source-Depends: to Build-Depends: in control file, and restored
build dependency for libncurses-dev.
* restored debian/postinst.base and debian/prerm from debian 2.2
-- Raul Miller <moth@debian.org> Sun, 20 May 2001 22:14:49 -0400
pdl (1:2.2.1-0) unstable; urgency=low
* new upstream release
-- PDL Porters <pdl-porters@jach.hawaii.edu> Tue, 24 Apr 2001 15:01:23 -0400
pdl (1:2.2-2) unstable; urgency=low
* delete bogus debian.orig directory
-- Raul Miller <moth@debian.org> Wed, 14 Mar 2001 15:15:59 -0500
pdl (1:2.2-1) unstable; urgency=medium
* new upstream release
* turned off make test because it has problems:
1. requires an active X session (bad for autobuilders), and
2. requires slatec (or linfit fails). [Can't support
slatec until ExtUtils::F77 is a debian package]
* bumped up urgency because old pdl doesn't support newest
perl, and some people consider that serious.
-- Raul Miller <moth@debian.org> Mon, 12 Mar 2001 20:51:12 -0500
pdl (1:2.1.1-1) unstable; urgency=low
* reintroduced scantree.pl and mkhtmldoc to postinst (fixes
problem reported in private email by Dav Clark and Gordon Haverland
-- thanks).
* note: this version won't purge cleanly, as it creates a couple
files a postinst time which aren't removed even at purge time.
* got rid of bashisms from debian/rules
* translated /usr/doc to /usr/share/doc and /usr/man to /usr/share/man
* never released -- ignore epoch
-- Raul Miller <moth@debian.org> Mon, 20 Nov 2000 01:17:43 -0500
pdl (2.1.1-0pre1) unstable; urgency=low
* new upstream version
* this is a pre-release, among other things, I'm waiting for xlib6g-dev
to stabilize. Please email me, personally, with any bug reports.
This is not an official release. Changes from the 2.1.1 sources on
sourceforge for this prerelease:
+ chmod +x debian/rules
+ this entry in debian/changelog
+ editted copy of perldl.conf as debian/.perldl.conf (no -lMesa*)
+ HOME=`pwd`/debian added to Makefile.PL part of debian/rules
-- Raul Miller <moth@debian.org> Sun, 19 Nov 2000 14:46:31 -0500
pdl (2.005-2) frozen; urgency=medium
* Argh, forgot to fix t/gauss.t -- this is required
for Bug#55268 to really be fixed.
-- Raul Miller <moth@debian.org> Tue, 25 Apr 2000 13:45:28 -0400
pdl (2.005-1) frozen; urgency=medium
* new bugfix upstream version
* two hacks: (1) disable #ifdef in Basic/Math/mconf.h which includes
<nan.h> on our linux alpha, (2) disable test which shows that guassian
doesn't work properly on our linux alpha. (Fixes Bug#55268)
-- Raul Miller <moth@debian.org> Mon, 17 Apr 2000 08:17:18 -0400
pdl (2.003-1) unstable; urgency=low
* new upstream version
-- Raul Miller <moth@debian.org> Mon, 1 Nov 1999 07:16:55 -0500
pdl (2.002-3) unstable; urgency=low
* new maintainer
* recreated source package, unpack in pdl-2.002 instead of PDL-2.002
[this oddity in source package accounts for earlier diff problems].
(Fixes #45771).
* do "make test" at build time
* removed suggests jpeg-progs, I can't find any such package
* removed suggests pgperl, there's a well labeled demo that fails
and that should be enough of a suggestion for people who would want
this non-free support. If there's demand, and if special compilation
support turns out to be needed, I supposed I'll have to create
a pdl-nonfree...
-- Raul Miller <moth@debian.org> Sun, 10 Oct 1999 19:20:09 -0400
pdl (2.002-2) unstable; urgency=low
* added depends on libterm-readkey-perl
-- John Lapeyre <lapeyre@physics.arizona.edu> Sun, 8 Aug 1999 14:25:39 -0700
pdl (2.002-1) unstable; urgency=low
* New upstream
* Build with new perl 5.005 package
* fixes #40433 with workaround for error in Bessel functions in
libc6 2.1
* Fixes #36402, docs are now made at build time and are purged
with dpkg --purge. Also previous cruft from old versions is purged
in preinst.
* Fixes #38429, typo in Depends
-- John Lapeyre <lapeyre@physics.arizona.edu> Fri, 25 Jun 1999 17:52:33 -0700
pdl (2.001-1) unstable; urgency=low
* New upstream
* Add r-pdl code (merging r-pdl package)
-- John Lapeyre <lapeyre@physics.arizona.edu> Wed, 21 Apr 1999 14:47:54 -0700
pdl (2.0-2) unstable; urgency=low
* link with glibc 2.1.1
* add menu entry
-- John Lapeyre <lapeyre@physics.arizona.edu> Thu, 25 Mar 1999 01:52:12 -0700
pdl (2.0-1) unstable; urgency=low
* new upstream version
-- John Lapeyre <lapeyre@physics.arizona.edu> Mon, 25 Jan 1999 16:59:48 -0700
pdl (1.99988-5) unstable frozen; urgency=low
* html docs were put in wrong place.
-- John Lapeyre <lapeyre@physics.arizona.edu> Tue, 8 Dec 1998 03:39:42 -0700
pdl (1.99988-4) unstable frozen; urgency=low
* Some package (mesa?) change and broke the build
Add X11 include path by hand.
-- John Lapeyre <lapeyre@physics.arizona.edu> Fri, 6 Nov 1998 22:03:17 -0700
pdl (1.99988-3) unstable; urgency=low
* link against mesag3.
-- John Lapeyre <lapeyre@physics.arizona.edu> Sun, 25 Oct 1998 01:32:34 -0700
pdl (1.99988-2) unstable; urgency=low
* Make rules less i386-centric
-- John Lapeyre <lapeyre@physics.arizona.edu> Tue, 6 Oct 1998 11:44:39 -0700
pdl (1.99988-1) unstable; urgency=low
* New minor revision
-- John Lapeyre <lapeyre@physics.arizona.edu> Fri, 2 Oct 1998 00:00:03 -0700
pdl (1.99985-1) unstable; urgency=low
* New minor revision
-- John Lapeyre <lapeyre@physics.arizona.edu> Fri, 31 Jul 1998 14:24:09 -0700
pdl (1.9906-1) frozen unstable; urgency=low
* New minor revision
-- John Lapeyre <lapeyre@physics.arizona.edu> Fri, 1 May 1998 15:29:16 -0700
pdl (1.9905-1) unstable; urgency=low
* New minor revision
-- John Lapeyre <lapeyre@physics.arizona.edu> Fri, 24 Apr 1998 16:17:42 -0700
pdl (1.9904-1) unstable; urgency=low
* New minor revision
-- John Lapeyre <lapeyre@physics.arizona.edu> Mon, 13 Apr 1998 13:45:34 -0700
pdl (1.9902-2) unstable; urgency=low
* suggests mesag2 not mesa2
-- John Lapeyre <lapeyre@physics.arizona.edu> Mon, 13 Apr 1998 13:45:34 -0700
pdl (1.9902-1) unstable; urgency=low
* Upstream minor revision.
* Note doc lookup was still broken in 1.9901
* Changed architecture from i386 to any
* Fixed doc lookup, I hope
-- John Lapeyre <lapeyre@physics.arizona.edu> Mon, 23 Mar 1998 15:31:34 -0700
pdl (1.9901-2) unstable; urgency=low
* Fixed online doc lookup.
-- John Lapeyre <lapeyre@physics.arizona.edu> Sat, 14 Mar 1998 18:21:28 -0700
pdl (1.9901-1) unstable; urgency=low
* New upstream minor version including ...
* New Free license.
* Bug fixes, doc improvements
-- John Lapeyre <lapeyre@physics.arizona.edu> Mon, 9 Mar 1998 12:53:32 -0700
pdl (1.9900-1) non-free; urgency=low
* New upstream release
-- John Lapeyre <lapeyre@physics.arizona.edu> Fri, 27 Feb 1998 16:42:27 -0700
pdl (1.95.07-3) non-free; urgency=low
* removed perllocal.pod; only for local build
-- John Lapeyre <lapeyre@physics.arizona.edu> Fri, 23 Jan 1998 22:04:49 -0700
pdl (1.95.07-2) non-free; urgency=low
* existed a debstd bug; upgraded debstd and repackaged.
-- John Lapeyre <lapeyre@physics.arizona.edu> Fri, 23 Jan 1998 21:09:05 -0700
pdl (1.95.07-1) non-free; urgency=low
* Initial Release.
-- John Lapeyre <lapeyre@physics.arizona.edu> Fri, 16 Jan 1998 19:32:22 -0700
|