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
|
qbs (3.1.2-2) unstable; urgency=medium
* Team upload.
* Define PATH_MAX if not available, to help building on GNU/Hurd;
patch path_max.diff.
* Increase the timeout of qtest with QTEST_FUNCTION_TIMEOUT also for alpha,
and hppa.
* Backport upstream commit a8a17646b136873132c5fba98ee1bea681a7dcaa to build
with Qt 6.10; patch upstream_Fix-build-with-Qt-6.10.patch.
* Fix copyright. (Closes: #1127583)
* Bump Standards-Version to 4.7.3, no changes required.
* Drop Priority: optional, no more needed since dpkg 1.22.13.
-- Pino Toscano <pino@debian.org> Sat, 14 Feb 2026 09:44:14 +0100
qbs (3.1.2-1) unstable; urgency=medium
* Team upload.
* New upstream release.
-- Pino Toscano <pino@debian.org> Fri, 12 Dec 2025 08:37:27 +0100
qbs (3.1.1-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Update the patches:
- gcc-handle-absolute-module-source-paths-in-modules.json.diff: drop, fixed
upstream
* upstream-test-suite autopkgtest: use the value returned by "nproc" as number
of jobs for the build of the blackbox tests; this should speed up the test
a bit.
-- Pino Toscano <pino@debian.org> Thu, 30 Oct 2025 20:26:58 +0100
qbs (3.1.0-2) unstable; urgency=medium
* Team upload.
* Upload to unstable.
-- Pino Toscano <pino@debian.org> Mon, 13 Oct 2025 07:36:59 +0200
qbs (3.1.0-1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Rename libqbscore3.0 to libqbscore3.1 according to the upstream SONAME
bump.
* Update the patches:
- no_nosys_specs.diff: update
* Backport the upstream https://codereview.qt-project.org/c/qbs/qbs/+/683816
to fix the search of gcc std modules; patch
gcc-handle-absolute-module-source-paths-in-modules.json.diff.
(Closes: #1114341)
* Update install files.
-- Pino Toscano <pino@debian.org> Sat, 11 Oct 2025 23:05:21 +0200
qbs (3.0.3-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Update the patches:
- Fix-check-for-uninitialized-JSValue.diff: drop, fixed upstream
* Update patch skip_test_concurrent.diff to skip directly in the _data()
function, to skip only once rather than in each of the almost 500
combinations of it.
-- Pino Toscano <pino@debian.org> Tue, 02 Sep 2025 22:30:04 +0200
qbs (3.0.1-4) unstable; urgency=medium
* Team upload.
* Upload to unstable.
* Add a new upstream-test-suite autopkgtest that runs the blackbox tests from
the upstream test suite:
- build the tests from the sources, which sadly needs a good deal of build
(the shared qbs libraries should not be actually used, though)
- blacklist the qbsLanguageServer, as it assumes a fully-built layout
- borrow some of the setup from what done for running the tests during the
build
-- Pino Toscano <pino@debian.org> Sat, 30 Aug 2025 11:23:02 +0200
qbs (3.0.1-3) experimental; urgency=medium
* Team upload.
* Add few more arch-only test-only build dependencies for additional bits in
the test suite: qt6-scxml-dev, and unzip.
-- Pino Toscano <pino@debian.org> Sat, 30 Aug 2025 06:51:53 +0200
qbs (3.0.1-2) experimental; urgency=medium
* Team upload.
* Backport the upstream https://codereview.qt-project.org/c/qbs/qbs/+/671159
to fix the build on 32bit architectures; patch
Fix-check-for-uninitialized-JSValue.diff.
* Move the test-only qt6-declarative-dev, and qt6-tools-dev build dependencies
as Build-Depends-Arch, as they are needed only when running the tests which
are run during arch builds.
* Add few more arch-only test-only build dependencies for additional bits in
the test suite: 7zip, bison, flex, icoutils, qt6-shadertools-dev, and zip.
-- Pino Toscano <pino@debian.org> Sat, 30 Aug 2025 06:02:11 +0200
qbs (3.0.1-1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Rename libqbscore2.6 to libqbscore3.0 according to the upstream SONAME
bump.
* Update the patches:
- quickjs_hurd.diff: drop, as it refers to quickjs and not to the actually
used quickjs-ng
* Update install files.
-- Pino Toscano <pino@debian.org> Wed, 20 Aug 2025 04:28:56 +0200
qbs (2.6.1-1) unstable; urgency=medium
* Team upload.
* New upstream release.
-- Pino Toscano <pino@debian.org> Mon, 21 Apr 2025 08:26:31 +0200
qbs (2.6.0-2) unstable; urgency=medium
* Team upload.
* Upload to unstable.
-- Pino Toscano <pino@debian.org> Sun, 30 Mar 2025 08:23:58 +0200
qbs (2.6.0-1) experimental; urgency=medium
* Team upload.
[ Simon Quigley ]
* Extend the -O2 hack for Ubuntu to also apply to amd64.
[ Pino Toscano ]
* Bump Standards-Version to 4.7.2, no changes required.
* New upstream release.
* Rename libqbscore2.5 to libqbscore2.6 according to the upstream SONAME
bump.
* Update install files.
-- Pino Toscano <pino@debian.org> Sat, 29 Mar 2025 07:50:00 +0100
qbs (2.5.1-1) unstable; urgency=medium
* Team upload.
* New upstream release.
-- Pino Toscano <pino@debian.org> Sun, 02 Feb 2025 12:49:04 +0100
qbs (2.5.0-2) unstable; urgency=medium
* Team upload.
* Upload to unstable.
* Backport/adapt fixes from the upstream quickjs for GNU/Hurd to the embedded
copy in qbs; patch quickjs_hurd.diff.
-- Pino Toscano <pino@debian.org> Tue, 10 Dec 2024 06:26:52 +0100
qbs (2.5.0-1) experimental; urgency=medium
* Team upload.
* New upstream release.
* Update the patches:
- upstream_cmake-Do-not-install-.gitignore-files.patch: drop, backported
from upstream
- test_sanitizers_only_on_amd64.diff: refresh
* Rename libqbscore2.4 to libqbscore2.5 according to the upstream SONAME
bump.
* Update install files.
* Update copyright.
* Remove symbols file: the shared libqbscore library bumps SONAME at every
minor series, making the benefit of symbols files to lower the library
requirements less useful; furthermore, the current library exposes a lot
of internal symbols because of the enabled tests, making the symbols file
hard to maintain.
-- Pino Toscano <pino@debian.org> Sun, 08 Dec 2024 20:37:44 +0100
qbs (2.4.2-3) unstable; urgency=medium
* Team upload.
* Build the documentation only during arch-indep builds:
- move the python3-bs4, and python3-lxml build dependencies to
Build-Depends-Indep
- copy the qt6-tools-dev build dependency to Build-Depends-Indep, as it is
needed for running the test suite
- enable the -DQBS_INSTALL_HTML_DOCS, and -DQBS_INSTALL_QCH_DOCS cmake
arguments only when their respective packages are to be built
* Mark the qt6-declarative-dev, and qt6-tools-dev build dependencies as
!nocheck, as they are needed only when running the test suite.
* Update symbols file from the logs of buildds.
* Stop passing -DQBS_INSTALL_PREFIX to cmake, as it has not been used for a
long time.
* Simplifying avoiding installing .gitignore files:
- backport upstream commit 862deed5ec60c36c603d5ac84546804ea67cc675 to not
install .gitignore files; patch
upstream_cmake-Do-not-install-.gitignore-files.patch
- stop removing them from the sources in dh_auto_clean, to not modify the
sources
- drop the entries from debian/not-installed
* Remove entries from debian/not-installed that do not exist anymore.
* Remove Uploaders who have not contributed anything in more than 5 years.
-- Pino Toscano <pino@debian.org> Fri, 01 Nov 2024 11:12:59 +0100
qbs (2.4.2-2) unstable; urgency=medium
* Team upload.
* Upload to unstable.
-- Pino Toscano <pino@debian.org> Wed, 23 Oct 2024 21:56:58 +0200
qbs (2.4.2-1) experimental; urgency=medium
* Team upload.
* New upstream release:
- implements processNameByPid on Hurd (Closes: #884470)
* Update the patches:
- fix_linker_mode_test.diff: drop, backported from upstream
* Rename libqbscore2.3 to libqbscore2.4 according to the upstream SONAME
bump.
* Update install files.
* Do not ship .gitignore files (via debian/not-installed).
* Update symbols file.
* Update copyright.
* Drop breaks/replaces for versions older than Debian Bullseye.
* Remove an obsolete maintscript entry.
-- Pino Toscano <pino@debian.org> Sun, 13 Oct 2024 10:22:03 +0200
qbs (2.3.1-6) unstable; urgency=medium
* Update debian/libqbscore2.3.symbols fifth time in a row.
* Use dpkg-build-api level 1, drop explicit Rules-Requires-Root: no.
* Do not build with -O3 on Ubuntu ppc64el, that causes link failures.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 29 Jul 2024 15:40:19 +0300
qbs (2.3.1-5) unstable; urgency=medium
* Update debian/libqbscore2.3.symbols for GCC 14 (closes: #1075426).
-- Dmitry Shachnev <mitya57@debian.org> Sun, 28 Jul 2024 00:03:41 +0300
qbs (2.3.1-4) unstable; urgency=medium
* Update debian/libqbscore2.3.symbols again, this time for Qt 6.6.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 08 Jun 2024 21:54:49 +0300
qbs (2.3.1-3) unstable; urgency=medium
* Update debian/libqbscore2.3.symbols from buildds’ logs.
* Merge two symbols for bucketsForCapacity() (closes: #1072386).
-- Dmitry Shachnev <mitya57@debian.org> Sun, 02 Jun 2024 16:40:32 +0300
qbs (2.3.1-2) unstable; urgency=medium
* Update debian/libqbscore2.3.symbols from buildds’ logs.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 15 May 2024 11:09:39 +0300
qbs (2.3.1-1) unstable; urgency=medium
* New upstream release.
* Add a patch to make the linkerMode test pass on all architectures.
* Update debian/libqbscore2.3.symbols from buildds’ logs.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 11 May 2024 18:24:25 +0300
qbs (2.3.0-1) experimental; urgency=medium
[ Dmitry Shachnev ]
* Acknowledge NMU, thanks Benjamin Drung!
* Mark four symbols as optional to fix build with Qt 6.6.
* New upstream release.
* Rename libqbscore2.1t64 to libqbscore2.3 for upstream SONAME change.
- Drop t64-related Provides, Breaks/Replaces and lintian-overrides.
* Update debian/libqbscore2.3.symbols from buildds’ and current logs.
* Update debian/copyright.
* Remove libqt6opengl6-dev build-dependency (merged into qt6-base-dev).
* Update install files.
* Bump Standards-Version to 4.7.0, no changes needed.
[ Bo YU ]
* Increase the timeout of qtest with QTEST_FUNCTION_TIMEOUT for riscv64.
(Closes: #1059264)
[ Lisandro Damián Nicanor Pérez Meyer ]
* Remove myself from Uploaders.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 05 May 2024 21:30:49 +0300
qbs (2.1.2-2.1) unstable; urgency=medium
* Non-maintainer upload.
* Rename libraries for 64-bit time_t transition. Closes: #1062711
-- Benjamin Drung <bdrung@debian.org> Thu, 29 Feb 2024 21:29:48 +0000
qbs (2.1.2-2) unstable; urgency=medium
* Update debian/libqbscore2.1.symbols for loong64 (closes: #1057757).
* Also update debian/libqbscore2.1.symbols from the current build logs.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 08 Dec 2023 13:54:19 +0300
qbs (2.1.2-1) unstable; urgency=medium
* New upstream release.
* Drop quickjs_32bit_float64_tag.diff, applied upstream.
* Refresh asan_atomic.diff.
* Update debian/libqbscore2.1.symbols for sparc64.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 30 Sep 2023 22:18:32 +0300
qbs (2.1.1-2) unstable; urgency=medium
* Update debian/libqbscore2.1.symbols from buildds’ logs.
* Mark more symbols that disappear with -O3 as optional.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 16 Aug 2023 20:44:00 +0300
qbs (2.1.1-1) unstable; urgency=medium
* New upstream release.
* Drop quickjs_32bit_build.diff, included in the new release.
* Update debian/libqbscore2.1.symbols from buildds’ and current build logs.
* Update debian/patches/test_sanitizers_only_on_amd64.diff so it
applies also to address sanitizer.
* Update debian/copyright.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 09 Aug 2023 19:58:53 +0300
qbs (2.1.0-1) experimental; urgency=medium
* New upstream release.
* Stop repacking the upstream tarball, no longer needed.
* Drop patches, not needed due to removal of qtscript:
- disable_tests_qtscript.diff
- s390x_jscore.diff
* Also drop find_qdoc.diff, included in the new release.
* Refresh other patches.
* Update debian/copyright.
* Drop debian/source/lintian-overrides, no longer needed.
* Drop libqbsscriptengine1.24 package.
* Update debian/qbs-dev.install.
* Rename libqbscore1.24 to libqbscore2.1 for upstream SONAME change.
* Backport two upstream patches to fix build on 32-bit architectures.
* Update debian/libqbscore2.1.symbols from the current build logs.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 02 Aug 2023 23:10:30 +0300
qbs (1.24.1+dfsg-2) unstable; urgency=medium
* Add a patch to find qdoc directly, to fix arch:all build.
* Prevent dh_compress from compressing qbs.qch.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 05 Mar 2023 20:28:50 +0300
qbs (1.24.1+dfsg-1) unstable; urgency=medium
* New upstream bugfix release.
* Mark some symbols that disappear with -O3 as optional.
* Bump Standards-Version to 4.6.2, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 04 Mar 2023 21:02:25 +0300
qbs (1.24.0+dfsg-4) unstable; urgency=medium
[ Patrick Franz ]
* Team upload.
* Update symbols from buildlogs (Closes: #1027474).
-- Patrick Franz <deltaone@debian.org> Mon, 02 Jan 2023 00:39:26 +0100
qbs (1.24.0+dfsg-3) unstable; urgency=medium
[ Patrick Franz ]
* Team upload.
* Adjust Qt 6 B-Ds to account for renaming.
* Update symbols from buildlogs (Closes: #1027474).
-- Patrick Franz <deltaone@debian.org> Sun, 01 Jan 2023 14:25:13 +0100
qbs (1.24.0+dfsg-2) unstable; urgency=medium
* Copy a patch from qtscript to add s390x support.
* Update symbols files from buildds’ logs.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 30 Nov 2022 17:13:12 +0300
qbs (1.24.0+dfsg-1) experimental; urgency=medium
* New upstream release.
* Update debian/libqbscore1.23.symbols for riscv64.
* Rename libqbscore1.23 to libqbscore1.24 for upstream SONAME change.
* Switch from Qt 5 to Qt 6.
- Add libqbsscriptengine1.24 package (port of QtScript to Qt 6).
* Document copyright of src/shared/qtscript/*.
* Repack the tarball to exclude uncertainly licensed tests.
* Override some false-positive source-is-missing Lintian errors.
* Refresh debian/patches/skip_test_concurrent.diff.
* Drop doc_Install_man_pages_with_cmake.diff, applied upstream.
* Pass -DQBS_INSTALL_MAN_PAGE=yes to dh_auto_configure.
* Install one new header file (deprecationwarningmode.h).
* Update debian/libqbscore1.24.symbols from the current logs.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 27 Nov 2022 14:24:52 +0300
qbs (1.23.1-1) unstable; urgency=medium
* New upstream release.
* Add a patch to link with atomic library when using address sanitizer,
to fix test failure on armel (see #1016041).
* Update debian/libqbscore1.23.symbols from buildds’ logs.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 15 Aug 2022 14:41:45 +0300
qbs (1.23.0-1) experimental; urgency=medium
* New upstream release.
* Drop cmake_regex_syntax.diff, applied upstream.
* Refresh test_sanitizers_only_on_amd64.diff.
* Rename libqbscore1.22 to libqbscore1.23 for upstream SONAME change.
* Install one new file (asan.qbs).
* Update debian/libqbscore1.23.symbols for GCC 12 (closes: #1013020).
* Do not build documentation in build-arch target (closes: #1011159).
-- Dmitry Shachnev <mitya57@debian.org> Sun, 24 Jul 2022 23:38:44 +0300
qbs (1.22.1-2) unstable; urgency=medium
* Mark some symbols as optional (closes: #1010755).
* Bump Standards-Version to 4.6.1, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 15 May 2022 14:05:37 +0300
qbs (1.22.1-1) unstable; urgency=medium
* New upstream release.
* Drop docs_install_path.diff, a different fix was applied upstream.
- Update install path for QCH docs.
* Add a patch to fix SONAME of libqbscore.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 07 May 2022 11:14:40 +0300
qbs (1.22.0-4) unstable; urgency=medium
* Disable api and blackbox tests also on mips64el.
* Update debian/libqbscore1.22.symbols for mipsel.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 07 Apr 2022 21:59:47 +0300
qbs (1.22.0-3) unstable; urgency=medium
* Disable api and blackbox tests on mipsel, blackbox on riscv64.
* Update debian/libqbscore1.22.symbols for more architectures.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 06 Apr 2022 19:46:08 +0300
qbs (1.22.0-2) experimental; urgency=medium
* Update debian/libqbscore1.22.symbols from buildds’ logs.
* Update disable_tests_qtscript.diff for CMake port.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 06 Apr 2022 00:19:07 +0300
qbs (1.22.0-1) experimental; urgency=medium
[ Marius Gripsgard ]
* New upstream release (version: 1.21.0)
* debian/*: Bump SONAME on libqbscore binary pkg to 1.21
* debian/patches: Refresh patches for 1.21
* debian/control: Bump standards version to 4.6.0
* debian/control: Set requires root to no
* debian/patch: Add tests-Make-sure-we-handle-prefix-cases-where-libPath patch
* debian/qbs-common: Add new files added in 1.20/1.21
* debian/libqbscore: Bump symbols ver to match pkg ver
* debian/copyright: Update copyright to match upstream release (1.21.0)
* debian/*: Port to use cmake as build system
* debian/rules: Workaround bug with parallel creation of docs
[ Dmitry Shachnev ]
* New upstream release (1.22.0).
* Drop tests_Make_sure_we_handle_prefix_cases_where_libPath.diff,
included in the new release.
* Rename libqbscore1.21 to libqbscore1.22 for upstream SONAME change.
* Update debian/qbs-common.install and add debian/not-installed.
* Update symbols files from the current build logs.
* Update debian/copyright.
* Remove patches that are not relevant since switch to CMake.
* Add a patch to fix documentation install with CMake.
* Remove override_dh_install target in favor of debian/not-installed.
* Simplify override_dh_auto_clean target.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 02 Apr 2022 21:39:30 +0300
qbs (1.19.2-1) unstable; urgency=medium
* New upstream release.
* Drop add_1.19.1_changelog.diff and stop installing the changelog.
For the third release in a row, the changelog for the current version
is not present in the upstream tarball.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 16 Aug 2021 15:21:16 +0300
qbs (1.19.1-1) experimental; urgency=medium
* New upstream release.
* Drop the patch for missing 1.19.0 changelog.
* Upstream forgot to include changelog again, so add a new patch for it.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 22 Jun 2021 20:16:50 +0300
qbs (1.19.0-1) experimental; urgency=medium
* New upstream release.
* Update debian/copyright.
* Backport upstream patch to add missing changelog for 1.19.0 release.
* Add new files to debian/qbs-common.install.
* Rename libqbscore1.18 to libqbscore1.19 for upstream SONAME change.
* Update debian/libqbscore1.19.symbols from the current build log.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 15 May 2021 21:24:21 +0300
qbs (1.18.0-5) unstable; urgency=medium
* Handle symlink to directory change in qbs-examples (closes: #985295).
-- Dmitry Shachnev <mitya57@debian.org> Mon, 15 Mar 2021 21:02:24 +0300
qbs (1.18.0-4) unstable; urgency=medium
* Skip TestBlackboxJobLimits::jobLimits test that sometimes hangs on
mipsel/mips64el (closes: #980872).
* Run the remaining tests with QBS_AUTOTEST_ALWAYS_LOG_STD{OUT,ERR}=1.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 24 Jan 2021 14:18:12 +0300
qbs (1.18.0-3) unstable; urgency=medium
* Run tests with --max-parallel=1 to make them more stable.
* Bump required Qt version to 5.14.0, following upstream.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 21 Jan 2021 21:01:14 +0300
qbs (1.18.0-2) experimental; urgency=medium
* Add one more file to debian/patches/no_nosys_specs.diff.
* Update debian/libqbscore1.18.symbols from buildds’ logs.
* Update debian/watch to version 4.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 05 Jan 2021 21:20:29 +0300
qbs (1.18.0-1) experimental; urgency=medium
* New upstream release.
* Refresh patches for the new release.
* Update debian/libqbscore1.17.symbols from buildds’ logs.
* Rename libqbscore1.17 to libqbscore1.18 for upstream SONAME change.
* Pass --buildsystem=qmake to dh, to prevent it from choosing cmake.
* Add one new file to debian/qbs-common.install.
* Update debian/libqbscore1.18.symbols from the current build logs.
* Update debian/copyright.
* Bump Standards-Version to 4.5.1, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 28 Dec 2020 21:27:26 +0300
qbs (1.17.0-2) unstable; urgency=medium
* Fix tests failures on ARM:
- Do not use nosys.specs, it needs gcc-arm-none-eabi.
- Disable build of arm-gcc.s, it causes errors from as.
* Update debian/libqbscore1.17.symbols from buildds’ logs.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 20 Sep 2020 15:43:21 +0300
qbs (1.17.0-1) experimental; urgency=medium
* New upstream release.
* Refresh patches for the new release.
* Update debian/libqbscore1.16.symbols from buildds’ logs.
* Rename libqbscore1.16 to libqbscore1.17 for upstream SONAME change.
* Install three new files for the capnproto module.
* Update to debhelper compat level 13.
- Drop dh_missing override, --fail-missing is now default behavior.
- Use ${DEB_HOST_MULTIARCH} substitution.
- Adapt to debhelper exporting its own $HOME for tests.
* Update debian/libqbscore1.17.symbols from the current build logs.
* Stop overriding libexec location (FHS v3.0 and Debian Policy v4.1.5
allow for /usr/libexec).
* Update debian/copyright.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 07 Sep 2020 13:35:34 +0300
qbs (1.16.0-2) unstable; urgency=medium
* Update debian/libqbscore1.16.symbols from buildds’ logs.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 25 Jun 2020 11:00:39 +0300
qbs (1.16.0-1) experimental; urgency=medium
* New upstream release.
* Refresh skip_test_concurrent.diff.
* Update debian/libqbscore1.14.symbols from buildds’ logs.
* Rename libqbscore1.14 to libqbscore1.16 for upstream SONAME change.
* Install new files.
* Update debian/libqbscore1.16.symbols from the current build log.
* Update debian/copyright.
* Make tests not fail when there are multiple GCC versions installed.
* Test sanitizers only on amd64, they are not available everywhere.
* Bump Standards-Version to 4.5.0, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 21 May 2020 21:00:57 +0300
qbs (1.14.1-1) experimental; urgency=medium
* New upstream release.
* Drop qml_type_descriptions.diff, applied upstream.
* Refresh kfreebsd_soname.diff.
* Update debian/libqbscore1.13.symbols from buildds’ logs.
* Rename libqbscore1.13 to libqbscore1.14 for upstream SONAME change.
* Bump required Qt version to 5.11.0, following upstream.
* Install new files.
* Update debian/libqbscore1.14.symbols from the current build logs.
* Update debian/copyright.
* Bump debhelper compat level to 12, use the new syntax.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 13 Nov 2019 14:56:40 +0300
qbs (1.13.1-2) unstable; urgency=medium
* Update debian/libqbscore1.13.symbols from the current build log.
* Add Build-Depends-Package field to debian/libqbscore1.13.symbols.
* Bump Standards-Version to 4.4.1, no changes needed.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 22 Oct 2019 15:13:07 +0300
qbs (1.13.1-1) experimental; urgency=medium
* New upstream release.
* Refresh debian/patches/skip_test_concurrent.diff.
* Update debian/libqbscore1.13.symbols from buildds’ logs.
* Update debian/libqbscore1.13.symbols from the current build log.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 12 Jun 2019 23:14:25 +0300
qbs (1.13.0-1) experimental; 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.
[ Dmitry Shachnev ]
* New upstream release.
* Stop repacking the tarball, there is no more minified jquery.js.
* Drop debug_log_level_segfault_fix.diff, included in the new release.
* Refresh and rebase other patches.
* Remove the libqtprofilesetup package, it is gone upstream.
* Update debian/qbs-common.install and debian/qbs-dev.install.
* Rename libqbscore1.12 to libqbscore1.13 for upstream SONAME change.
* Update debian/libqbscore1.13.symbols from buildds’ logs.
* Update debian/libqbscore1.13.symbols from the current build log.
* Update debian/copyright.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 29 Apr 2019 22:43:49 +0300
qbs (1.12.2+dfsg-2) unstable; urgency=medium
* Add a patch to fix segfault with --log-level debug (closes: #917066).
-- Dmitry Shachnev <mitya57@debian.org> Sun, 23 Dec 2018 00:32:11 +0300
qbs (1.12.2+dfsg-1) unstable; urgency=medium
* New upstream release.
* Refresh debian/patches/skip_test_concurrent.diff.
* Update symbols files (closes: #916155).
-- Dmitry Shachnev <mitya57@debian.org> Mon, 10 Dec 2018 22:15:09 +0300
qbs (1.12.1+dfsg-2) unstable; urgency=medium
* Update symbols files from buildds’ logs.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 31 Oct 2018 14:43:46 +0300
qbs (1.12.1+dfsg-1) experimental; urgency=medium
* New upstream release.
- Tests now pass on i386 (closes: #908477).
* Drop install_missing.patch, applied in the new release.
* Refresh skip_test_concurrent.diff.
* Remove dbgsym migration, it is no longer needed.
* Use xz compression for the repacked tarball.
* Update symbols files from buildds’ and the current build logs.
* Bump Standards-Version to 4.2.1, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 26 Sep 2018 12:59:09 +0300
qbs (1.12.0+dfsg-1) experimental; urgency=medium
[ Alexander Volkov ]
* New upstream release.
* Install missing header file.
* Update install files for the new release.
* Rename the library packages according to upstream SONAME change.
* Update symbols from build logs.
[ Dmitry Shachnev ]
* Update debian/copyright.
* Bump qtbase5-dev build-dependency to 5.9.0.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 14 Aug 2018 14:10:34 +0300
qbs (1.11.1+dfsg-2) unstable; urgency=medium
* Fix architecture independent builds.
* Update libqbsqtprofilesetup1.11.symbols from buildds’ logs.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 14 May 2018 23:18:21 +0300
qbs (1.11.1+dfsg-1) unstable; urgency=medium
[ Simon Quigley ]
* New upstream release.
* Bump Standards-version to 4.1.4, no changes needed.
* Update patches for new upstream release and remove reverse-
applicable installed_headers.diff.
[ Dmitry Shachnev ]
* Update symbols files from buildds’ logs.
-- Simon Quigley <tsimonq2@ubuntu.com> Sat, 12 May 2018 20:00:45 -0500
qbs (1.11.0+dfsg-1) unstable; urgency=medium
[ Alexander Volkov ]
* New upstream release.
* Drop fix_ftbfs_gcc6.diff, applied upstream.
* Update QBS_LIBEXEC_DESTDIR for static.pro and fix DESTDIR for
qbs_processlauncher (processlauncher_destdir.diff).
* Set LD_LIBRARY_PATH for qbsres target so it could use built qbs
to generate QML type descriptions (qml_type_descriptions.diff).
* Fix the list of installed headers for qmake build (installed_headers.diff).
* Update install files for the new release.
* Rename the library packages according to upstream SONAME change.
* Update symbols from build logs.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 06 Apr 2018 17:36:51 +0300
qbs (1.10.1+dfsg-1) unstable; urgency=medium
[ Dmitry Shachnev ]
* Properly support DEB_BUILD_OPTIONS=nocheck (closes: #886656). Thanks to
Helmut Grohne.
[ Simon Quigley ]
* New upstream release.
* Bump Standards-version to 4.1.3, no changes needed.
* Bump debhelper compat to 11:
- Remove --parallel from debian/rules because it is already used by default.
- No other changes were required.
* Update Vcs-* to reflect the move to Salsa.
* Follow the hints given by the multiarch hinter.
* Update qbs-common.install for the new upstream release.
* Update symbols from build logs.
-- Simon Quigley <tsimonq2@ubuntu.com> Thu, 15 Mar 2018 18:05:03 -0500
qbs (1.10.0+dfsg-2) unstable; urgency=medium
* Update symbols files from buildds’ logs.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 22 Dec 2017 22:12:20 +0300
qbs (1.10.0+dfsg-1) experimental; urgency=medium
* New upstream release.
* Drop install_missing_header.diff, it was coming from upstream.
* Refresh and rebase other patches.
* Install upstream changelog.
* Update install files for the new release.
* Rename the library packages according to upstream SONAME change.
* Export QBS_AUTOTEST_PROFILE=qbs_autotests when running the tests.
* Build-depend on qtdeclarative5-private-dev, for Qt.quick module.
* Update symbols files for the new release.
* Use dh_missing instead of deprecated dh_install --fail-missing.
* Use dh_auto_configure provided by debhelper.
* Update debian/copyright.
* Do not install dmgbuild Python code, it is only working on macOS.
* Fix Abstract field in qbs-doc-html.doc-base.
* Bump Standards-Version to 4.1.2, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 19 Dec 2017 21:26:01 +0300
qbs (1.8.1+dfsg-4) unstable; urgency=medium
* Make libqbscore1.8 depend on qbs-common (closes: #875434).
* Update debian/libqbscore1.8.symbols from buildds’ logs.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 12 Sep 2017 15:46:40 +0300
qbs (1.8.1+dfsg-3) unstable; urgency=medium
* Make sure qbs tries to find qbs_processlauncher in correct place, by
specifying QBS_RELATIVE_LIBEXEC_PATH (closes: #869909).
* Update symbols files for GCC 7.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 07 Aug 2017 17:18:32 +0300
qbs (1.8.1+dfsg-2) unstable; urgency=medium
* Install missing tools/version.h header to fix QtCreator build.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 10 Jul 2017 13:27:31 +0300
qbs (1.8.1+dfsg-1) unstable; urgency=medium
* New upstream release.
* Add myself to Uploaders.
* Update Standards-version to 4.0.0, no changes needed.
* Bump debhelper compat to 10.
* Fix doc-base-file-references-missing-file by correcting path in qbs-
doc-html.doc-base.
* Upload to unstable.
-- Simon Quigley <tsimonq2@ubuntu.com> Wed, 05 Jul 2017 04:08:07 -0500
qbs (1.8.0+dfsg-1) experimental; urgency=medium
* New upstream release.
* Drop qmake_documentation.diff, applied upstream.
* Refresh kfreebsd_soname.diff and skip_test_concurrent.diff.
* Bump qtbase5-dev build-dependency to 5.6.0, following upstream.
* Improve package descriptions, thanks Joerg Bornemann (closes: #863874).
* Update debian/copyright.
* Update docs installation code for the new release.
* Update install files for the new release.
* Rename the library packages according to upstream SONAME change:
- libqbscore1.7 → libqbscore1.8;
- libqbsqtprofilesetup1.7 → libqbsqtprofilesetup1.8.
* Update the symbols files from the current build log.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 06 Jun 2017 13:58:02 +0300
qbs (1.7.2+dfsg-1) experimental; urgency=medium
* New upstream release.
* Drop skip_test_concurrent.diff, applied upstream.
* Update debian/copyright.
* Update debian/libqbscore1.7.symbols from the current build log.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 24 May 2017 12:39:34 +0300
qbs (1.7.0+dfsg-4) unstable; urgency=medium
* Backport upstream patch to make documentation install dir configurable
(qmake_documentation.diff).
* Install the documentation into correct location (closes: #795829).
-- Dmitry Shachnev <mitya57@debian.org> Wed, 25 Jan 2017 12:01:02 +0300
qbs (1.7.0+dfsg-3) unstable; urgency=medium
* Fix the arch:all build by passing -f to rm command.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 04 Jan 2017 22:06:30 +0300
qbs (1.7.0+dfsg-2) unstable; urgency=medium
* Drop ${shlibs:Depends} from qbs-dev, it does not have any binary code.
* Update debian/copyright.
* Fix race condition which breaks parallel builds (fix_race_condition.diff).
* Do not install the libqbscore.so.1 symlink (closes: #850035).
* Use the same SONAME scheme on kfreebsd as on Linux (kfreebsd_soname.diff).
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 04 Jan 2017 21:24:09 +0300
qbs (1.7.0+dfsg-1) experimental; urgency=medium
* New upstream release.
* Refresh and rebase the patches for the new release.
* Add three new files to debian/qbs-common.install.
* Update symbols files from the current amd64 build log.
* Rename the library packages according to upstream SONAME change:
- libqbscore1 → libqbscore1.7;
- libqbsqtprofilesetup1 → libqbsqtprofilesetup1.7.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 23 Dec 2016 11:22:04 +0300
qbs (1.6.1+dfsg-1) unstable; urgency=medium
* New upstream release.
* Refresh skip_test_concurrent.diff.
* Update debian/libqbscore1.symbols from buildds’ logs.
* Fix description-synopsis-starts-with-article Lintian warning.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 13 Nov 2016 19:25:30 +0300
qbs (1.6.0+dfsg-2) unstable; urgency=medium
* Update debian/libqbscore1.symbols from buildds’ logs.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 07 Sep 2016 12:04:38 +0300
qbs (1.6.0+dfsg-1) experimental; urgency=medium
* New upstream release.
* Set $HOME to a temporary location when running tests.
* Drop skip_test_homedirectory.diff, no longer needed.
* Refresh other patches.
* Update install files for the new release.
* Update debian/libqbscore1.symbols from amd64 and i386 build logs.
* Fix two Lintian errors about package descriptions.
* Bump required Qt version to 5.4.0, following upstream.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 03 Sep 2016 14:43:46 +0300
qbs (1.5.2+dfsg-1) unstable; urgency=medium
[ Adam Majer ]
* Remove /usr/include from INCLUDEPATH list of installed
.pri file. Adding this default included path causes FTBFS
for software using qbs with GCC 6 (fix_ftbfs_gcc6.diff)
(closes: #831182)
[ Dmitry Shachnev ]
* New upstream release.
* Drop kfreebsd.diff, a similar patch was applied upstream.
* Avoid using the Qt Build Suite term, following upstream.
-- Adam Majer <adamm@zombino.com> Tue, 02 Aug 2016 00:04:16 +0200
qbs (1.5.1+dfsg-1) unstable; urgency=medium
* New upstream release.
* Refresh skip_test_concurrent.diff.
* Drop the rules to remove empty directories in documentation, qdoc no
longer creates them (since Qt 5.6.1).
-- Dmitry Shachnev <mitya57@debian.org> Sat, 18 Jun 2016 12:11:44 +0300
qbs (1.5.0+dfsg-2) unstable; urgency=medium
* Build-depend on qttools5-dev-tools to prevent a test failure.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 13 May 2016 09:33:19 +0300
qbs (1.5.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Set LC_ALL=C.UTF-8 when running tests, as according to upstream the
testsuite assumes English locale.
* Refresh patches against the new release.
* Update debian/qbs-common.install.
* Update debian/libqbscore1.symbols from amd64 build log.
* Bump Standards-Version to 3.9.8, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 12 May 2016 22:05:38 +0300
qbs (1.4.5+dfsg-2) unstable; urgency=medium
* Skip new TestBlackbox::concurrentExecutor() test which hangs on all
non-x86 architectures.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 31 Mar 2016 19:29:35 +0200
qbs (1.4.5+dfsg-1) unstable; urgency=medium
* New upstream release.
* Use recommended https URIs for Vcs fields.
* Bump Standards-Version to 3.9.7, no changes needed.
* Migrate to automatic dbgsym packages.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 17 Mar 2016 18:50:14 +0100
qbs (1.4.4+dfsg-1) unstable; urgency=medium
* New upstream release.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 19 Dec 2015 13:46:01 +0300
qbs (1.4.3+dfsg-3) unstable; urgency=medium
* Update debian/libqbscore1.symbols from buildds’ logs.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 04 Nov 2015 09:41:32 +0300
qbs (1.4.3+dfsg-2) unstable; urgency=medium
* Do not try to run tests during arch-indep builds.
* Split files in /usr/share into new qbs-common package.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 29 Oct 2015 11:22:24 +0300
qbs (1.4.3+dfsg-1) unstable; urgency=medium
* New upstream release.
* Drop dont_throw_exceptions.diff, applied upstream.
* Refresh skip_test_homedirectory.diff.
* Update debian/libqbscore1.symbols.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 28 Oct 2015 16:27:50 +0300
qbs (1.4.2+dfsg-3) unstable; urgency=medium
* Use QBS_LIBRARY_DIRNAME to specify library dir (closes: #797774).
-- Dmitry Shachnev <mitya57@debian.org> Sat, 05 Sep 2015 10:24:02 +0300
qbs (1.4.2+dfsg-2) unstable; urgency=medium
* Backport upstream change that should hopefully fix tests failures
on most architectures (dont_throw_exceptions.diff).
-- Dmitry Shachnev <mitya57@debian.org> Wed, 26 Aug 2015 16:57:58 +0300
qbs (1.4.2+dfsg-1) unstable; urgency=medium
* New upstream release.
* Drop patches:
- fix_assembly_test.diff (applied upstream)
- revert_tests_speedup.diff (applied upstream)
- skip_test.diff (no longer needed)
* Refresh and rebase other patches.
* Update qbs.install to install some new files.
* Remove gitignore files in clean target.
* Minor debian/copyright updates.
* Update libqbscore1.symbols (only internal symbols changed).
-- Dmitry Shachnev <mitya57@debian.org> Mon, 24 Aug 2015 18:49:24 +0300
qbs (1.4.1+dfsg-8) unstable; urgency=medium
* Tell qmake where to install libraries and plugins, rather than moving
them after installing (LP: #1456593).
* Remove lib/ directory in clean target.
* Update symbols files for GCC 5, fixing a build failure.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 12 Aug 2015 20:55:48 +0300
qbs (1.4.1+dfsg-7) unstable; urgency=medium
* Skip homeDirectory test because buildds do not have home directory
(skip_test_homedirectory.diff).
-- Dmitry Shachnev <mitya57@debian.org> Sat, 18 Jul 2015 21:18:43 +0300
qbs (1.4.1+dfsg-6) unstable; urgency=medium
* Simplify testing commands: no need to pass --settings-dir because
we export XDG_CONFIG_HOME anyway.
* Define qbs_enable_unit_tests to enable some additional tests.
- Add some new symbols that appeared after enabling it.
* Move tests whitelist logic to auto.pro, so that non-API tests are
still run on non-whitelisted architectures.
* Talk to FreeBSD kernel manually instead of using kinfo_getproc,
which is not available on GNU/kFreeBSD.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 18 Jul 2015 19:38:23 +0300
qbs (1.4.1+dfsg-5) experimental; urgency=medium
* Fixup the previous kFreeBSD fix; add B-D on libutil-freebsd-dev.
* Use a whitelist of architectures where we run tests, until QBS
gets ported away from QtScript.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 13 Jul 2015 13:20:21 +0300
qbs (1.4.1+dfsg-4) experimental; urgency=medium
* Add missing includes for kinfo_getproc(3) on kFreeBSD
(bsd_includes.diff).
* Disable one more test (infinite-loop-js) failing because of QtScript
bugs to make the build pass on powerpc. Rename the patch from
disable_moc_hpp_included.diff to disable_tests_qtscript.diff.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 12 Jul 2015 17:08:33 +0300
qbs (1.4.1+dfsg-3) experimental; urgency=medium
* Backport upstream change to run testAssembly only on architectures
where it is supported (fix_assembly_test.diff).
* Replace revert_tests_speedup.diff with proposed upstream version
by Christian Kandeler.
* Disable moc-hpp-included test which currently fails because of a bug
in QtScript on some architectures (disable_moc_hpp_included.diff).
* Update some URLs to use *.qt.io instead of *.qt-project.org.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 11 Jul 2015 19:57:05 +0300
qbs (1.4.1+dfsg-2) experimental; urgency=medium
* Version all symbols from 1.4 snapshots as 1.4.0.
* Revert upstream commit that may have caused tests to fail.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 08 Jul 2015 14:00:20 +0300
qbs (1.4.1+dfsg-1) experimental; urgency=medium
* New upstream release.
* Update debian/watch for new tarball naming scheme.
* Refresh debian/patches/skip_test.diff.
* Install new tools/commandechomode.h header in qbs-dev.
* Update debian/libqbscore1.symbols for the new version.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 06 Jul 2015 17:33:05 +0300
qbs (1.4~git20150407-c224c8-1) experimental; urgency=medium
* New upstream snapshot.
* Fix a typo in previous changelog entry.
* Sort debian/qbs.install.
* Clean up patches and bump Last-Update timestamps.
* Update name of qbs_disable_rpath variable, following upstream
change (commit a8e6324de460745a).
* Update libqbscore1.symbols for the new snapshot.
* Properly version symbols introduced in previous upload.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 10 Apr 2015 09:33:46 +0300
qbs (1.4~7fd456-1) experimental; urgency=medium
[ Dmitry Shachnev ]
* Sort debian/qbs.install.
* Update debian/libqbscore1.symbols from buildds’ logs.
[ Adam Majer ]
* Release snapshot of 1.4.x branch as of 7fd456 commit
+ endianness patch applied upstream, removed from patches
* Add myself to uploaders
-- Adam Majer <adamm@zombino.com> Thu, 12 Mar 2015 18:55:22 -0500
qbs (1.3.4+dfsg-1) unstable; urgency=medium
* New upstream release.
* Drop increase_timeout.diff, applied upstream.
* Replace endianness.diff with upstream patch.
* Update copyright information.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 08 Mar 2015 20:54:30 +0300
qbs (1.3.3+dfsg-4) unstable; urgency=medium
* Drop no longer needed chmod calls from debian/rules, thanks Jake
Petroules for the suggestion.
* Use qbs-config instead of modifying configuration files manually,
thanks Jake Petroules for the suggestion.
* Mark some destructors symbols as optional to fix build with GCC 5
(closes: #778082).
-- Dmitry Shachnev <mitya57@debian.org> Wed, 18 Feb 2015 10:11:29 +0300
qbs (1.3.3+dfsg-3) unstable; urgency=medium
[ Pino Toscano ]
* Add ${misc:Pre-Depends} to Pre-Depends for qbs, libqbscore1, and
libqbsqtprofilesetup1.
[ Adam Majer ]
* Remove rpath from project include files used by 3rd party
software. On Debian, rpath should not be set when referencing
system installed libraries.
[ Dmitry Shachnev ]
* Add increase_timeout.diff from Dejan Latinovic to make tests pass
on mips (closes: #774974).
* Update debian/watch for new downloads server name.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 09 Jan 2015 19:46:15 +0300
qbs (1.3.3+dfsg-2) unstable; urgency=medium
* Re-add skip_test.diff, seems to be still needed.
* Update debian/copyright.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 28 Dec 2014 20:31:27 +0300
qbs (1.3.3+dfsg-1) unstable; urgency=medium
* New upstream bugfix release.
* Drop no_gnu_hash.diff, applied upstream.
* Drop skip_test.diff, no longer needed.
* Add support for all MIPS flavors (closes: #767459).
* Bump Breaks/Replaces on qtcreator, it is not fixed in Jessie.
* Update debian/libqbscore1.symbols.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 15 Dec 2014 17:44:26 +0300
qbs (1.3.2+dfsg-1) unstable; urgency=medium
* New upstream bugfix release.
* Add alpha, hppa and sparc64 support (closes: #764556).
-- Dmitry Shachnev <mitya57@debian.org> Mon, 20 Oct 2014 16:53:29 +0400
qbs (1.3.1+dfsg-4) unstable; urgency=medium
* Add upstream patch to not hardcode the linker hash style.
* Add arm64 support.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 15 Oct 2014 21:29:30 +0400
qbs (1.3.1+dfsg-3) unstable; urgency=medium
* Replace previous cleanup patch with a new patch that
disables the broken test.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 08 Oct 2014 19:29:24 +0400
qbs (1.3.1+dfsg-2) unstable; urgency=medium
* Enable disable_rpath and qbs_enable_project_file_updates
configuration flags, thanks Adam Majer for the patch.
* Add 4 new symbols introduced by the previous change.
* Add a patch to correctly detect endianness of all supported
by Debian architectures.
* Add a patch to clean up before running dependenciesProperty
test (should make it passing).
* Add lib/ to LD_LIBRARY_PATH when running tests (should fix
build failures on kfreebsd and hurd).
-- Dmitry Shachnev <mitya57@debian.org> Tue, 07 Oct 2014 10:41:59 +0400
qbs (1.3.1+dfsg-1) unstable; urgency=medium
* New upstream release.
+ Update .install files.
+ Update libqbscore1.symbols. There are missing symbols, but
we ignore that as the package has never been in testing.
* Break/Replace qtcreator (<< 3.2.1+dfsg-4~) (closes: #763365).
* Fix build failure when multiple compilers are installed.
* Properly clean up after tests.
* Update my e-mail address.
* debian/watch: Use new repacksuffix option.
* Update Vcs-Browser field to point to cgit interface.
* debian/copyright: Use correct exception syntax.
* Bump Standards-Version to 3.9.6, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 04 Oct 2014 10:21:08 +0400
qbs (1.2.2+dfsg-1) unstable; urgency=medium
* Initial release (closes: #745095).
-- Dmitry Shachnev <mitya57@gmail.com> Sat, 26 Jul 2014 23:28:44 +0400
|