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
|
freecad (0.19.1+dfsg1-2+deb11u1) bullseye-security; urgency=medium
* Non-maintainer upload by the Security Team.
* CVE-2021-45844 and CVE-2021-45845:
- Fix two external command execution issues in Python scripts that are
vunlnerbale to OS command injection when crafted input file is applied
-- Aron Xu <aron@debian.org> Thu, 18 Aug 2022 15:02:04 +0800
freecad (0.19.1+dfsg1-2) unstable; urgency=medium
* Team upload.
* [aed47c1] Fix whitespaces in previous commit from Christian Ehrhardt,
breaking python autopkgtests
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 16 Mar 2021 17:55:02 +0100
freecad (0.19.1+dfsg1-1) unstable; urgency=medium
[ Christian Ehrhardt ]
* [fbc90b2] skip self test open_de9b3fb438 on s390x as it goes OOM
(LP: #1918474)(Closes: #984952)
[ Kurt Kremitzki ]
* [3ae55a4] New upstream version 0.19.1+dfsg1
* [bc2242e] Drop fix-fem-crash.patch, included in 0.19.1
-- Kurt Kremitzki <kkremitzki@debian.org> Mon, 15 Mar 2021 21:00:32 -0500
freecad (0.19+dfsg1-2) unstable; urgency=medium
* [e19be27] Add patch to fix crash in FEM Constraint::getDirection
(Closes: #983590)
-- Kurt Kremitzki <kkremitzki@debian.org> Sun, 28 Feb 2021 03:36:37 -0600
freecad (0.19+dfsg1-1) unstable; urgency=medium
* [40577ea] New upstream version 0.19+dfsg1
* [f346346] Add python3-matplotlib build dependency
-- Kurt Kremitzki <kkremitzki@debian.org> Thu, 25 Feb 2021 11:53:32 -0600
freecad (0.19~pre1+git20210207.a3fb41502b+dfsg-1) unstable; urgency=medium
* [fc00a73] New upstream version 0.19~pre1+git20210207.a3fb41502b+dfsg
* [b1f38b0] Refresh patches
-- Kurt Kremitzki <kkremitzki@debian.org> Sun, 07 Feb 2021 18:46:40 -0600
freecad (0.19~pre1+git20210109.afd1470202+dfsg1-2) unstable; urgency=medium
* [bcad731] Add python3-yaml runtime dep
* [4f5dd12] Set FREECAD_USER_HOME for autopkgtest
-- Kurt Kremitzki <kkremitzki@debian.org> Wed, 20 Jan 2021 10:49:37 -0600
freecad (0.19~pre1+git20210109.afd1470202+dfsg1-1) unstable; urgency=medium
* [1395c4c] Update freecad-common symlinks (Closes: #980292)
* [154c84e] New upstream version 0.19~pre1+git20210109.afd1470202+dfsg1
-- Kurt Kremitzki <kkremitzki@debian.org> Mon, 18 Jan 2021 12:48:25 -0600
freecad (0.19~pre1+git20201221.3b449e1ce9+dfsg1-2) unstable; urgency=medium
* [2ce772e] Add Breaks+Replaces for libfreecad-python3-0.19 over 0.18
(Closes: #976430)
* [0046d46] Always only --list-missing
-- Kurt Kremitzki <kkremitzki@debian.org> Thu, 24 Dec 2020 06:54:50 -0600
freecad (0.19~pre1+git20201221.3b449e1ce9+dfsg1-1) unstable; urgency=medium
* [921e9bc] New upstream version 0.19~pre1+git20201221.3b449e1ce9+dfsg1
* [ea5594a] Refresh python3.8.patch
-- Kurt Kremitzki <kkremitzki@debian.org> Mon, 21 Dec 2020 11:23:53 -0600
freecad (0.19~pre1+git20201123.8d73c8f0+dfsg1-1) experimental; urgency=medium
* [ede52e5] New upstream version 0.19~pre1+git20201123.8d73c8f0+dfsg1
* [b8be794] Refresh patches
* [5b061b9] Update packaging for 0.19
-- Kurt Kremitzki <kkremitzki@debian.org> Sun, 29 Nov 2020 03:20:11 -0600
freecad (0.18.4+dfsg2-6) unstable; urgency=medium
* Team upload.
* [63b9bcf] Fix compilation against boost and python3.9.
(Closes: #975267, #973285)
* [5773c7e] Use secure URI in Homepage field.
* [ffb3bbb] Set debhelper-compat version in Build-Depends.
* [15de038] Set upstream metadata fields: Repository, Repository-Browse.
* [afe02a4] Fix day-of-week for changelog entry 0.7.1031-1.
* [159b458] Update standards version to 4.5.0, no changes needed.
-- Anton Gladky <gladk@debian.org> Thu, 19 Nov 2020 20:50:53 +0100
freecad (0.18.4+dfsg2-5) unstable; urgency=medium
* [6ef07803] cherry-pick upstream commits:
- 17ed2b196a58afbbc3cc1bb99f6eb76060171ad2
- 1666b28836baa79b26b707afb1e97c2a0855eb1f
- 1bca53917db942aa8e0639c8e2c2f33b2e09c1b0
and drop new-pyside2.patch patch
* [ 1b8737ca ]Drop depends on python3-pyside2uic,
dropped by pyside2 (experimental), and add
pyqt5-dev-tools for new pyrcc5 tool
-- Gianfranco Costamagna <locutusofborg@debian.org> Sun, 07 Jun 2020 14:39:33 +0200
freecad (0.18.4+dfsg2-4) unstable; urgency=medium
* Team upload
[ Gianfranco Costamagna ]
* [224b2c8a] Drop unused libboost-signals-dev (Closes: #962086)
[ Graham Inggs ]
* [e3aa33cd] Fix TaperedHole test for OCCT 7.4 (Closes: #961131)
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 06 Jun 2020 12:07:18 +0200
freecad (0.18.4+dfsg2-3) unstable; urgency=medium
* [a1d5760] Disable netgen builds for now
* [cbbde84] Add patch for OCCT 7.4 regression test case
-- Kurt Kremitzki <kurt@kwk.systems> Wed, 20 May 2020 03:48:36 -0500
freecad (0.18.4+dfsg2-2) unstable; urgency=medium
[ Tobias Frost ]
* [b742def] Import Ubuntu patches to fix Python 3.8 FTBFS (Closes: #953721).
This also includes some other patches from Ubuntu that are worth as they
are fixing crashes. Thanks to Gianfranco for his work in Ubuntu.
[ Kurt Kremitzki ]
* [d56ac71] Correct line ending issue with patch
* [599ea99] Add opencascade74.patch (Closes: #956543)
-- Kurt Kremitzki <kurt@kwk.systems> Tue, 19 May 2020 04:24:52 -0500
freecad (0.18.4+dfsg2-1) unstable; urgency=medium
* [e8be3d7] New upstream version 0.18.4+dfsg2
* [5fefd1a] Don't hardcode Python 3 version (Closes: #950137)
-- Kurt Kremitzki <kurt@kwk.systems> Tue, 11 Feb 2020 06:26:08 -0600
freecad (0.18.4+dfsg1-2) unstable; urgency=medium
[ Kurt Kremitzki ]
* [1e38838] Revert dwz override after upstream fix
[ Gianfranco Costamagna ]
* Team upload
* [84844f5] Tweak rules file to make it use with Python3.7
(Closes: #945314), the one used during pyside build
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 30 Dec 2019 11:04:13 +0100
freecad (0.18.4+dfsg1-1) unstable; urgency=medium
* [3928e77] New upstream version 0.18.4+dfsg1
* [55b8edd] Update version display patch for 0.18.4
-- Kurt Kremitzki <kurt@kwk.systems> Sun, 03 Nov 2019 13:26:10 -0600
freecad (0.18.3+dfsg1-4) unstable; urgency=medium
* [e768789] Add dh_dwz override for i386, mipsel, and s390x due to upstream
regression
-- Kurt Kremitzki <kurt@kwk.systems> Wed, 30 Oct 2019 22:43:14 -0500
freecad (0.18.3+dfsg1-3) unstable; urgency=medium
* [c78f8e9] Revert enabling Netgen/Pybind11 builds
-- Kurt Kremitzki <kurt@kwk.systems> Tue, 17 Sep 2019 11:00:11 -0500
freecad (0.18.3+dfsg1-2) unstable; urgency=medium
* [898fd80] Migrate to Python 3 only, Netgen-enabled build (Closes:
#936552)
* [2c077ab] Bump compat level to 12
* [276a12e] Bump Standards-Version to 4.4.0 (no changes needed)
-- Kurt Kremitzki <kurt@kwk.systems> Sun, 08 Sep 2019 17:35:08 -0500
freecad (0.18.3+dfsg1-1) unstable; urgency=medium
* [5f5b5c2] New upstream version 0.18.3+dfsg1
* [6c43d54] Update set_about_freecad.patch for new version
-- Kurt Kremitzki <kurt@kwk.systems> Thu, 18 Jul 2019 20:12:46 -0500
freecad (0.18.2+dfsg1-1) unstable; urgency=medium
* [bc5f8c2] New upstream version 0.18.2+dfsg1
* [f6afef9] Remove upstream-bugfixes.patch (obsoleted by 0.18.2)
* [bb1b36e] Don't save in non-user-writable location by default
* [ce51375] Fix missing document icons
-- Kurt Kremitzki <kurt@kwk.systems> Fri, 07 Jun 2019 22:31:06 -0500
freecad (0.18.1+dfsg1-2) unstable; urgency=medium
* [5cd3fce] Add missing pyside2 deps
* [fd92cc2] Fix breaks+replaces relations (Closes: #926251)
* [c61fe87] Add upstream bugfixing patch
* [f95e30a] Fix FEM autopkgtest (Closes: #926304 #920535)
-- Kurt Kremitzki <kurt@kwk.systems> Sat, 27 Apr 2019 19:06:02 -0500
freecad (0.18.1+dfsg1-1) unstable; urgency=medium
* [cab285b] Correct suggested packages
* [576bf03] New upstream version 0.18.1+dfsg1
* [7cec221] Update rules for 0.18.1
* [39bac84] Add patch to display 0.18.1 version
-- Kurt Kremitzki <kurt@kwk.systems> Sat, 06 Apr 2019 13:52:45 -0500
freecad (0.18+dfsg1-1) unstable; urgency=medium
* [64167ef] New upstream version 0.18+dfsg1
* [8c882c8] Remove upstreamed patches fix-start-workbench and
fix_qt-5.11_build
* [7d77b28] Add NEWS file to announce Python 3 switch
-- Kurt Kremitzki <kurt@kwk.systems> Thu, 14 Mar 2019 21:43:55 -0500
freecad (0.18~pre1+dfsg1-5) unstable; urgency=medium
* [e91ae47] Fix update-alternatives problem (Closes: #923465 #923412)
* [a7f46c7] Update OpenCASCADE path
* [958e27f] Add patch to fix Start WB
* [ba149a5] Add lintian override for freecad virtual package
-- Kurt Kremitzki <kurt@kwk.systems> Sat, 02 Mar 2019 03:42:57 -0600
freecad (0.18~pre1+dfsg1-4) unstable; urgency=medium
* [7865394] Use libqt5opengl5-dev instead of -desktop-dev for armel/armhf
builds
-- Kurt Kremitzki <kurt@kwk.systems> Fri, 15 Feb 2019 14:15:18 -0600
freecad (0.18~pre1+dfsg1-3) unstable; urgency=medium
* [f852948] Re-add allow-stderr restriction on autopkgtest
-- Kurt Kremitzki <kurt@kwk.systems> Mon, 11 Feb 2019 13:59:14 -0600
freecad (0.18~pre1+dfsg1-2) unstable; urgency=medium
* [4f80ffc] Undo accidental autopkgtest reversion
-- Kurt Kremitzki <kurt@kwk.systems> Sun, 10 Feb 2019 16:48:53 -0600
freecad (0.18~pre1+dfsg1-1) unstable; urgency=medium
* [e648c8e] Add Breaks+Conflicts+Replaces to smooth upgrade
-- Kurt Kremitzki <kurt@kwk.systems> Sat, 09 Feb 2019 17:56:53 -0600
freecad (0.18~pre1+dfsg1-1~exp1) experimental; urgency=medium
* [f52bb1e] Update packaging for 0.18
* [0b830f4] New upstream version 0.18~pre1+dfsg1
* [9b83d5c] Update lintian overrides for 0.18
-- Kurt Kremitzki <kurt@kwk.systems> Sun, 27 Jan 2019 19:42:09 -0600
freecad (0.17+dfsg1-8) unstable; urgency=medium
* [9d6a8a1] Add allow-stderr restriction on autopkgtest (Closes: #920525)
-- Kurt Kremitzki <kurt@kwk.systems> Sat, 26 Jan 2019 18:04:22 -0600
freecad (0.17+dfsg1-7) unstable; urgency=medium
* [86c1410] Fix autopkgtest command (Closes: #918479)
* [d5ee7ff] Update VTK dep to v7
-- Kurt Kremitzki <kurt@kwk.systems> Fri, 25 Jan 2019 20:33:35 -0600
freecad (0.17+dfsg1-6) unstable; urgency=medium
* [af5bdfa] Update coin/pivy deps for Coin transition
-- Kurt Kremitzki <kurt@kwk.systems> Fri, 21 Dec 2018 08:11:47 -0600
freecad (0.17+dfsg1-5) unstable; urgency=medium
* Upload to unstable
-- Kurt Kremitzki <kurt@kwk.systems> Thu, 11 Oct 2018 08:14:49 -0500
freecad (0.17+dfsg1-4) experimental; urgency=medium
* [07492c4] Update dependency to use libqt5opengl5-desktop-dev & exclude
armel/armhf
-- Kurt Kremitzki <kurt@kwk.systems> Thu, 11 Oct 2018 00:37:53 -0500
freecad (0.17+dfsg1-3) experimental; urgency=medium
* [44d99e3] Remove fail-missing to handle arch-specific builds
-- Kurt Kremitzki <kurt@kwk.systems> Wed, 10 Oct 2018 02:38:11 -0500
freecad (0.17+dfsg1-2) experimental; urgency=medium
* [04e05c3] Downgrade VTK dependency back to VTK6
* [6f91417] Enable Qt5 builds (Closes: #874877)
* [741aae7] Add patch for Qt 5.11 build support
* [0939941] Add Breaks+Replaces for FreeCAD < 0.17 (Closes: #906110)
-- Kurt Kremitzki <kurt@kwk.systems> Mon, 08 Oct 2018 01:32:52 -0500
freecad (0.17+dfsg1-1) experimental; urgency=medium
* New upstream version 0.17+dfsg1
* Update OpenCASCADE dependency to use OCCT instead of OCE
* Update VTK dependency to VTK7
* Update d/copyright's Files-Excluded section and clean up per lintian
warnings
* Update Uploaders: add Kurt Kremitzki
* Switch default workbench from Start to Part Design due to Qt 4 Webkit
deprecation, to be reverted after Qt 5 switch is complete
* Removed patches fixed upstream or no longer relevant in 0.17:
- fix-836983.patch
- fix_FTBFS_on_precise.patch
- use_share.patch
* Refreshed all other patches including:
- remove_webkit.patch: Since this breaks the default Start Workbench,
I have updated it to default to Part Design, the new premier WB
for this upstream version (i.e. PartDesign Next)
* Added lintian override for hardening false positives
-- Kurt Kremitzki <kkremitzki@gmail.com> Thu, 07 Jun 2018 17:32:47 -0500
freecad (0.16.6712+dfsg1-3) unstable; urgency=medium
* Team upload
* Close Teemu's bug in previous changelog entry
* Fix autopkgtest on architectures where char is unsigned by default,
thanks Frédéric Bonnard (Closes: #836983)
* Install copies of icons since AppStream does not recognize symlinks
(Closes: #850965)
* Update Uploaders: add Sebastian Kuzminsky
remove Adam C. Powell, IV
-- Graham Inggs <ginggs@debian.org> Mon, 28 May 2018 08:55:04 +0000
freecad (0.16.6712+dfsg1-2) unstable; urgency=medium
* Team upload.
[ Teemu Ikonen ]
* [a1ddb98] Remove myself from Uploaders. (Closes: #892617)
[ Anton Gladky ]
* [705f952] Update VCS-fields to the salsa-migration
* [ddc6548] Set Standards-Version to 4.1.4
* [3313fe7] Remove myself from uploaders
* [a3ef1ba] Switch to compat-level 11
* [6a5a3cb] Remove deprecated Testsuite-field in the d/control
-- Anton Gladky <gladk@debian.org> Wed, 23 May 2018 22:35:29 +0200
freecad (0.16.6712+dfsg1-1) unstable; urgency=medium
* [c631550] New upstream version 0.16.6712+dfsg1
* [70d3ebc] Refresh patches
* [c2f67a5] Remove dependency on Qt4 Webkit. (Closes: #784464)
* [31d5630] Set Standards-Version: 4.1.0
* [85cc9d9] Change priority to optional
* [dc32b52] Set maximal hardening option
* [c56abf6] Drop "alpha" from description. (Closes: #868727)
-- Anton Gladky <gladk@debian.org> Fri, 08 Sep 2017 22:55:20 +0200
freecad (0.16+dfsg2-3) unstable; urgency=medium
[ Graham Inggs ]
* [06c5066] Use PNG and SVG icons instead of XPM (Closes: #850965)
* [d40a6a3] Drop debian/menu and do not install XPM icon, see #741573
* [d616835] Add Suggests on graphviz and povray (Closes: #849644)
* [e25f6a6] Switch to debhelper 10
* [f02e70f] Add debian/clean to fix FTBFSx2
[ Anton Gladky ]
* [245dccf] Fix d/copyright.
* [3f389af] Apply cme fix dpkg.
-- Anton Gladky <gladk@debian.org> Fri, 20 Jan 2017 20:05:18 +0100
freecad (0.16+dfsg2-2) unstable; urgency=medium
* Team upload.
[ Anton Gladky ]
* Remove freecad-doc from suggests. (Closes: #827734)
[ Nobuhiro Iwamatsu ]
* Fix FTBFS with opencv 3.1. (Closes: #841416)
-- Anton Gladky <gladk@debian.org> Wed, 23 Nov 2016 05:20:31 +0900
freecad (0.16+dfsg2-1) unstable; urgency=medium
* [4f08de5] Remove data/examples. (Closes: #745237)
* [7434cc4] Imported Upstream version 0.16+dfsg2
-- Anton Gladky <gladk@debian.org> Sun, 15 May 2016 12:29:42 +0200
freecad (0.16+dfsg1-1) unstable; urgency=medium
* [9e69a23] Update d/watch.
* [bf22c89] Drop copying of Version.h explicitly.
* [010b5c8] Refresh/Remove patches.
* [24a4f7d] Update d/copyright.
* [0547be9] Apply cme fix dpkg-control.
* [fc9b859] Update d/copyright.
* [6e5df4d] Imported Upstream version 0.16+dfsg1. (Closes: #823816)
* [06ed39b] Remove freecad-dev and freecad-doc binaries.
* [94c3ac2] Update d/copyright. (Closes: #726805 #745237)
-- Anton Gladky <gladk@debian.org> Thu, 12 May 2016 20:48:30 +0200
freecad (0.15.4671+dfsg1-4) unstable; urgency=medium
* [a934100] Add strict dependency on oce>=0.17.1. (Closes: #802517)
-- Anton Gladky <gladk@debian.org> Fri, 29 Jan 2016 13:10:48 +0100
freecad (0.15.4671+dfsg1-3) unstable; urgency=medium
[ Abdullah Tahiri ]
* [f4d259b] Fix Sketcher: Solver: FullPivLU::compute for Eigen-3.3.
(Closes: #811239)
-- Anton Gladky <gladk@debian.org> Sun, 17 Jan 2016 13:44:36 +0100
freecad (0.15.4671+dfsg1-2) unstable; urgency=medium
* [0c78ef5] Remove EIGEN2_SUPPORT. (Closes: #786356)
-- Anton Gladky <gladk@debian.org> Sun, 25 Oct 2015 18:51:47 +0100
freecad (0.15.4671+dfsg1-1) unstable; urgency=medium
* [4b6e554] Update d/copyright.
* [dd370f0] Update d/watch.
* [a70bba6] Imported Upstream version 0.15.4671+dfsg1. (Closes: #789105)
* [80ccaac] Refresh patches.
* [c868df9] Add pyside-tools as dependency.
* [ab8015b] Drop the load of news-page. (Closes: #787948)
-- Anton Gladky <gladk@debian.org> Thu, 27 Aug 2015 22:54:47 +0200
freecad (0.14.3702+dfsg-4) unstable; urgency=medium
[ Anton Gladky ]
* [7dbbdb6] Set Standards-Version: 3.9.6. No changes.
* [99c5e82] Apply cme fix dpkg-control.
[ Martin Pitt ]
* [91ef5e9] Work around Qt4 not being compatible with boost+gcc5.
(Closes: #795069)
-- Anton Gladky <gladk@debian.org> Wed, 12 Aug 2015 20:34:02 +0200
freecad (0.14.3702+dfsg-3) unstable; urgency=medium
[ Yorik van Havre ]
* [9ddbf15] Disable automatic DXF library download. (Closes: #764814)
-- Anton Gladky <gladk@debian.org> Fri, 24 Oct 2014 18:59:03 +0200
freecad (0.14.3702+dfsg-2) unstable; urgency=medium
[ Anton Gladky ]
* [aafcc31] Remove libswscale-dev from BD. (Closes: #757282)
* [81d4b6e] Fix installing of som Mods. (Closes: #736273)
* [1a4492e] Remove deprecated lines from d/copyright. (Closes: #745237)
[ Alexander ]
* [efc7d53] Fix compilation with clang. (Closes: #755305)
-- Anton Gladky <gladk@debian.org> Sun, 24 Aug 2014 08:12:43 +0200
freecad (0.14.3702+dfsg-1) unstable; urgency=medium
* [7fc727b] Imported Upstream version 0.14.3702
* [3edf0de] Refresh patches.
* [077b63a] Redirect unittest output into stdout. Fixes autopkgtests.
-- Anton Gladky <gladk@debian.org> Tue, 22 Jul 2014 20:15:18 +0200
freecad (0.13.3637-dfsg-1) unstable; urgency=medium
* [ddeee1c] Imported Upstream version 0.13.3637-dfsg
* [0fe87be] Update/remove patches.
* [60ad7cc] Update install files, dependencies.
* [9f9cca3] Add autopkgtest.
-- Anton Gladky <gladk@debian.org> Sun, 25 May 2014 19:05:13 +0200
freecad (0.13.2935-dfsg-1.1) unstable; urgency=low
* Non-maintainer upload.
* Update xerces build dependency to libxerces-c-dev. (Closes: #733072)
-- Jay Berkenbilt <qjb@debian.org> Wed, 15 Jan 2014 12:19:37 -0500
freecad (0.13.2935-dfsg-1) unstable; urgency=medium
* [824153f] Move python-collada and python-ply from Recommends to Depends.
* [3047a6b] Imported Upstream version 0.13.2935-dfsg
* [36a4082] Bump Standards-Version: 3.9.5. No changes.
-- Anton Gladky <gladk@debian.org> Wed, 01 Jan 2014 20:29:15 +0100
freecad (0.13.2800-dfsg-1) unstable; urgency=low
* [e051565] Imported Upstream version 0.13.2800-dfsg. (Closes: #730952)
* [a2f0187] Update debian/copyright. (Closes: #726805)
-- Anton Gladky <gladk@debian.org> Mon, 02 Dec 2013 22:11:10 +0100
freecad (0.13.2580-dfsg-2) unstable; urgency=low
* [2aab6f0] Update and re-enable disable_memory_check.patch.
* [4d36847] Use wrap-and-sort.
-- Anton Gladky <gladk@debian.org> Mon, 30 Sep 2013 18:49:23 +0200
freecad (0.13.2580-dfsg-1) unstable; urgency=low
[ Anton Gladky ]
* [1190215] Update get_git_orig_src.sh.
* [077e969] Build against BSD-version of soqt. (Closes: #617613)
* [37d60d0] Update patches, remove some of them.
* [b4801bc] Simplify debian/rules.
* [40ddd86] Imported Upstream version 0.13.2580-dfsg
* [61e7426] Minor fix in installation files.
* [fcaeb91] Fix syntax error in importOCA.py.
* [429db74] Ignore quilt dir
* [ffccc7d] Unapply patches after build
[ Sebastian Hoogen ]
* [aa8ab82] Use packaged version of python-ply.
-- Anton Gladky <gladk@debian.org> Fri, 27 Sep 2013 19:56:46 +0200
freecad (0.13.1830-dfsg-3) unstable; urgency=low
[ Simon Ruderich ]
* [71fd1c2] Hardening CPPFLAGS and LDFLAGS. (Closes: #711243)
[ Peter Michael Green ]
* [36d7879] Fix build failures with new oce by forcing occ include directory.
(Closes: 718545, 717034)
* [7fa3e69] Remove some stuff left behind by build process in clean target
to prevent errors from dpkg-source when building multiple times
in a row.
- obj-*
- src/Mod/Start/Gui/share
- src/Mod/Drawing/App/share
[ Anton Gladky ]
* [5906d0e] Update debian-copyright-file.
* [07d04d1] Move python-collada from Depends to Recommends-section.
* [cf6cb9f] Add python-collada to Depends.
* [36b4bc0] Add versioned dependency on libsoqt4-20. (Closes: #711812)
* [32738be] Use canonical VCS.
-- Anton Gladky <gladk@debian.org> Wed, 07 Aug 2013 23:43:36 +0200
freecad (0.13.1830-dfsg-2) unstable; urgency=low
* [800a2d9] Compile freecad against libcoin80. (Closes: #617613)
* [abee4e5] Compile against fltk1.3 instead of fltk1.1
* [23916ae] Raise the minimal version of soqt4-dev due to coin80.
* [87207ba] Update homepage.
* [224f12d] Add versioned dependency on python-pivy.
-- Anton Gladky <gladk@debian.org> Thu, 30 May 2013 19:48:30 +0200
freecad (0.13.1830-dfsg-1) unstable; urgency=low
[ Boris Pek ]
* [fbdfc08] Update debian/rules: use src/Build/Version.h provided by upstream.
(Closes: #706578)
* [eb29048] Update scripts/get_git_orig_src.sh: - change version format.
-- Anton Gladky <gladk@debian.org> Thu, 02 May 2013 23:05:20 +0200
freecad (0.13.1830-dfsg-1~exp1) experimental; urgency=low
* [0175d6f] Add python-matplotlib to depends-section.
* [eb9bc9a] Imported Upstream version 0.13.1830-dfsg
* [e2ec220] Use Standards-Version: 3.9.4. No changes.
* [25815b6] Remove obsolete DM-Upload-Allowed flag.
* [24f4cd0] Update dates in copyright-file.
-- Anton Gladky <gladk@debian.org> Mon, 04 Feb 2013 22:11:12 +0100
freecad (0.13~20130106.gitafb3355-exp1) experimental; urgency=low
* [0efcf90] Imported Upstream version 0.13~20130106.gitafb3355
* [a5ddc03] Install missing usr/share. (Closes: #697573)
-- Anton Gladky <gladky.anton@gmail.com> Thu, 10 Jan 2013 18:45:11 +0100
freecad (0.13~20121120.git5082ae2-2~exp2) experimental; urgency=low
* [bcc4f2e] Enable dir_as_string.patch.
* [41e4a4e] Fix python-warning during install.
-- Anton Gladky <gladky.anton@gmail.com> Fri, 23 Nov 2012 22:11:25 +0100
freecad (0.13~20121120.git5082ae2-1) experimental; urgency=low
[ Sandro Knauß ]
* [3d64502] Adding libode-dev, libspnav-dev to Builddeps.
Remove all autotool Builddeps.
* [c432199] use more debianize directories in debian/rules.
* [0a1599d] Add debian/patches/dir_as_string.patch.
* [217ec7c] Add debian/patches/use_install_rpath.patch.
* [36766ed] Add debian/patches/use_share.pach.
[ Anton Gladky ]
* [96fc2ed] Use cmake for git-version of freecad.
* [581b23b] Prepare for 0.13rc
* [d9b01ef] Fix compilation.
* [197b945] Add script for getting freecad from git-repo.
* [ebae551] Imported Upstream version 0.13~20121120.git5082ae2
-- Anton Gladky <gladky.anton@gmail.com> Tue, 20 Nov 2012 19:22:23 +0100
freecad (0.12.5284-dfsg-7) unstable; urgency=low
* [b420ea0] Add -fpermissive to cpp, c-flags to fix FTBFS with gcc-4.7.
-- Anton Gladky <gladky.anton@gmail.com> Mon, 14 May 2012 19:32:10 +0200
freecad (0.12.5284-dfsg-6) unstable; urgency=low
* [d31cbf4] Disable python-pivy depends on powerpc.
-- Anton Gladky <gladky.anton@gmail.com> Thu, 12 Apr 2012 21:05:36 +0200
freecad (0.12.5284-dfsg-5) unstable; urgency=low
* [4d3e1c0] Do not build freecad parallel, it causes FTBFS sometimes ( -j5).
* [d749637] Fix FTBFS during compiling against oce-0.9.1.
Thanks to Denis Barbier. (Closes: #664207)
* [28cb8ba] Fix bug of identifying SWIG version.
Thanks to Werner Mayer <werner.wm.mayer@gmx.de>.
(Closes: #646374)
* [fde200f] Use Standards-Version 3.9.3. No changes.
* [595a19e] Minor update of copyright file due to released DEP-5.
* [65ef554] Enable HAVE_SWIG option.
* [1af4c8a] Fix crash in Help->About menu. (Closes: #663704)
-- Anton Gladky <gladky.anton@gmail.com> Sun, 18 Mar 2012 08:51:19 +0100
freecad (0.12.5284-dfsg-4) unstable; urgency=low
* [84c5407] Add needed #include. Fix compilation on Ubuntu Precise.
* [7b3d15a] Move python-pivy from recommends to depends section.
(Closes: #646374)
* [9136519] Update homepage section.
* [da53f03] Raise dh-compat to version 8.
-- Anton Gladky <gladky.anton@gmail.com> Fri, 17 Feb 2012 19:59:20 +0100
freecad (0.12.5284-dfsg-3) unstable; urgency=low
* [da3974a] Switch from opencascade to oce. (Closes: #659133)
-- Anton Gladky <gladky.anton@gmail.com> Thu, 09 Feb 2012 20:55:05 +0100
freecad (0.12.5284-dfsg-2) unstable; urgency=low
* [125b5f6] Add libeigen3-dev to "depends" in freecad-dev.
* Rebuild due to opencv-transition.
-- Anton Gladky <gladky.anton@gmail.com> Sun, 22 Jan 2012 20:07:21 +0100
freecad (0.12.5284-dfsg-1) unstable; urgency=low
* [99b66f2] Imported Upstream version 0.12.5284-dfsg
* [dc52b9c] Remove patch (gcc-4.6 compilation), hopefully applied by upstream.
* [f66ef5d] Remove patch (typo).
* [ce862a0] Update copyright file (add data-files).
* [91d5731] Use eigen3 instead of eigen2.
-- Anton Gladky <gladky.anton@gmail.com> Mon, 09 Jan 2012 21:29:18 +0100
freecad (0.11.4446-dfsg-4) unstable; urgency=low
* [d3ec609] Make a line in changelog shorter. Fix lintian-warning.
* [df77453] Fix (hopefully) FTBFS on Armel. Thanks to Paul Brook.
(Closes: #623559)
-- Anton Gladky <gladky.anton@gmail.com> Fri, 28 Oct 2011 20:25:21 +0200
freecad (0.11.4446-dfsg-3) unstable; urgency=low
* [12d6b55] Add -lrt key in LDFLAGS to configure properly opencascade on
kfreebsd.
* [bbd8acc] Remove .la files from -dev binary.
* [8932ee7] Disable memory check in SMDS. (Closes: #623560).
-- Anton Gladky <gladky.anton@gmail.com> Sat, 24 Sep 2011 16:35:30 +0200
freecad (0.11.4446-dfsg-2) unstable; urgency=low
* [93347cc] Switch off SWIG to fix FTBFS. (Closes: #632348)
-- Anton Gladky <gladky.anton@gmail.com> Tue, 05 Jul 2011 22:41:21 +0200
freecad (0.11.4446-dfsg-1) unstable; urgency=low
[ Teemu Ikonen ]
* [58f7907] Copyright: Update.
[ Anton Gladky ]
* [f5d9322] Imported Upstream version 0.11.4446-dfsg. (Closes: #576653).
* [aeacc72] Add DM-Upload-Allowed field.
* [b08f851] Add changes to debian/rules as suggested by Werner Mayer.
* [c82751a] Delete old patches.
* [e71109f] Add libopencascade-ocaf-dev to BD.
* [9746063] Import patch to fix compilation error with GCC-4.6.
* [175e959] Update watch file.
* [7989aa6] Update debian/rules to dh 7, thanks to Bernhard R. Link.
-- Anton Gladky <gladky.anton@gmail.com> Thu, 09 Jun 2011 21:27:03 +0200
freecad (0.11.3729.dfsg-2) unstable; urgency=low
* Add gfortran and libopencascade-visualization-dev to BD
to fix FTBFS (closes: #622694)
* Add libqtwebkit-dev to BD (closes: #618241)
* Delete quilt from BD and corresponding changes in rules.
* Add description to freecad-occ650.patch
* Delete encoding string from .desktop
* Fix some spelling errors, pointed out by lintian.
-- Anton Gladky <gladky.anton@gmail.com> Thu, 14 Apr 2011 10:23:25 +0100
freecad (0.11.3729.dfsg-1) unstable; urgency=low
[ Denis Barbier ]
* Merge OpenCASCADE 6.5.0 compatibility patch (closes: #617545).
[ Adam C. Powell, IV ]
* New upstream (closes: #622213, #618241).
* Changed to source format 3.0 (quilt).
* Added patch target which forces autotools to run, and automake and autoconf
are now in Build-Depends (closes: #607181).
* Set aside src/Build/Version.h to prevent build problems.
* Does not install .la files (closes: #621298).
* Boost 1.46 compatibility patch (closes: #621877).
* Set aside files which autotools modifies so clean works.
* Added libtool to Build-Depends (thanks: PICCA Frédéric-Emmanuel).
* Bumped Standards-Version, no changes needed.
-- "Adam C. Powell, IV" <hazelsct@debian.org> Tue, 12 Apr 2011 23:40:30 -0400
freecad (0.10.3247.dfsg-2) unstable; urgency=low
* control:
- Update to standars-version 3.9.0.
- Remove libblas-dev, libatlas-dev from build-deps.
* Add debian/shlibs.local file containing the the correct binary dep
to libsoqt4-20 (closes: #575239).
* copyright: Add a verbatim copy of Tiddlywiki BSD license. Fixes
the lintian warning copyright-refers-to-deprecated-bsd-license-file.
* Add kFreeBSD portability fixes. Thanks to Petr Salinger
<Petr.Salinger@seznam.cz> for the patch (closes: #592461).
-- Teemu Ikonen <tpikonen@gmail.com> Wed, 18 Aug 2010 19:34:36 +0200
freecad (0.10.3247.dfsg-1) unstable; urgency=low
* New upstream version (closes: #582627)
* Add debian/source/format file with contents "1.0".
* Use freecad.xpm as icon in menu and desktop files.
* copyright: Add licensing information for new files in this release.
* src/Base/Makefile.in, src/Gui/Makefile.in: Do not remove *.tab.c files
in make distclean target.
* control:
- Add build-dep to libeigen2-dev.
- Update to standards-version 3.8.4.
-- Teemu Ikonen <tpikonen@gmail.com> Mon, 05 Jul 2010 15:07:49 +0200
freecad (0.9.2646.5.dfsg-1) unstable; urgency=low
* Add 'dfsg' extension to upstream version, upstream sources are unchanged.
* Remove libgl1-mesa-dev build-dep, rely on libcoin to pull in GL libraries.
* Change build-dep libatlas-headers to libatlas-dev (closes: #577309).
-- Teemu Ikonen <tpikonen@gmail.com> Fri, 14 May 2010 17:20:35 +0200
freecad (0.9.2646.5-1) unstable; urgency=low
* New upstream version (closes: #561696).
* Added swig to Build-Depends (closes: #563523, #563772).
* Removed python-opencv from Build-Depends and Recommends (closes: #560768).
-- "Adam C. Powell, IV" <hazelsct@debian.org> Mon, 11 Jan 2010 08:48:33 -0500
freecad (0.9.2646.4-1) unstable; urgency=low
* New upstream version (closes: #559849, #559846).
-- "Adam C. Powell, IV" <hazelsct@debian.org> Fri, 11 Dec 2009 20:21:32 -0500
freecad (0.9.2646.3-1) unstable; urgency=low
* New upstream version. Removes TiddlySaver.jar, fixes help problems.
-- Teemu Ikonen <tpikonen@gmail.com> Thu, 03 Dec 2009 19:39:27 +0100
freecad (0.9.2646-1) unstable; urgency=low
[ Werner Mayer ]
* New upstream release
* In-source copy of PyCXX has been dropped (closes: #547936)
* In-source copy of zipios++ has been dropped (closes: #547941)
* Change build-dependency on python2.5-dev to python-dev
* Add freecad-doc binary package
* Remove Suggestion of a chm viewer, suggest freecad-doc instead
[ Teemu Ikonen ]
* Add override to dh_compress
* Add versioned build-deb to debhelper (>= 7.0.50)
* Add build-deps to libzipios++-dev and python-cxx-dev.
-- Teemu Ikonen <tpikonen@gmail.com> Tue, 17 Nov 2009 14:22:00 +0100
freecad (0.8.2237-2) unstable; urgency=low
* Added libboost-python-dev to Build-Depends (closes: #549738).
* Added myself to uploaders list.
* Bumped Standards-Version.
-- "Adam C. Powell, IV" <hazelsct@debian.org> Thu, 12 Nov 2009 12:02:42 -0500
freecad (0.8.2237-1) unstable; urgency=low
* New Upstream release
-- Teemu Ikonen <tpikonen@gmail.com> Thu, 16 Jul 2009 18:37:41 +0200
freecad (0.7.1658-1) UNRELEASED; urgency=low
* New upstream release
-- Teemu Ikonen <tpikonen@gmail.com> Mon, 20 Oct 2008 15:35:58 +0200
freecad (0.7.1514-1) UNRELEASED; urgency=low
* New upstream version
* Add more stuff to the copyright file
* control: add build-dep to python-central
-- Teemu Ikonen <tpikonen@gmail.com> Wed, 06 Aug 2008 18:25:02 +0200
freecad (0.7.1350-1hardy1) UNRELEASED; urgency=low
* Package for Ubuntu 8.04 (Hardy Heron)
-- Werner Mayer <wmayer@users.sourceforge.net> Thu, 29 May 2008 11:11:20 +0200
freecad (0.7.1350-1gutsy1) UNRELEASED; urgency=low
* Backport to Ubuntu 7.10 (Gutsy Gibbon)
-- Werner Mayer <wmayer@users.sourceforge.net> Sat, 24 May 2008 01:54:39 +0200
freecad (0.7.1350-1feisty1) UNRELEASED; urgency=low
* Backport to Ubuntu 7.04 (Feisty Fawn)
-- Werner Mayer <wmayer@users.sourceforge.net> Sat, 24 May 2008 00:09:08 +0200
freecad (0.7.1350-1) UNRELEASED; urgency=low
* New upstream release from sf.net
* Import to debian-science repository at git.debian.org
* control:
- Update to standards-version 3.7.3
- Add Vcs-* fields pointing to git.debian.org
- Improve descriptions
* Convert copyright to (pseudo) machine readable format, audit source
* Fix categories in .desktop file
* Change Section to Science/Engineering in .doc-base and menu files
* rules: do not ignore errors on clean target, add dh_desktop call
-- Teemu Ikonen <tpikonen@gmail.com> Tue, 05 Aug 2008 18:58:07 +0200
freecad (0.7.1344-1ubuntu2) UNRELEASED; urgency=low
* New package with fixed self-dependency problem
-- Werner Mayer <wmayer@users.sourceforge.net> Thu, 22 May 2008 15:34:34 +0200
freecad (0.7.1344-1ubuntu1) UNRELEASED; urgency=low
* New debian package for Feisty
-- Werner Mayer <wmayer@users.sourceforge.net> Thu, 22 May 2008 11:04:06 +0200
freecad (0.7.1344-1) UNRELEASED; urgency=low
* Write patch file to make builds with OpenCASCADE libs inside but with no
dependency to libopencascade6.2
-- Werner Mayer <wmayer@users.sourceforge.net> Wed, 21 May 2008 10:06:07 +0200
freecad (0.7.1343-1) UNRELEASED; urgency=low
* Embed required OpenCASCADE libs into this package as long as no official
Debian package is available
-- Werner Mayer <wmayer@users.sourceforge.net> Tue, 20 May 2008 00:40:39 +0200
freecad (0.7.1342-1) UNRELEASED; urgency=low
* Switch to new versioning scheme of OpenCASCADE packages
-- Werner Mayer <wmayer@users.sourceforge.net> Mon, 19 May 2008 23:55:31 +0200
freecad (0.7.1316-1) UNRELEASED; urgency=low
* Support of pivy (Python binding for Coin/SoQt)
* Support of PyQt4
* General support of SWIG modules
-- Werner Mayer <wmayer@users.sourceforge.net> Sat, 26 Apr 2008 13:51:25 +0200
freecad (0.7.1031-1) UNRELEASED; urgency=low
* Qt4 port finished
* Support of Python binding for Qt4
* Support of Python binding for Coin
* Support of entirely in Python written modules
* Added support of model driven architecture for Python binding
* Use boost's signal/slot mechanism to update data
-- Werner Mayer <wmayer@users.sourceforge.net> Fri, 04 Jan 2008 13:50:37 +0200
freecad (0.7.645-1) UNRELEASED; urgency=low
* Qt4 port started
-- Werner Mayer <wmayer@users.sourceforge.net> Tue, 24 Jul 2007 13:04:37 +0200
freecad (0.6.472-1) UNRELEASED; urgency=low
* Initial Release
-- Werner Mayer <wmayer@users.sourceforge.net> Tue, 26 Sep 2006 16:55:15 +0200
|