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
|
gmsh (4.13.1+ds1-6) unstable; urgency=medium
* [44ad17d] Add ann_change_case_and_force.patch to ensure that
ANN support is enabled:
- previous builds were not correctly enabling ANN support because debian
packages the ANN library as libann.so, rather than libANN.so
- apart from changing the case, the patch now also forces the
configuration to stop if ANN support is missing.
-- Francesco Ballarin <francesco.ballarin@unicatt.it> Thu, 24 Apr 2025 14:37:54 +0000
gmsh (4.13.1+ds1-5) unstable; urgency=medium
* [fd17211] Force linking against BLAS/Lapack. Closes: #1095345
-- Francesco Ballarin <francesco.ballarin@unicatt.it> Thu, 13 Feb 2025 13:47:31 +0000
gmsh (4.13.1+ds1-4) unstable; urgency=medium
* [944015c] OpenMPI 5.0 changed the name of the environment variable to set the SSH
agent from
export OMPI_MCA_plm_rsh_agent=/bin/false
to
export PRTE_MCA_plm_ssh_agent=/bin/false
Use the new variable name in debian/tests.
-- Francesco Ballarin <francesco.ballarin@unicatt.it> Wed, 20 Nov 2024 07:14:42 +0000
gmsh (4.13.1+ds1-3) unstable; urgency=medium
* [fdf87e1] Add 7c97e80b80bbaf5301df9b812d3ea734a7c3611e.patch to
fix FTBS in tetMesh on 32 bit arches. Closes: #1084087.
-- Francesco Ballarin <francesco.ballarin@unicatt.it> Sun, 13 Oct 2024 07:53:10 +0000
gmsh (4.13.1+ds1-2) unstable; urgency=medium
* Upload to unstable. See transition request in Bug #1081740.
-- Francesco Ballarin <francesco.ballarin@unicatt.it> Sun, 29 Sep 2024 15:16:11 +0000
gmsh (4.13.1+ds1-1~exp1) experimental; urgency=medium
[ Francesco Ballarin ]
* [18a6f08] Allow failure for reprotest step on salsa CI
* [2e8b968] Restore working uscan
* [0d8d12f] New upstream version 4.13.1+ds1
* [0acac32] Refresh all patches so that they apply without fuzz
* [45d7a8d] ABI change: increase from 4.12t64 to 4.13
* [9821cb0] Add 160-hard-fail-med-cgns.patch
* [076b7cf] Add Build-Depends on libhdf5-dev. Closes: #1070344.
* [ff11883] Test export to .cgns file on debci
* [df2d059] Bump Standards-Version to 4.7.0
[ Anton Gladky ]
* [7d0948b] Minor patch update
-- Anton Gladky <gladk@debian.org> Mon, 17 Jun 2024 06:22:51 +0200
gmsh (4.12.2+ds1-2) unstable; urgency=medium
* Team upload.
* Fix FTBFS with opencascade 7.8.1 (Closes: #1071451) and to ensure
that the rebuilt netgen is used, add a version to the B-D on libnglib-dev.
-- Tobias Frost <tobi@debian.org> Fri, 24 May 2024 23:43:14 +0200
gmsh (4.12.2+ds1-1) unstable; urgency=medium
* [8121e10] New upstream version 4.12.2+ds1
* [1bcd801] Refresh patch 141_search_in_triplet_subdir.patch
-- Francesco Ballarin <francesco.ballarin@unicatt.it> Sat, 13 Apr 2024 13:28:03 +0000
gmsh (4.12.1+ds1-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Rename libraries for 64-bit time_t transition. Closes: #1062447
-- Steve Langasek <vorlon@debian.org> Wed, 28 Feb 2024 18:49:14 +0000
gmsh (4.12.1+ds1-1) unstable; urgency=medium
[ Anton Gladky ]
* [7183a10] Update b/d from libgl1-mesa-dev to libgl-dev
* [ada5876] Update lintian override info format in d/gmsh-doc.lintian-overrides on line 1.
* [d433218] Update standards version to 4.6.2, no changes needed.
* [c80a6f6] Drop old version restrictions in d/control
[ Francesco Ballarin ]
* [9bf6126] New upstream version 4.12.1+ds1
* [11089e5] Add python tests to autopkgtest
* [b398ec5] Add patch 141_search_in_triplet_subdir.patch to include
subdirectory with arch triplet (e.g., /usr/lib/x86_64-linux-gnu/ or
/usr/lib/i386-linux-gnu/) in search path when loading libgmsh.so from
python.
-- Anton Gladky <gladk@debian.org> Wed, 24 Jan 2024 19:58:13 +0100
gmsh (4.12.0+ds1-1) unstable; urgency=medium
* [6dbbc08] New upstream version 4.12.0+ds1. (Closes: #1061174, #1060715)
* [790c7e5] Drop 2416_missing_include_gcc13.patch, since the fix to upstream
issue #2416 has made it into the 4.12.0 release
* [36aa44a] Refresh 20_skip_license_file.patch,
30_delete_gl2ps_from_source.patch and 140_drop_css.patch
* [113c3ac] Replace gmsh 4.11 with 4.12 in control and rules
-- Francesco Ballarin <francesco.ballarin@unicatt.it> Fri, 29 Dec 2023 16:38:00 +0000
gmsh (4.11.1+ds1-1) unstable; urgency=medium
* [461486e] New upstream version: 4.11.1+ds1
* [691af26] Add 2416_missing_include_gcc13.patch: backport patch to address
upstream issue #2416 about missing <cstdint> include in
src/mesh/meshGFacePack.cpp and
contrib/QuadMeshingTools/qmtMeshGeometryOptimization.h
* [b9cb832] Refresh 20_skip_license_file.patch
* [13d5954] Refresh 30_delete_gl2ps_from_source.patch
* [3e15b9f] Refresh 140_drop_css.patch
* [0bc89dc] Documentation now requires epsf.tex, which is contained in
texlive-plain-generic
* [f06983c] Upstream commit d3ea6140 has moved demos to examples and
tutorial to tutorials
* [a371da8] Also install gmsh*.dist-info to usr/lib/python3/dist-packages so
that calling "pip show gmsh" reports the python gmsh package as installed
* [7d0f9b4] Also install gmsh.f90 to usr/include
* [ecfc46f] Add Francesco Ballarin to uploaders
* [edeb4b6] Add libgmsh-private-headers-dev to override_dh_installdocs
-- Francesco Ballarin <francesco.ballarin@unicatt.it> Tue, 19 Dec 2023 10:57:16 +0000
gmsh (4.8.4+ds2-2) unstable; urgency=medium
* [a3b3547] Add Breaks+Replaces: libgmsh4. (Closes: #1001770)
* [9a78c7e] Avoid explicitly specifying -Wl,--as-needed linker flag.
-- Anton Gladky <gladk@debian.org> Thu, 16 Dec 2021 21:45:43 +0100
gmsh (4.8.4+ds2-1) unstable; urgency=medium
* [67d9673] Update d/copyright. (Thanks, Thorsten!)
* [6a27104] New upstream version 4.8.4+ds2
* [fc0b62a] Rename libmgsh4 to libgmsh4.8. (Closes: #995424)
* [f1f4bc0] Provide private api headers. (Closes: #948773)
* [9befa85] Set Standards-Version to 4.6.0
-- Anton Gladky <gladk@debian.org> Sun, 07 Nov 2021 20:54:27 +0100
gmsh (4.8.4+ds1-1) unstable; urgency=medium
* [09f027c] New upstream version 4.8.4+ds1
* [a8d0d23] Refresh patches
-- Kurt Kremitzki <kkremitzki@debian.org> Mon, 06 Sep 2021 11:31:01 -0500
gmsh (4.7.1+ds1-5) unstable; urgency=medium
* One more rebuild due to libvoro ABI break.
-- Anton Gladky <gladk@debian.org> Tue, 02 Mar 2021 19:19:23 +0100
gmsh (4.7.1+ds1-4) unstable; urgency=medium
* Rebuild due to libvoro ABI break.
-- Anton Gladky <gladk@debian.org> Thu, 25 Feb 2021 21:47:11 +0100
gmsh (4.7.1+ds1-3) unstable; urgency=medium
* [c19cfcf] Add libeigen3-dev dep and include path
-- Kurt Kremitzki <kkremitzki@debian.org> Sun, 14 Feb 2021 18:00:47 -0600
gmsh (4.7.1+ds1-2) unstable; urgency=medium
* [e19a2fd] Set upstream metadata fields: Bug-Submit.
* [abd212e] Set Standards-Version to 4.5.1
-- Anton Gladky <gladk@debian.org> Wed, 06 Jan 2021 18:40:21 +0100
gmsh (4.7.1+ds1-1) unstable; urgency=medium
* Upload to Unstable
-- Kurt Kremitzki <kkremitzki@debian.org> Mon, 21 Dec 2020 12:38:15 -0600
gmsh (4.7.1+ds1-1~exp1) experimental; urgency=medium
[ Nico Schlömer ]
* [e5b9abc7] New upstream version 4.7.0+ds1
* [71bd6c1] update patch again
[ Kurt Kremitzki ]
* [94e195e] Use gitlab.onelab.info as upstream for d/watch
* [1074c4e] New upstream version 4.7.1+ds1
* [a0edf90] Refresh patches
-- Kurt Kremitzki <kkremitzki@debian.org> Sun, 06 Dec 2020 03:08:22 -0600
gmsh (4.6.0+ds1-1) unstable; urgency=medium
[ Nico Schlömer ]
* [665d298c] New upstream version 4.6.0+ds1
[ Anton Gladky ]
* [119e18f] Set debhelper-compat to 13
* [0487501] Add Rules-Requires-Root: no
* [4ffbdfb] Refresh patches
* [daa9dd3] Fix FTBFS due to dh_missing
-- Anton Gladky <gladk@debian.org> Mon, 13 Jul 2020 22:19:26 +0200
gmsh (4.5.6+ds1-1) unstable; urgency=medium
[ Nico Schlömer ]
* [0ab117ea] New upstream version 4.5.6+ds1
* [8ac49714] Fix icon installation
* [fed80106] bump debhelper-compat to 12
[ Anton Gladky ]
* [5f16340] Set upstream metadata fields: Bug-Database, Bug-Submit, Repository, Repository-Browse.
* [bdc186e] Rely on pre-initialized dpkg-architecture variables.
* [2806665] Minor fix in upstream/metadata
* [3da9647] Add myself as uploader again
* [d00e484] Add vesioned dependency on libgl2ps-dev
-- Anton Gladky <gladk@debian.org> Thu, 09 Apr 2020 19:54:16 +0200
gmsh (4.4.1+ds1-1) unstable; urgency=medium
[ Nico Schlömer ]
* [5d1f83d3] New upstream version 4.4.0+ds1
* [bf3c34bc] add proper logo
* [3a2c9826] don't override_dh_auto_install
* [f0275858] remove dh-exec dependency
* [f79547ae] more canonical installation
* [f7d07307] New upstream version 4.1.5+ds1
* [18426009] Add Metis support
* [eb1e5c3f] Remove MPI, enable OpenMP
* [9e1bff41,11ed9f54] Remove unused dependencies
* [2d00240b] update metadata
[ Kurt Kremitzki ]
* [532bd77] New upstream version 4.4.1+ds1
* [b0705ac4] Add libgmsh4.lintian-overrides to ignore soname warning
* [37d01960] Switch to major-version package name
* [48b7ce5f] Remove unused contrib package in d/copyright
* [7a089e78] Remove Python 2 package
* [aea930a] Add patch to fix immintrin.h build failure
* [3556b0a] Update OpenCASCADE path
* [fcc2d0c] Re-add python-gmsh package
[ Anton Gladky ]
* [07f30ce] Use secure URI in Homepage field.
* [22f5b20] Remove myself from uploaders
-- Anton Gladky <gladk@debian.org> Wed, 31 Jul 2019 22:00:53 +0200
gmsh (4.1.5+really4.1.3+ds1-1) unstable; urgency=medium
* [6d62e8c] debian/rules: Do not pass `-DOCC_INC=...` to cmake
(Closes: #927808)
-- Kurt Kremitzki <kurt@kwk.systems> Wed, 29 May 2019 19:26:44 -0500
gmsh (4.1.3+ds1-1) unstable; urgency=medium
* [dbbbe82] New upstream version 4.1.3+ds1
* [df49b2c6] Update packaging for Gmsh 4.1
-- Kurt Kremitzki <kurt@kwk.systems> Sun, 27 Jan 2019 05:22:01 -0600
gmsh (3.0.6+dfsg1-4.1) unstable; urgency=medium
* Non-maintainer upload.
* New patch support-med-4.patch to fix FTBFS against med-fichier 4.0.0
(Closes: #916971)
-- Gilles Filippini <pini@debian.org> Thu, 20 Dec 2018 21:24:21 +0100
gmsh (3.0.6+dfsg1-4) unstable; urgency=medium
[ Joost van Zwieten ]
* [f5ae4cb] add missing build dep for OpenCASCADE support (Closes: #904946)
* [42ecb4e] add autopkgtest for reading step files
-- Kurt Kremitzki <kurt@kwk.systems> Sun, 02 Dec 2018 18:47:52 -0600
gmsh (3.0.6+dfsg1-3) unstable; urgency=medium
* Upload into unstable
-- Anton Gladky <gladk@debian.org> Tue, 24 Jul 2018 22:33:04 +0200
gmsh (3.0.6+dfsg1-2) experimental; urgency=medium
* [8eba763] Switch OpenCASCADE dependency from OCE->OCCT
* [168e236] Update 140_drop_css.patch to catch privacy leak
* [aa5d947] Fix med-fichier version dep (not working on 3.3.1)
* [e4f20ac] Lintian and standards cleanup
-- Kurt Kremitzki <kkremitzki@gmail.com> Fri, 08 Jun 2018 14:42:32 -0500
gmsh (3.0.6+dfsg1-1) unstable; urgency=medium
[ Nico Schlömer ]
* [ea6f1b0] New upstream version 3.0.6+dfsg1
* [a3c9b4e] remove upstreamed patches
* [b80ccf1] add patch for install dirs
* [a1bcd56] use all hardening options
* [56a5166] apply multi-arch hints
[ Anton Gladky ]
* [b729c42] Add Breaks/Replaces for libjava-gmsh3. (Closes: #880214)
* [c5a5ac0] Apply cme fix dpkg
-- Anton Gladky <gladk@debian.org> Tue, 07 Nov 2017 21:08:16 +0100
gmsh (3.0.5+dfsg1-1) unstable; urgency=medium
* [9198f30] Update d/copyright
* [72a75ef] Remove testsuite-field in d/copyright
* [594797c] Rename libgmsh2v5 to libgmsh3
* [1e5cc6c] Drop gmsh.css not to cause a privacy breach
* Upload into unstable
-- Anton Gladky <gladk@debian.org> Sat, 21 Oct 2017 12:05:21 +0200
gmsh (3.0.5+dfsg1-1~exp1) experimental; urgency=medium
[ Nico Schlömer ]
* [5e7b80b] fix custom test (in preparation for gmsh 3)
* [c1d17e5] New upstream version 3.0.5+dfsg1
* [c150988] RPATH fix
* [ae51946] remove `Multi-Arch: foreign`
* [32757fd] bump standards version (no changes necessary)
* [a0834d6, 76fccb7] copyright updates
* [32757fd] update standards-version to 4.1.0
* [a0834d6] copyright updates
* [c776245] update license patch
* [03cf825] disable OpenCascade (version requirement not fulfilled)
* [5c9ff4d] refresh patches
* [172d478] don't disable OCC (OCE 0.18.2 now in unstable)
[ Anton Gladky ]
* [8f2376f] Refresh patches
* [8190637] Fix wrapper for Java.
* [859624a] Remove deprecated patches
* [af4a10f] Use compat level 10
* [e14c59e] Set Standards-Version: 4.1.1
* [b123a79] Change section for libjava-gmsh2
-- Anton Gladky <gladk@debian.org> Wed, 18 Oct 2017 21:36:53 +0200
gmsh (2.15.0+dfsg1-3) unstable; urgency=medium
* [a9cb0c4] Disable autotest on mips64el (unstable).
-- Anton Gladky <gladk@debian.org> Fri, 30 Dec 2016 12:16:27 +0100
gmsh (2.15.0+dfsg1-2) unstable; urgency=medium
[ Graham Inggs ]
* [1b78bda] Replace OMPI_MCA_orte_rsh_agent by OMPI_MCA_plm_rsh_agent for
autopkgtests too
* [611f7b5] Allow stderr output in the autopkgtests, see #814451
[ Anton Gladky ]
* [a720f68] Enable CGNS. (Closes: #845994)
-- Anton Gladky <gladk@debian.org> Tue, 27 Dec 2016 21:25:06 +0100
gmsh (2.15.0+dfsg1-1) unstable; urgency=medium
* [19d1241] New upstream version 2.15.0+dfsg1
* [ed8febe] Refresh patches.
-- Anton Gladky <gladk@debian.org> Fri, 09 Dec 2016 20:49:38 +0100
gmsh (2.14.1+dfsg1-1) unstable; urgency=medium
* [4da51dc] Refresh patches.
* [6a5fb12] New upstream version 2.14.1+dfsg1
-- Anton Gladky <gladk@debian.org> Sat, 05 Nov 2016 07:20:52 +0100
gmsh (2.14.0+dfsg1-1) unstable; urgency=medium
* [40b8734] New upstream version 2.14.0+dfsg1
* [9e64375] Refresh patches.
* [54d9893] Apply cme fix dpkg.
-- Anton Gladky <gladk@debian.org> Thu, 20 Oct 2016 22:50:39 +0200
gmsh (2.13.2+dfsg1-1) unstable; urgency=medium
* [5ea8a90] Imported Upstream version 2.13.2+dfsg1
* [22e35d5] Refresh patches.
* [0e252b2] Remove Christophe`s name from uploaders. (Closes: #835004)
-- Anton Gladky <gladk@debian.org> Sun, 21 Aug 2016 19:48:15 +0200
gmsh (2.13.1+dfsg1-1) unstable; urgency=medium
* [28f4474] d/copyright.
* [e5df2d8] Imported Upstream version 2.13.1+dfsg1
* [ca54124] Update/refresh patches.
* [2773007] Enable MPI on arm* and mips*. (Closes: #824541)
* [37117dd] Replace OMPI_MCA_orte_rsh_agent by OMPI_MCA_plm_rsh_agent.
Thanks Graham.
-- Anton Gladky <gladk@debian.org> Thu, 11 Aug 2016 21:01:34 +0200
gmsh (2.12.0+dfsg1-2) unstable; urgency=medium
* [77f2519] Fix the name of libmpi in python wrapper.
* [57bbc1c] Set version number for libgmsh-dev in B+R to 2.9.3.
(Closes: #816563)
* [cff2eb8] Set Standards-Version to 3.9.8. No changes.
-- Anton Gladky <gladk@debian.org> Fri, 22 Apr 2016 23:40:57 +0200
gmsh (2.12.0+dfsg1-1) unstable; urgency=medium
* [744938d] Enable dynamic linkage of shared libgmsh to gmsh-executable.
* [76e8a63] Drop one of java-samples (need to be updated by upstream).
* [c54a2cc] Replace swig2.0 by swig. (Closes: #816997)
* [8811d12] Refresh patches.
* [cdc6dce] Fix compilation of java-wrapper.
* [19c5864] Fix pdf-generation.
* [494f444] Imported Upstream version 2.12.0+dfsg1
* [54b562e] Apply cme fix dpkg.
* [270a302] Add Breaks/Replaces for libjava-gmsh2. (Closes: #816563)
-- Anton Gladky <gladk@debian.org> Mon, 21 Mar 2016 22:59:52 +0100
gmsh (2.11.0+dfsg1-2) unstable; urgency=medium
* [c596f2b] Fix narrow conversion error with GCC-6. (Closes: #811792)
-- Anton Gladky <gladk@debian.org> Sun, 31 Jan 2016 00:22:27 +0100
gmsh (2.11.0+dfsg1-1) unstable; urgency=medium
* [ca93886] Imported Upstream version 2.11.0+dfsg1
* [68a07dd] Refresh patches.
* [3acaa49] Update d/copyright.
* [b429103] Remove menu-file.
-- Anton Gladky <gladk@debian.org> Mon, 11 Jan 2016 18:53:35 +0100
gmsh (2.10.1+dfsg1-1) unstable; urgency=medium
* [4c450d1] Update d/watch.
* [90ca918] Imported Upstream version 2.10.1+dfsg1. (Closes: #793245)
* [af26665] Use any-arch instead of list of archs.
* [e94c6d2] Refresh patches.
* [6ab417f] Update d/copyright.
-- Anton Gladky <gladk@debian.org> Wed, 26 Aug 2015 22:45:27 +0200
gmsh (2.9.3+dfsg1-2) unstable; urgency=medium
* [6b6ea89] Rename libgmsh due to a GCC-5 transition. (Closes: #791054)
* [33a0f9f] Add arm64 architecture. (Closes: #786463)
* [b27ec6a] Add ppc64el architecture.
-- Anton Gladky <gladk@debian.org> Thu, 13 Aug 2015 14:34:40 +0200
gmsh (2.9.3+dfsg1-1) unstable; urgency=medium
* [9d1319c] Update d/copyright.
* [136ee92] Update, refresh, rename patches.
* [f7b8539] Remove README.source
* [1a675ed] Apply cme fix dpkg-control.
* [15c506b] Imported Upstream version 2.9.3+dfsg1
* [a2fc60f] Update changelog.
* [14b7739] Add mpi-default-bin into BD.
* [af16049] Move libjava-gmsh.so into libjava-gmsh2.
* [a7dd03b] Relax check of python versions.
* [d758ae5] Move debian/upstream -> debian/upstream/metadata
-- Anton Gladky <gladk@debian.org> Tue, 26 May 2015 22:08:12 +0200
gmsh (2.8.5+dfsg-1.1) unstable; urgency=medium
* Non-maintainer upload.
* New patch fix-cmake-hdf5.patch to support hdf5 1.8.13 new packaging
layout (closes: #756472).
-- Gilles Filippini <pini@debian.org> Fri, 25 Jul 2014 00:43:50 +0200
gmsh (2.8.5+dfsg-1) unstable; urgency=medium
* [6fbfd92] Add Files-Excluded into d/copyright
* [d31524d] Refresh patches.
* [d43e2c4] Imported Upstream version 2.8.5+dfsg. (Closes: #751464, #749679)
* [4766758] Remove alauzet patch, accepted by upstream.
* [a70136f] Add autopkgtest.
-- Anton Gladky <gladk@debian.org> Fri, 25 Jul 2014 22:21:57 +0200
gmsh (2.8.4+dfsg-1) unstable; urgency=medium
* [09d4b69] Imported Upstream version 2.8.4+dfsg
* [85f9ea7] Refresh patches.
* [df66b87] Enable tetgen. Thanks to Christophe Trophime.
* [3d7eed8] Update package description.
-- Anton Gladky <gladk@debian.org> Mon, 10 Feb 2014 21:24:32 +0100
gmsh (2.8.3+dfsg-5) unstable; urgency=medium
* [6168e45] Return back python-gmsh and gmsh-doc removed accidentally
in last uploads. (Closes: #729653)
* [a6c5815] Use wrap-and-sort.
* [e1cb0a0] Set Standards-Version: 3.9.5. No changes.
* [7a492a8] Remove fopenmp option to escape race condition. (Closes: #737103)
* [cfdec5c] Enable powerpcspe arch. (Closes: #735018)
-- Anton Gladky <gladk@debian.org> Thu, 06 Feb 2014 22:51:15 +0100
gmsh (2.8.3+dfsg-4) unstable; urgency=low
* [05effde] Disable mpi-test on ia64. (Closes: #729654)
-- Anton Gladky <gladk@debian.org> Wed, 20 Nov 2013 16:42:30 +0100
gmsh (2.8.3+dfsg-3) unstable; urgency=low
* [9fd583b] Disable petsc/slepc temorarly, while they
are not able migrate to testing.
* [7df1e36] Use wrap-and-sort.
-- Anton Gladky <gladk@debian.org> Mon, 14 Oct 2013 21:59:25 +0200
gmsh (2.8.3+dfsg-2) unstable; urgency=low
* [a0adb60] Fix an issue in onelabparser.
-- Anton Gladky <gladk@debian.org> Mon, 30 Sep 2013 21:33:39 +0200
gmsh (2.8.3+dfsg-1) unstable; urgency=low
* [55ddcd9] Imported Upstream version 2.8.3+dfsg
* [3266841] Refresh patches.
* [f806902] Reenable petsc/slepc.
-- Anton Gladky <gladk@debian.org> Sun, 29 Sep 2013 12:48:59 +0200
gmsh (2.8.2+dfsg-2) unstable; urgency=low
* [ef2bf44] Disable temporarly petsc/slepc.
-- Anton Gladky <gladk@debian.org> Thu, 26 Sep 2013 19:02:13 +0200
gmsh (2.8.2+dfsg-1) unstable; urgency=low
* [a53e9ee] Imported Upstream version 2.8.2+dfsg
* [e7e8053] Refresh patches.
* [27acc54] Update changelog.
* [218a07d] Fix compilation of java-wrapper.
-- Anton Gladky <gladk@debian.org> Wed, 24 Jul 2013 15:07:42 +0200
gmsh (2.8.1.dfsg-1) unstable; urgency=low
* [a9800c5] Imported Upstream version 2.8.1
* [5736abd] Update patches, remove applied by upstream ones.
-- Anton Gladky <gladk@debian.org> Thu, 11 Jul 2013 23:41:26 +0200
gmsh (2.7.1.dfsg-3) unstable; urgency=low
* [076cd51] Add missing header in libgmsh-dev package. (Closes: #713942)
* [b2afc09] Use canonical VCS-field.
* [4894563] Make the package arch-specific.
Exclude kfreebsd*, mip* and hurd*.
-- Anton Gladky <gladk@debian.org> Mon, 24 Jun 2013 22:20:42 +0200
gmsh (2.7.1.dfsg-2) unstable; urgency=low
* [ed2b563] Update changelog, close bug.
* [6713841] Add break/replaces to libgmsh2. (Closes: #710734)
-- Anton Gladky <gladk@debian.org> Sun, 02 Jun 2013 09:29:29 +0200
gmsh (2.7.1.dfsg-1) unstable; urgency=low
[ Anton Gladky ]
* [b5f0971] Imported Upstream version 2.7.1.dfsg
* [d01d02d] Change Multi-Arch to foreign for libjava-gmsh2. (Closes: #707749)
* [17c9976] Refresh patches.
* [6a3e1d6] Move libjava-gmsh.so into libgmsh2.
* [fe21681] Add header into onelab.py.
* [9364837] Install onelab using pyinstall.
[ Roland Stigge ]
* [8c3f48c] Do not compile against slepc and petsc on powerpcspe.
(Closes: #708862)
* [f7c38ed] Use multiarched python path.
-- Anton Gladky <gladk@debian.org> Thu, 30 May 2013 20:22:35 +0200
gmsh (2.7.0.dfsg-1) unstable; urgency=low
* [1dd1d65] Description update in control file.
* [deeb35a] Update dates in copyright file.
-- Anton Gladky <gladk@debian.org> Tue, 07 May 2013 19:57:27 +0200
gmsh (2.7.0.dfsg-1~exp2) experimental; urgency=low
* [16c9a14] Implement multiarch-support.
* [1662134] Install libs into ${INSTALL_LIB_DIR} patch, needed for multiarch.
-- Anton Gladky <gladk@debian.org> Fri, 15 Mar 2013 22:57:42 +0100
gmsh (2.7.0.dfsg-1~exp1) experimental; urgency=low
* [ca65d5c] Add libgmsh2 into depends of python-gmsh.
* [92fcc4f] Imported Upstream version 2.7.0.dfsg
* [b4bf2b9] Add section for libgmsh2.
* [ac7e1f8] Refresh patches.
-- Anton Gladky <gladk@debian.org> Sun, 10 Mar 2013 10:00:13 +0100
gmsh (2.6.2~beta2~svn14562~dfsg-1~exp1) experimental; urgency=low
* [a7de476] Fix import of gmshpy. (Closes: #696420)
* [5746ffa] Imported Upstream version 2.6.2~beta2~svn14562~dfsg
-- Anton Gladky <gladk@debian.org> Sat, 26 Jan 2013 10:53:20 +0100
gmsh (2.6.2~beta2~svn14284~dfsg-1~exp1) experimental; urgency=low
* [1a8b052] Imported Upstream version 2.6.2~beta2~svn14284~dfsg
* [bd01162] Bump Standards-Version: 3.9.4. No changes.
* [b104853] Remove obsolete DM-Upload-Allowed flag.
-- Anton Gladky <gladky.anton@gmail.com> Wed, 26 Dec 2012 23:02:39 +0100
gmsh (2.6.2~beta1~svn13992~dfsg-1) experimental; urgency=low
* [87ea161] Minor fixes in README.Debian. (Closes: #691896)
* [af0cbc6] Replace python git_orig script by bash-one.
* [e1584a2] Imported Upstream version 2.6.2~beta1~svn13992~dfsg
* [d04e4d6] Update/Refresh patches.
-- Anton Gladky <gladky.anton@gmail.com> Sat, 01 Dec 2012 09:40:20 +0100
gmsh (2.6.1.dfsg-4) unstable; urgency=low
[ Andreas Tille ]
* [9005c56] Remove the "Name" field from debian/upstream-file.
[ Anton Gladky ]
* [671fb32] Update copyright-file according to the last update of the
corresponding file in upstream-repository. (Closes: #617931)
* [d835032] Use compat-level 9.
* [7e91be4] Add --as-needed to ldflags to escape overlinkage.
-- Anton Gladky <gladky.anton@gmail.com> Tue, 18 Sep 2012 23:27:20 +0200
gmsh (2.6.1.dfsg-3) unstable; urgency=low
* [af505ec] Prevent overwriting of libgmsh.so.2 due to splitting the package.
Policy 7.6.1. (Closes: #682164)
-- Anton Gladky <gladky.anton@gmail.com> Wed, 25 Jul 2012 22:28:56 +0200
gmsh (2.6.1.dfsg-2) unstable; urgency=low
* [295a5bf] Fix dependencies. (Closes: #682189)
* [fee6101] Update upstream-file
-- Anton Gladky <gladky.anton@gmail.com> Sun, 22 Jul 2012 14:09:58 +0200
gmsh (2.6.1.dfsg-1) unstable; urgency=low
* [6e78479] Imported Upstream version 2.6.1.dfsg
* [27552ae] Refresh patches.
-- Anton Gladky <gladky.anton@gmail.com> Thu, 19 Jul 2012 19:31:25 +0200
gmsh (2.6.0.dfsg-3) unstable; urgency=low
[ Anton Gladky ]
* [3bf9207] Split gmsh into gmsh, libgmsh2, gmsh-doc and gmsh-dev.
(Closes: #678319)
[ Christophe Trophime ]
* [7eb2740] Add separate packages for python and java wrappers
* [7d7eb90] Add upstream file
-- Anton Gladky <gladky.anton@gmail.com> Tue, 10 Jul 2012 20:40:14 +0200
gmsh (2.6.0.dfsg-2) unstable; urgency=low
* [5b8e374] Add dfsg-prefix to the upstream number.
* [3892439] Update patch, change the name of shared library.
* [d9902a5] Add alauzet patch, refresh other patches.
-- Anton Gladky <gladky.anton@gmail.com> Wed, 20 Jun 2012 18:59:00 +0200
gmsh (2.6.0-1) unstable; urgency=low
* [47ff0e6] Imported Upstream version 2.6.0
* [e3079c4] Refresh patches, remove ones applied by upstream.
-- Anton Gladky <gladky.anton@gmail.com> Tue, 19 Jun 2012 22:43:42 +0200
gmsh (2.5.1~beta2~svn12375~dfsg-1) unstable; urgency=low
* [f29f130] Imported Upstream version 2.5.1~beta2~svn12375~dfsg.
(Closes: #677544)
* [a5d25f5] Remove patch, applied by upstream.
-- Anton Gladky <gladky.anton@gmail.com> Thu, 14 Jun 2012 22:28:02 +0200
gmsh (2.5.1~beta2~svn12143~dfsg-2) unstable; urgency=low
* [97cda71] Disable MPI on armel, armhf, kfreebsd-amd64, kfreebsd-i386,
mips and mipsel. Hopefully will fix FTBFS on those platforms.
-- Anton Gladky <gladky.anton@gmail.com> Fri, 25 May 2012 21:40:37 +0200
gmsh (2.5.1~beta2~svn12143~dfsg-1) unstable; urgency=low
* [2d76517] Imported Upstream version 2.5.1~beta2~svn12143~dfsg.
(Closes: #674358)
* [551fd6f] Import debian/rules changes from non-free version.
* [fa51002] Refresh patches.
* [77b9389] Add alauzet.patch from gmsh-tetgen.
* [ad9026f] Add cgns.patch from gmsh-tetgen.
* [40004dc] Add pedantic.patch from gmsh-tetgen.
* [ba6f120] Fix FTBFS against gcc-4.7 (bamg-library).
-- Anton Gladky <gladky.anton@gmail.com> Thu, 24 May 2012 22:06:11 +0200
gmsh (2.5.1~beta2~svn11845~dfsg-2) unstable; urgency=low
* [0537c1a] Disable slepc/petsc on armhf-platform, because it causes FTBFS.
* [2aa4c5c] Change name of shared lib to libgmsh.so.
-- Anton Gladky <gladky.anton@gmail.com> Thu, 12 Apr 2012 19:54:07 +0200
gmsh (2.5.1~beta2~svn11845~dfsg-1) unstable; urgency=low
* [194ca02] Add get_orig-script.
* [e864801] Imported Upstream version 2.5.1~beta2~svn11845~dfsg
-- Anton Gladky <gladky.anton@gmail.com> Mon, 09 Apr 2012 16:54:10 +0200
gmsh (2.5.1~beta2~svn11604~dfsg-4) unstable; urgency=low
* [edaa41f] Change the name of shared library to gmsh1.
* [c805ae4] Fix linking problem of shared library.
-- Anton Gladky <gladky.anton@gmail.com> Sun, 08 Apr 2012 07:33:03 +0200
gmsh (2.5.1~beta2~svn11604~dfsg-3) unstable; urgency=low
* [946b2fd] Add -fPIC to CFLAGS and CXXFLAGS. Add dpkg-buildflags.
* [b21e598] Fix FTBFS due to wrong linking. (Closes: #664948)
* [3dcb437] Remove useless commands in dh_auto_build.
-- Anton Gladky <gladky.anton@gmail.com> Fri, 06 Apr 2012 18:21:27 +0200
gmsh (2.5.1~beta2~svn11604~dfsg-2) unstable; urgency=low
* [ae6f5e4] Remove PETSC/SLEPC from BD on s390x.
* [f1f98f2] Replace libpng12-dev by libpng-dev. (Closes: #662352)
-- Anton Gladky <gladky.anton@gmail.com> Wed, 14 Mar 2012 22:16:01 +0100
gmsh (2.5.1~beta2~svn11604~dfsg-1) unstable; urgency=low
* [e5d1f6e] Imported Upstream version 2.5.1~beta2~svn11604~dfsg
* [7384987] Update copyright file due to released DEP-5.
* [5f6befc] Add copyright info about contrib/voro++.
* [f73fee5] Add copyright info about contrib/rtree
* [dc55a25] Remove use_tetgen.patch. Was applied by upstream.
* [b1f3470] Remove use_mmg3d.patch. Was applied by upstream.
* [fb7f10c] Remove use_gmm.patch. Was applied by upstream.
* [6e12760] Remove use_libann.patch. Was applied by upstream.
* [5eca597] Install some files for compiling api_demos.
Thanks to Christophe Trophime.
* [3986e6b] Add additional liboce-libraries into BD.
* [b30cb02] Update Standards-Version to 3.9.3. No changes.
* [6e7f410] Add libslepc3.2 to BD.
* [9ed8464] Add auto-test to check functionality after build.
* [4580e65] Add a hint to README.Debian, how to compile api_demos.
Thanks to Christophe Trophime.
-- Anton Gladky <gladky.anton@gmail.com> Mon, 12 Mar 2012 19:25:39 +0100
gmsh (2.5.1~beta2~svn11301~dfsg-2) unstable; urgency=low
* [3039722] Refresh patches.
* [4ae519f] Add again PETSC to BD.
-- Anton Gladky <gladky.anton@gmail.com> Tue, 14 Feb 2012 21:19:45 +0100
gmsh (2.5.1~beta2~svn11301~dfsg-1) unstable; urgency=low
* [4800d1e] Imported Upstream version 2.5.1~beta2~svn11301~dfsg
* [a09b4fe] Add libgmm++-dev on platforms, where it is available.
* [d673978] Fix typo in mmg3d-patch.
* [fe2db58] Switch from opencascade to oce.
* [1fd7f23] Minor fix in py-modules (upstream has changed the build-place).
-- Anton Gladky <gladky.anton@gmail.com> Fri, 10 Feb 2012 20:26:12 +0100
gmsh (2.5.1~beta2~svn10875~dfsg-2) unstable; urgency=low
[ Christophe Trophime ]
* [52d38ce] Apply use_mmg3d.patch. Use packaged version of mmg3d
instead of shipped with tarball.
* [ae08657] Apply use_gmm.patch. Use packaged version of gmm
instead of shipped with tarball. See details in use_gmm.patch
* [cfd8f72] Apply use_libann.patch. Use packaged version of libann
instead of shipped with tarball.
[ Anton Gladky ]
* [f604741] Refersh patches.
* [0b0eec7] Add Christophe Trophime to uploaders.
* [d4e9eef] Temporarly Remove PETSC from BD. Return it back after all
corresponding transition will occur (mumps, hdf5, hypre).
[ Sylvestre Ledru ]
* [a1a0dcd] Update the dependency on cgns (version 3.1.3.2 minimal)
* [d448ce9] Transition to hdf5 1.8.8
-- Anton Gladky <gladky.anton@gmail.com> Wed, 18 Jan 2012 20:23:41 +0100
gmsh (2.5.1~beta2~svn10875~dfsg-1) unstable; urgency=low
[ Christophe Trophime ]
* [ba58a67] Enable tetgen on systems, where it is available.
Needs package-rebuilding.
* [c662ef0] Re-enable python-bindings.
* [1283634] Use packaged version of gmm instead of shipped with tarball.
Patch is disabled.
[ Anton Gladky ]
* [5113738] Install doc-files from utils/ directory.
* [29c8205] Make menu-icon of 2 sizes: 16x16 and 32x32.
* [27243b3] Use --parallel building
* [0176242] Override lintian warning. License file is not a license.
* [f41ccad] Imported Upstream version 2.5.1~beta2~svn10875~dfsg
-- Anton Gladky <gladky.anton@gmail.com> Sat, 07 Jan 2012 08:04:21 +0100
gmsh (2.5.1~beta2~svn10664~dfsg-3) unstable; urgency=low
* [980797d] Remove slepc, because it is not in testing.
* [6a1fd65] Prevent petsc on platforms, where lam is used.
Causes FTBFS.
-- Anton Gladky <gladky.anton@gmail.com> Thu, 22 Dec 2011 18:55:41 +0100
gmsh (2.5.1~beta2~svn10664~dfsg-2) unstable; urgency=low
* [a9ae56b] Let med-format be available on all platforms.
* [7508887] Restrict PETSC on kfreebsd* platforms (causes FTBFS).
-- Anton Gladky <gladky.anton@gmail.com> Wed, 21 Dec 2011 20:04:01 +0100
gmsh (2.5.1~beta2~svn10664~dfsg-1) unstable; urgency=low
[ Christophe Trophime ]
* [6fe1e7e] Replace patch for switching-off metis and tetgen by options.
* [6af457b] Enable python-interface (not functional yet).
[ Anton Gladky ]
* [71f7616] Imported Upstream version 2.5.1~beta2~svn10664~dfsg
* [0f8b6e5] Disable python-modules for a while, because they require
a workaround to use iy, have a rpath-issue.
-- Anton Gladky <gladky.anton@gmail.com> Tue, 20 Dec 2011 19:30:55 +0100
gmsh (2.5.1~beta2~svn10284~dfsg-1) unstable; urgency=low
* [4fb9f69] Imported Upstream version 2.5.1~beta2~svn10284~dfsg
* [80b038c] Add lintian-overrides for 1 warning.
-- Anton Gladky <gladky.anton@gmail.com> Fri, 28 Oct 2011 22:55:39 +0200
gmsh (2.5.1~beta1~svn9957~dfsg-1) unstable; urgency=low
* [63b8191] Imported Upstream version 2.5.1~beta1~svn9957~dfsg
* [7792c18] Update copyright file due to adding blossom-directory.
-- Anton Gladky <gladky.anton@gmail.com> Tue, 27 Sep 2011 21:47:25 +0200
gmsh (2.5.1~beta1~svn9877~dfsg-1) unstable; urgency=low
* [7963a43] Imported Upstream version 2.5.1~beta1~svn9877~dfsg
* [0170b01] Add revision to copyright-file.
-- Anton Gladky <gladky.anton@gmail.com> Thu, 15 Sep 2011 22:20:02 +0200
gmsh (2.5.1~beta1~svn9724~dfsg-1) unstable; urgency=low
* [24356cb] Replace libjpeg62-dev by libjpeg-dev (Closes: #635688)
* [7f8fa66] Imported Upstream version 2.5.1~beta1~svn9724~dfsg
-- Anton Gladky <gladky.anton@gmail.com> Thu, 11 Aug 2011 23:28:43 +0300
gmsh (2.5.1~beta1~svn9559~dfsg-2) unstable; urgency=low
* [6215c99] Update FTBFS with ld --as-needed.
Thanks to Julian Taylor <jtaylor.debian@googlemail.com>
(Closes: #633459)
-- Anton Gladky <gladky.anton@gmail.com> Sun, 10 Jul 2011 20:21:49 +0200
gmsh (2.5.1~beta1~svn9559~dfsg-1) unstable; urgency=low
* [7a54011] Imported Upstream version 2.5.1~beta1~svn9559~dfsg:
- fixed segmentation fault when creating 3d mesh (Closes: #607875)
- gmsh returns a non-zero exit code, if an error appears during work
(Closes: #613568)
* [c176e62] Update some patches (small changes).
-- Anton Gladky <gladky.anton@gmail.com> Wed, 06 Jul 2011 20:10:06 +0200
gmsh (2.5.1~beta1~svn9373~dfsg-1) unstable; urgency=low
* [5cf0714] Disable Metis. Packaged version of Metis does not support
some new functions, itroduced in gmsh.
* [e6b9db7] Change compat to 8.
* [19d2bdf] Switch debian/rules to dh.
* [e6404c4] Fix some typos.
* [ad1f7c7] Delete prerm file.
* [e46bffc] Link with packaged gl2ps instead of shipped with the
source (fix lintian error).
* [fa15729] Change name of lib-file (fix lintian error).
* [4e75a8e] Imported Upstream version 2.5.1~beta1~svn9373~dfsg
-- Anton Gladky <gladky.anton@gmail.com> Sun, 05 Jun 2011 21:14:37 +0200
gmsh (2.5.0.dfsg-8) unstable; urgency=low
* [7f7164f] Add platform restriction for libmedc-dev (Closes: #623561)
* [1718816] Standards-Version: 3.9.2 (no changes)
* [6de2ed7] Update VCS-field to git-repo
* [f7cd0da] Add DM-Upload-Allowed field
* [72abecd] Delete quilt from BD
-- Anton Gladky <gladky.anton@gmail.com> Wed, 25 May 2011 22:31:48 +0200
gmsh (2.5.0.dfsg-7) unstable; urgency=low
* Fix FTBFS on some platforms due to missing space between
libhdf5-mpi-dev and platform list
-- Anton Gladky <gladky.anton@gmail.com> Wed, 13 Apr 2011 20:40:54 +0100
gmsh (2.5.0.dfsg-6) unstable; urgency=low
* enable med-support only on platforms, where libhdf5-openmpi-dev is
available:
alpha amd64 i386 ia64 kfreebsd-amd64 kfreebsd-i386 powerpc sparc
-- Anton Gladky <gladky.anton@gmail.com> Sat, 02 Apr 2011 00:57:54 +0100
gmsh (2.5.0.dfsg-5) unstable; urgency=low
* Team upload
* Use libhdf5-mpi-dev instead of specific arch
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 31 Mar 2011 10:27:38 +0200
gmsh (2.5.0.dfsg-4) unstable; urgency=low
[ Christophe Trophime ]
* Add libhdf5-lam-dev / libhdf5-openmpi-dev to Build-Depends (Closes: #613056)
[ Anton Gladky ]
* nvidia-glx-dev is deleted from Build-Depends as it is not in sid any more.
* "or" statements are deleted from Build-Depends, because of:
http://lists.debian.org/debian-devel/2011/02/msg00738.html
-- Anton Gladky <gladky.anton@gmail.com> Wed, 30 Mar 2011 14:47:29 +0200
gmsh (2.5.0.dfsg-3) unstable; urgency=low
* Switch to dpkg-source 3.0 (quilt) format
* debian/copyright has been changed to machine-readable DEP-5 format
* Old unused patches are removed
* Updated license information, now GPL-2+ instead of GPL-2:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=617931#10
* Move mpi-default-bin from "Recommends" to "Depends". Closes: #605962
* sensible-editor and sensible-browser are used. Closes: #618541
* Fix spelling errors, fix-spelling-errors.patch
-- Anton Gladky <gladky.anton@gmail.com> Sat, 19 Mar 2011 09:52:13 +0100
gmsh (2.5.0.dfsg-2) unstable; urgency=low
[Christophe Trophime]
* Add openmp support
* Add metis support : use scotchmetis
[ Christophe Prud'homme ]
* Upload
-- Christophe Prud'homme <prudhomm@debian.org> Thu, 28 Oct 2010 14:16:40 +0200
gmsh (2.5.0.dfsg-1) unstable; urgency=low
[Christophe Prud'homme]
* New upstream release
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 19 Oct 2010 14:14:25 +0200
gmsh (2.5.0~svn20100831.dfsg-1) experimental; urgency=low
[Christophe Prud'homme]
* New version from svn (rev 7977) that fixes a crash in 2D plots
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 31 Aug 2010 15:54:07 +0200
gmsh (2.5.0~svn20100808-3) experimental; urgency=low
[Christophe Prud'homme]
* debian/rules: create and package shared lib
-- Christophe Prud'homme <prudhomm@debian.org> Thu, 12 Aug 2010 13:28:48 +0200
gmsh (2.4.2.dfsg-7) unstable; urgency=low
[Christophe Prud'homme]
* debian/rules: create shared lib
-- Christophe Prud'homme <prudhomm@debian.org> Thu, 12 Aug 2010 13:11:26 +0200
gmsh (2.4.2.dfsg-6) unstable; urgency=low
[Christophe Prud'homme]
* debian/rules: add libGmsh.a to the gmsh package
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 11 Aug 2010 14:59:41 +0200
gmsh (2.5.0~svn20100808-2) experimental; urgency=low
[Christophe Prud'homme]
* debian/rules: add libGmsh.a to the gmsh package
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 11 Aug 2010 13:53:18 +0200
gmsh (2.5.0~svn20100808-1) experimental; urgency=low
* New upstream release
* Fixed all lintian source warnings
* debian/control: updated to Standards-Version 3.9.1 (no change)
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 08 Aug 2010 10:51:38 +0200
gmsh (2.5.0~svn20100728-1) experimental; urgency=low
* New upstream release
* debian/control: updated to Standards-Version 3.9.0
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 28 Jul 2010 08:56:14 +0200
gmsh (2.5.0~svn20100727-1) experimental; urgency=low
* New upstream release
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 27 Jul 2010 10:33:38 +0200
gmsh (2.5.0~svn20100711-1) experimental; urgency=low
[Christophe Prud'homme]
* New upstream release
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 11 Jul 2010 18:12:00 +0200
gmsh (2.4.2.dfsg-5) unstable; urgency=low
[Christophe Prud'homme]
* debian/control: add build-depends on mpi-default-dev
* Bug fix: "please add med support", thanks to trophime (Closes:
#585871).
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 11 Jul 2010 14:01:31 +0200
gmsh (2.4.2.dfsg-4) unstable; urgency=low
[Christophe Prud'homme]
* moved gmsh from pkg-scicomp to Debian Science
* Bug fix: "please add med support", thanks to trophime (Closes:
#585871).
-- Christophe Prud'homme <prudhomm@debian.org> Fri, 25 Jun 2010 09:17:27 +0200
gmsh (2.4.2.dfsg-3) unstable; urgency=low
[Christophe Prud'homme]
* Bug fix: "FTBFS: make[1]: *** No rule to make target `default'.
Stop.", thanks to Lucas Nussbaum (Closes: #577316).
-- Christophe Prud'homme <prudhomm@debian.org> Thu, 27 May 2010 12:36:33 +0200
gmsh (2.4.2.dfsg-2) unstable; urgency=low
* debian/control: now build with med-ficher support
* debian/control: update standards-version to 3.8.4 (no change)
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 09 Feb 2010 21:25:21 +0100
gmsh (2.4.2.dfsg-1) unstable; urgency=low
[Christophe Prud'homme]
* New upstream release
+ solver code refactoring
+ better IDE integration.
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 27 Sep 2009 17:36:40 +0200
gmsh (2.4.1.dfsg-1) unstable; urgency=low
[Christophe Prud'homme]
* New upstream release
+ fixed surface mesh orientation bug introduced in 2.4.0;
+ mesh and graphics code refactoring;
+ small usability enhancements and bug fixes.
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 02 Sep 2009 18:12:15 +0200
gmsh (2.4.0.dfsg-1) UNRELEASED; urgency=low
[Christophe Prud'homme]
* New upstream release
+ switched build system to CMake;
+ optionally copy transfinite mesh constraints during geometry
transformations;
+ bumped mesh version format to 2.1 (small change in the
$PhysicalNames section, where the group dimension is now required);
+ ported most plugins to the new post-processing API;
+ switched from MathEval to MathEx and Flu_Tree_Browser to Fl_Tree;
+ small bug fixes and improvements all over the place.
* debian/rules: use cmake build system
* debian/control: tighten libcgns depends
* debian/rules: remove Tetgen {cxx,h} files in get-orig-source
* debian/rules: enable cgns
* debian/rules: update Standards-Version to 3.8.3 (no change)
-- Christophe Prud'homme <prudhomm@debian.org> Fri, 28 Aug 2009 11:55:06 +0200
gmsh (2.3.1.dfsg-4) unstable; urgency=low
[Christophe Prud'homme]
* Bug fix: "gmsh with cgns write support", thanks to Oliver Borm
(Closes: #529972).
* debian/rules: make sure that Gmsh is built with occ support on all
platforms thanks to Denis Barbier (#536435).
-- Christophe Prud'homme <prudhomm@debian.org> Mon, 13 Jul 2009 15:49:21 +0200
gmsh (2.3.1.dfsg-3) unstable; urgency=low
[Christophe Prud'homme]
* debian/control: Applied patch by Denis Barbier now that opencascade
builds on all arches and Build-depends on libopencascade-modeling-dev
* debian/{rules,control}: don't build with mpi support (it doesn't do
anything)
* debian/control: update Standards-Version to 3.8.2 (no changes)
* Added patch by Martin to fix gcc44 compilation failure
* Bug fix: "missing #include", thanks to Martin Michlmayr (Closes:
#525733).
-- Christophe Prud'homme <prudhomm@debian.org> Fri, 10 Jul 2009 07:39:49 +0200
gmsh (2.3.1.dfsg-2) unstable; urgency=low
* debian/{rules,control}: provide the prefix for blas/lapack libraries
and build-depends on blas and lapack
* debian/control: drop gsl build-depends. It is no more needed, use
blas/lapack instead
-- Christophe Prud'homme <prudhomm@debian.org> Sat, 28 Mar 2009 12:38:50 +0100
gmsh (2.3.1.dfsg-1) unstable; urgency=low
* New upstream release
+ removed GSL dependency (Gmsh now simply uses Blas and Lapack);
+ new per-window visibility;
+ added support for composite window printing and background images;
+ fixed string option affectation in parser;
+ fixed surface mesh orientation for Open Cascade models;
+ fixed random triangle orientations in Delaunay and Frontal
algorithms.
* debian/{control,rules}: Build with occ support only on amd64 and i386
* debian/rules: find GMSH_VERSION automatically
* debian/{rules,control}: enable mpi support for amd64, i386, ia64 and
powerpc
-- Christophe Prud'homme <prudhomm@debian.org> Fri, 20 Mar 2009 08:21:36 +0100
gmsh (2.3.0.dfsg-3) unstable; urgency=low
* debian/: added prerm and postinst to get rid of two lintian errors
prerm-does-not-call-installdocs and postinst-does-not-call-installdocs
* debian/control: updated Standards-Version to 3.8.1, no changes
* debian/compat: updated dh compat to V7
-- Christophe Prud'homme <prudhomm@debian.org> Thu, 19 Mar 2009 09:29:02 +0100
gmsh (2.3.0.dfsg-2) unstable; urgency=low
* debian/control: build-depends on libopencascade-dev
* debian/rules: compile with opencascade support as it is now in main
and no more in non-free
* Bug fix: "gmsh with libopencascade6.2 support", Thanks to Oliver Borm
<oli.borm@web.de> (Closes: #506521).
-- Christophe Prud'homme <prudhomm@debian.org> Mon, 16 Mar 2009 21:31:08 +0100
gmsh (2.3.0.dfsg-1) unstable; urgency=low
* New upstream release
+ major graphics and GUI code refactoring;
+ new full-quad/hexa subdivision algorithm (removed
Mesh.RecombineAlgo);
+ improved automatic transfinite corner selection (now also
for volumes);
+ improved visibility browser; new automatic adaptive visualization
for high-order simplices;
+ modified arrow size, clipping planes and transform options; many
improvements and
+ bug fixes all over the place.
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 17 Feb 2009 10:12:27 +0100
gmsh (2.2.6.dfsg-2) unstable; urgency=low
* debian/control: fixed lintian warning "debhelper-but-no-misc-depends"
* debian/watch: fixed lintian warning
"debian-watch-file-should-mangle-version"
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 07 Jan 2009 16:02:08 +0100
gmsh (2.2.6.dfsg-1) unstable; urgency=low
* New upstream release
+ better transfinite smoothing and automatic corner selection;
+ fixed high order meshing crashes on Windows and Linux;
+ new uniform mesh refinement;
+ fixed various other small bugs.
-- Christophe Prud'homme <prudhomm@debian.org> Mon, 01 Dec 2008 22:19:58 +0100
gmsh (2.2.5.dfsg-3) unstable; urgency=low
[Christophe Prud'homme]
* debian/control: get rid of mpi
-- Christophe Prud'homme <prudhomm@debian.org> Sat, 01 Nov 2008 18:19:49 +0100
gmsh (2.2.5.dfsg-2) unstable; urgency=low
[Christophe Prud'homme]
* debian/control: do not depend on libhdf5-openmpi-dev but rather
libopenmpi-dev for now
-- Christophe Prud'homme <prudhomm@debian.org> Sat, 01 Nov 2008 11:18:44 +0100
gmsh (2.2.5.dfsg-1) unstable; urgency=low
* New upstream release
+ Gmsh now requires FLTK 1.1.7 or above;
+ Various small improvements (STL and VTK mesh IO, Netgen upgrade,
Visual C++ support, Fields);
+ Bug fixes (pyramid interpolation, Chaco crashes).
* New upstream release (2.2.4)
+ integrated Metis and Chaco mesh partitioners (many thanks to Stephen
Guzik!);
+ variables can now be deleted in geo files;
+ added support for point datasets in model-based postprocessing views;
+ small bug fixes.
* debian/{rules,control}: work towards med/hdf5 support
* debian/rules: modified get-orig-source to get rid of Metis and
generate a .dfsg tarball
* debian/README.source: added to document the changes in the Gmsh source
-- Christophe Prud'homme <prudhomm@debian.org> Sat, 01 Nov 2008 08:33:32 +0100
gmsh (2.2.3-1) unstable; urgency=low
[Christophe Prud'homme]
* new upstream release
+ enhanced clipping interface;
+ API cleanup;
+ fixed various bugs (Plugin(Integrate), high order meshes, surface
info crash).
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 15 Jul 2008 09:41:53 +0200
gmsh (2.2.2-2) unstable; urgency=low
[Christophe Prud'homme]
* remove occ support, it is non-free
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 02 Jul 2008 00:19:41 +0200
gmsh (2.2.2-1) unstable; urgency=low
[Christophe Prud'homme]
* enable Open Cascade support in gmsh, build-depends on libopencascade-dev
* new upstream release (2.2.1 and 2.2.2 changelogs)
+ added geometrical transformations on volumes;
+ fixed bug in high order mesh generation;
+ various small improvements (adaptive views, gui, code cleanup);
+ bug fixes (high order meshes, Netgen interface).
* update Standards-Version to 3.8.0 (no change)
* remove obsolete dependencies libglu1-xorg-dev and tetex-bin
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 01 Jul 2008 10:53:12 +0200
gmsh (2.2.0-2) unstable; urgency=low
[Christophe Prud'homme]
* Bug fix: "gmsh ships no .desktop", thanks to Vassilis Pandis (Closes:
#375770). Applied the Ubuntu patch.
[Daniel Leidert]
* debian/control (Vcs-Svn): Fixed.
(Build-Depends): Use texlive instead of tetex-bin.
* debian/gmsh.doc-base (Section): Fixed accordingly to doc-base (>= 0.8.10).
* debian/rules: Removed some variable declarations, that lead to double
configuration and seem to be useless.
(build/gmsh): Try to avoid multiple runs by using a stamp.
(orig-tarball): Renamed to get-orig-source and changed to use uscan.
* debian/watch: Added.
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 18 May 2008 12:46:05 +0200
gmsh (2.2.0-1) unstable; urgency=low
* New upstream release
+ new model-based post-processing backend;
+ added MED I/O for mesh and post-processing;
+ fixed BDF vertex ordering for 2nd order elements;
+ replaced Mesh.ConstrainedBackgroundMesh with
Mesh.CharacteristicLength{FromPoints,ExtendFromBoundary};
+ new Fields interface;
+ control windows are now non-modal by default;
+ new experimental 2D frontal algorithm;
+ fixed various bugs.
* debian/control: build-dep on libgl1-mesa-dev|nvidia-glx-dev and
libglu1-xorg-dev
* debian/patches: no need for stdlib.patch anymore
* debian/control: renamed XS-Vcs-* to Vcs-*
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 20 Apr 2008 13:33:44 +0200
gmsh (2.1.1-2) unstable; urgency=low
* Bug fix: "gmsh: FTBFS: Message.cpp:213: error: 'abort' was not
declared in this scope", thanks to Lucas Nussbaum (Closes: #474807).
-- Christophe Prud'homme <prudhomm@debian.org> Thu, 10 Apr 2008 22:18:58 +0200
gmsh (2.1.1-1) unstable; urgency=low
[ Christophe Prud'homme ]
* New upstream release 2.1.1
+ fixes the bugs discovered in 2.1.0 (second order meshes with quad
faces, view->combine with empty views, crash after initial mesh,
compilation problems).
* New upstream release 2.1.0
+ new post-processing database;
+ complete rewrite of post-processing drawing code;
+ improved surface mesh algorithms;
+ improved STEP/IGES/BREP support;
+ new 3D mesh optimization algorithm;
+ new default native file choosers;
+ fixed 'could not find extruded vertex' in extrusions;
+ many improvements and bug fixes all over the place.
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 02 Mar 2008 09:06:49 +0100
gmsh (2.0.8-4) unstable; urgency=low
[ Christophe Prud'homme ]
* debian/control: depend on quilt and cdbs
* debian/rules: use quilt and cdbs
* Bug fix: "FTBFS with GCC 4.3: duplicate function parameters & co",
thanks to Martin Michlmayr (Closes: #454883).
* debian/control: update Standards-Version to 3.7.3 (no change)
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 16 Dec 2007 17:50:13 +0100
gmsh (2.0.8-3) unstable; urgency=low
[ Christophe Prud'homme ]
* debian/control: added Homepage
* debian/menu: comply to new menu structure
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 14 Oct 2007 12:52:38 +0200
gmsh (2.0.8-2) unstable; urgency=low
* debian/rules: use -O3 to compile gmsh
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 25 Jul 2007 10:20:57 +0200
gmsh (2.0.8-1) unstable; urgency=low
[ Christophe Prud'homme ]
* New upstream release
+ unused vertices are not saved in mesh files anymore;
+ new plugin GUI; automatic GUI font size selection;
+ renamed Plugin(DecomposeInSimplex) into Plugin(MakeSimplex);
+ reintroduced enhanced Plugin(SphericalRaise);
+ clarified meshing algo names;
+ new option to save groups of nodes in UNV meshes;
+ new background mesh infrastructure;
+ many small improvements and small bug fixes.
-- Christophe Prud'homme <prudhomm@debian.org> Sat, 14 Jul 2007 13:27:49 +0200
gmsh (2.0.7-1) unstable; urgency=low
* New upstream release
* FTBFS with GCC 4.3: missing #includes
-- Christophe Prud'homme <prudhomm@debian.org> Fri, 6 Apr 2007 17:46:03 +0200
gmsh (2.0.5-2) unstable; urgency=low
* get rid of option -m32 that triggers segfaults
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 1 Apr 2007 11:30:43 +0200
gmsh (2.0.5-1) unstable; urgency=low
* New upstream release
-- Christophe Prud'homme <prudhomm@debian.org> Thu, 22 Mar 2007 13:41:10 +0100
gmsh (2.0.4-1) unstable; urgency=low
* New upstream release
[ Rafael Laboissiere ]
* debian/control: Added XS-Vcs-Svn and XS-Vcs-Browser fields to the Source
section
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 7 Mar 2007 07:44:51 +0100
gmsh (1.65.0-2) unstable; urgency=low
* Bug fix: "gmsh - unreachable maintainer", thanks to Bastian Blank
(Closes: #367340).
* Bug fix: "gmsh - FTBFS: strip: Unable to recognise the format of the
input file", thanks to Bastian Blank (Closes: #367334).
-- Christophe Prud'homme <prudhomm@debian.org> Mon, 15 May 2006 20:30:40 +0200
gmsh (1.65.0-1) unstable; urgency=low
* New upstream release
+ new Plugin(ExtractEdges)
+ fixed compilation errors with gcc4.1
+ replaced Plugin(DisplacementRaise) and Plugin(SphericalRaise) with
the more flexible Plugin(Warp)
+ better handling of discrete curves
+ new Status command in parser
+ added option to renumber nodes in .msh files
(to avoid holes in the numbering sequence)
+ fixed 2 special cases in quad->prism extrusion
+ fixed saving of 2nd order hexas with negative volume
+ small bug fixes and cleanups.
* Bump Standards-Version to 3.7.2 (no changes)
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 14 May 2006 15:49:29 +0200
gmsh (1.64.1-3) unstable; urgency=low
* Changed Maintainer to pkg-scicomp Alioth project and added myself to
the list of Uploaders
-- Christophe Prud'homme <prudhomm@debian.org> Thu, 20 Apr 2006 14:15:56 +0200
gmsh (1.64.1-2) unstable; urgency=low
* Bug fix: "gmsh: FTBFS: build depends on xlibmesa-glu-dev", thanks to
Roland Stigge (Closes: #363305).
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 19 Apr 2006 08:13:03 +0200
gmsh (1.64.1-1) unstable; urgency=low
* New upstream release
+ new Plugin(ExtractEdges)
+ fixed compilation errors with gcc4.1
+ small cleanups.
* Bug fix: "Package explicitely build-depends on g++-3.4", thanks to
Matthias Klose (Closes: #342968).
* Bug fix: "FTBFS with G++ 4.1: conversion from 'int' to non-scalar
type...", thanks to Martin Michlmayr (Closes: #357558).
-- Christophe Prud'homme <prudhomm@debian.org> Sat, 25 Mar 2006 13:09:38 +0100
gmsh (1.64.0-1) unstable; urgency=low
* New upstream release
+ various bug fixes and cleanups.
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 12 Mar 2006 10:37:14 +0100
gmsh (1.63.2-1) unstable; urgency=low
* New upstream release
+ post-processing views can now be exported as meshes
+ improved background mesh handling (a lot faster, and more accurate)
+ improved support for input images
+ new Plugin(ExtractElements)
+ small bug fixes and enhancements.
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 1 Feb 2006 08:11:36 +0100
gmsh (1.62.0-1) unstable; urgency=low
* New upstream release
- new option to draw color gradients in the background.
- enhanced perspective projection mode.
- new "lasso" selection mode (same as "lasso" zoom, but in selection
mode).
- new "invert selection" button in the visibility browser.
- new snapping grid when adding points in the GUI.
- nicer normal smoothing.
- new extrude syntax (old syntax still available, but deprecated).
- various small bug fixes and enhancements.
-- Christophe Prud'homme <prudhomm@debian.org> Mon, 16 Jan 2006 08:16:13 +0100
gmsh (1.61.3-3) unstable; urgency=low
* Compile with g++ instead of g++-3.4 on arm
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 4 Jan 2006 10:37:24 +0100
gmsh (1.61.3-2) unstable; urgency=low
* Bug fix: "Package explicitely build-depends on g++-3.4", thanks to
Matthias Klose (Closes: #342968).
* Bug fix: "gmsh: UNV output is broken", thanks to Denis Barbier
(Closes: #332491).
-- Christophe Prud'homme <prudhomm@debian.org> Mon, 12 Dec 2005 08:59:13 +0100
gmsh (1.61.3-1) unstable; urgency=low
* New upstream release
* use default compiler on mips/mipsel and try to fix gmsh buildd on these arch
-- Christophe Prud'homme <prudhomm@debian.org> Thu, 1 Dec 2005 22:30:27 +0100
gmsh (1.61.1-1) unstable; urgency=low
* New upstream release
-- Christophe Prud'homme <prudhomm@debian.org> Sat, 26 Nov 2005 11:27:08 +0100
gmsh (1.60.1-5) unstable; urgency=low
* recompile with 4.0 and proper libgcc1/libstdc++
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 22 Nov 2005 09:17:12 +0100
gmsh (1.60.1-4) unstable; urgency=low
* define CC and CXX to be passed to configure to force gcc 3.4 for arm,
mips and mipsel
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 20 Nov 2005 14:17:52 +0100
gmsh (1.60.1-3) unstable; urgency=low
* Bug fix: "gmsh: FTBFS: DVI file can't be opened", thanks to Roland
Stigge (Closes: #339967).
* Attempt to fix arm,mips and mipsel using gcc 3.4 instead of gcc 4
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 20 Nov 2005 11:47:13 +0100
gmsh (1.60.1-2) unstable; urgency=low
* Rebuilt with libfltk1.1.
* Updated to Standards-Version 3.6.2 (no changes).
* Bug fix: "gmsh: FTBFS: ISO C++ forbids declaration of 'Mesh' with no
type", thanks to Andreas Jochens (Closes: #324310).
* changed my email address to Debian one.
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 28 Sep 2005 11:42:54 +0200
gmsh (1.60.1-1) unstable; urgency=low
* New upstream release
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 15 Mar 2005 20:51:45 +0100
gmsh (1.59.0-1) unstable; urgency=low
* New upstream release
-- Christophe Prud'homme <prudhomm@debian.org> Mon, 7 Feb 2005 20:45:33 +0100
gmsh (1.58.0-1) unstable; urgency=low
* New upstream release
* Fixed lintian warning description-synopsis-starts-with-a-capital-letter
* Patch from A. Jochens does not apply cleanly. Applied it "by hand" and
submitted to upstream
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 12 Jan 2005 14:14:08 +0100
gmsh (1.56.3-2) unstable; urgency=low
* Use and Build-depends on dpatch
* Added patch from Andreas Jochens <aj@andaco.de> for amd64/gcc-4.0. It
does not hurt to apply for gcc < 4.0.
* Bug fix: "gmsh: FTBFS (amd64/gcc-4.0): cast from 'void*' to 'int'
loses precision", thanks to Andreas Jochens (Closes: #286788).
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 11 Jan 2005 23:42:18 +0100
gmsh (1.56.3-1) unstable; urgency=low
* New upstream release
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 17 Nov 2004 10:36:16 +0100
gmsh (1.55.4-1) unstable; urgency=low
* New upstream release
-- Christophe Prud'homme <prudhomm@debian.org> Mon, 4 Oct 2004 01:30:49 +0200
gmsh (1.54.1-3) unstable; urgency=low
* make sure that if 'make' fails, it fails at the right place: modify
toplevel Makefile/compile with a 'set -e'. Thanks to Goswin von
Brederlow <brederlo@informatik.uni-tuebingen.de>.
-- Christophe Prud'homme <prudhomm@mit.edu> Mon, 9 Aug 2004 09:07:41 +0200
gmsh (1.54.1-2) unstable; urgency=low
* added a few files from doc/ : FAQ, VERSIONS, README.cvs and README.gui
-- Christophe Prud'homme <prudhomm@mit.edu> Sun, 18 Jul 2004 18:24:10 +0200
gmsh (1.54.1-1) unstable; urgency=low
* New upstream release
-- Christophe Prud'homme <prudhomm@mit.edu> Sun, 18 Jul 2004 18:07:21 +0200
gmsh (1.52.0-1) unstable; urgency=low
* New upstream release
* Depends on g++-3.3
* Added FAQ from website
* added utils/converters and utils/solvers in /usr/share/doc/gmsh
-- Christophe Prud'homme <prudhomm@mit.edu> Thu, 6 May 2004 11:21:44 +0200
gmsh (1.51.4-6) unstable; urgency=low
* added the demos and the tutorial
-- Christophe Prud'homme <prudhomm@mit.edu> Thu, 1 Apr 2004 08:50:39 +0200
gmsh (1.51.4-5) unstable; urgency=low
* added tetex-bin and texinfo to Build-Depends (closes: #240445)
-- Christophe Prud'homme <prudhomm@mit.edu> Sat, 27 Mar 2004 21:54:10 +0100
gmsh (1.51.4-4) unstable; urgency=low
* added xlibmesa-glu-dev to Build-Depends
-- Christophe Prud'homme <prudhomm@mit.edu> Sat, 27 Mar 2004 12:56:59 +0100
gmsh (1.51.4-3) unstable; urgency=low
* updated Standards-Version to 3.6.1
-- Christophe Prud'homme <prudhomm@mit.edu> Fri, 26 Mar 2004 10:37:32 +0100
gmsh (1.51.4-2) unstable; urgency=low
* added libpng12-dev, libjpeg62-dev, zlib1g-dev in Build-Depends
* Fix Build-Depends, added xlibmesa-gl-dev (closes: #240147)
* removed the (implied) 'A' in the short desciption in the control file
* make sure that triangle from Jonathan Shewchuk is disabled using
--disable-triangle
-- Christophe Prud'homme <prudhomm@mit.edu> Fri, 26 Mar 2004 10:15:01 +0100
gmsh (1.51.4-1) unstable; urgency=low
* Initial Release.
-- Christophe Prud'homme <prudhomm@mit.edu> Tue, 9 Mar 2004 11:24:10 +0100
|