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
|
dolfin (2019.2.0~git20201207.b495043-5) unstable; urgency=medium
* use triple-slash (file:///) for mathjax local url replacement to
make docs for demos properly legible.
-- Drew Parsons <dparsons@debian.org> Wed, 09 Jun 2021 13:23:16 +0200
dolfin (2019.2.0~git20201207.b495043-4) unstable; urgency=medium
* debian/tests: add ppc64el to the list of arches skipping some tests
* update test_relax_tolerance.patch to relax more tolerances in
multimesh/test_volume.py for ppc64el.
-- Drew Parsons <dparsons@debian.org> Fri, 29 Jan 2021 17:09:57 +0100
dolfin (2019.2.0~git20201207.b495043-3) unstable; urgency=medium
* skip failing mesh and multimesh tests on selected non-amd64 arches
(arm64, i386, s390x)
* update test_relax_tolerance.patch to relax multimesh test
tolerances
* display timings of 20 slowest python unit tests and demos
-- Drew Parsons <dparsons@debian.org> Thu, 28 Jan 2021 11:40:28 +0100
dolfin (2019.2.0~git20201207.b495043-2) unstable; urgency=medium
* add mipsel to the list of arches which fail MPI demo tests or run
too slowly.
* debian patch test_relax_tolerance.patch relaxes tolerance in
test_incremental_assembly in unit/fem/test_system_assembler.py
* apply "set -e" in debian/tests to register test failures
-- Drew Parsons <dparsons@debian.org> Wed, 27 Jan 2021 19:59:23 +0100
dolfin (2019.2.0~git20201207.b495043-1) unstable; urgency=medium
* New upstream snapshot.
-- Drew Parsons <dparsons@debian.org> Mon, 25 Jan 2021 16:48:33 +0100
dolfin (2019.2.0~git20200629.946dbd3+lfs-4) unstable; urgency=medium
* Team upload.
* [7286d2a] Fix FTBFS. (Closes: #977222)
* [47cdea3] Ignore quilt dir
* [c8d8285] Remove unused patch
* [8e0289b] Trim trailing whitespace.
* [a251c1d] Use secure copyright file specification URI.
* [c6c315f] debian/copyright: use spaces rather than tabs to start
continuation lines.
* [327629b] Remove unnecessary get-orig-source-target.
* [615ba90] Drop transition for old debug package migration.
* [d47166b] Respect CPPFLAGS
-- Anton Gladky <gladk@debian.org> Tue, 15 Dec 2020 22:52:05 +0100
dolfin (2019.2.0~git20200629.946dbd3+lfs-3) unstable; urgency=medium
* debian/tests: run C++ tests with Restrictions: allow-stderr
to ignore compilation warnings (which are sent to stderr)
* debian/tests: skip more python demos (iterative, block, meshview,
assignment) on i386, armhf
-- Drew Parsons <dparsons@debian.org> Tue, 24 Nov 2020 03:46:18 +0800
dolfin (2019.2.0~git20200629.946dbd3+lfs-2) unstable; urgency=medium
* debian/tests Depends: libblis-pthread-dev | libopenblas-pthread-dev
(intention is to improve debci test times)
* skip slow python demos (cahn-hilliard hyperelasticity
elastodynamics navier-stokes elasticity) in debian/tests
* debian patch demo_block-assembly-3D2D_relax.patch relaxes
tolerance in 3D vector check.
-- Drew Parsons <dparsons@debian.org> Mon, 23 Nov 2020 02:13:28 +0800
dolfin (2019.2.0~git20200629.946dbd3+lfs-1) unstable; urgency=medium
* reset against upstream source containing lfs demo files
(git archive from local clone instead of bitbucket download link)
- drop debian patch git-lfs_fetch_demo_meshes and remove upstream
source entries from debian/source/include-binaries
* debian/tests: split python unit tests from python demos
* Standards-Version: 4.5.1
-- Drew Parsons <dparsons@debian.org> Sat, 21 Nov 2020 20:29:06 +0800
dolfin (2019.2.0~git20200629.946dbd3-8) unstable; urgency=medium
* [9f0767f] Fix compilation against Boost_1.74. (Closes: #974947)
* Proper source-only upload with demo-files. (Closes: #975057)
-- Anton Gladky <gladk@debian.org> Wed, 18 Nov 2020 17:09:19 +0100
dolfin (2019.2.0~git20200629.946dbd3-7) unstable; urgency=medium
* Team upload.
* [004980a] Revert "Fix compilation against Boost_1.74. (Closes: #975012)"
-- Anton Gladky <gladk@debian.org> Tue, 17 Nov 2020 23:03:48 +0100
dolfin (2019.2.0~git20200629.946dbd3-6) unstable; urgency=medium
* Team upload.
* [9726492] Fix compilation against Boost_1.74. (Closes: #974948)
-- Anton Gladky <gladk@debian.org> Tue, 17 Nov 2020 18:03:48 +0100
dolfin (2019.2.0~git20200629.946dbd3-5) unstable; urgency=medium
* Use -flto-partition=none on mips64el. Thanks Adrian Bunk.
Drop debian patch pybind11_lto_mips64el.patch.
* Build-Depends: graphviz to provide dot for building docs.
* Build-Depends: python3-petsc4py, python3-slepc4py to provide .pth
-- Drew Parsons <dparsons@debian.org> Sun, 15 Nov 2020 01:18:39 +0800
dolfin (2019.2.0~git20200629.946dbd3-4) unstable; urgency=medium
* skip slow serial tests on armel, armhf, alpha, riscv64
* skip demo_cahn-hilliard_serial on all arches (everywhere slow)
-- Drew Parsons <dparsons@debian.org> Mon, 09 Nov 2020 12:37:51 +0800
dolfin (2019.2.0~git20200629.946dbd3-3) unstable; urgency=medium
* debian patch test_float128.patch runs unit/la/test_vector.py using
numpy.longdouble instead of numpy.float128 on systems (32-bit arches)
which do not support numpy.float128
-- Drew Parsons <dparsons@debian.org> Mon, 12 Oct 2020 01:08:21 +0800
dolfin (2019.2.0~git20200629.946dbd3-2) unstable; urgency=medium
* python3-dolfin Depends: python3-petsc4py, python3-slepc4py
(make sure base packages are available providing .pth files)
-- Drew Parsons <dparsons@debian.org> Sun, 06 Sep 2020 23:18:53 +0800
dolfin (2019.2.0~git20200629.946dbd3-1) unstable; urgency=medium
* New upstream snapshot.
- applies debian patch function_MeshView_f0a90b8.diff
-- Drew Parsons <dparsons@debian.org> Sun, 06 Sep 2020 00:40:10 +0800
dolfin (2019.2.0~git20200218.027d9cc-18) unstable; urgency=medium
* debian patch pybind11_lto_mips64el.patch disables LTO linking
with pybind11 on mips64el (applies -fno-lto when building python
extensions on mips64el).
-- Drew Parsons <dparsons@debian.org> Tue, 01 Sep 2020 17:05:28 +0800
dolfin (2019.2.0~git20200218.027d9cc-17) unstable; urgency=medium
* swap python3-dolfin Depends/Recommends relationships with
python3-dolfin[64]-real. Make python3-dolfin primary
(defaulting to standard 32-bit build)
-- Drew Parsons <dparsons@debian.org> Sun, 30 Aug 2020 23:02:47 +0800
dolfin (2019.2.0~git20200218.027d9cc-16) unstable; urgency=medium
* define petsc64:Depends (PETSc/SLEPc dependencies for libdolfin64-dev)
-- Drew Parsons <dparsons@debian.org> Sat, 29 Aug 2020 20:17:07 +0800
dolfin (2019.2.0~git20200218.027d9cc-15) unstable; urgency=medium
* debian patch lib_rename.patch appends DOLFIN_LIB_NAME_EXT to the
dolfin library name in DOLFINConfig.cmake, to allow cmake to find
libdolfin64.so (cmake -DDOLFIN_LIB_NAME_EXT=64) rather than
libdolfin.so
* make mathjax handling independent of version
-- Drew Parsons <dparsons@debian.org> Sat, 29 Aug 2020 14:05:11 +0800
dolfin (2019.2.0~git20200218.027d9cc-14) unstable; urgency=medium
* add debian patch test_floating_point.patch to use pytest.approx to
test equality of floating point numbers (in geometry/test_point.py)
Needed to pass non-intel (arm64, ppc64el) tests.
-- Drew Parsons <dparsons@debian.org> Mon, 10 Aug 2020 14:52:01 +0800
dolfin (2019.2.0~git20200218.027d9cc-13) unstable; urgency=medium
* disable dolfin64 tests in debian/tests (autopkgtest).
They are known to fail. Reinstate once they are passing.
* mark libdolfin-dev, libdolfin64-dev as Multi-Arch: same
* mark libdolfin-dev-common Architecture: all and Multi-Arch: foreign
* remove FindEigen3.cmake from FindMPFR.cmake entry in debian/copyright
* debhelper compatibility level 13
-- Drew Parsons <dparsons@debian.org> Sun, 09 Aug 2020 22:10:12 +0800
dolfin (2019.2.0~git20200218.027d9cc-12) unstable; urgency=medium
* add mipsel to 32-bit arch list skipping some 64-bit tests,
including demo_contact-vi-snes_serial, demo_sym-dirichlet-bc_serial
-- Drew Parsons <dparsons@debian.org> Mon, 20 Jul 2020 15:05:17 +0800
dolfin (2019.2.0~git20200218.027d9cc-11) experimental; urgency=medium
* skip demo_contact-vi-snes_serial in 64-bit tests on armel, armhf
-- Drew Parsons <dparsons@debian.org> Sat, 18 Jul 2020 09:19:12 +0800
dolfin (2019.2.0~git20200218.027d9cc-10) experimental; urgency=medium
* update list of 64-bit tests skipped on 32-bit arches:
demo_mixed-poisson_serial
demo_stokes-taylor-hood_serial
demo_auto-adaptive-navier-stokes_serial
demo_multimesh-stokes_serial
-- Drew Parsons <dparsons@debian.org> Fri, 17 Jul 2020 12:33:07 +0800
dolfin (2019.2.0~git20200218.027d9cc-9) experimental; urgency=medium
* append 64-bit tests to skip on 32-bit arches, append to
ARCH_SPECIFIC_SKIP_SERIAL_TEST_64
* libdolfin-dev-common Replaces and Breaks:
libdolfin-dev (<< 2019.2.0~git20200218.027d9cc-7)
Add corresponding versioned depends for libdolfin-dev on
libdolfin-dev-common (>= 2019.2.0~git20200218.027d9cc-7)
Closes: #965005.
-- Drew Parsons <dparsons@debian.org> Tue, 14 Jul 2020 23:34:19 +0800
dolfin (2019.2.0~git20200218.027d9cc-8) experimental; urgency=medium
* skip 64-bit build-time tests of
demo_mixed-poisson_serial
demo_stokes-taylor-hood_serial
demo_contact-vi-snes_serial
demo_multimesh-stokes_serial
on 32 bit arches (armel armhf i386 hppa m68k powerpc)
-- Drew Parsons <dparsons@debian.org> Tue, 14 Jul 2020 11:47:03 +0800
dolfin (2019.2.0~git20200218.027d9cc-7) experimental; urgency=medium
* new packages libdolfin64-dev, python3-dolfin64-real provide DOLFIN
built against 64-bit PETSc (64-bit indexing). Set
PETSC_DIR=/usr/lib/petsc64 SLEPC_DIR=/usr/lib/slepc64 to activate.
- skip 64-bit build-time serial tests demo_stokes-iterative_serial
and demo_curl-curl_serial
- ignore errors in 64-bit MPI tests:
"PETSc function 'KSPSolve' error code: 92 (See petsc
linearsolvertable.html for possible LU and Cholesky solvers)
* convert python3-dolfin to a base package providing dolfin.pth that
Recommends: python3-dolfin-real. PETSc-specific dolfin module is
installed under the PETSC_DIR it was built against and made
accessible via dolfin.pth.
* add debian patches
- lib_rename.patch allows LIB_NAME_EXT to be defined as a suffix
to the library name, to distinguish libdolfin.so from
libdolfin64.so
- cmake_find_petsc.patch ensures PETSc is found before loading
Dolfin cmake rules (needed to check for 64-bit build)
-- Drew Parsons <dparsons@debian.org> Tue, 07 Jul 2020 16:27:09 +0800
dolfin (2019.2.0~git20200218.027d9cc-6) unstable; urgency=medium
* dolfin-doc provides HTML documentation (Python and C++ API)
- include .rst files (sphinx html docs references them in
"View page source" links)
-- Drew Parsons <dparsons@debian.org> Mon, 27 Apr 2020 18:27:50 +0800
dolfin (2019.2.0~git20200218.027d9cc-5) unstable; urgency=medium
* include mesh files in upload:
git lfs pull; patch -p1 -R <debian/patches/git-lfs_fetch_demo_meshes
-- Drew Parsons <dparsons@debian.org> Mon, 20 Apr 2020 22:07:47 +0800
dolfin (2019.2.0~git20200218.027d9cc-4) unstable; urgency=medium
* upload Cécile Daversin-Catty's snapshot to unstable
-- Drew Parsons <dparsons@debian.org> Mon, 20 Apr 2020 17:46:09 +0800
dolfin (2019.2.0~git20200218.027d9cc-3) experimental; urgency=medium
* Make git-lfs provide mesh files before uploading package:
git lfs pull
patch -p1 -R < debian/patches/git-lfs_fetch_demo_meshes
-- Drew Parsons <dparsons@debian.org> Fri, 03 Apr 2020 13:04:55 +0800
dolfin (2019.2.0~git20200218.027d9cc-2) experimental; urgency=medium
* debian patch function_MeshView_f0a90b8.diff applies upstream
commit f0a90b8 to fix Function restriction involving MeshView
mappings.
* skip demo_contact-vi-snes on sparc64
-- Drew Parsons <dparsons@debian.org> Fri, 03 Apr 2020 02:06:42 +0800
dolfin (2019.2.0~git20200218.027d9cc-1) experimental; urgency=medium
* New upstream snapshot. This is Cécile Daversin-Catty's branch,
cecile/mixed-dimensional providing support for Mixed Dimensional
calculations (MixedFunctionSpace).
* Incidentally the preceding snapshot was actually
git20200123.ac79caa (master branch) not git20200124.734bf76.
-- Drew Parsons <dparsons@debian.org> Tue, 17 Mar 2020 22:24:24 +0800
dolfin (2019.2.0~git20200124.734bf76-1) experimental; urgency=medium
* New upstream snapshot.
- applies debian patches revert_PETSc3.11_8e92f6ee.patch
and workaround_matplotlib_broken_API.patch
* Standards-Version: 4.5.0
* Get demo mesh files with git-lfs fetch, register in
debian/source/include-binaries, with ascii xdmf sample file in
debian/patches/git-lfs_fetch_demo_meshes
-- Drew Parsons <dparsons@debian.org> Wed, 29 Jan 2020 03:25:39 +0800
dolfin (2019.1.0-10) unstable; urgency=medium
* debian patch workaround_matplotlib_broken_API.patch works around
broken API in matplotlib 3.1: can no longer set axes.aspect to
'equal' in 3d.
-- Drew Parsons <dparsons@debian.org> Sat, 28 Dec 2019 08:25:16 +1100
dolfin (2019.1.0-9) unstable; urgency=medium
* skip all build-time tests on mips64el. Closes: 945817.
* skip some build-time MPI tests on ia64
* set MCA btl_base_warn_component_unused to 0 in also for build-time
tests in debian/rules
-- Drew Parsons <dparsons@debian.org> Sun, 01 Dec 2019 23:43:12 +0800
dolfin (2019.1.0-8) unstable; urgency=medium
* libdolfin-dev Depends: g++ | c++-compiler,
dolfin-doc Recommends: python3-matplotlib
* set MCA btl_base_warn_component_unused to 0 in debian/tests
(python) to ignore complaints about missing OpenFabrics transports
-- Drew Parsons <dparsons@debian.org> Tue, 12 Nov 2019 00:49:22 +0900
dolfin (2019.1.0-7) unstable; urgency=medium
* skip demo_built-in-meshes_mpi test on ia64
* relax pybind11 dependency. pybind11 follows semantic versioning,
so should be backwards compatible with minor and patch version
updates.
* Standards-Version: 4.4.1
-- Drew Parsons <dparsons@debian.org> Sun, 20 Oct 2019 15:27:11 +0800
dolfin (2019.1.0-6) unstable; urgency=medium
* skip test demo_biharmonic_mpi on ia64
-- Drew Parsons <dparsons@debian.org> Sat, 28 Sep 2019 16:26:12 +0800
dolfin (2019.1.0-5) unstable; urgency=medium
* deactivate colour for MPI python unit tests to aid log readability
* debian patch scripts_python3.patch superficially converts
dolfin-order and dolfin-plot to Python3. They are deprecated and
may not work anyway. Closes: #936436.
-- Drew Parsons <dparsons@debian.org> Mon, 02 Sep 2019 03:39:33 +0800
dolfin (2019.1.0-4) unstable; urgency=medium
* Standards-Version: 4.4.0
* drop python-dolfin
* skip the demo_bcs_mpi test on ia64
-- Drew Parsons <dparsons@debian.org> Mon, 05 Aug 2019 09:41:17 +0800
dolfin (2019.1.0-3) experimental; urgency=medium
* autopkgtest: report CPUs available (merge 2018.1.0.post1-18)
-- Drew Parsons <dparsons@debian.org> Tue, 04 Jun 2019 12:38:07 +0800
dolfin (2019.1.0-2) experimental; urgency=medium
* debian/README.source: document the file format of
scripts/dolfin-convert/test_exodus.exo as Exodus II
(can view in paraview)
* update debian/copyright (AUTHORS, io/pugi*)
* merge C++ unit tests into debian/tests from 2018.1.0.post1-17
-- Drew Parsons <dparsons@debian.org> Sat, 01 Jun 2019 12:04:49 +0800
dolfin (2019.1.0-1) experimental; urgency=medium
* New upstream release (official).
- applies patches:
* PETSc_3.10_SNESTEST_removed.patch
* conditional-parmetis-in-cholmod.patch
* test_mpi_oversubscribe.patch
* unittests_demos_include_dirs.patch
* v2019.1.patch
* debhelper 12: Build-Depends: debhelper-compat (= 12)
* apply debian patch revert_PETSc3.11_8e92f6ee.patch:
VecScatterCreateWithData never made it into PETSc 3.11
-- Drew Parsons <dparsons@debian.org> Thu, 25 Apr 2019 22:43:54 +0800
dolfin (2019.1.0~git20190216+lfs-1) experimental; urgency=medium
* New upstream test release.
- applies pytest_fixtures_096217a.patch
- demo data files pulled in from git lfs
* debian patch v2019.1.patch bumps DOLFIN_VERSION to 2019.1
(needed to set soname for libdolfin.so)
-- Drew Parsons <dparsons@debian.org> Wed, 06 Mar 2019 10:40:45 +0800
dolfin (2018.1.0.post1-18) unstable; urgency=medium
* debian/tests (autopkgtest): report CPUs available and used for
C++ MPI demos (tracking flaky timeouts, Bug#920546)
-- Drew Parsons <dparsons@debian.org> Sat, 01 Jun 2019 13:30:35 +0800
dolfin (2018.1.0.post1-17) unstable; urgency=medium
* debian/tests (autopkgtest): run C++ unit tests
-- Drew Parsons <dparsons@debian.org> Fri, 31 May 2019 23:24:20 +0800
dolfin (2018.1.0.post1-16) unstable; urgency=medium
* use ctest --output-on-failure not -output-on-failure
-- Drew Parsons <dparsons@debian.org> Mon, 11 Feb 2019 19:14:25 +1100
dolfin (2018.1.0.post1-15) unstable; urgency=medium
* symlink man-page for fenics-version to manpage for dolfin-version
* run ctest with -output-on-failure to show details of test failures
-- Drew Parsons <dparsons@debian.org> Mon, 11 Feb 2019 13:58:33 +1100
dolfin (2018.1.0.post1-14) unstable; urgency=medium
* add debian patch pytest_fixtures_096217a.patch
(upstream commit 096217a0a3cb710e869d7e82a3d3609c4d968b76)
to update tests for latest pytest API.
* debhelper compatibility level 12
* dolfin-bin installs /usr/bin/fenics-version
* usr/share/dolfin/dolfin.conf is redundant on Debian,
list it in debian/not-installed
* debian/rules:
- skip C++ build-time tests of demo_elastodynamics_mpi
(unreliable, sometimes passes, but fails with pdebuild)
- override dh_dwz to ignore python module .so files (already
stripped by python's setuptools)
-- Drew Parsons <dparsons@debian.org> Sat, 09 Feb 2019 18:07:21 +1100
dolfin (2018.1.0.post1-13) unstable; urgency=medium
* Standards-Version: 4.3.0
* create patch PETSc_3.10_SNESTEST_removed.patch to work with
PETSc 3.10 (SNESTEST has been removed). Thanks Jed Brown.
-- Drew Parsons <dparsons@debian.org> Wed, 26 Dec 2018 09:14:38 +0100
dolfin (2018.1.0.post1-12) unstable; urgency=medium
* apply strict versioned depends on pybind11,
python3-dolfin Depends: pybind11 (>= 2.2.4), pybind11 (<= 2.2.5)
Closes: #909407.
* Hardening: add dpkg-buildflags CXXFLAGS to CMAKE_CXX_FLAGS and
python module build
* use VERBOSE build of python modules
-- Drew Parsons <dparsons@debian.org> Mon, 24 Sep 2018 03:03:27 +0800
dolfin (2018.1.0.post1-11) unstable; urgency=medium
* skip slow build-time tests (>500-1000 sec to complete)
* rebuild for pybind11 2.2.4
-- Drew Parsons <dparsons@debian.org> Sun, 23 Sep 2018 04:58:48 +0800
dolfin (2018.1.0.post1-10) unstable; urgency=medium
* skip build-time tests:
- demo_auto-adaptive-poisson_serial test on m68k
- demo_cahn-hilliard_mpi and other MPI tests on mips
- all tests on sh4
-- Drew Parsons <dparsons@debian.org> Tue, 04 Sep 2018 03:53:23 +0800
dolfin (2018.1.0.post1-9) unstable; urgency=medium
* autopkgtest: configure cpp tests with mpicc to ensure that the
cmake test for PetscInt passes
* Standards-Version: 4.2.1
-- Drew Parsons <dparsons@debian.org> Mon, 03 Sep 2018 04:17:35 +0800
dolfin (2018.1.0.post1-8) unstable; urgency=medium
* mark libdolfin2018.1 as Multi-Arch: same
* python3-dolfin Depends: python3-six
* Standards-Version: 4.2.0
-- Drew Parsons <dparsons@debian.org> Fri, 17 Aug 2018 00:11:03 +0800
dolfin (2018.1.0.post1-7) unstable; urgency=medium
* skip demo_stokes-taylor-hood_mpi test on mips64el
-- Drew Parsons <dparsons@debian.org> Wed, 01 Aug 2018 22:54:05 +0800
dolfin (2018.1.0.post1-6) unstable; urgency=medium
* skip demo_cahn-hilliard_mpi, demo_ale_mpi, demo_poisson-disc_mpi
tests on mipsel
* skip demo_elasticity_serial test on m68k
* run build-time tests on mips, but skip demo_cahn-hilliard_serial,
demo_hyperelasticity_serial
-- Drew Parsons <dparsons@debian.org> Tue, 31 Jul 2018 15:16:58 +0800
dolfin (2018.1.0.post1-5) unstable; urgency=medium
* update debian/test (autopkgtest) Depends
* skip demo_sym-dirichlet-bc_mpi test on ppc64el
* skip ALL build-time tests on mips, hurd-i386
-- Drew Parsons <dparsons@debian.org> Sat, 28 Jul 2018 22:42:00 +0800
dolfin (2018.1.0.post1-4) unstable; urgency=medium
* skip demo_bcs_mpi test on mips64el
* update debian/tests/control Depends: @, @builddeps@
(to provide c++)
-- Drew Parsons <dparsons@debian.org> Fri, 27 Jul 2018 14:47:32 +0800
dolfin (2018.1.0.post1-3) unstable; urgency=medium
* update skipped tests:
- skip demo_navier-stokes_mpi test on arm64
- skip demo_contact-vi-tao_mpi on mips64el
- skip demo_stokes-iterative_mpi on mipsel
- skip all MPI tests on armhf, i386, hppa, powerpc
* don't download fresh source for tests
* do copy symlink contents for C++ tests (in particular, copy
pulley.xdmf for demo_elasticity)
* tests Depends: python3-pytest
-- Drew Parsons <dparsons@debian.org> Fri, 27 Jul 2018 02:42:56 +0800
dolfin (2018.1.0.post1-2) unstable; urgency=medium
* new upstream version for unstable.
Some minor API changes:
- Rename `mpi_comm_world()` to `MPI.comm_world`.
- Rename `ERROR`, `CRITICAL` etc. to `LogLevel.ERROR`,
`LogLevel.CRITICAL`.
* skip demo_curl-curl_mpi test on mips64el
-- Drew Parsons <dparsons@debian.org> Thu, 26 Jul 2018 01:19:42 +0800
dolfin (2018.1.0.post1-1exp6) experimental; urgency=medium
* skip all MPI tests on ppc64el
-- Drew Parsons <dparsons@debian.org> Wed, 11 Jul 2018 10:39:00 +0800
dolfin (2018.1.0.post1-1exp5) experimental; urgency=medium
* updates to debian/rules:
- identify build dir using DEB_HOST_GNU_TYPE
- respect the parallel flag in DEB_BUILD_OPTIONS when running tests
- skip cahn-hilliard, elasticity, elastodynamics MPI build tests
which fail or time out for: armel mips64el ppc64el
- skip m68k MPI tests altogether (times out)
* debian patch unittests_demos_include_dirs.patch ensures include
directories are defined for tests without reconfiguring cmake
* link elasticity/pulley.xdmf from python demo to cpp demo
* allow parallel jobs (max 8) in CI test test-dolfin-cpp
-- Drew Parsons <dparsons@debian.org> Sun, 08 Jul 2018 13:14:48 +0800
dolfin (2018.1.0.post1-1exp4) experimental; urgency=medium
* Enable installation CI testing with Testsuite: autopkgtest.
* run build-time tests including unittests and demos
- use --oversubscribe with openmpi tests
- skip demo_hyperelasticity_mpi (it diverges)
* enable MPI for mpich arches. LAM arches will have to manually
set ENABLE_MPI=OFF in debian/rules.
* configure default preference for mumps or petsc over superlu_dist,
since superlu_dist is crippled by mc64, which cannot be
redistributed.
* Standards-Version: 4.1.5
-- Drew Parsons <dparsons@debian.org> Fri, 06 Jul 2018 23:49:43 +0800
dolfin (2018.1.0.post1-1exp3) experimental; urgency=medium
* Build-Depends: python3-all-dev (build against all python3 versions)
-- Drew Parsons <dparsons@debian.org> Thu, 28 Jun 2018 11:21:07 +0800
dolfin (2018.1.0.post1-1exp2) experimental; urgency=medium
* process python demo files only for doc (arch-indep) builds
-- Drew Parsons <dparsons@debian.org> Wed, 27 Jun 2018 23:45:13 +0800
dolfin (2018.1.0.post1-1exp1) experimental; urgency=medium
* New corrected upstream release.
* install python demos with dolfin-doc
-- Drew Parsons <dparsons@debian.org> Wed, 27 Jun 2018 20:50:58 +0800
dolfin (2018.1.0.post0-1exp1) experimental; urgency=medium
* Corrected upstream release.
- includes the fenics python module.
- petsc4py and other include dirs are no longer added to
DOLFIN_3RD_PARTY_INCLUDE_DIRS in DOLFINConfig.cmake.
Closes: #895419.
* Use override_dh_auto_test instead of DEB_BUILD_OPTIONS=nocheck
to skip build time tests without triggering a lintian warning.
-- Drew Parsons <dparsons@debian.org> Tue, 26 Jun 2018 01:38:04 +0800
dolfin (2018.1.0-1exp1) experimental; urgency=medium
[ Nico Schlömer ]
* remove Python 2 package in preparation of 2018.1
[ Drew Parsons ]
* New upstream release.
- python-dolfin is now a dummy package that depends on python3-dolfin.
- remove debian patches applied upstream:
env.patch, gnuinstalldirs.patch, use-dolfin.patch
- no longer uses instant
- uses pybind11 instead of SWIG
* remove ancient-python-version-field X-Python3-Version: >= 3.4
* Standards-Version: 4.1.4
* Manpages for dolfin-bin scripts taken from old dolfin docs.
-- Drew Parsons <dparsons@debian.org> Fri, 15 Jun 2018 17:38:32 +0200
dolfin (2017.2.0.post0-3) unstable; urgency=medium
* update petsc/slepc dependencies for PETSc/SLEPc 3.8
(dev package now libpetsc-real3.8-dev not libpetsc3.8.3-dev)
-- Drew Parsons <dparsons@debian.org> Sun, 04 Mar 2018 10:46:39 +0800
dolfin (2017.2.0.post0-2) unstable; urgency=medium
* debian/control: update VCS tags to salsa.debian.org
-- Drew Parsons <dparsons@debian.org> Thu, 22 Feb 2018 08:56:02 +0800
dolfin (2017.2.0.post0-1exp2) experimental; urgency=medium
* reorganise debian/copyright: collect core DOLFIN files and
contributors in one entry.
* Remove -dbg packages from debian/control.
Debug packages (-dbgsym) are built automatically.
-- Drew Parsons <dparsons@debian.org> Fri, 16 Feb 2018 15:34:44 +0800
dolfin (2017.2.0.post0-1exp1) experimental; urgency=medium
* New upstream release.
- updated debian/upstream/signing-key.asc for signature
from the FEniCS Project Steering Council (key BED06106DD22BAB3)
- drops VTK support (no plots, but VTK files can still be created)
- update versions of Build-Dependencies:
cmake (>= 3.5), swig3.0 (>= 3.0.5),
petsc-dev (>= 3.7), slepc-dev (>= 3.7),
libboost-dev (>= 1.56), libeigen3-dev (>= 3.2.90)
* Standards-Version: 4.1.3
* Update debian.patches
- file encoding now included when reading files in python scripts
- VTK no longer supported
* debhelper compatibility level 11
* debian/control: Priority: optional not extra
* FEniCS version dependencies are taken as >=2017.2 and <=2017.3~
i.e. depend on major.minor version only
-- Drew Parsons <dparsons@debian.org> Sun, 21 Jan 2018 21:21:52 +0800
dolfin (2017.1.0-4) unstable; urgency=medium
* Team upload.
* New upstream (new soname) version built against GCC7.
Closes: #871279.
* Builds against swig 3.0.12. Closes: #875395.
-- Drew Parsons <dparsons@debian.org> Tue, 12 Sep 2017 15:45:48 +0800
dolfin (2017.1.0-3) experimental; urgency=medium
* Team upload.
* Add debian/patches/FindPETScSLEPc.patch to test for PETSc and
SLEPc at build time. The patch ensures tests link against -lmpi.
Thanks Johannes Ring.
-- Drew Parsons <dparsons@debian.org> Tue, 05 Sep 2017 01:20:24 +0800
dolfin (2017.1.0-2) experimental; urgency=medium
* Team upload.
* Create debian patch conditional-parmetis-in-cholmod.patch to only
link cholmod support with parmetis if parmetis support is enabled.
Parmetis is non-free and therefore cannot routinely be supported
while dolfin is in Debian main.
* Standards-Version: 4.1.0
* debhelper compatibility level 10.
-- Drew Parsons <dparsons@debian.org> Mon, 28 Aug 2017 23:26:11 +0800
dolfin (2017.1.0-1) experimental; urgency=medium
* New upstream release.
* d/control:
- Update package names (libdolfin2016.2 -> libdolfin2017.1
and libdolfin2016.2-dbg -> libdolfin2017.1-dbg).
- Bump minimum required version for python-dijitso and python-ffc to
2017.1 in Build-Depends.
* Move d/libdolfin2016.2.install -> d/libdolfin2017.1.install.
* d/patches/python3-support.patch: removed (fixed upstream).
-- Johannes Ring <johannr@simula.no> Fri, 07 Jul 2017 11:24:50 +0200
dolfin (2016.2.0-5) unstable; urgency=medium
* libdolfin-dev depends on either the python2 or python3 version of
modules (enables python3-only installation).
-- Drew Parsons <dparsons@debian.org> Thu, 06 Jul 2017 15:21:57 +0800
dolfin (2016.2.0-4) unstable; urgency=medium
[ Johannes Ring ]
* d/rules:
- Re-generate swig interface with correct Python version
before build and install. Closes: #863829.
- Build for Python 2 after Python 3 by switching the order in
PYVERS, since Python 2 is default.
* Add patch vtk-python2-only-cmake-usefile.patch that disables the
vtk section in UseDOLFIN.cmake for Python 3. Closes: #863828.
* d/control: Add python-ffc to Depends for binary package
libdolfin-dev (provides ufc.h).
-- Drew Parsons <dparsons@debian.org> Wed, 07 Jun 2017 12:14:40 +0800
dolfin (2016.2.0-3) unstable; urgency=medium
[ Drew Parsons ]
* Enable petsc/slepc dependencies on kfreebsd. Note that PETSc
support in dolfin on kfreebsd is not in fact active due to linking
problems during configuration tests, but dolfin builds
successfully without it. Closes: #822971.
[ Johannes Ring ]
* Support Python 3: new packages python3-dolfin and python3-dolfin-dbg.
-- Drew Parsons <dparsons@debian.org> Tue, 30 May 2017 16:17:28 +0800
dolfin (2016.2.0-2) unstable; urgency=medium
* Dolfin depends on specific 3.7.X patch releases of PETSc and SLEPc
(see dolfin.pc, DOLFINConfig.cmake)
-- Drew Parsons <dparsons@debian.org> Tue, 24 Jan 2017 06:18:32 +0800
dolfin (2016.2.0-1) unstable; urgency=medium
[ Drew Parsons ]
* Drop HDF5 Fortran configuration (it's not actually used).
* Tighten build and python-dolfin fenics dependencies to the
FENiCS minor version: (>= 2016.2.0), (<< 2016.3~)
[ Johannes Ring ]
* New upstream release.
* d/watch: Check pgp signature.
* d/control:
- Update package names (libdolfin2016.1 -> libdolfin2016.2
and libdolfin2016.1-dbg -> libdolfin2016.2-dbg).
- Bump minimum required version for python-instant, python-ufl and
python-ffc to 2016.2.
- Add python-dijitso to Build-Depends and Depends for binary package
python-dolfin.
-- Drew Parsons <dparsons@debian.org> Wed, 21 Dec 2016 16:47:36 +0800
dolfin (2016.1.0-5) unstable; urgency=medium
* Reenable HDF5 support.
* patches/HDF5-configure.patch helps configure HDF5 parallel.
-- Drew Parsons <dparsons@debian.org> Fri, 16 Sep 2016 11:16:05 +0800
dolfin (2016.1.0-4) unstable; urgency=medium
* Disable HDF5 support.
HDF5 was never actually enabled previously due to a discrepant
configuration between serial and parallel HDF5, but that now
causes dolfin to fail to build.
-- Drew Parsons <dparsons@debian.org> Wed, 14 Sep 2016 12:52:59 +0800
dolfin (2016.1.0-3) unstable; urgency=medium
* Thanks Christophe Prud'homme for your uploads of the earlier
versions of dolfin. Removing from the Uploaders list now.
Closes: #835003.
* enable parallel build (dh $@ --parallel). Closes: #833602.
-- Drew Parsons <dparsons@debian.org> Mon, 12 Sep 2016 17:19:42 +0800
dolfin (2016.1.0-2) unstable; urgency=medium
* Enable build against version of PETSc (and SLEPc) provided by
petsc-dev, e.g. PETSc 3.6 or 3.7.
* Include support for petsc4py and slepc4py.
* Update debian/watch (uscan).
-- Drew Parsons <dparsons@debian.org> Thu, 11 Aug 2016 23:08:05 +0800
dolfin (2016.1.0-1) unstable; urgency=medium
[ Johannes Ring ]
* New upstream release.
* debian/control:
- Update package names for new SONAME 2016.1 (libdolfin1.6 ->
libdolfin2016.1 and libdolfin1.6-dbg -> libdolfin2016.1-dbg).
- Bump minimum required version for python-instant, python-ufl and
python-ffc to 2016.1.
* Move debian/libdolfin1.6.install -> debian/libdolfin2016.1.install.
* debian/rules: Add -fpermissive to CXX flags.
-- Drew Parsons <dparsons@debian.org> Tue, 05 Jul 2016 13:14:01 +0800
dolfin (1.6.0-5) unstable; urgency=medium
* Depends: libpetsc3.6-dev rather than petsc-dev.
Likewise libslepc3.6-dev.
dolfin 1.6 is not compatible with petsc 3.7.
-- Drew Parsons <dparsons@debian.org> Tue, 07 Jun 2016 09:11:42 +0800
dolfin (1.6.0-4) unstable; urgency=medium
[ Mattia Rizzolo ]
* debian/control:
+ Update VCS fields after the move to Git.
[ Drew Parsons ]
* Remove python-dolfin dependency on python-netcdf. Closes: #821215.
* Build against vtk6 not vtk5 (source and libdolfin-dev dependencies).
Requires Qt4 support to be switched off (vtk6 uses Qt5).
Qt support has been dropped upstream. Closes: #821875.
* Activate support for SCOTCH.
* Standards-Version: 3.9.8
-- Drew Parsons <dparsons@debian.org> Tue, 26 Apr 2016 23:59:41 +0800
dolfin (1.6.0-3) unstable; urgency=medium
* Team upload.
* Use OPENMPI_ARCHITECTURES from mpi-default-dev instead of hardcoding
architectures where not to use openmpi.
-- Mattia Rizzolo <mattia@debian.org> Thu, 21 Apr 2016 15:33:43 +0000
dolfin (1.6.0-2) unstable; urgency=medium
* Team upload.
* Run wrap-and-sort -s
* Switch to unversioned Build-Depends on petsc-dev and slepc-dev (also for
the libdolfin-dev dependencies).
-- Mattia Rizzolo <mattia@debian.org> Thu, 21 Apr 2016 13:32:44 +0000
dolfin (1.6.0-1) unstable; urgency=medium
* New upstream release.
* debian/control:
- Add gfortran to build dependencies.
- Update package names for new SONAME 1.6 (libdolfin1.5 ->
libdolfin1.6 and libdolfin1.5-dbg -> libdolfin1.6-dbg).
- Bump minimum required version for python-instant, python-ufl and
python-ffc to 1.6.0.
- Require swig3.0 (>= 3.0.3) in Build-Depends.
* Move debian/libdolfin1.5.install -> debian/libdolfin1.6.install.
* Remove patch for fixing problem with Python 2.7.10 (fixed upstream).
* debian/rules:
- Replace swig with swig3.0.
- Set PETSC_DIR to /usr/lib/petsc and SLEPC_DIR to /usr/lib/slepc.
- Explicitly disable petsc4py, slepc4py and sphinx.
- Help CMake find the parallel version of hdf5.
-- Johannes Ring <johannr@simula.no> Sat, 31 Oct 2015 13:30:16 +0800
dolfin (1.5.0-4) unstable; urgency=medium
* debian/control: Enable libpetsc3.2-dev and libslepc3.2-dev on
armel, arm64 and hurd-i386 (closes: #787494).
* debian/rules: Enable MPI on armel.
-- Johannes Ring <johannr@simula.no> Tue, 02 Jun 2015 12:39:45 +0200
dolfin (1.5.0-3) unstable; urgency=medium
* Add patch to fix issue with Python 2.7.10 (closes: #786857).
-- Johannes Ring <johannr@simula.no> Mon, 01 Jun 2015 09:26:07 +0200
dolfin (1.5.0-2) unstable; urgency=medium
* Upload to unstable (closes: #780359).
-- Johannes Ring <johannr@simula.no> Wed, 13 May 2015 09:48:59 +0200
dolfin (1.5.0-1) experimental; urgency=medium
* New upstream release (closes: #780359).
* debian/control:
- Bump Standards-Version to 3.9.6 (no changes needed).
- Bump X-Python-Version to >= 2.7.
- Update package names for new SONAME 1.5 (libdolfin1.4 ->
libdolfin1.5, libdolfin1.4-dbg -> libdolfin1.5-dbg and
libdolfin1.4-dev -> libdolfin1.5-dev).
- Bump minimum required version for python-instant, python-ufl and
python-ffc to 1.5.0.
- Add python-sympy and python-six to Depends for binary package
python-dolfin.
- Add dh-python to Build-Depends.
- Remove libcgal-dev from {Build-}Depends.
* Remove CSGCGALMeshGenerator3D-oom.patch since CGAL is no longer used
by DOLFIN.
* Move debian/libdolfin1.4.install -> debian/libdolfin1.5.install.
* debian/rules: No longer any non DFSG-free stuff to remove, so update
get-orig-source target (update debian/watch accordingly).
* Update debian/copyright and debian/copyright_hints.
-- Johannes Ring <johannr@simula.no> Tue, 17 Mar 2015 07:57:11 +0100
dolfin (1.4.0+dfsg-4) unstable; urgency=medium
* debian/control: Disable libcgal-dev on i386, mipsel and sparc.
* debian/rules: Remove bad directives in pkg-config file dolfin.pc
(closes: #760658).
* Remove debian/libdolfin-dev.lintian-overrides.
-- Johannes Ring <johannr@simula.no> Mon, 22 Sep 2014 14:35:34 +0200
dolfin (1.4.0+dfsg-3) unstable; urgency=medium
* debian/rules: Enable MPI on mips(el) and sparc (closes: #759182).
* debian/control:
- Disable libcgal-dev on {hurd, kfreebsd}-i386 since it requires
unreasonable amounts of memory (closes: #759183).
- Disable libpetsc3.4.2-dev and libslepc3.4.2-dev on amr64 since
they are not available on this architecture.
-- Johannes Ring <johannr@simula.no> Fri, 29 Aug 2014 08:28:19 +0200
dolfin (1.4.0+dfsg-2) unstable; urgency=medium
* Rename libdolfin1.4-dev to libdolfin-dev and remove dolfin-dev.
-- Johannes Ring <johannr@simula.no> Mon, 18 Aug 2014 10:21:43 +0200
dolfin (1.4.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* debian/control:
- Update package names for new SONAME 1.3 (libdolfin1.3 ->
libdolfin1.4, libdolfin1.3-dbg -> libdolfin1.4-dbg and
libdolfin1.3-dev -> libdolfin1.4-dev).
- Bump minimum required version for python-instant, python-ufl and
python-ffc to 1.4.0.
- Add python-ffc (>= 1.4.0) to Build-Depends.
- Replace swig2.0 with swig in Build-Depends.
- Remove ufc and python-ufc from Build-Depends and from Depends for
binary package libdolfin1.4-dev and python-dolfin (closes: #755727).
- Add libdolfin1.3-dev in Conflicts and Replaces for binary package
libdolfin1.4-dev.
- Remove libarmadillo-dev from {Build-}Depends.
- Remove libptscotch-dev from {Build-}Depends (closes: #741165).
* Move debian/libdolfin1.3.install -> debian/libdolfin1.4.install
and debian/libdolfin1.3-dev.install -> debian/libdolfin1.4-dev.install.
* debian/rules:
- Enable CGAL again (accidentally disabled in last upload).
- No longer needed to remove .pyc files in get-orig-source target.
- Add "export PERL_LWP_SSL_VERIFY_HOSTNAME=0" to get-orig-source
target to help uscan download from Bitucket.
* Remove patch for bug in Boost (fixed).
* Add lintian override libdolfin1.4-dev: pkg-config-bad-directive.
-- Johannes Ring <johannr@simula.no> Mon, 11 Aug 2014 09:57:36 +0200
dolfin (1.3.0+dfsg-2) unstable; urgency=medium
* debian/control:
- Disable libcgal-dev on armhf and mips since it requires
unreasonable amounts of memory (closes: 739697).
- Disable libpetsc3.4.2-dev and libslepc3.4.2-dev on hurd-i386 since
they are not available on this architecture.
* Add patch to workaround bug in boost (thanks to Peter Green).
* Use DEB_BUILD_MULTIARCH when installing the DOLFIN library and
pkg-config file.
-- Johannes Ring <johannr@simula.no> Wed, 26 Feb 2014 12:23:11 +0100
dolfin (1.3.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Remove patches for PETSc/SLEPc 3.4 (no longer needed).
* debian/docs: README -> README.rst and remove TODO.
* debian/control:
- Bump Standards-Version to 3.9.5 (no changes needed).
- Add libeigen3-dev in Build-Depends and Depends for binary package
libdolfin1.3-dev.
- Add python-ply in Build-Depends.
- Update package names for new SONAME 1.3 (libdolfin1.2 ->
libdolfin1.3, libdolfin1.2-dbg -> libdolfin1.3-dbg and
libdolfin1.2-dev -> libdolfin1.3-dev).
- Bump minimum required version for ufc and python-ufc to 2.3.0, and
for python-instant, python-ufl and python-ffc to 1.3.0.
- Add libdolfin1.2-dev in Conflicts and Replaces for binary package
libdolfin1.3-dev.
- Add python-ply in Build-Depends.
* Move debian/libdolfin1.2.install -> debian/libdolfin1.3.install
and debian/libdolfin1.2-dev.install -> debian/libdolfin1.3-dev.install.
* debian/libdolfin1.3-dev.install: Remove pkg-config file dolfin.pc
(cmake files should be used instead).
* debian/rules: Remove .pyc files in get-orig-source target.
-- Johannes Ring <johannr@simula.no> Fri, 14 Feb 2014 19:11:50 +0100
dolfin (1.2.0+dfsg-4) unstable; urgency=medium
* Team upload.
* CSGCGALMeshGenerator3D-oom.patch: new patch, workaround for FTBFS on some
arches due to g++ eating all the RAM.
-- Sébastien Villemot <sebastien@debian.org> Sat, 14 Dec 2013 19:16:13 +0100
dolfin (1.2.0+dfsg-3) unstable; urgency=low
* Team upload.
* Refactor patches for PETSc/SLEPc 3.4, to fix a missing symbol in the library
+ petsc-slepc-3.4.2.patch: remove patch
+ {slepc,petsc}-3.4.patch: new patches taken from upstream
-- Sébastien Villemot <sebastien@debian.org> Sun, 27 Oct 2013 15:48:52 +0100
dolfin (1.2.0+dfsg-2) unstable; urgency=low
* Team upload.
* Update (build-)dependencies to libpetsc3.4.2-dev and
libslepc3.4.2-dev.
* petsc-slepc-3.4.2.patch: new patch to adapt for the new PETSC/SLEPC.
-- Sébastien Villemot <sebastien@debian.org> Sat, 26 Oct 2013 04:33:36 +0200
dolfin (1.2.0+dfsg-1) unstable; urgency=low
* New upstream release (closes: #718636, #718153).
* debian/control:
- Replace libdolfin1.1 with libdolfin1.2 and libdolfin1.1-dev with
libdolfin1.2-dev to follow library soname.
- Bump required version for ufc, python-ufc, python-ffc, python-ufl,
and python-instant.
- Add libdolfin1.1-dev to Conflicts and Replaces for binary package
libdolfin1.2-dev.
- Bump Standards-Version to 3.9.4.
- Remove DM-Upload-Allowed field.
- Bump required debhelper version in Build-Depends.
- Replace python-all-dev with python-dev in Build-Depends.
- Remove cdbs from Build-Depends.
- Use canonical URIs for Vcs-* fields.
- Disable libcgal-dev on armel.
- Enable libpetsc3.2-dev and libslepc3.2-dev on armhf and s390x.
- Enable libptscotch-dev on all arches.
- Add new debug package python-dolfin-dbg.
* debian/compat: Bump to compatibility level 9.
* debian/rules:
- Rewrite for debhelper (drop cdbs).
- Avoid hardcoding the swig2.0 version (closes: #692852).
- Update get-orig-source target to remove non DFSG-free stuff,
update watch file accordingly.
* Update debian/copyright and debian/copyright_hints.
* Move debian/libdolfin1.1.install to debian/libdolfin1.2.install and
debian/libdolfin1.1-dev.install to debian/libdolfin1.2-dev.install
to follow library soname.
* Add dolfin-get-demos in dolfin-bin.install and add manual page for it.
* Add all CMake files in libdolfin1.2-dev.install.
-- Johannes Ring <johannr@simula.no> Tue, 06 Aug 2013 16:49:23 +0200
dolfin (1.1.0-1) UNRELEASED; urgency=low
* New upstream release.
* debian/control:
- Replace libdolfin1.0 with libdolfin1.1 and libdolfin1.0-dev with
libdolfin1.1-dev to follow library soname.
- Bump required version for ufc, python-ufc, python-ffc, python-ufl,
and python-instant.
- Add libdolfin1.0-dev to Conflicts and Depends for binary package
libdolfin1.1-dev.
- Add libvtk5-dev, libvtk5-qt4-dev, libqt4-dev, libhdf5-mpi-dev,
libboost-timer-dev and libboost-chrono-dev to Build-Depends and in
Depends field for binary package libdolfin1.1-dev.
- Add python-ply to Depends for binary package python-dolfin.
- Remove python-viper from Depends for binary package python-dolfin.
* debian/rules: Enable building with HDF5, VTK, and QT.
* Move debian/libdolfin1.0.install to debian/libdolfin1.1.install and
debian/libdolfin1.0-dev.install to debian/libdolfin1.1-dev.install
to follow library soname.
* debian/patches: Remove patches now fixed upstream.
* Determine swig2.0 version at build time (closes: #692852). Thanks to
Stefano Riviera for the patch.
-- Johannes Ring <johannr@simula.no> Thu, 10 Jan 2013 11:28:21 +0100
dolfin (1.0.0-7) unstable; urgency=low
* debian/control:
- Remove Conflicts and Replaces from binary package libdolfin1.0-dbg.
- Update long description for all packages.
- Add python-netcdf to Depends for binary package python-dolfin
(closes: #674014).
- Require SWIG upstream version 2.0.7 for binary package
python-dolfin (closes: #675207).
- Require UFC >= 2.0.5-3.
-- Johannes Ring <johannr@simula.no> Fri, 29 Jun 2012 09:45:28 +0200
dolfin (1.0.0-6) unstable; urgency=low
* debian/rules: Set default Python version to fix FTBFS when Python3
is available (closes: #672952).
* debian/control: Remove Provides: libdolfin0-dev from
libdolfin1.0-dev (and same to -dbg package).
-- Johannes Ring <johannr@simula.no> Mon, 21 May 2012 10:09:59 +0200
dolfin (1.0.0-5) unstable; urgency=low
* Add patches to fix problems with SWIG 2.0.5 and GCC 4.7.
* debian/control: Require UFC >= 2.0.5-2.
-- Johannes Ring <johannr@simula.no> Mon, 14 May 2012 11:25:47 +0200
dolfin (1.0.0-4) unstable; urgency=low
* debian/watch: Replace http with https in URL.
* debian/control:
- Add libcgal-dev to Build-Depends and Depends for binary package
libdolfin1.0-dev.
- Bump Standards-Version to 3.9.3 (no changes needed).
* debian/rules:
- Enable CGAL support.
- Call dh_numpy in binary-install/python-dolfin target to fix
lintian error missing-dependency-on-numpy-abi.
-- Johannes Ring <johannr@simula.no> Tue, 20 Mar 2012 14:47:27 +0100
dolfin (1.0.0-3) unstable; urgency=low
* Disable building with PETSc, SLEPc and SCOTCH on some arches.
-- Johannes Ring <johannr@simula.no> Tue, 14 Feb 2012 11:46:11 +0100
dolfin (1.0.0-2) unstable; urgency=low
* debian/control:
- Replace libpetsc3.1-dev and libslepc3.1-dev with libpetsc3.2-dev
and libslepc3.2-dev, respectively.
- Require libptscotch-dev, libpetsc3.2-dev and libslepc3.2-dev on
all arches.
* debian/rules: Help CMake find version 3.2 of PETSc and SLEPc by
defining PETSC_DIR and SLEPC_DIR variables, respectively.
-- Johannes Ring <johannr@simula.no> Mon, 30 Jan 2012 11:45:31 +0100
dolfin (1.0.0-1) unstable; urgency=low
* New upstream release.
* debian/control:
- Bump version numbers for python-ufc, python-ffc, python-viper,
python-ufl and python-instant in Depends field for binary package
python-dolfin.
- Bump version numbers for ufc and python-ufc in Build-Depends and
in Depends field for binary package libdolfin1.0-dev.
-- Johannes Ring <johannr@simula.no> Thu, 08 Dec 2011 08:47:31 +0100
dolfin (1.0-rc2-1) unstable; urgency=low
* New upstream release.
* debian/control: Bump version for ufc and python-ufc to 2.0.4.
-- Johannes Ring <johannr@simula.no> Tue, 29 Nov 2011 11:44:52 +0100
dolfin (1.0-rc1-1) unstable; urgency=low
* New upstream release.
* debian/control:
- Update Homepage field.
- Add libboost-math-dev to Build-Depends and in Depends field for
binary package libdolfin1.0-dev.
* Disable Trilinos support (version >= 10.8.1 now required).
* Remove patch for building with Trilinos.
* Update debian/copyright and debian/copyright_hints.
-- Johannes Ring <johannr@simula.no> Tue, 22 Nov 2011 12:10:02 +0100
dolfin (1.0-beta2-1) unstable; urgency=low
* New upstream release.
* Add lintian override dolfin-dev: empty-binary-package.
* debian/control:
- Add libboost-mpi-dev in Build-Depends and in Depends field for
binary package libdolfin1.0-dev.
- Bump version numbers for dependencies ufc, python-ufc, python-ffc,
and python-ufl.
* debian/patches: Remove patch for importing PyTrilinos before DOLFIN
as this is now fixed upstream.
-- Johannes Ring <johannr@simula.no> Thu, 27 Oct 2011 13:17:47 +0200
dolfin (1.0-beta-1) unstable; urgency=low
* New upstream release. This release fixes a large number of bugs and
brings many improvements. The most notable changes are improved
support for parallel computing and a redesigned and simplified
interface for solving variational problems.
* debian/control:
- Add libboost-iostreams-dev to Build-Depends and to Depends in -dev
package.
- Replace libdolfin0 with libdolfin1.0 and libdolfin0-dev with
libdolfin1.0-dev to follow library soname.
- Bump required version for ufc, python-ufc, python-ffc,
python-viper, python-ufl, and python-instant.
- Add provide, replace and conflict on libdolfin0-dev for binary
package libdolfin1.0-dev. Similarly for libdolfin1.0-dbg.
* Add patch for importing PyTrilinos before dolfin (closes: #631589).
* Rename libdolfin0.install to libdolfin1.0.install and
libdolfin0-dev.install to libdolfin1.0-dev.install to follow library
soname.
-- Johannes Ring <johannr@simula.no> Wed, 17 Aug 2011 12:01:58 +0200
dolfin (0.9.11-1) unstable; urgency=low
* New upstream release. This release moves to SWIG 2.0 and it
incorporates a significant number of bug fixes.
* debian/control:
- Bump Standards-Version to 3.9.2 (no changes needed).
- Replace swig with swig2.0 in Build-Depends.
- Add swig2.0 to Depends for binary package python-dolfin.
- Bump required version for ufc and python-ufc in Build-Depends.
- Bump required version for ufc, python-ufc, python-ffc, python-ufl
and python-instant in Depends for binary packages libdolfin0-dev
and python-dolfin.
* debian/rules:
- Set SWIG_EXECUTABLE to /usr/bin/swig2.0.
- Use DEB_COMPRESS_EXCLUDE_ALL instead of deprecated
DEB_COMPRESS_EXCLUDE.
- Include cdbs utils.mk rule for automated copyright checks.
* debian/copyright:
- Update for upstream license change to LGPLv3.
- Switch to DEP-5 format.
* Remove custom cdbs rules and licensecheck script for copyright check.
* Disable MPI on lam architectures (closes: #627172).
* Add patch to fix FTBFS when Trilinos is enabled (closes: #624925).
-- Johannes Ring <johannr@simula.no> Wed, 18 May 2011 13:30:21 +0200
dolfin (0.9.10-2) unstable; urgency=low
* Move from python-central to dh_python2 (closes: #616793).
- Remove python-central from Build-Depends.
- Bump minimum required python-all-dev package version to 2.6.6-3~.
- Remove XB-Python-Version line.
- Bump minimum required cdbs version to 0.4.90~.
- Replace XS-Python-Version with X-Python-Version.
- Replace call to dh_pycentral with dh_python2 in debian/rules.
* Build for all supported Python versions.
* Remove some unnecessary packages in Depends for binary packages
libdolfin0 and libdolfin0-dev.
* Add ufc and python-ufc in Depends for binary package libdolfin0-dev.
* Add python-ufc, python-ffc, python-viper, python-ufl python-instant,
and python-numpy in Depends for binary package python-dolfin.
* Disable building with PETSc and SLEPc on some architectures.
* Remove old Provides field for binary package python-dolfin.
-- Johannes Ring <johannr@simula.no> Fri, 15 Apr 2011 09:17:37 +0200
dolfin (0.9.10-1) unstable; urgency=low
* New upstream release. This release fixes bug "FTBFS: error:
'SCOTCH_Dgraph' was not declared in this scope" (closes: #612602).
* debian/control:
- Add libslepc3.1-dev and libboost-thread-dev to Build-Depends and
Depends field in binary package libdolfin0-dev.
- Bump build dependency on python-ufc to >= 2.0.0.
- Remove Build-Depends-Indep field as upstream no longer ships the
user manual.
- Remove old fields Conflicts, Provides, and Replaces from
libdolfin0-dev, libdolfin0, libdolfin0-dbg, and python-dolfin.
* Remove all patches as they are now incorporated upstream.
* Add dolfin-plot and dolfin-version to debian/dolfin-bin.install.
* Remove .doc-base file since the user manual is removed by upstream.
* Remove targets clean and install/dolfin-doc from debian/rules since
they are no longer needed.
-- Johannes Ring <johannr@simula.no> Thu, 24 Feb 2011 10:34:44 +0100
dolfin (0.9.9-4) unstable; urgency=low
* Update Homepage field in debian/control and Maintainer field in
debian/copyright.
* Add patch for generating correct pkg-config file dolfin.pc.
-- Johannes Ring <johannr@simula.no> Tue, 11 Jan 2011 12:36:55 +0100
dolfin (0.9.9-3) unstable; urgency=low
* Add patch from upstream to fix problem with the CMake config file
(dolfin-config.cmake) having the wrong path to the DOLFIN library.
-- Johannes Ring <johannr@simula.no> Tue, 14 Sep 2010 18:45:39 +0200
dolfin (0.9.9-2) unstable; urgency=low
* debian/rules: Make CMake skip adding runtime paths.
-- Johannes Ring <johannr@simula.no> Tue, 14 Sep 2010 10:49:24 +0200
dolfin (0.9.9-1) unstable; urgency=low
* New upstream release.
* Switch to CMake CDBS class:
- Replace scons with cmake in Build-Depends and in Suggests for
binary package dolfin-doc.
- Add cmake to Depends field for binary package libdolfin0-dev.
- Install CMake config file for DOLFIN with package libdolfin0-dev.
* debian/control:
- Update version for python-ufc in Build-Depends field.
- Update version for python-ufl in Depends field for binary package
libdolfin0-dev.
- Update version for ufc and python-ffc in Depends field for binary
package libdolfin0-dev.
- Bump Standards-Version to 3.9.1 (no changes needed).
* Add patches from upstream to help CMake find PETSc, SLEPc, and
Trilinos and for installing some missing utilities (dolfin-convert
and dolfin-order) and manual pages.
* Update debian/copyright and debian/copyright_hints.
-- Johannes Ring <johannr@simula.no> Mon, 13 Sep 2010 11:45:17 +0200
dolfin (0.9.8-3) unstable; urgency=low
* Disable Trilinos on non-supported platforms (closes: #590100).
-- Johannes Ring <johannr@simula.no> Wed, 04 Aug 2010 16:47:38 +0200
dolfin (0.9.8-2) unstable; urgency=low
* Fix generation of pkg-config file dolfin.pc.
-- Johannes Ring <johannr@simula.no> Sun, 04 Jul 2010 20:41:45 +0200
dolfin (0.9.8-1) unstable; urgency=low
* New upstream release.
* debian/control:
- Update version for python-ufc in Build-Depends field.
- Update version for python-ufl in Depends field for binary package
libdolfin0-dev.
- Update version for ufc, python-ffc, and python-viper in Depends
field for binary package libdolfin0-dev.
- Add libarmadillo-dev to Build-Depends and Depends for binary
package libdolfin0-dev.
* Allow building against either version 3.0.0 or 3.1 of PETSc.
* Remove patches (added upstream).
* Switch to dpkg-source 3.0 (quilt) format.
* Update debian/copyright and debian/copyright_hints.
* Enable Trilinos support.
-- Johannes Ring <johannr@simula.no> Fri, 02 Jul 2010 13:24:21 +0200
dolfin (0.9.7-5) unstable; urgency=low
* Add patch from upstream to detect and build with SCOTCH.
-- Johannes Ring <johannr@simula.no> Mon, 14 Jun 2010 13:15:04 +0200
dolfin (0.9.7-4) unstable; urgency=low
* Add support for PETSc 3.1 (closes: #583419).
* Minor fix in Vcs fields in debian/control.
-- Johannes Ring <johannr@simula.no> Mon, 07 Jun 2010 09:25:13 +0200
dolfin (0.9.7-3) unstable; urgency=low
* debian/rules: Remove bashism (closes: #581470).
-- Johannes Ring <johannr@simula.no> Thu, 20 May 2010 10:27:06 +0200
dolfin (0.9.7-2) unstable; urgency=low
* Package moved from pkg-scicomp to Debian Science.
* Enable building for multiple Python versions.
* debian/control:
- Replace python-dev with python-all-dev in Build-Depends.
- Update version dependencies for python-ufc, ufc, python-ffc, and
python-viper (closes: #571780).
- Replace libscotch-dev with libptscotch-dev in Build-Depends and in
Depends for binary package libdolfin0-dev.
* Add configure target to cdbs tweaks for scons.
* Rename binary package python-pydolfin0 to python-dolfin.
-- Johannes Ring <johannr@simula.no> Tue, 27 Apr 2010 17:21:22 +0200
dolfin (0.9.7-1) unstable; urgency=low
* New upstream release.
* debian/control: Add pkg-config to Build-Depends and Depends in
binary package libdolfin0-dev.
* Do not build with GTS (support was removed upstream).
* Keep debian/copyright and debian/copyright_hints up to date.
-- Johannes Ring <johannr@simula.no> Thu, 18 Feb 2010 00:40:38 +0100
dolfin (0.9.6-2) unstable; urgency=low
* Disable support for Trilinos for now.
-- Johannes Ring <johannr@simula.no> Sat, 13 Feb 2010 09:55:48 +0100
dolfin (0.9.6-1) unstable; urgency=low
* New upstream release.
* debian/control:
- Add libtrilinos-dev to Build-Depends and Depends for binary
package libdolfin0-dev.
- Add python-pytrilinos to Build-Depends and Depends for binary
package python-pydolfin0.
- Bump Standards-Version to 3.8.4 (no changes needed).
* debian/rules:
- Enable building with Trilinos.
- Remove some old lintian fixes.
- Fix problem when generating pkg-config dolfin.pc in
install/libdolfin0-dev target.
* debian/copyright: Keep up-to-date with new and removed files.
-- Johannes Ring <johannr@simula.no> Fri, 12 Feb 2010 10:27:02 +0100
dolfin (0.9.5-1) unstable; urgency=low
* New upstream release. This release simplifies the use of Constants
and Expressions in both the C++ and Python interfaces, with the
automatic selection of function spaces from Python. Support for
computing eigenvalues of symmetric matrices has been improved and a
number of small bugs have been fixed.
* debian/watch: Update download URL.
* debian/copyright: Update for new and removed files.
* debian/rules:
- Include new adaptivity demos in dolfin-doc package.
- Disable ParMETIS and MTL4 explicitly.
* Add debian/dolfin-doc.doc-base for DOLFIN user manual.
* debian/control: Slight modifications in package descriptions.
* debian/python-pydolfin0.install: Allow both site-packages and
dist-packages.
-- Johannes Ring <johannr@simula.no> Thu, 10 Dec 2009 11:53:04 +0100
dolfin (0.9.4-1) unstable; urgency=low
* New upstream release. This version cleans up the design of the
function class by adding a new abstraction for user-defined
functions called Expression. A number of minor bugfixes and
improvements have also been made.
* debian/watch: Update for new flat directory structure.
* Update debian/copyright.
* debian/rules: Use explicit paths to PETSc 3.0.0 and SLEPc 3.0.0.
-- Johannes Ring <johannr@simula.no> Mon, 12 Oct 2009 14:13:18 +0200
dolfin (0.9.3-1) unstable; urgency=low
* New upstream release. This version provides many new features,
improvements and bug fixes, including improved XML file handling,
improved Python support and compressed VTK file output. Experimental
parallel assembly and solve is now available, with fully distributed
meshes, parallel mesh partitioning and parallel IO.
* debian/control:
- Add DM-Upload-Allowed: yes.
- Bump debhelper version to 7.
- Bump Standards-Version to 3.8.3 (no changes needed).
- Add libboost-program-options-dev and libboost-filesystem-dev to
Build-Depends and to Depends for binary package libdolfin0-dev.
* debian/rules:
- Update for new 3 step build process.
- Build documentation.
* Update debian/copyright.
* Remove old patches (now included upstream).
* Remove (temporary) support for Trilinos because of #529807.
-- Johannes Ring <johannr@simula.no> Mon, 28 Sep 2009 09:21:05 +0200
dolfin (0.9.2-2) unstable; urgency=low
* debian/control:
- add build-dependency on libtrilinos-dev and
libboost-serialization-dev (closes: #540118).
- add libtrilinos-dev to Depends field for -dev package.
- add python-pytrilinos to Depends field for python- package.
- change -dbg package section to debug (removes lintian warning).
- update Standard-Version to 3.8.2.
* debian/rules: enable building against Trilinos.
* debian/patches: add patch for build system to find Trilinos (taken
from upstream development repository).
-- Johannes Ring <johannr@simula.no> Mon, 10 Aug 2009 16:03:52 +0200
dolfin (0.9.2-1) unstable; urgency=low
* Initial release (Closes: #503082)
-- Johannes Ring <johannr@simula.no> Tue, 16 Sep 2008 08:41:20 +0200
|