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
|
openturns (1.24-4) unstable; urgency=medium
* Deactivating the tests that randomly hang on amd64 on buildds
(Closes: #1093144)
-- Pierre Gruet <pgt@debian.org> Wed, 15 Jan 2025 17:37:26 +0100
openturns (1.24-3) unstable; urgency=medium
* Upload to unstable to start the library transition
* Checking the package builds against swig 4.3.0 (Closes: #1091444)
-- Pierre Gruet <pgt@debian.org> Tue, 14 Jan 2025 21:35:52 +0100
openturns (1.24-2) experimental; urgency=medium
* Adding a small tolerance to Pagmo Python test
-- Pierre Gruet <pgt@debian.org> Wed, 18 Dec 2024 10:08:51 +0100
openturns (1.24-1) experimental; urgency=medium
* New upstream version 1.24
* Removing all patches, which have been upstreamed
* Bumping SOVERSION to 0.25, new binary package
* Updating copyright date and information in d/copyright
* Updating install paths of Python files
* Updating the Ishigami Chaos autopkgtest to comply with latest upstream
version
-- Pierre Gruet <pgt@debian.org> Sat, 14 Dec 2024 23:30:30 +0100
openturns (1.23-5) unstable; urgency=medium
* Deactivating again Dlib-related tests:
- on riscv64
- on loong64, thanks to wuruilong! (Closes: #1071019)
-- Pierre Gruet <pgt@debian.org> Tue, 27 Aug 2024 22:13:35 +0200
openturns (1.23-5~exp0) experimental; urgency=medium
* Enabling again Dlib-related tests, which should pass against dlib/19.24.4
-- Pierre Gruet <pgt@debian.org> Mon, 24 Jun 2024 07:45:25 +0200
openturns (1.23-4) unstable; urgency=medium
* Deactivating EfficientGlobalOptimization_std test on armel
-- Pierre Gruet <pgt@debian.org> Sun, 16 Jun 2024 13:58:00 +0200
openturns (1.23-3) unstable; urgency=medium
* Upload to unstable of new upstream version, building against Python 3.12 is
now possible (Closes: #1061603)
* Allowing the package to build on loong64, thanks to wuruilong for the patch
-- Pierre Gruet <pgt@debian.org> Sat, 15 Jun 2024 15:29:01 +0200
openturns (1.23-2) experimental; urgency=medium
* Fixing t_Bonmin_std Python test with a limit for a number of iterations
-- Pierre Gruet <pgt@debian.org> Thu, 13 Jun 2024 11:33:42 +0200
openturns (1.23-1) experimental; urgency=medium
* New upstream version 1.23
* Updating (build-)dependencies
* Bumping SONAME to libopenturns0.24
* Updating d/copyright
* Raising Standards version to 4.7.0 (no change)
* Fixing minor spelling mistakes
-- Pierre Gruet <pgt@debian.org> Mon, 10 Jun 2024 21:37:42 +0200
openturns (1.22-2) experimental; urgency=medium
* Skipping more tests failing due to Dlib bugs on some arches
-- Pierre Gruet <pgt@debian.org> Wed, 06 Mar 2024 07:56:29 +0100
openturns (1.22-1) experimental; urgency=medium
* New upstream version 1.22
* Raising SONAME to libOT0.23, new binary package
* Removing patch, which has been upstreamed
* Updating d/not-installed
-- Pierre Gruet <pgt@debian.org> Tue, 30 Jan 2024 12:56:54 +0100
openturns (1.21.1-5) unstable; urgency=medium
* Fixing FTBFS linked to new version of swig (Closes: #1064928)
-- Pierre Gruet <pgt@debian.org> Thu, 18 Apr 2024 23:14:42 +0200
openturns (1.21.1-4) unstable; urgency=medium
* Clearing old patches and architecture-dependent test evictions
* Rely on pre-initialized dpkg-architecture variables.
* Excluding Dlib tests on riscv64
-- Pierre Gruet <pgt@debian.org> Sat, 04 Nov 2023 07:44:28 +0100
openturns (1.21.1-3) experimental; urgency=medium
* Adding a versioned Depends on the -common package for the shared lib one
* Comparing distributions by checking if their double parameters are close
enough, not relying on the == operator
-- Pierre Gruet <pgt@debian.org> Wed, 01 Nov 2023 15:44:39 +0100
openturns (1.21.1-2) experimental; urgency=medium
* Adopting a patch by upstream for failing Smolyak tests
* Deactivating sensitive Kriging test on ppc64el
-- Pierre Gruet <pgt@debian.org> Sun, 29 Oct 2023 21:33:19 +0100
openturns (1.21.1-1) experimental; urgency=medium
* New upstream version 1.21.1
* Refreshing patches
* Bumping SONAME to libOT0.22, new binary package
* Refreshing d/copyright
* Fixing the clean target (Closes: #1048673)
* Updating install locations for the binary packages
* Revising d/control: no shlibs:Depends for openturns-common
* Attempting to get rid of probably upstreamed patches, only disabling tests
in an arch-specific way
-- Pierre Gruet <pgt@debian.org> Thu, 26 Oct 2023 18:06:39 +0200
openturns (1.20-9) unstable; urgency=medium
* Removing an obsolete Lintian override
-- Pierre Gruet <pgt@debian.org> Mon, 30 Jan 2023 13:15:01 +0100
openturns (1.20-9~exp0) experimental; urgency=medium
* Build-depending on coinor-libbonmin-dev
-- Pierre Gruet <pgt@debian.org> Sat, 14 Jan 2023 07:24:03 +0100
openturns (1.20-8) unstable; urgency=medium
* Ignoring the comparison of the output of
pyinstallcheck_StandardDistributionPolynomialFactory_std due to
rounding errors
-- Pierre Gruet <pgt@debian.org> Sat, 17 Dec 2022 15:17:52 +0100
openturns (1.20-7) unstable; urgency=medium
* Ignoring the comparison of the output of
cppcheck_StandardDistributionPolynomialFactory_std due to rounding errors
-- Pierre Gruet <pgt@debian.org> Sat, 17 Dec 2022 11:58:47 +0100
openturns (1.20-6) unstable; urgency=medium
* Patching code to comply with primesieve 11 interface
* Raising Standards version to 4.6.2 (no change)
-- Pierre Gruet <pgt@debian.org> Sat, 17 Dec 2022 06:54:00 +0100
openturns (1.20-5) unstable; urgency=medium
* Skipping autopkgtest on i386
-- Pierre Gruet <pgt@debian.org> Fri, 25 Nov 2022 12:48:08 +0100
openturns (1.20-4) unstable; urgency=medium
* Adding autopkgtests
* Marking the scalar_comparison_in_Gamma_distribution patch as Forwarded
* Fixing spelling issues
-- Pierre Gruet <pgt@debian.org> Thu, 24 Nov 2022 06:14:17 +0100
openturns (1.20-3) experimental; urgency=medium
* Ignoring the comparisons to reference outputs for:
- the Python counterpart of TruncatedNormal_std
- the Python MetaModelAlgorithm_std test
-- Pierre Gruet <pgt@debian.org> Tue, 22 Nov 2022 22:17:38 +0100
openturns (1.20-2) experimental; urgency=medium
* Converting sample in t_DistributionFactory_std.py from integer to float
when passing it to the factory
* Skipping the comparison of the outputs of the cpp_TruncatedNormal_std.cxx
test to a reference because of rounding issues
-- Pierre Gruet <pgt@debian.org> Tue, 22 Nov 2022 14:38:59 +0100
openturns (1.20-1) experimental; urgency=medium
* New upstream version 1.20
* Refreshing patches
* Bumping SONAME to libOT0.21, new binary package
* Refreshing d/copyright
* Updating the dependencies of the -dev package
-- Pierre Gruet <pgt@debian.org> Sat, 19 Nov 2022 21:09:14 +0100
openturns (1.19-4~exp0) experimental; urgency=medium
* Removing the -examples package as sphinx documentation on the website is
much nicer and more helpful
* Stopping shipping the static library
* Adding a Lintian override for a false positive about a spelling mistake
* Simplifying d/rules
* Removing python3-dev from the dependencies of the -dev package
* Comparing the (double) parameters of the Gamma distribution by testing the
difference is small instead of using the == operator
-- Pierre Gruet <pgt@debian.org> Fri, 14 Oct 2022 14:29:57 +0200
openturns (1.19-3) unstable; urgency=medium
* Adding the -latomic flag to prevent FTBFS on armel
-- Pierre Gruet <pgt@debian.org> Wed, 20 Jul 2022 22:13:58 +0200
openturns (1.19-2) unstable; urgency=medium
* Source-only upload to unstable
-- Pierre Gruet <pgt@debian.org> Wed, 20 Jul 2022 11:26:18 +0200
openturns (1.19-1) experimental; urgency=medium
* New upstream version 1.19
* Refreshing patches
* Adding B-D on libpagmo-dev
* Bumping SONAME to libOT0.20, new binary package
* Reworking Lintian overrides
-- Pierre Gruet <pgt@debian.org> Sat, 16 Jul 2022 20:52:18 +0200
openturns (1.18-5) unstable; urgency=medium
* Increasing again the tolerance for the sensitive kriging algorithm test
-- Pierre Gruet <pgt@debian.org> Fri, 01 Jul 2022 21:43:26 +0200
openturns (1.18-4) unstable; urgency=medium
* Raising the tolerance of Python KrigingAlgorithm test to avoid failures on
buildds
* Avoid looking at the output of Python ANCOVA_std test due to tiny numerical
differences on some architectures
-- Pierre Gruet <pgt@debian.org> Fri, 01 Jul 2022 09:34:36 +0200
openturns (1.18-3) unstable; urgency=medium
* Passing PYTHON_SITE_PACKAGES to CMake instead of patching
-- Pierre Gruet <pgt@debian.org> Wed, 29 Jun 2022 17:03:13 +0200
openturns (1.18-3~exp3) experimental; urgency=medium
* Discarding SimulatedAnnealing_LHS test due to small numerical differences
on some architectures
* Discarding flaky tests on armel
-- Pierre Gruet <pgt@debian.org> Tue, 14 Jun 2022 21:21:31 +0200
openturns (1.18-3~exp2) experimental; urgency=medium
* Build-depending on now available libspectra-dev
* Ignoring the output of Python test SimulatedAnnealing_LHS, subject to small
rounding issues
* Dropping unused patch
-- Pierre Gruet <pgt@debian.org> Mon, 13 Jun 2022 20:32:52 +0200
openturns (1.18-3~exp1) experimental; urgency=medium
* Removing build-dependencies on libsqlite3-dev and libpng-dev, as they are
now correctly provided by dlib
* Raising Standards version to 4.6.1 (no change)
* Marking the -common package as Multi-Arch: foreign
* Passing again the number of jobs to run in parallel to CMake
* Fixing the issue in the Python test t_DistributionFactory_std
* Allowing less accuracy in the Python SimulatedAnnealingLHS test, previously
failing by some short margin on some arches
* Omitting the TensorApproximationAlgorithm_std test
* Ignore rounding issues linked to NLopt, just checking the tests can be run.
* Stopping discarding tests based on the architecture
* Building and installing a static library
-- Pierre Gruet <pgt@debian.org> Mon, 13 Jun 2022 11:33:01 +0200
openturns (1.18-2) unstable; urgency=medium
* Upload to unstable to follow the auto-hmat-oss transition (Closes:#1009003)
* Skipping Python tests on armel for the moment, they are redundant with
the C++ ones.
* Adding missing dependencies of the -dev package on libtbb-dev and
python3-dev
-- Pierre Gruet <pgt@debian.org> Tue, 19 Apr 2022 22:07:10 +0200
openturns (1.18-2~exp5) experimental; urgency=medium
* Skipping MetaModelValidation_std test on armel
-- Pierre Gruet <pgt@debian.org> Sun, 17 Apr 2022 23:31:49 +0200
openturns (1.18-2~exp4) experimental; urgency=medium
* Skipping additional tests on i386 and armel
-- Pierre Gruet <pgt@debian.org> Sat, 16 Apr 2022 22:57:14 +0200
openturns (1.18-2~exp3) experimental; urgency=medium
* Escaping correctly the test-excluding regex in d/rules, using eval
* Excluding one more test on powerpc and ppc64
-- Pierre Gruet <pgt@debian.org> Fri, 15 Apr 2022 12:21:29 +0200
openturns (1.18-2~exp2) experimental; urgency=medium
* Omitting some more tests until we find a fix:
- Python tests for Dlib and NLopt
- Architecture-specific failing tests
-- Pierre Gruet <pgt@debian.org> Wed, 13 Apr 2022 21:52:00 +0200
openturns (1.18-2~exp1) experimental; urgency=medium
* Removing old patches for tests that do not seem problematic anymore
* Removing Denis Barbier from Uploaders, thanks Denis!
* Omitting some tests to manage the library transition of hmat-oss, until we
find a fix for them
-- Pierre Gruet <pgt@debian.org> Tue, 12 Apr 2022 21:27:03 +0200
openturns (1.18-1) experimental; urgency=medium
* New upstream version 1.18
* Providing a gbp.conf file to ease the use of git-buildpackage with 'debian'
as master branch
* Refreshing patches
* Raising Standards version to 4.6.0:
- Removing obsolete get-orig-source target
- Using https version of copyright format URL in d/copyright
- Rules-Requires-Root: no
* Providing debian/upstream/metadata with Repository information
* Bumping SONAME to libot0.19, new binary package
* Removing X-Python*-Version fields from d/control (Closes: #1003818)
* Reworking (build-)dependencies in debian/control:
- Depending on debhelper-compat 13, dropping debian/compat
- Reordering dependencies in d/control for readability concerns
- Adding (optional) build-dependencies
- Removing dependency on python for openturns-examples (gets python3
through python3-openturns) (Closes: #948602)
- Removing build-dependencies on g++ and quilt
- Making the openturns-examples package, now Architecture: all, easily
binNMUable with appropriate dependency versions
- Revising the list of dependencies of the -dev package
- Removing unnecessary versioned dependencies and information related on
too old packages in d/control
* Removing files related to former binary packages in debian/
* Installing the (now unversioned) configuration file in its own package
openturns-common, as it should accompany the versioned library package
* Adding myself as uploader
* Removing README.Debian with 12-year-old, now useless information
* Refreshing d/copyright
* Installing the C++ libraries in /usr/lib/triplet and the Python files in
/usr/lib/python3*
* Reworking debian/rules:
- Not fiddling with DEB_BUILD_OPTIONS in d/rules
- Adopting the same compiler flags on all architectures
- Always using tbb
- Hardening using /usr/share/dpkg/buildflags.mk
- Attempting to build on mips and mipsel
- Removing --parallel option
- Skipping useless variables passed to CMake
- Passing previously deactivated tests again
- Adding the lib now installed in usr/lib/triplet for the Python tests,
and removing this add for the C++ ones
- Removing CMake variables and rules overrides that we don't need in d/rules
- Letting the environment define the parallelism setting for the tests
* Refreshing the lists of files to install (or to omit, in
debian/not-installed)
* Adding a comment to explain the current Lintian override concerning the
name of the shared lib package
* Adding a Lintian override for not providing symbols
* Correcting spelling errors raised by Lintian in the source
* Positioning Debian Python policy-compliant shebangs in installed examples
* Raising tolerance in a test failing by a short margin on some computers
* Skipping the install of *.pyc files
* Updating homepage address and upstream-contact field
* Trim trailing whitespace.
* Fix day-of-week for changelog entries 1.10~rc1-1, 1.8-1, 1.6~rc1-1.
-- Pierre Gruet <pgt@debian.org> Fri, 08 Apr 2022 10:32:40 +0200
openturns (1.14-1) unstable; urgency=medium
* Team upload.
* Drop python2 support; Closes: #937214
* New upstream release; Closes: #902513
* Import packaging from upstream, inclusing rename to libopenturns0.15 and
drop of R bindings
* debian/watch
- point to github
-- Sandro Tosi <morph@debian.org> Thu, 26 Dec 2019 01:40:15 -0500
openturns (1.11-2) experimental; urgency=medium
* debian/copyright: Add stanza for new exprtk.hpp file
* debian/control: Replace libnlopt-dev by libnlopt-cxx-dev
-- Denis Barbier <barbier@debian.org> Wed, 20 Jun 2018 20:50:38 +0200
openturns (1.11-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream release.
-- Denis Barbier <barbier@debian.org> Mon, 07 May 2018 08:02:03 +0200
openturns (1.11~rc1-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream pre-release.
-- Denis Barbier <barbier@debian.org> Mon, 9 Apr 2018 18:14:47 +0100
openturns (1.10-5) unstable; urgency=medium
* Disable NLopt_std tests on i386, there are some transient
failures. These failures come from NLopt, but I do not
have time to debug them.
-- Denis Barbier <barbier@debian.org> Sun, 08 Apr 2018 13:59:13 +0200
openturns (1.10-4) unstable; urgency=medium
* debian/control: Bump Standards-Version to 4.1.3, no changes needed.
* Upload to unstable.
-- Denis Barbier <barbier@debian.org> Wed, 04 Apr 2018 21:47:11 +0200
openturns (1.10-3) experimental; urgency=medium
* debian/patches/test-NormalGamma.patch: Really fixes
failures on ppc64el, s390x and arm64.
Closes: #887005
-- Denis Barbier <barbier@debian.org> Tue, 03 Apr 2018 19:26:28 +0200
openturns (1.10-2) experimental; urgency=medium
* debian/patches/test-NormalGamma.patch: New patch to try
to fix t_NormalGamma_std test failures on ppc64el, s390x
and arm64.
* debian/rules: Also strip binaries from python-openturns
and python3-openturns binary packages.
* debian/control: Update Vcs-* fields to point to salsa.
* debian/patches/fix-multiprocessing-hurd.patch: New patch to fix
support on machines without Python multiprocessing.
* debian/rules: Remove dh --with quilt option, it is not
needed.
* Disable mips and mipsel again, buildds are still unable to
build openturns.
-- Denis Barbier <barbier@debian.org> Mon, 02 Apr 2018 11:16:17 +0200
openturns (1.10-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream release.
[ Denis Barbier ]
* Drop -dbg package, debug packages are now provided automatically.
* Re-enable mips and mipsel; check whether current buildds are
able to buikd openturns.
-- Denis Barbier <barbier@debian.org> Thu, 23 Nov 2017 22:02:03 +0100
openturns (1.10~rc1-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream pre-release.
-- Denis Barbier <barbier@debian.org> Wed, 11 Oct 2017 18:14:47 +0200
openturns (1.9-5) unstable; urgency=medium
* debian/patches/discard-levelsetmesher-test.patch: This test fails
on many non-Intel ports, discard it for now.
-- Denis Barbier <barbier@debian.org> Mon, 20 Nov 2017 00:25:04 +0100
openturns (1.9-4) unstable; urgency=medium
* Upload into unstable
* This version builds with Python 3.6 without change. Closes: #881706
-- Denis Barbier <barbier@debian.org> Sun, 19 Nov 2017 16:53:02 +0100
openturns (1.9-3) experimental; urgency=medium
* debian/copyright: Minor updates
* debian/rules: use SOURCE_DATE_EPOCH for reproducible builds
* debian/libopenturns-dev.install: Do not install openturns-config,
this script is obsolete.
-- Denis Barbier <barbier@debian.org> Fri, 25 Aug 2017 23:23:45 +0200
openturns (1.9-2) experimental; urgency=medium
* debian/control: Remove Christophe from Uploaders.
Closes: #835009
* debian/rules: Fix test failure on *-i386.
Closes: #871505
Report by Matthias Klose and patch by Steve Langasek, thanks.
* debian/control: Build-Depends on g++ (>= 4:7)
Closes: #871298
Report and patch by James Cowgill, thanks.
* debian/control: Bump Standards-Version to 4.1.0, no changes needed.
* debian/control: Build-Depends on dh-python.
* debian/control: Remove python-openturns-dev package.
* debian/control debian/compat: Bump debhelper compat level to 10.
-- Denis Barbier <barbier@debian.org> Tue, 22 Aug 2017 21:50:32 +0200
openturns (1.9-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream release.
-- Denis Barbier <barbier@debian.org> Tue, 18 Apr 2017 18:14:47 +0200
openturns (1.9~rc1-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream pre-release.
-- Denis Barbier <barbier@debian.org> Mon, 03 Apr 2017 18:14:47 +0200
openturns (1.8-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream release.
-- Denis Barbier <barbier@debian.org> Wed, 16 Nov 2016 18:14:47 +0100
openturns (1.8~rc2-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream pre-release.
-- Denis Barbier <barbier@debian.org> Thu, 03 Nov 2016 18:14:47 +0100
openturns (1.8~rc1-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream pre-release.
-- Denis Barbier <barbier@debian.org> Thu, 30 Jun 2016 18:14:47 +0200
openturns (1.7-3) unstable; urgency=medium
* Team upload.
* Keep swig files only in libopenturns-dev, not also in python-openturns-dev.
Closes: #826688
-- Mattia Rizzolo <mattia@debian.org> Tue, 21 Jun 2016 08:16:28 +0000
openturns (1.7-2) unstable; urgency=medium
* Team upload.
* Upload to unstable.
* debian/control: Use https in Vcs-* fields.
-- Mattia Rizzolo <mattia@debian.org> Mon, 20 Jun 2016 19:34:28 +0000
openturns (1.7-1) experimental; urgency=medium
[ Julien Schueller ]
* New upstream release.
[ Denis Barbier ]
* debian/docs: Remove ChangeLog, this file is already copied
by dh_installchangelogs.
-- Denis Barbier <barbier@debian.org> Sun, 05 Jun 2016 17:54:45 +0100
openturns (1.7~rc1-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream pre-release.
-- Denis Barbier <barbier@debian.org> Thu, 10 Dec 2015 18:14:47 +0100
openturns (1.6-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream release.
-- Denis Barbier <barbier@debian.org> Thu, 13 Aug 2015 18:14:47 +0200
openturns (1.6~rc1-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream pre-release.
-- Denis Barbier <barbier@debian.org> Tue, 16 Jun 2015 16:34:47 +0100
openturns (1.5-7) unstable; urgency=medium
* debian/patches/randommixture-x86.patch: Fix Python tests,
they are also failing on x86.
-- Denis Barbier <barbier@debian.org> Sat, 23 May 2015 13:57:25 +0100
openturns (1.5-6) unstable; urgency=medium
* debian/patches/randommixture-x86.patch: Rewrite patch, there
were still failures with RandomMixture_grid3d.
-- Denis Barbier <barbier@debian.org> Thu, 21 May 2015 20:48:55 +0100
openturns (1.5-5) unstable; urgency=medium
* debian/patches/tests-fix-precision-32bits.patch: Modify test
to really fix tests failures on ARM 32bits.
* debian/patches/randommixture-x86.patch: New patch to fix
tests failures on i386.
-- Denis Barbier <barbier@debian.org> Wed, 20 May 2015 20:34:39 +0100
openturns (1.5-4) unstable; urgency=medium
* debian/rules: add --no-diffs option to 2to3.
* debian/rules: less verbose tests output.
* debian/patches/tests-fix-precision-32bits.patch:
New patch to avoid tests failures on 32 bits systems.
-- Denis Barbier <barbier@debian.org> Tue, 19 May 2015 21:17:40 +0100
openturns (1.5-3) unstable; urgency=medium
* Upload into unstable.
* debian/control: Readd Build-Depends: gfortran to fix
build failures.
-- Denis Barbier <barbier@debian.org> Mon, 11 May 2015 21:05:11 +0100
openturns (1.5-2) experimental; urgency=medium
* Merge python-openturns-dev into lib-openturns-dev.
* Add a versioned dependency on swig to ensure that
backports work properly.
-- Denis Barbier <barbier@debian.org> Fri, 01 May 2015 14:27:55 +0100
openturns (1.5-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream release.
* Updated debian/patches/tests-disable-coupling_tools.patches
[ Denis Barbier ]
* Rename libopenturns-dbg package into libopenturns0.6-dbg.
* New python3-openturns binary package.
* debian/control: Bump Standards-Version to 3.9.6, no changes
are needed.
-- Denis Barbier <barbier@debian.org> Tue, 28 Apr 2015 21:46:44 +0200
openturns (1.5~rc1-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream pre-release.
* Add build-dependency to libhmat-oss-dev
* Upstreamed libOT-gdb.py
-- Denis Barbier <barbier@debian.org> Wed, 10 Dec 2014 10:34:47 +0100
openturns (1.4-3) experimental; urgency=medium
* debian/rules: Disable again mips and mipsel builds.
Mipsel failed to build, and mips did not even try.
-- Denis Barbier <barbier@debian.org> Sat, 23 Aug 2014 00:37:17 +0200
openturns (1.4-2) experimental; urgency=medium
* modify-tests-O0-i386.patch: Patch dropped; with newer gcc,
t_TrapezoidalFactory_std now gives the same result on *-i386
architectures as on other.
* debian/libOT-gdb.py: Make it compatible with python3. Closes: #752663
Report and patch by Matthias Klose, thanks.
* debian/rules: Re-enable mips and mipsel builds. Closes: #753594
Report and patch by Dejan Latinovic, thanks.
-- Denis Barbier <barbier@debian.org> Wed, 13 Aug 2014 10:20:28 +0200
openturns (1.4-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream release.
* tests-disable-broken-R.patch: Patch dropped, a fix has been
applied upstream.
* debian/control: Build Python bindings with -j1
[ Denis Barbier ]
* debian/copyright: Updated.
-- Denis Barbier <barbier@debian.org> Fri, 25 Jul 2014 18:34:34 +0200
openturns (1.4~rc1-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream pre-release.
* Set CMAKE_INSTALL_LIBDIR overriden by Ubuntu
-- Denis Barbier <barbier@debian.org> Wed, 02 Jul 2014 10:34:47 +0200
openturns (1.3-2) unstable; urgency=medium
* tests-disable-broken-R.patch: New patch, to disable 3
tests which fail with latest R. Closes: #743073
-- Denis Barbier <barbier@debian.org> Sat, 19 Apr 2014 21:40:58 +0200
openturns (1.3-1) unstable; urgency=medium
[ Julien Schueller ]
* New upstream release
-- Denis Barbier <barbier@debian.org> Thu, 06 Mar 2014 22:15:54 +0100
openturns (1.3~rc3-1) experimental; urgency=medium
[ Julien Schueller ]
* New upstream pre-release
* Add build-dependency to libboost-math-dev
[ Denis Barbier ]
* Add a pretty-printer for OT types in gdb
-- Denis Barbier <barbier@debian.org> Fri, 21 Feb 2014 19:39:09 +0100
openturns (1.3~rc2-1) experimental; urgency=medium
[ Julien Schueller ]
* New upstream pre-release.
* Upstream removes cdflib. Closes: #734855
[ Denis Barbier ]
* debian/copyright: Add missing stanzas. Closes: #734856
-- Denis Barbier <barbier@debian.org> Tue, 21 Jan 2014 20:31:20 +0100
openturns (1.3~rc1-1) experimental; urgency=low
[ Julien Schueller ]
* New upstream pre-release.
* Output test log on failure
* Bump soname to 0.4
* Build-depends on libmuparser-dev
[ Denis Barbier ]
* Update libopenturns0.4.lintian-overrides
-- Denis Barbier <barbier@debian.org> Wed, 08 Jan 2014 22:34:47 +0100
openturns (1.2-2) unstable; urgency=low
* Upload into unstable
* debian/rules: also set CMAKE_EXE_LINKER_FLAGS with dpkg-buildflags's
output.
-- Denis Barbier <barbier@debian.org> Fri, 09 Aug 2013 22:22:59 +0200
openturns (1.2-1) experimental; urgency=low
[Julien Schueller]
* New upstream version 1.2
* Drop patches merged upstream:
fix-bigendian.patch
remove-soname-python-module.patches
* Rename debian/patches/tests-disable-distributed_python_wrapper.patch
into debian/patches/tests-disable-coupling_tools.patch
-- Denis Barbier <barbier@debian.org> Thu, 25 Jul 2013 20:06:52 +0200
openturns (1.2~rc1-2) experimental; urgency=low
[ Denis Barbier ]
* debian/rules: Fix FTBFS on *-i386, copied from 1.1-8.
[ Julien Schueller ]
* debian/patches/fix-bigendian.patch: Patch rewritten to use
CMake detection of endianness.
-- Denis Barbier <barbier@debian.org> Mon, 15 Jul 2013 20:47:24 +0200
openturns (1.2~rc1-1) experimental; urgency=low
[Julien Schueller]
* New upstream version 1.2rc1
* Bump soname to 0.3
* Drop patches merged upstream:
add-missing-header-file.patch debian-soname.patch
fix-swig-warning.patch ftbfs-bison-2.7.patch
* Launch tests in parallel
-- Denis Barbier <barbier@debian.org> Fri, 28 Jun 2013 01:51:22 +0200
openturns (1.1-9) unstable; urgency=low
[ Julien Schueller ]
* debian/control: All libraries listed in OPENTURNS_LIBRARIES
variable into OpenTURNSConfig.cmake must be installed in order
to link against OT. Let libopenturns-dev depend on
libxml2-dev, liblapack-dev, libblas-dev, libtbb-dev [i386 amd64 ia64]
[ Denis Barbier ]
* debian/control: Replace Architecture: any by an hardcoded list
of supported architectures. Openturns requires more than 1GB RAM,
this caused a lot of trouble on mips* architectures.
-- Denis Barbier <barbier@debian.org> Thu, 18 Jul 2013 19:10:04 +0200
openturns (1.1-8) unstable; urgency=low
* debian/rules: Fix building source package on *-i386, there was
trouble with debian/patches/modify-tests-O0-i386.patch.
-- Denis Barbier <barbier@debian.org> Fri, 05 Jul 2013 18:06:37 +0200
openturns (1.1-7) unstable; urgency=low
* debian/patches/modify-tests-O0-i386.patch: On *-i386 architectures,
algocobyla.c is compiled with -O0 flag since 1.1-6; output of
two tests is modified. Closes: #714915
-- Denis Barbier <barbier@debian.org> Thu, 04 Jul 2013 22:36:45 +0200
openturns (1.1-6) unstable; urgency=low
* debian/rules: The previous change fixed C++ tests on kfreebsd-i386,
but pyinstallcheck_Cobyla_nonlinear hangs. There is another hang
on i386. The -fno-guess-branch-probability flag fixes the failure
on kfreebsd-i386, but compile instead algocobyla.c with -O0 flag
on *-i386 architectures to be safe. Closes: #714411
-- Denis Barbier <barbier@debian.org> Tue, 02 Jul 2013 20:08:27 +0200
openturns (1.1-5) unstable; urgency=low
* debian/rules: algocobyla.c is again miscompiled with gcc 4.8.1
on kfreebsd-i386 and hurd-i386, cppcheck_TrapezoidalFactory_std
and cppcheck_WhittleFactory_std hang; compile with -fno-caller-saves
to avoid these problems. Closes: #714411
-- Denis Barbier <barbier@debian.org> Sat, 29 Jun 2013 23:50:27 +0200
openturns (1.1-4) unstable; urgency=low
* Upload into unstable
* Bump Standards-Version to 3.9.4, no changes are needed.
-- Denis Barbier <barbier@debian.org> Thu, 27 Jun 2013 22:58:17 +0200
openturns (1.1-3) experimental; urgency=low
* debian/rules: Adjust Python detection so that it works with
multiarch and non-multiarch Python.
* debian/patches/ftbfs-bison-2.7.patch: New patch, to fix build
failures with newer Bison.
* debian/patches/tests-disable-distributed_python_wrapper.patch:
New patch, to disable distributed python wrapper tests, these
tests sometimes fail in strange ways.
* debian/patches/fix-swig-warning.patch: New patch, taken from
upstream. Several tests are missing because of a behavior change
in swig 2.0.9, fix .i files.
-- Denis Barbier <barbier@debian.org> Thu, 30 May 2013 23:51:47 +0200
openturns (1.1-2) experimental; urgency=low
[ Julien Schueller ]
* debian/rules: Install CMake files into /usr/lib/cmake/openturns
* debian/patches/add-missing-header-file.patch: New patch, to
install missing header file WrapperCommon_extern.h
[ Denis Barbier ]
* debian/patches/tests-disable-timing.patch: New patch, to disable
test timings. They are useless, and prevent openturns from
building on Hurd.
* debian/patches/remove-soname-python-module.patch: New patch, to
remove SONAME from Python modules, this confuses dpkg-shlibdeps.
* debian/control: Let openturns-examples explicitly depend on python.
* debian/rules: Pass LDFLAGS when building shared libraries.
* openturns-examples: Remove duplicates from /usr/lib/openturns/examples/.
-- Denis Barbier <barbier@debian.org> Tue, 05 Feb 2013 01:23:41 +0100
openturns (1.1-1) experimental; urgency=low
[ Denis Barbier ]
* New upstream version
* License has been updated to LGPL-3+
* Drop patches merged upstream:
fix-dtd-search-path.patch install_cmake_files.patch
kfreebsd-fix-t_WrapperFile_generic.patch
* Let libopenturns-dev ship CMake files.
* debian/watch: Check for tar.bz2 instead of tar.gz
* debian/copyright: Convert to machine-readable format
and add missing stanzas.
[ Julien Schueller ]
* debian/rules: Drop chmod calls, they are useless.
* debian/rules: Removed useless clean override.
* debian/control: Fix URL in Homepage field.
-- Denis Barbier <barbier@debian.org> Sun, 13 Jan 2013 09:46:40 +0100
openturns (1.1~rc1-3) experimental; urgency=low
* debian/patches/kfreebsd-fix-t_WrapperFile_generic.patch: New
patch to fix t_WrapperFile_generic.py failure on kfreebsd.
-- Denis Barbier <barbier@debian.org> Sun, 09 Dec 2012 21:39:44 +0100
openturns (1.1~rc1-2) experimental; urgency=low
* debian/patches/disable-coupling_tools.patch: Replaced by...
* debian/patches/fix-dtd-search-path.patch: Fix DTD search path
to look into all wrapper directories and not only
Path::GetStandardWrapperDirectory(). All tests can now run.
* debian/rules: Thanks to this new patch, there is no more need
to set OPENTURNS_HOME.
* debian/rules: Append current value of LD_LIBRARY_PATH into
CTestTestfile.cmake, this should avoid FTBFS on kfreebsd-*.
-- Denis Barbier <barbier@debian.org> Sun, 09 Dec 2012 08:44:04 +0100
openturns (1.1~rc1-1) experimental; urgency=low
* New upstream version
* Drop patches merged upstream:
bigendian-randomgenerator.patch cmake-configdir.patch
cmake-tools.patch fix-tests-clang.patch ftbfs-4.7.patch
ftbfs-clang.patch installcheck.patch test-output.patch
* debian/patches/disable-coupling_tools.patch: New patch.
Disable two tests which require changing LD_LIBRARY_PATH,
this breaks fakeroot.
* debian/rules: Set R_LIBS_SITE when running tests.
* debian/rules: Now that all architectures run tests without
failures, let test failures abort build.
* debian/rules: Also use dpkg-buildflags to set CPPFLAGS.
* debian/rules: On mips, do not build Python libraries in
parallel to avoid build failures due to memory problems.
* debian/control: Adjust package dependencies
+ Build-Depends: remove unused python-rpy2, ghostscript,
graphviz.
+ libopenturns0.2: Demote r-other-rot from Depends into
Suggests, it is needed by few files only. Ditto for
ghostscript, only needed by R.
+ python-openturns: Drop Depends on python-rpy2,
ghostscript, python-qt4;
Add Suggests: python-matplotlib, python-scipy
-- Denis Barbier <barbier@debian.org> Tue, 04 Dec 2012 19:39:48 +0100
openturns (1.0-4) unstable; urgency=low
[ Denis Barbier ]
* debian/patches/test-output.patch: New patch.
Fix test output, some compilers print 'df(x)=' twice because
exception is thrown after text is printed to stdout.
* debian/patches/ftbfs-clang.patch: New patch.
Allows building with the clang compiler.
* debian/patches/fix-bigendian.patch: New patch.
Many checks fail on some (but not all) big endian machines,
it seems that not all systems define __BIG_ENDIAN__.
Add some compile-time checks to determine endianness.
* debian/rules: Do not ignore test results for architectures
on which tests currently pass.
* debian/rules: Also compile algocobyla.c with -fno-cse-follow-jumps
on kfreebsd-i386 and hurd-i386, one test hangs as on i386.
* debian/rules: On mipsel, do not build Python libraries in
parallel to avoid build failures due to memory problems.
-- Denis Barbier <barbier@debian.org> Fri, 15 Jun 2012 20:45:14 +0200
openturns (1.0-3) unstable; urgency=low
[ Denis Barbier ]
* debian/control: Fix dependency on r-other-rot, packages
were not installable.
* debian/patches/bigendian-randomgenerator.patch: New patch.
Fix t_RandomGenerator_std unit test, it fails on PowerPC
because of endianness.
* debian/patches/cmake-tools.patch: New patch.
Scripts openturns-config and openturns-module were broken.
* Cleanup debian/patches by removing obsolete patches. Also
rewrite patch headers to follow DEP3.
-- Denis Barbier <barbier@debian.org> Sat, 19 May 2012 19:39:30 +0200
openturns (1.0-2) unstable; urgency=low
[ Denis Barbier ]
* debian/control: Fix dependency on tbb, it is available only on
amd64, i386 and ia64.
* debian/rules: Display output of failed tests to help debug failures.
* debian/rules: Do not abort if tests fail; this was the behaviour
when compiling with Autotools.
-- Denis Barbier <barbier@debian.org> Thu, 17 May 2012 17:43:20 +0200
openturns (1.0-1) experimental; urgency=low
[ Christophe Trophime ]
* debian/rules:
explicit python version in override_dh_auto_configure target
* debian/copyright:
fix lintian warning
[ Denis Barbier ]
* New upstream release (Closes: #669425).
* Build with g++ 4.6, several tests fail with g++ 4.7.
* debian/patches/ftbfs-4.7.patch: Patch upgraded, previous
fix had been applied upstream but there is another error.
* debian/patches/debian-soname.patch: New patch.
Use a Debian specific SONAME (0.1), upstream does
not yet take care of SONAME.
Rename libopenturns0 package into libopenturns0.1.
* debian/patches/no-link-python.patch: New patch.
Bugfix: "python-openturns is unusable" (Closes: #670066)
* debian/rules: Compile algocobyla.c with -fno-cse-follow-jumps
to work around an undefined GCC bug which makes one test
hang on x86. (Closes: #666782)
* Do not build-depends on doxygen-latex, docbook-to-man.
* Build-depends on bison, flex and bc (the latter is needed to run
one test).
* Move rotRpackage into a new binary package: r-other-rot, and
let libopenturns0.1 depend on this package. (Closes: #662800)
* Install files into versioned directories /usr/lib/openturns-1.0
and /etc/openturns-1.0 to avoid file conflicts during library
transitions.
* Add myself to Uploaders.
[ Julien Schueller ]
* Remove openturns-wrapper package, its files are now shipped
by libopenturns0, libopenturns-dev and openturns-examples.
* Moved dtd files to libopenturns0
* Added missing generic wrapper to libopenturns0
* Added python-openturns-dev
* Added dependency to libtbb
-- Denis Barbier <barbier@debian.org> Wed, 16 May 2012 20:03:53 +0200
openturns (0.15-3.1) unstable; urgency=low
* Non-maintainer upload.
* Fix "ftbfs with GCC-4.7": add patch from Denis Barbier: move declaration
of streamObject before first usage.
(Closes: #667315)
-- gregor herrmann <gregoa@debian.org> Sat, 21 Apr 2012 13:54:09 +0200
openturns (0.15-3) unstable; urgency=low
* Team upload. (Closes: #662792).
* Getting rid of unneeded *.la (Closes: #622492).
* Transition to dh_python2 (Closes: #616928).
* Use dh rules.tiny, enable parallel build.
-- Aron Xu <aron@debian.org> Mon, 26 Mar 2012 08:40:35 +0000
openturns (0.15-2) unstable; urgency=low
* openturns-wrappers: install wrappers, wrapper.xml and wrapper.dtd
-- Christophe Prud'homme <prudhomm@debian.org> Fri, 09 Sep 2011 06:34:05 +0200
openturns (0.15-1) unstable; urgency=low
* New upstream release
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 30 Aug 2011 12:12:18 +0200
openturns (0.13.2-8) unstable; urgency=low
* debian/control: add python-qt4 depends to python-openturns and
openturns-examples now depends on python-openturns
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 28 Dec 2010 16:12:44 +0100
openturns (0.13.2-7) unstable; urgency=low
[Christophe Prud'homme]
* Bug fix: "creates a mess in sys.path by adding its own namespace",
thanks to Bernd Zeimetz (Closes: #606870).
* Bug fix: "Preparations for the removal of the KDE3 and Qt3 libraries",
thanks to Eckhart Wörner (Closes: #604605).
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 28 Dec 2010 08:14:21 +0100
openturns (0.13.2-6) unstable; urgency=low
[Christophe Prud'homme]
* debian/rules: reduce optimization level to O1 on armel
-- Christophe Prud'homme <prudhomm@debian.org> Fri, 13 Aug 2010 15:44:53 +0200
openturns (0.13.2-5) unstable; urgency=low
[Christophe Prud'homme]
* Bug fix: "FTBFS with Python 2.6: Could not link test program to
Python.", thanks to Jakub Wilk (Closes: #586351).
-- Christophe Prud'homme <prudhomm@debian.org> Sat, 19 Jun 2010 07:22:38 +0200
openturns (0.13.2-4) unstable; urgency=low
* Bug fix: "ftbfs with gcc-4.5", thanks to Matthias Klose (Closes:
#565081).
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 09 Jun 2010 21:55:51 +0200
openturns (0.13.2-3) unstable; urgency=low
* Bug fix: "python-openturns must be depend on python-rpy2", thanks to
Jerome Robert (Closes: #582532).
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 23 May 2010 10:10:14 +0200
openturns (0.13.2-2) unstable; urgency=low
* Bug fix: "command not found", thanks to Jerome Robert (Closes:
#573143).
* Bug fix: "does not byte-compile Python files", thanks to
dktrkranz@debian.org</a>; (Closes: #566041).
-- Christophe Prud'homme <prudhomm@debian.org> Sat, 13 Mar 2010 13:56:14 +0100
openturns (0.13.2-1) unstable; urgency=low
* New upstream release
* debian/libopenturns0.install: move lib to /usr/lib
* Fixed almost all lintian warnings and errors
* debian/control: update to Standard-Versions 3.8.4 (no change)
* debian/patches/fix_ftbfs_on_arm_and_mips: removed, applied upstream
-- Christophe Prud'homme <prudhomm@debian.org> Mon, 01 Mar 2010 13:13:47 +0100
openturns (0.13.1-4) unstable; urgency=low
* debian/control: Moved openturns to Debian Science
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 16 Feb 2010 13:39:07 +0100
openturns (0.13.1-3) unstable; urgency=low
* debian/rules: enable quilt(the patches were not applied before)
* Bug fix: "Please support Renesas SH(sh4)", thanks to Nobuhiro Iwamatsu
(Closes: #565120).
-- Christophe Prud'homme <prudhomm@debian.org> Mon, 08 Feb 2010 19:13:55 +0100
openturns (0.13.1-2) unstable; urgency=low
[Christophe Prud'homme]
* debian/control: no more depending on xerces
* Bug fix: "package-installs-python-pyc
/usr/lib/python2.5/site-packages/openturns/__init__.pyc", thanks to
Manoj Srivastava (Closes: #553479).
* Bug fix: "FTBFS with python2.6", thanks to Fabrice Coutadeur (Closes:
#542524).
* Bug fix: "The package is empty", thanks to Jerome Robert (Closes:
#548794).
* debian/control: openturns-doc is now removed from control file as the
documentation is now provided by upstream in a separate archive.
* Bug fix: "FTBFS: XMLToolbox.cxx:207: error: 'vsnprintf' is not
a member of 'std'", thanks to Nobuhiro Iwamatsu (Closes:
#565118).
* Bug fix: "Please support Renesas SH(sh4)", thanks to Nobuhiro Iwamatsu
(Closes: #565120).
-- Christophe Prud'homme <prudhomm@debian.org> Thu, 14 Jan 2010 07:34:22 +0100
openturns (0.13.1-1) unstable; urgency=low
[Christophe Prud'homme]
* New upstream release
* Fix some lintian warnings
* Fix wrongly formatted description, thanks to Gerfried Fuchs (Closes: #530594).
* debian/control: updated Standard-Versions to 3.8.2 (no changes)
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 21 Jul 2009 10:52:57 +0200
openturns (0.13.0-2) unstable; urgency=low
* Bug fix: "libboost1.35-dev", thanks to Lucas Nussbaum (Closes:
#527800).
* Bug fix: "Killed (program cc1plus)", thanks to Bastian Blank (Closes:
#499738).
* Bug fix: "FTBFS on sparc", thanks to Martin Zobel-Helas (Closes:
#500999).
* debian/control: -dbg in debug section now
* debian/python-openturns.install: create openturns subdirectory in
site-packages
-- Christophe Prud'homme <prudhomm@debian.org> Sat, 09 May 2009 12:57:35 +0200
openturns (0.13.0-1) unstable; urgency=low
* New upstream release
+ Generic wrapper (compatible with Salome).
+ Wrapper designer guide.
+ Polynomial Chaos Expansion. WARNING! Due to a mistake, this feature
is only available in the C++ library and not the TUI.
+ Support Vector Regression. WARNING! Due to a mistake, this feature
is only available in the C++ library and not the TUI.
+ Sensitivity Analysis (Sobol indices).
+ The gui module is definitely removed. A new (and simplier) GUI will
be proposed later.
* debian/{control,compat}: updated dh compat to 7
* debian/{control,rules}: get rid of qopenturns which was removed
* debian/control: get rid on lintian warnings, Depends on
${misc:Depends} for openturns-{doc,validation}
-- Christophe Prud'homme <prudhomm@debian.org> Thu, 19 Mar 2009 13:43:52 +0100
openturns (0.12.2-2) unstable; urgency=low
* Bug fix: "Dynamic loading of library 'libOT.so' failed at
/usr/lib/openturns ", thanks to Jerome Robert (Closes: #507162).
-- Christophe Prud'homme <prudhomm@debian.org> Fri, 28 Nov 2008 18:56:36 +0100
openturns (0.12.2-1) unstable; urgency=low
* New upstream release
* Bug fix: "New upstream release available (0.12.2)", thanks to Jerome
Robert (Closes: #506005).
* Applied patch by J. Robert.
* debian/control: build-depends on libxml2
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 18 Nov 2008 06:32:22 +0100
openturns (0.12.1-7) unstable; urgency=low
* Bug fix: "Killed (program cc1plus)", thanks to Bastian Blank (Closes:
#499738).
* Bug fix: "FTBFS on sparc", thanks to Martin Zobel-Helas (Closes:
#500999).
* debian/rules: set OT_DEBUG_LEVEL to 3 as per default
-- Christophe Prud'homme <prudhomm@debian.org> Sat, 04 Oct 2008 08:42:57 +0200
openturns (0.12.1-6) unstable; urgency=low
* debian/rules: Fix FTBS on hppa, sparc, arm, and armel because of
__sync_fetch_and_add_4 not being available, the remedy is to use
-DBOOST_SP_USE_PTHREADS
* debian/rules: add --disable-debug option to configure and set the
compiler flags to -g -O2 (no -Wall)
-- Christophe Prud'homme <prudhomm@debian.org> Fri, 03 Oct 2008 10:55:20 +0200
openturns (0.12.1-5) unstable; urgency=low
* Bug fix: "Should recommend python-rpy", thanks to Jerome Robert
(Closes: #500874).
* Bug fix: "Missing r-rot package", thanks to Jerome Robert (Closes:
#500872).
-- Christophe Prud'homme <prudhomm@debian.org> Thu, 02 Oct 2008 12:57:48 +0200
openturns (0.12.1-4) unstable; urgency=low
* debian/rules: use DEB_COMPRESS_EXCLUDE to avoid zipping pdf files
* Bug fix: "gzipped pdf", thanks to Jerome Robert (Closes: #499673).
* debian/qopenturns.sgml: fixed warnings and errors from docbook-to-man
* Bug fix: "No module named _openturns", thanks to Jerome Robert
(Closes: #499668).
* Bug fix: "short description should not contain 'A' by policy",
thanks to Eugene V. Lyubimkin (Closes: #500427).
* Bug fix: "short description should not start with a capital letter by
policy", thanks to Eugene V. Lyubimkin (Closes: #500428).
* Bug fix: "Duplicated documentation", thanks to Jerome Robert (Closes:
#499672).
-- Christophe Prud'homme <prudhomm@debian.org> Wed, 01 Oct 2008 11:06:56 +0200
openturns (0.12.1-3) unstable; urgency=low
* debian/control: Fixed override disparity, python-openturns is now in
section python and no more in section science
* debian/rules: use -O2 instead -O3, it might help build OpenTURNS on
the other arch
* debian/rules: fixed typo, changed -enable-lib to --enable-lib
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 09 Sep 2008 14:59:04 +0200
openturns (0.12.1-2) unstable; urgency=low
* debian/control: Improved package description, "the description does
not explain what OpenTURNS is" thanks to Helmut Grohne
<helmut@subdivi.de> (Closes: #498026).
* debian/control: Fixed FTBFS, "OpenTURNS_ArchitectureGuide.tex: command
not found" thanks to Kurt Roeckx <kurt@roeckx.be> (Closes: #498036).
* debian/control: Improved openturns-doc, "Useless long description"
tanks to Vincent Danjean <vdanjean@debian.org> (Closes: #498245)
-- Christophe Prud'homme <prudhomm@debian.org> Tue, 09 Sep 2008 08:04:26 +0200
openturns (0.12.1-1) unstable; urgency=low
* Initial release (Closes: #490907)
-- Christophe Prud'homme <prudhomm@debian.org> Sun, 06 Jul 2008 21:39:33 +0200
|