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
|
qttools-opensource-src (5.11.3-4) unstable; urgency=medium
* Limit also the libclang-dev build dependency on the architectures where
it is available.
* Update lintian overrides.
-- Pino Toscano <pino@debian.org> Sat, 12 Jan 2019 10:42:39 +0100
qttools-opensource-src (5.11.3-3) unstable; urgency=medium
* Split qdoc into a separate package (qdoc-qt5), build it only on
architectures where LLVM/clang is available (closes: #904688).
-- Dmitry Shachnev <mitya57@debian.org> Fri, 04 Jan 2019 19:06:50 +0300
qttools-opensource-src (5.11.3-2) unstable; urgency=medium
[ Simon Quigley ]
* Change my email to tsimonq2@debian.org now that I am a Debian Developer.
* Bump Standards-version to 4.3.0, no changes needed.
[ Lisandro Damián Nicanor Pérez Meyer ]
* Upload to unstable.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Wed, 26 Dec 2018 16:33:15 -0300
qttools-opensource-src (5.11.3-1) experimental; urgency=medium
* New upstream release.
- Bump Qt build dependencies.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Mon, 10 Dec 2018 12:10:01 -0300
qttools-opensource-src (5.11.2-5) unstable; urgency=medium
* Build qdoc with QDOC_PASS_ISYSTEM defined. This is needed because qmake
passes Qt include directories as -isystem flags, not as regular -I.
See QTBUG-70896, LP: #1799111.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 15 Nov 2018 11:03:30 +0300
qttools-opensource-src (5.11.2-4) unstable; urgency=medium
* Drop libvulkan-dev build-dependency, new qtbase5-dev will depend
on it on linux (closes: #911618).
* Drop qdoc_gcc_includepath.diff. The include directories will be passed
to qdoc at run-time (by qt_docs.prf in qtbase).
* Update debian/libqt5designer5.symbols for hppa.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 29 Oct 2018 23:08:09 +0300
qttools-opensource-src (5.11.2-3) unstable; urgency=medium
* Build-depend on libvulkan-dev, to fix qtdiag FTBFS.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 17 Oct 2018 10:18:56 +0300
qttools-opensource-src (5.11.2-2) unstable; urgency=medium
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 16 Oct 2018 18:44:06 +0300
qttools-opensource-src (5.11.2-1) experimental; urgency=medium
* New upstream release.
* Refresh qdoc_gcc_includepath.diff.
* Bump Qt build-dependencies to 5.11.2.
* Add two new symbols to debian/libqt5designer5.symbols.
* Update debian/copyright.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 25 Sep 2018 16:54:06 +0300
qttools-opensource-src (5.11.1-6) unstable; urgency=medium
* Add GCC include dir to default clang arguments. This is needed to make
qdoc work properly with libclang1-6.0 ≥ 1:6.0.1-4, where a patch doing
the same thing has been dropped. See bug #908328 for details.
* Update debian/libqt5designer5.symbols from buildds’ logs.
* Bump Standards-Version to 4.2.1, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 11 Sep 2018 00:17:48 +0300
qttools-opensource-src (5.11.1-5) unstable; urgency=medium
* Add a missing epoch on the b-d versions in the previous upload.
-- Simon Quigley <tsimonq2@ubuntu.com> Sun, 05 Aug 2018 13:39:46 -0500
qttools-opensource-src (5.11.1-4) unstable; urgency=medium
* Make the build dependencies on libclang-dev and llvm-dev more strict
(Closes: #905537).
-- Simon Quigley <tsimonq2@ubuntu.com> Sun, 05 Aug 2018 13:35:14 -0500
qttools-opensource-src (5.11.1-3) unstable; urgency=medium
[ Dmitry Shachnev ]
* Add support for nodoc build profile.
[ Simon Quigley ]
* Upload to Sid.
-- Simon Quigley <tsimonq2@ubuntu.com> Wed, 25 Jul 2018 04:49:32 -0500
qttools-opensource-src (5.11.1-2) experimental; urgency=medium
[ Dmitry Shachnev ]
* Disable rpath when building qdoc.
[ Simon Quigley ]
* Remove the dbgsym migration section of debian/rules; it isn't needed
anymore.
-- Simon Quigley <tsimonq2@ubuntu.com> Sat, 23 Jun 2018 20:41:39 -0500
qttools-opensource-src (5.11.1-1) experimental; urgency=medium
* New upstream release.
* Bump build dependencies to 5.11.1, and qtwebkit dependency to the
one built against 5.11.1.
-- Simon Quigley <tsimonq2@ubuntu.com> Tue, 19 Jun 2018 23:18:17 -0500
qttools-opensource-src (5.11.0-1) experimental; urgency=medium
[ Simon Quigley ]
* Add my name to Uploaders.
* New upstream release.
* Bump build dependencies to 5.11.0.
* Bump Standards-version to 4.1.4, no changes needed.
* Bump debhelper compat to 11, no changes needed.
* Bump qtwebkit dependency to pick up the one in Experimental.
* Update symbols from build logs.
[ Dmitry Shachnev ]
* Build-depend on libclang-dev and llvm-dev, and export
LLVM_INSTALL_DIR environment variable, now needed for qdoc.
-- Simon Quigley <tsimonq2@ubuntu.com> Tue, 19 Jun 2018 12:10:21 -0500
qttools-opensource-src (5.10.1-2) unstable; urgency=medium
* Release to unstable.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sat, 07 Apr 2018 17:31:06 -0300
qttools-opensource-src (5.10.1-1) experimental; urgency=medium
* New upstream release.
* Update debian/watch for the new tarball names.
* Drop compiler flags exports, not needed with debhelper configure.
* Bump Qt build-dependencies to 5.10.1.
* Update Vcs fields for migration to salsa.debian.org.
* Update debian/copyright.
* Add one new header file to qttools5-private-dev.install.
* Update symbols files from the current build log.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 24 Feb 2018 22:06:56 +0300
qttools-opensource-src (5.9.2-6) unstable; urgency=medium
* Update no_qwebview_archs: remove alpha and sh4, and add sparc64.
* Bump copyright years for The Qt Company in debian/copyright.
* Regenerate the internal assistant.qch during build (closes: #885484).
* Bump Standards-Version to 4.1.3, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 19 Jan 2018 18:32:41 +0300
qttools-opensource-src (5.9.2-5) unstable; urgency=medium
* Split Assistant into its own package, qt5-assistant (closes: #854123).
* Bump Standards-Version to 4.1.2, no changes needed.
* Fix Exec lines in desktop files to run the tools directly.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 17 Dec 2017 12:51:34 +0300
qttools-opensource-src (5.9.2-4) unstable; urgency=medium
[ Lisandro Damián Nicanor Pérez Meyer ]
* Do not override dh_auto_configure anymore.
Require debhelper >= 10.9.2~ (Closes: #880937).
[ Dmitry Shachnev ]
* Make qttools5-dev-tools depend on libqt5sql5-sqlite, it is needed by
qhelpgenerator and Qt Assistant.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 03 Dec 2017 13:28:41 +0300
qttools-opensource-src (5.9.2-3) unstable; urgency=medium
* Move Qt5LinguistTools*.cmake from qttools5-dev-tools to qttools5-dev.
* Re-enable qtwebkit support again.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 27 Oct 2017 00:35:11 +0300
qttools-opensource-src (5.9.2-2) experimental; urgency=medium
* Update for Qt binaries location change in qtbase 5.9.2+dfsg-3.
- Update .install files for qttools5-dev-tools and qdbus-qt5.
- Make these packages Multi-Arch: foreign.
- Provide compatibility symlinks for the old location.
- Bump qtbase5-dev build-dependency to 5.9.2+dfsg-3.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 20 Oct 2017 13:42:25 +0300
qttools-opensource-src (5.9.2-1) experimental; urgency=medium
* New upstream release.
* Temporarily disable webkit support.
* Bump Qt build-dependencies to 5.9.2.
* Update symbols files from buildds’ logs.
* Update debhelper compatibility level to 10.
* Bump Standards-Version to 4.1.1, stop using deprecated Priority: extra.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 18 Oct 2017 17:35:11 +0300
qttools-opensource-src (5.9.1-2) unstable; urgency=medium
* Update symbols files from the current build logs.
* Upload to unstable.
- Fixes build failure with GCC 7 (closes: #853633).
-- Dmitry Shachnev <mitya57@debian.org> Wed, 16 Aug 2017 12:18:33 +0300
qttools-opensource-src (5.9.1-1) experimental; urgency=medium
* New upstream release.
* Update symbols files from buildds’ logs.
* Bump Qt build-dependencies to 5.9.1.
* Bump Standards-Version to 4.0.0, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 02 Jul 2017 16:08:50 +0300
qttools-opensource-src (5.9.0-1) experimental; urgency=medium
* Team upload.
[ Simon Quigley ]
* New upstream release.
[ Dmitry Shachnev ]
* Re-enable webkit support.
-- Simon Quigley <tsimonq2@ubuntu.com> Thu, 08 Jun 2017 05:32:04 -0500
qttools-opensource-src (5.9.0~beta3-1) experimental; urgency=medium
[ Alexander Volkov ]
* Add and install desktop files for assistant, designer and linguist
(closes: #775419).
[ Dmitry Shachnev ]
* New upstream beta release.
* Temporarily disable webkit support (there are no webkit 5.9 tarballs yet).
* Bump the other Qt build dependencies to 5.9.0 beta.
* Drop libqt5clucene5 package, upstream no longer uses a fork of CLucene.
- Drop hurd-path_max.diff, no longer needed.
* Build qtattributionsscanner before building the documentation.
* Update install files.
* Update symbols files from current amd64 and i386 build logs.
* Update debian/copyright.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 08 May 2017 15:37:21 +0300
qttools-opensource-src (5.7.1-1) unstable; urgency=medium
* New upstream final release.
* Update some links from qt-project.org to qt.io.
* Bump qtbase and qtwebkit build-dependencies to 5.7.1 final.
* Convert to automatic dbgsym packages.
* Update symbols files from the current amd64 and i386 build logs.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 16 Dec 2016 22:20:52 +0300
qttools-opensource-src (5.7.1~20161021-2) unstable; urgency=medium
* Release to unstable.
* Update symbols files with buildds' logs.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Tue, 01 Nov 2016 15:51:51 -0300
qttools-opensource-src (5.7.1~20161021-1) experimental; urgency=medium
* New upstream snapshot.
- Bump Qt build dependencies.
* Mark qttools5-dev-tools as M-A: same. The package is coinstallable and
files shipped in /usr/share/qt5/ are really architecture-independent.
* Make qttools5-dev depend upon qttools5-dev-tools (Closes: #835295).
qtttools5-dev ships CMake files that both set variables for building
against the libs shipped in it and to use some of the tools shipped by
qttools5-dev-tools. If at some later point we need to break this
relationship the easiest way would be to split qttools5-dev-tools
into the necessary parts.
Thanks Harald Sitter for the bug report and the patch.
* Update symbols files with buildds' logs.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Tue, 25 Oct 2016 19:12:23 -0300
qttools-opensource-src (5.7.0-1) experimental; urgency=medium
* New upstream release.
* Bump Qt build-dependencies to 5.7.0.
* Install upstream manpages for lrelease and lupdate.
* Update debian/copyright.
* Drop lrelease-zlib.patch. We do not link with libQt5Bootstrap.a, and the
build succeeds without it.
* Update symbols files from amd64 build log.
* Drop libdouble-conversion-dev build-dependency (closes: #802153).
-- Dmitry Shachnev <mitya57@debian.org> Fri, 08 Jul 2016 13:32:04 +0300
qttools-opensource-src (5.6.1-4) unstable; urgency=medium
* Do not install the qwebview plugin on archs that do not have qtwebkit
support (Closes: #840693).
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Tue, 25 Oct 2016 13:11:53 -0300
qttools-opensource-src (5.6.1-3) unstable; urgency=medium
* Do not build with webkit support on m68k and sh4 (Closes: #840693).
* Update symbols files with buildds' logs.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sun, 16 Oct 2016 19:18:17 -0300
qttools-opensource-src (5.6.1-2) unstable; urgency=medium
* Upload to unstable.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Mon, 13 Jun 2016 10:21:01 -0300
qttools-opensource-src (5.6.1-1) experimental; urgency=medium
* New upstream release.
- Bump Qt build dependencies.
* Bump Standards-Version to 3.9.8, no changes required.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Fri, 10 Jun 2016 18:28:37 -0300
qttools-opensource-src (5.6.0-1) experimental; urgency=medium
* New upstream release.
* Update symbols files from buildds’ logs.
* Bump Qt build-dependencies to 5.6.0.
* Drop no longer needed hack to fix wrong path in pkgconfig files.
* Update debian/README.source with actual information.
* Drop some pre-Jessie Breaks/Replaces.
* Revert debian/watch to track final releases again.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 22 Mar 2016 22:29:03 +0100
qttools-opensource-src (5.6.0~rc-1) experimental; urgency=medium
* New upstream release candidate.
* Bump Qt build-dependencies to 5.6.0~rc.
* Re-enable QtWebKit support.
* Use recommended https URIs for Vcs fields.
* Update debian/libqt5clucene5.symbols from the current build log.
* Bump Standards-Version to 3.9.7, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 06 Mar 2016 18:36:07 +0300
qttools-opensource-src (5.6.0~beta-2) experimental; urgency=medium
* Add empty override_dh_auto_test-indep target (to prevent the whole qttools
source from being compiled during indep builds).
* Use dh_auto_build instead of plain make to parallelize the build.
* Add Build-Depends-Package field to all symbols files.
* Bump all symbols versions to 5.6.0~beta. Apps built against libraries from
qttools 5.6 will not work with earlier versions of these libraries (as they
will require Qt_5 version).
-- Dmitry Shachnev <mitya57@debian.org> Thu, 07 Jan 2016 22:30:12 +0300
qttools-opensource-src (5.6.0~beta-1) experimental; urgency=medium
* New upstream beta release.
* Update debian/watch to track experimental releases (needs to be reverted
before uploading 5.6.0 final).
* Disable qtwebkit help viewer temporarily (until we get qtwebkit 5.6
tarballs).
* Bump other Qt build-dependencies to 5.6.0~beta.
* Disable building qch documentation for base Qt modules in this source, as
those modules can no longer provide the HTML documentation on their own.
* Build qdoc before building docs.
* Install qdoc documentation.
* Update install files.
* Add necessary Breaks/Replaces for qdoc move.
* Update symbols files using migrate-symbols.py script.
* Add some new symbols.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 07 Jan 2016 09:35:24 +0300
qttools-opensource-src (5.5.1-3) unstable; urgency=medium
[ Dmitry Shachnev ]
* Make arch-indep builds possible, by building qhelpgenerator before
attempting to build docs.
[ Lisandro Damián Nicanor Pérez Meyer ]
* Upload to unstable.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Wed, 21 Oct 2015 16:38:52 -0300
qttools-opensource-src (5.5.1-2) experimental; urgency=medium
* Re upload as source+all. We need to fix building all packages
alone.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sat, 17 Oct 2015 16:43:25 -0300
qttools-opensource-src (5.5.1-1) experimental; urgency=medium
[ Felix Geyer ]
* Move Qt5LinguistTools cmake files from -dev to -dev-tools package.
(Closes: #793347)
[ Lisandro Damián Nicanor Pérez Meyer ]
* New upstream release.
- Bump Qt build dependencies.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sat, 17 Oct 2015 16:13:49 -0300
qttools-opensource-src (5.5.0-1) experimental; urgency=medium
* New upstream release.
* Bump Qt build-dependencies to 5.5.0.
* Remove symbols missing with GCC 5 from libqt5designer5.symbols.
* Update .install files for the new release.
* Update debian/copyright.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 24 Aug 2015 11:48:51 +0300
qttools-opensource-src (5.4.2-3) unstable; urgency=medium
* Update symbols files with buildds' logs.
* Update symbols files with current build log against gcc5 (Closes: #791261).
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Mon, 03 Aug 2015 23:19:15 -0300
qttools-opensource-src (5.4.2-2) unstable; urgency=medium
* Upload to unstable.
* Update symbols files with buildds' logs.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Tue, 23 Jun 2015 17:16:46 -0300
qttools-opensource-src (5.4.2-1) experimental; urgency=medium
[ Dmitry Shachnev ]
* Add one new symbol to debian/libqt5help5.symbols.
* Remove debian/copyright entry for arthurplugin example, which no
longer exists.
[ Lisandro Damián Nicanor Pérez Meyer ]
* New upstream release.
- Bump Qt build dependencies.
* Clear up the list in Uploaders removing people who hasn't committed to the
repo in more than a year. They can re add themselves whenever they want
(and we really hope to see you back really soon!).
* Update symbols files with buildds' logs.
* Expose HTML documentation (Closes: #751185).
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Wed, 03 Jun 2015 14:09:39 -0300
qttools-opensource-src (5.4.1-1) experimental; urgency=medium
[ Dmitry Shachnev ]
* New upstream release.
* Update debian/watch to use https://download.qt.io/.
* Update debian/copyright.
* Symbols files:
- Add support for powerpcspe (closes: #771913).
- Mark symbols missing with GCC 5 as optional (closes: #778095).
- Remove references to ia64 and s390 (build logs are no longer available).
- Remove references to sparc, Qt is not built there for a while.
* Bump Qt build-dependencies to 5.4.1.
[ Rohan Garg ]
* Make sure we build depend on libdouble-conversion-dev, required
by the linker.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 03 Mar 2015 14:39:16 +0300
qttools-opensource-src (5.4.0-1) experimental; urgency=medium
* New upstream release.
* Bump Qt build-dependencies to 5.4.0.
* debian/copyright:
- Update for LGPL v3 addition, and use correct syntax for exceptions.
- Make Unicode data license text readable, and give it a short name
without spaces (MIT-Unicode).
* Bump Standards-Version to 3.9.6, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 21 Dec 2014 13:52:48 +0300
qttools-opensource-src (5.3.2-3) unstable; urgency=medium
* Remove all CMake files for plugins, we should not be shipping them. They
are only useful for people building their own installers.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Wed, 24 Sep 2014 17:46:39 -0300
qttools-opensource-src (5.3.2-2) unstable; urgency=medium
* Upload to unstable.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Mon, 22 Sep 2014 10:28:20 -0300
qttools-opensource-src (5.3.2-1) experimental; urgency=medium
[ Dmitry Shachnev ]
* Fix a typo in debian/rules.
* Update my e-mail address.
* Update Vcs-Browser field to point to cgit interface.
[ Lisandro Damián Nicanor Pérez Meyer ]
* New upstream release.
* Bump Qt build dependencies.
* Update symbols files with buildds' logs.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Wed, 17 Sep 2014 12:56:33 -0300
qttools-opensource-src (5.3.1-3) unstable; urgency=medium
* Update symbols files with buildds' and mips64el's logs.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Wed, 16 Jul 2014 14:45:50 -0300
qttools-opensource-src (5.3.1-2) unstable; urgency=medium
[ Dmitry Shachnev ]
* Move designer plugins that are built from examples/designer back
to qttools5-examples package. Only plugins that are built from
src/designer/src/plugins remain in qttools5-dev-tools package
(really closes: #749336).
[ Lisandro Damián Nicanor Pérez Meyer ]
* Update symbols files with buildds' and mips64el's logs.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sun, 13 Jul 2014 15:16:30 -0300
qttools-opensource-src (5.3.1-1) unstable; urgency=medium
* New upstream release.
* Update symbols files with buildds' logs.
* Bump Qt build depends.
* Fix install files.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Mon, 30 Jun 2014 11:07:52 -0300
qttools-opensource-src (5.3.0-5) unstable; urgency=medium
* Update symbols files with buildds' logs.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sat, 21 Jun 2014 11:05:48 -0300
qttools-opensource-src (5.3.0-4) unstable; urgency=medium
[ Dmitry Shachnev ]
* Make qtwebkit build-dependency versioned.
[ Lisandro Damián Nicanor Pérez Meyer ]
* Update symbols files with buildds' and current logs (Closes: #746903).
* Install designer plugins alongside designer itself and not with the
examples (Closes: #749336).
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Fri, 20 Jun 2014 21:29:30 -0300
qttools-opensource-src (5.3.0-3) unstable; urgency=medium
* Update symbols files with buildds' logs.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sun, 08 Jun 2014 22:58:46 -0300
qttools-opensource-src (5.3.0-2) unstable; urgency=medium
* Upload to unstable.
* Update symbols files with buildds' and current logs.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Fri, 06 Jun 2014 13:09:41 -0300
qttools-opensource-src (5.3.0-1) experimental; urgency=medium
* New upstream release.
* Don't force dh_builddeb to use xz compression: it's already the default.
* Build against qtwebkit to fix assistant (Closes: #742396):
- Build qtwebkit5-doc and qtscript5-doc from this source, thus allowing us
to avoid a circular dependency.
- Build depend upon libqt5webkit5-dev.
* Install headers into their new multi-arch path. Mark the development
packages as Multi-Arch: same.
* Bump Qt build dependencies.
* Remove fix_path_to_lrelease.patch, applied upstream.
* Require qtdeclarative >= 5.3.0-3~, it includes a fix in the development
package that we need.
* QuickDialogs are not part of Declarative anymore, so we don't build it's
documentation.
* Modify install files to install new files in this version.
* Build depend upon libqt5opengl5-dev (>= 5.3.0+dfsg~), we need to link
against it.
* Update symbols files with current build log.
* Update copyright file.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sat, 24 May 2014 14:37:00 -0300
qttools-opensource-src (5.2.1-8) unstable; urgency=medium
[ Dmitry Shachnev ]
* Simplify libqt5designercomponents5.symbols a bit more.
* Update copyright files for all external docs, not just for qtbase.
[ Lisandro Damián Nicanor Pérez Meyer ]
* Upload to unstable.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Mon, 24 Mar 2014 22:00:57 -0300
qttools-opensource-src (5.2.1-7) experimental; urgency=medium
[ Lisandro Damián Nicanor Pérez Meyer ]
* Update symbols files with buildd's logs.
* Apply fix_path_to_lrelease.patch to fix the path of lrelease in CMake files
(Closes: #738196).
* Simplify list of archs in symbols files: only mark sparc when suitable.
[ Dmitry Shachnev ]
* Update symbols files to support arm64 and ppc64el.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Mon, 17 Mar 2014 12:04:18 -0300
qttools-opensource-src (5.2.1-6) experimental; urgency=medium
* Update symbols files with buildd's logs.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Wed, 26 Feb 2014 16:28:28 -0300
qttools-opensource-src (5.2.1-5) experimental; urgency=medium
* Update symbols files with buildd's logs.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Mon, 24 Feb 2014 22:35:01 -0300
qttools-opensource-src (5.2.1-4) experimental; urgency=medium
[ Dmitry Shachnev ]
* Update debian/libqt5designer5.symbols from buildds’ logs.
* Build qtxmlpatterns5-doc package from this source.
This should finally solve the dependency loop problem.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Thu, 13 Feb 2014 11:35:20 -0300
qttools-opensource-src (5.2.1-3) experimental; urgency=medium
[ Dmitry Shachnev ]
* Set version number to 5.2.1-3 to correctly handle upgrades
for qtdeclarative5-doc package.
* Build qtdeclarative5-doc package from this source.
[ Lisandro Damián Nicanor Pérez Meyer ]
* Update symbols files with buildd's and current logs.
* Add qtdeclarative5-private-dev to build lrelease with qml support
(Closes: #738617).
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Tue, 11 Feb 2014 15:59:24 -0300
qttools-opensource-src (5.2.1-1) experimental; urgency=medium
* New upstream release.
* Bump Qt build dependencies to 5.2.1.
* No symbols changes since last upload.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sun, 09 Feb 2014 16:22:41 -0300
qttools-opensource-src (5.2.0-9) unstable; urgency=medium
[ Pino Toscano ]
* Update symbols files. (Closes: #737358)
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sun, 02 Feb 2014 10:46:48 -0300
qttools-opensource-src (5.2.0-8) unstable; urgency=medium
[ Lisandro Damián Nicanor Pérez Meyer ]
* Upload to unstable.
* Update symbols files with buildd's logs.
* Move mkspec files to their new location.
- B-D on qtbase 5.2.0+dfsg-7~, which introduces the new location.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Fri, 31 Jan 2014 13:29:52 -0300
qttools-opensource-src (5.2.0-7) experimental; urgency=medium
[ Dmitry Shachnev ]
* Correct qttools5-doc-html package description: these are not XML
tools.
* Build qtbase5-doc in this source package, based on HTML files from
qtbase5-doc-html package.
[ Sune Vuorela ]
* Update description of the dev tools package to mention some of the
tools available in there.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sun, 19 Jan 2014 11:41:42 -0300
qttools-opensource-src (5.2.0-6) experimental; urgency=medium
* Update symbols files to fix build failure on armel, armhf and s390x.
-- Dmitry Shachnev <mitya57@gmail.com> Thu, 09 Jan 2014 17:56:04 +0400
qttools-opensource-src (5.2.0-5) experimental; urgency=medium
* Update symbols files with buildd's logs.
* Update Standards-Version to 3.9.5, no changes needed.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sat, 04 Jan 2014 16:41:46 -0300
qttools-opensource-src (5.2.0-4) experimental; urgency=medium
* Update symbols files again. All differences seems to come from sparc, ia64
and powerpc having an older gcc.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Thu, 26 Dec 2013 14:31:28 -0300
qttools-opensource-src (5.2.0-3) experimental; urgency=low
[ Pino Toscano ]
* Install the private qmake stuff in qttools5-private-dev, not in
qttools5-dev.
* Simplify qttools5-examples.install.
* Remove the Pre-Depends on dpkg >= 1.15.6~, since that version is available
in Squeeze already.
[ Lisandro Damián Nicanor Pérez Meyer ]
* Update symbols files with buildds' and current logs.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Thu, 26 Dec 2013 12:13:08 -0300
qttools-opensource-src (5.2.0-2) experimental; urgency=low
* Adjust Qt build dependencies to 5.2.0+dfsg~, or it picks the beta versions.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Thu, 12 Dec 2013 23:42:13 -0300
qttools-opensource-src (5.2.0-1) experimental; urgency=low
* New upstream release.
* Change the section of qdbus-qt5 to utils (Closes: #730141).
* Update symbols files:
- with buildds' logs.
- with current build. Deeleted symbols where all added in beta1.
* Update install files.
* Adjust Qt build dependencies.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Thu, 12 Dec 2013 21:27:23 -0300
qttools-opensource-src (5.2.0~beta1-2) experimental; urgency=low
[ Dmitry Shachnev ]
* Update libqt5designer5.symbols for armhf, ia64, powerpc, s390* and sparc.
* Add myself to Uploaders.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Tue, 19 Nov 2013 19:20:36 -0300
qttools-opensource-src (5.2.0~beta1-1) experimental; urgency=low
[ Dmitry Shachnev ]
* New upstream beta release.
* Update qtbase build-dependencies to 5.2.0.
* Remove .qmake.cache in clean target.
* Update .install files for new upstream release.
* Update libqt5designer5.symbols.
* Add copyright info for qtpaths to debian/copyright.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Tue, 12 Nov 2013 13:27:17 -0300
qttools-opensource-src (5.1.1-3) UNRELEASED; urgency=low
[ Lisandro Damián Nicanor Pérez Meyer ]
* Add cmake as a build dependency, it's used to run some tests against the
generated CMake files.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Tue, 01 Oct 2013 11:57:28 -0300
qttools-opensource-src (5.1.1-2) unstable; urgency=low
* Add README.source explaining how to bootstrap this package.
* Call 'make qmake_all' after building qttools, this way we can build the
arch-independent stuff without the need to recursively build-depend on us.
Thanks Александр Волков from Astra Linux for the tip.
* Update symbols files.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Tue, 01 Oct 2013 11:03:48 -0300
qttools-opensource-src (5.1.1-1) unstable; urgency=low
* New upstream release.
- Update build dependencies versions.
* Update symbols files from previous builds.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Fri, 30 Aug 2013 16:00:20 -0300
qttools-opensource-src (5.1.0-3) unstable; urgency=low
[ Pino Toscano ]
* Update symbols files. (try to address #719339)
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Mon, 12 Aug 2013 13:18:21 -0300
qttools-opensource-src (5.1.0-2) unstable; urgency=low
* Updload to unstable.
* Update symbols files.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sat, 10 Aug 2013 14:13:12 -0300
qttools-opensource-src (5.1.0-1) experimental; urgency=low
* New upstream release.
* Update watch file.
* Bump Qt5 build dependencies to 5.1.0.
* Update install files.
* Update symbols files.
* Fix the description of qttools5-dev-tools.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Tue, 09 Jul 2013 18:34:42 -0300
qttools-opensource-src (5.0.2-9) experimental; urgency=low
* Manually mark some symbols as optional, gcc internal. They seem to be
constructors generated by gcc which appear and dissapear causing random
FTBFSs.
* Update symbols files with build logs from other archs.
* Make qttools5-dbg package M-A same. As a trade off of a muliple-binary
debug package, remove the dependency on qttools5-dev-tools which is not
M-A same.
* Make qttools5-examples-dbg also M-A same, no changes required.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Thu, 27 Jun 2013 12:12:37 -0300
qttools-opensource-src (5.0.2-8) experimental; urgency=low
* Update symbols files.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Wed, 26 Jun 2013 12:10:59 -0300
qttools-opensource-src (5.0.2-7) experimental; urgency=low
* Make every package that ships a binary managed by qtchooser depend on it.
* Build the documentation shipped with this submodule as a build-indep task:
- Add the necessary indep build dependencies:
* qttools5-dev-tools to use qhelpgenerator.
* libqt5sql5-sqlite to generate qch doc.
- Build and create packages for qch and HTML doc formats.
* Confirm amd64 symbols with new compiler.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Thu, 20 Jun 2013 18:37:49 -0300
qttools-opensource-src (5.0.2-6) experimental; urgency=low
[ Pino Toscano ]
* Update symbols files.
* Make qttools5-dev-tools recommend libqt5sql5-sqlite (for assistant).
[ Lisandro Damián Nicanor Pérez Meyer ]
* Update symbols files with amd64 build. Three symbols dissapeared, but the
code hasn't changed and their where amd64-only symbols, so it seems safe.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sat, 18 May 2013 22:38:04 -0300
qttools-opensource-src (5.0.2-5) experimental; urgency=low
[ Pino Toscano ]
* Update symbols files.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Fri, 10 May 2013 15:54:35 -0300
qttools-opensource-src (5.0.2-4) experimental; urgency=low
[ Lisandro Damián Nicanor Pérez Meyer ]
* Update symbols files for armhf, ia64 and ppc64.
[ Timo Jyrinki ]
* Fix wrong paths in pkgconfig
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Mon, 06 May 2013 15:54:42 -0300
qttools-opensource-src (5.0.2-3) experimental; urgency=low
[ Dmitry Shachnev ]
* Use correct (and canonical) Vcs fields.
[ Pino Toscano ]
* debian/control: remove unused ${misc:Pre-Depends} from qttools5-dev-tools.
* debian/control: make qttools5-dev depend on qtbase5-dev.
* Update symbols files.
[ Lisandro Damián Nicanor Pérez Meyer ]
* Update amd64 symbols.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sun, 28 Apr 2013 23:41:12 -0300
qttools-opensource-src (5.0.2-2) experimental; urgency=low
[ Lisandro Damián Nicanor Pérez Meyer ]
* Confirm symbols files for i386, ia64 and powerpc.
[ Pino Toscano ]
* Fix build on Hurd; patch hurd-path_max.diff.
* debian/control: remove unused ${misc:Pre-Depends} from qdbus-qt5,
qttools5-dev, qttools5-private-dev, qttools5-dbg and qttools5-examples-dbg.
* debian/qttools5-private-dev.install: use wildcards instead of the version.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Mon, 22 Apr 2013 18:10:15 -0300
qttools-opensource-src (5.0.2-1) experimental; urgency=low
* Initial release. (Closes: #697509)
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sat, 20 Apr 2013 23:25:12 -0300
|