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
|
ostree (2022.7-2+deb12u1) bookworm; urgency=medium
* d/control, d/gbp.conf: Configure for stable updates
* d/p/curl-Assert-that-curl_multi_assign-worked.patch,
d/p/curl-Make-socket-callback-during-cleanup-into-no-op.patch:
Add patches from upstream 2024.8 to avoid libflatpak crash with an
assertion failure when using curl 8.10.x.
This was originally reported in testing/unstable, but can affect
bookworm if using libcurl3-gnutls from bookworm-backports.
(Closes: #1082121)
-- Simon McVittie <smcv@debian.org> Tue, 01 Oct 2024 12:25:32 +0100
ostree (2022.7-2) unstable; urgency=medium
* Skip test-sysroot.js on s390x (Mitigates: #1025532)
-- Simon McVittie <smcv@debian.org> Tue, 06 Dec 2022 11:11:05 +0000
ostree (2022.7-1) unstable; urgency=medium
* New upstream release
* d/copyright: Update
* d/libostree-1-1.symbols: Update
* Update Lintian overrides
* d/p/configure-use-pkg-config-with-newer-gpgme-and-gpg-error.patch:
Add patch from Luca Bruno to fix FTBFS with current gpgme Debian packages
* d/rules: Update for removal of libreaddir-rand.so LD_PRELOAD module
-- Simon McVittie <smcv@debian.org> Fri, 25 Nov 2022 10:54:28 +0000
ostree (2022.6-1) unstable; urgency=medium
* New upstream release
* Build-depend on libext2fs-dev instead of transitional e2fslibs-dev
* Don't install s390x-se-luks-gencpio script.
It was reimplemented in C as part of ostree(1).
* Install another early-boot service in ostree-boot
-- Simon McVittie <smcv@debian.org> Sat, 15 Oct 2022 10:48:34 +0100
ostree (2022.5-4) unstable; urgency=medium
* Re-enable gjs-based tests on armel.
Adrian Bunk and Mike Hommey were able to fix mozjs102 on armel, so we
can continue to have gjs on that architecture for Debian 12.
* d/watch: Adapt to Github website changes
-- Simon McVittie <smcv@debian.org> Mon, 03 Oct 2022 10:19:36 +0100
ostree (2022.5-3) unstable; urgency=medium
* d/control, d/rules: Disable gjs-based tests on armel.
It's looking as though mozjs102, and therefore the next gjs release,
will not support armel due to its lack of atomic instructions.
* d/control, d/rules: Re-enable gjs tests on s390x
-- Simon McVittie <smcv@debian.org> Wed, 31 Aug 2022 09:47:41 +0100
ostree (2022.5-2) unstable; urgency=medium
* Build with libcurl http backend instead of libsoup2.4.
This avoids library conflicts during the transition to GNOME 43, in
which core apps and libraries have switched to libsoup3, which conflicts
with libsoup2.4.
We still build-depend on libsoup2.4, because it's used in the test suite
and installed-tests. (Closes: #1016589)
-- Simon McVittie <smcv@debian.org> Fri, 05 Aug 2022 10:00:02 +0100
ostree (2022.5-1) unstable; urgency=medium
* New upstream release
* debian/libostree-1-1.symbols: Update
* d/copyright: Update
* Drop patches that were applied upstream
* Update Lintian overrides
* Standards-Version: 4.6.1 (no changes required)
-- Simon McVittie <smcv@debian.org> Tue, 26 Jul 2022 19:00:58 +0100
ostree (2022.4-2) unstable; urgency=medium
[ Dan Nicholson ]
* Backport patch to fix 2022.4 symbol version parent
-- Simon McVittie <smcv@debian.org> Sun, 19 Jun 2022 20:58:51 +0100
ostree (2022.4-1) unstable; urgency=medium
[ Dan Nicholson ]
* New upstream release
- Drop patches that were applied upstream
* d/control: Bump libglib2.0-dev dependency to 2.66.0
* Add new ostree-boot-complete.service unit to ostree-boot
[ Simon McVittie ]
* d/copyright: Update
* New upstream release
* d/libostree-1-1.symbols: Update
* d/p/test-basic-c-Don-t-assert-that-extended-attributes-are-av.patch:
Add patch to skip a test-case if /var/tmp doesn't support xattrs
-- Simon McVittie <smcv@debian.org> Fri, 17 Jun 2022 16:35:46 +0100
ostree (2022.2-3) unstable; urgency=medium
* d/rules: Correct argument used to disable gjs on s390x
-- Simon McVittie <smcv@debian.org> Tue, 08 Mar 2022 16:16:43 +0000
ostree (2022.2-2) unstable; urgency=medium
* d/control: Disable JavaScript-based tests on s390x.
Mitigates: ostreedev/ostree#2527
* d/rules: Explicitly disable JS-based tests on architectures where
they're unreliable, or where an up-to-date gjs is unavailable.
Otherwise we'd build and install these tests if gjs (maybe an
old version) happens to be installed, despite it not being in
Build-Depends.
-- Simon McVittie <smcv@debian.org> Tue, 08 Mar 2022 09:55:53 +0000
ostree (2022.2-1) unstable; urgency=medium
* New upstream release
- Updated libglnx submodule fixes an incompatibility with eCryptFS
(Closes: #1004467)
* Install new script /usr/libexec/libostree/s390x-se-luks-gencpio
into ostree-boot
* d/p/s390x-se-luks-gencpio-Fix-shebang-syntax.patch,
d/p/s390x-se-luks-gencpio-Use-interoperable-path-for-bash.patch:
Add patches to retain compatibility with non-/usr-merged systems
* d/libostree-1-1.symbols: Update
* d/p/test-prune-Read-to-the-end-of-cut-1-output.patch:
Add patch to fix an intermittent test failure involving SIGPIPE
* Revert Lintian overrides to latest released version of Lintian
-- Simon McVittie <smcv@debian.org> Mon, 07 Mar 2022 21:12:45 +0000
ostree (2022.1-3) unstable; urgency=medium
* Use debhelper 11 features instead of dh-exec
* Move README.md from gir1.2-ostree-1.0 to libostree-doc
* Release to unstable
-- Simon McVittie <smcv@debian.org> Mon, 24 Jan 2022 10:43:09 +0000
ostree (2022.1-2) experimental; urgency=medium
* ostree Breaks flatpak-builder (<< 1.2.1-2~).
Previous versions relied on being able to use FUSE 2 options that are
no longer supported by FUSE 3, so prepare a lockstep transition.
-- Simon McVittie <smcv@debian.org> Mon, 10 Jan 2022 12:42:08 +0000
ostree (2022.1-1) experimental; urgency=medium
* New upstream release
* Build using FUSE 3
* Update syntax of Lintian overrides for newer Lintian
-- Simon McVittie <smcv@debian.org> Fri, 07 Jan 2022 10:44:49 +0000
ostree (2021.6-1) unstable; urgency=medium
* New upstream release
- Drop patch that was applied upstream
-- Simon McVittie <smcv@debian.org> Mon, 13 Dec 2021 11:39:48 +0000
ostree (2021.5-1) unstable; urgency=medium
* New upstream release
- Update symbols file
* d/p/test-commit-sign.sh-Skip-a-unit-test-when-running-as-an-i.patch:
Mark as applied upstream
-- Simon McVittie <smcv@debian.org> Sun, 10 Oct 2021 17:51:27 +0100
ostree (2021.4-1) unstable; urgency=medium
* New upstream release
- Update symbols file
- d/copyright: Update
- Drop patch that was applied upstream
* Standards-Version: 4.6.0 (no further changes)
* d/control: Canonicalize field name case Multi-arch => Multi-Arch
* Bump debhelper compat level from 12 to 13
- debian/rules: Drop --fail-missing argument to dh_missing, which is
now the default.
* Remove Lintian override for #947258, fixed in lintian 2.105.0
* d/p/test-commit-sign.sh-Skip-a-unit-test-when-running-as-an-i.patch:
Add patch to fix installed-tests
-- Simon McVittie <smcv@debian.org> Tue, 05 Oct 2021 23:53:20 +0100
ostree (2021.3-2) unstable; urgency=medium
* d/gbp.conf: Switch branch back to debian/master
* d/p/tests-Unset-SOURCE_DATE_EPOCH.patch:
Apply patch from upstream to fix tests with SOURCE_DATE_EPOCH
- Revert "d/test.sh, d/tests: Unset SOURCE_DATE_EPOCH",
no longer needed
* d/rules: Normalize permissions of installed-tests
* Adjust Lintian overrides.
Recent debhelper installs units into /usr/lib/systemd, so adjust our
override to match either way.
-- Simon McVittie <smcv@debian.org> Mon, 23 Aug 2021 19:30:23 +0100
ostree (2021.3-1) experimental; urgency=medium
* New upstream release
- Increase build-dependency to GLib 2.44
- d/libostree-1-1.symbols: Update
- Drop patches that were applied upstream
* Re-enable gjs tests on architectures where it is available
* d/libostree-1-1.symbols: Remove a duplicate symbol
* d/test.sh, d/tests: Unset SOURCE_DATE_EPOCH.
Otherwise, some tests will think we're downgrading, and fail.
-- Simon McVittie <smcv@debian.org> Sun, 25 Jul 2021 19:18:51 +0100
ostree (2021.2-2) experimental; urgency=medium
* d/p/libtest-On-failure-make-it-clearer-what-has-happened.patch:
Mark patch as applied upstream
* d/p/tests-Test-without-a-cache-directory-by-default.patch:
Add patch from upstream to fix intermittent FTBFS on some filesystems
-- Simon McVittie <smcv@debian.org> Mon, 26 Apr 2021 10:15:06 +0100
ostree (2021.2-1) experimental; urgency=medium
* New upstream release
- Update symbols file
- d/copyright: Update
* d/test.sh: Line-buffer stdout.
Otherwise, lines from stdout appear with an arbitrary delay, making it
hard to tell what the order of events was.
* d/p/libtest-On-failure-make-it-clearer-what-has-happened.patch:
Add proposed patch to make test failures easier to debug
-- Simon McVittie <smcv@debian.org> Sun, 18 Apr 2021 12:20:49 +0100
ostree (2021.1-1) experimental; urgency=medium
* d/gbp.conf: Branch for experimental
* New upstream release
- Update symbols file
- Drop a patch that was applied upstream
* d/rules: Declare that we have grub >= 2.02.
Debian's grub packaging runs grub-install in postinst, so we should
be able to rely on grub actually getting updated.
* Standards-Version: 4.5.1 (no changes required)
-- Simon McVittie <smcv@debian.org> Wed, 14 Apr 2021 13:53:50 +0100
ostree (2020.8-2) unstable; urgency=medium
* d/p/test-pull-summary-sigs-Set-timestamps-to-serve-expected-f.patch:
Add proposed patch to fix test failures when run on tmpfs
(Closes: #975418)
-- Simon McVittie <smcv@debian.org> Sun, 22 Nov 2020 13:24:35 +0000
ostree (2020.8-1) unstable; urgency=medium
* New upstream release
* Update symbols file
-- Simon McVittie <smcv@debian.org> Thu, 19 Nov 2020 14:47:09 +0000
ostree (2020.7-1) unstable; urgency=medium
* New upstream release
* Update symbols file
* Remove an unused lintian override
* Override Lintian warning for gtk-doc outside /usr/share/doc
(see #970275)
-- Simon McVittie <smcv@debian.org> Wed, 14 Oct 2020 15:54:19 +0100
ostree (2020.6-1) unstable; urgency=medium
* New upstream release
* ostree-boot-examples: Update for ostree-boot being in Debian 10
* Update documentation: separate /boot should no longer be required
-- Simon McVittie <smcv@debian.org> Tue, 08 Sep 2020 11:00:40 +0100
ostree (2020.5-1) unstable; urgency=medium
* New upstream release
* ostree-tests: Depend on gjs on s390x again.
mozjs and gjs are believed to work fine on s390x now.
-- Simon McVittie <smcv@debian.org> Fri, 21 Aug 2020 08:41:27 +0100
ostree (2020.4-2) unstable; urgency=medium
* Depend on bsdextrautils, for hexdump (used during testing)
- Add to Build-Depends
- Add to ostree-tests Depends
- Allow bsdmainutils (<< 12) as an alternative, for backports
-- Simon McVittie <smcv@debian.org> Mon, 10 Aug 2020 12:33:14 +0100
ostree (2020.4-1) unstable; urgency=medium
* New upstream release
* d/copyright: Update
* d/libostree-1-1.symbols: Update
* Update Lintian overrides for some minor false-positives
-- Simon McVittie <smcv@debian.org> Mon, 27 Jul 2020 23:43:11 +0100
ostree (2020.3-1) unstable; urgency=medium
* New upstream release
-- Simon McVittie <smcv@debian.org> Wed, 25 Mar 2020 12:29:32 +0000
ostree (2020.2-1) unstable; urgency=medium
* New upstream release
- d/libostree-1-1.symbols: Update
* Set upstream metadata fields: Repository.
* Remove obsolete field Name from debian/upstream/metadata (already
present in machine-readable debian/copyright).
* Standards-Version: 4.5.0 (no changes required)
-- Simon McVittie <smcv@debian.org> Wed, 26 Feb 2020 21:00:11 +0000
ostree (2019.6-1) unstable; urgency=medium
* New upstream release
- d/libostree-1-1.symbols: Update
* d/tests/build: Use correct compiler for proposed autopkgtest
cross-architecture testing support
* d/tests: Make tests shellcheck-clean
-- Simon McVittie <smcv@debian.org> Sat, 14 Dec 2019 11:30:10 +0000
ostree (2019.5-1) unstable; urgency=medium
* New upstream release
- d/copyright: Update
-- Simon McVittie <smcv@debian.org> Sat, 02 Nov 2019 10:32:49 +0000
ostree (2019.4-1) unstable; urgency=medium
* New upstream release
- d/libostree-1-1.symbols: Update
- d/copyright: Update
* d/control: Set Vcs-Git to point to default branch again
* Standards-Version: 4.4.1 (no changes required)
* d/p/debian/Revert-lib-Kill-GPG-agent-when-cleaning-up-tmp-homedirs.patch:
Drop patch, fixed differently upstream in 2019.4
-- Simon McVittie <smcv@debian.org> Tue, 01 Oct 2019 09:30:23 +0100
ostree (2019.3-3) unstable; urgency=medium
* Upload to unstable
- d/gbp.conf: Reset packaging branch to debian/master
-- Simon McVittie <smcv@debian.org> Thu, 19 Sep 2019 17:49:53 +0100
ostree (2019.3-2) experimental; urgency=medium
[ Felix Krull ]
* Enable ostree-boot package (Closes: #824650)
* ostree-boot: Weaken dracut Depends to Recommends.
The systemd parts of the package could also be used for integration
with e.g. initramfs-tools.
[ Simon McVittie ]
* Switch packaging branch to debian/experimental
* d/ostree-boot.postinst: Trigger an update of the initramfs.
Otherwise the dracut initramfs won't be rebuilt to include ostree-boot.
* Add instructions for testing ostree-boot.
Thanks to Felix Krull for providing the original version of these.
* d/copyright: Update
* d/ostree-boot.lintian-overrides:
Do not warn about ostree-remount.service being in local-fs.target.
This part of the boot integration is genuinely part of an earlier
phase of boot than sysinit.target.
-- Simon McVittie <smcv@debian.org> Sat, 31 Aug 2019 19:06:38 +0100
ostree (2019.3-1) unstable; urgency=medium
* New upstream release
- Refresh patch series
* d/p/debian/Revert-lib-Kill-GPG-agent-when-cleaning-up-tmp-homedirs.patch:
Skip `gpg-connect-agent` when cleaning up temporary GPG home
directories. It appears this is sometimes done when it wasn't
needed, causing gpg-connect-agent to wait for an agent to start so
that it can tell it to stop, which results in a lot of noise on stderr
when running `flatpak update`. Debian 10 has GPG 2.2, and according to
the commit message of the commit I'm reverting here, this cleanup
should be unnecessary with GPG >= 2.2.
-- Simon McVittie <smcv@debian.org> Fri, 23 Aug 2019 11:28:27 +0100
ostree (2019.2-2) unstable; urgency=medium
* Upload to unstable
* d/gbp.conf: Return to debian/master branch
* d/salsa-ci.yml: Request standard CI on salsa.debian.org
- Disable build-time tests with DEB_BUILD_OPTIONS=nocheck for now.
They don't currently work in the salsa-ci infrastructure, but I
can't reproduce and debug the failure in a local Docker container.
- Similarly, disable the autopkgtest for now.
* Standards-Version: 4.4.0 (no changes required)
* Use debhelper-compat 12
- Override dh_installsystemd instead of dh_systemd_start
- Stop overriding libexecdir
-- Simon McVittie <smcv@debian.org> Tue, 09 Jul 2019 20:13:57 +0100
ostree (2019.2-1) experimental; urgency=medium
* New upstream release
* d/upstream/metadata: Add DEP-12 metadata
* d/copyright: Update
* d/libostree-1-1.symbols: Update
* Use debian/experimental branch for new upstream release during freeze
-- Simon McVittie <smcv@debian.org> Mon, 29 Apr 2019 09:11:58 +0100
ostree (2019.1-1) unstable; urgency=medium
* New upstream release
* d/copyright: Update
* Standards-Version: 4.3.0 (no changes required)
-- Simon McVittie <smcv@debian.org> Mon, 14 Jan 2019 08:23:44 +0000
ostree (2018.9.1-1) unstable; urgency=medium
* d/tests/build: Mark as superficial (see #904979)
* New upstream release
- d/libostree-1-1.symbols: Update
* Skip installation of new ostree-finalize-staged.path unit, which
should be in ostree-boot when added (see #824650)
* Override lintian warning for /usr/share/ostree/trusted.gpg.d/README-gpg
not being in /usr/share/doc: it documents the directory in which it is
located
-- Simon McVittie <smcv@debian.org> Tue, 30 Oct 2018 16:04:19 +0000
ostree (2018.8-2) unstable; urgency=medium
[ Simon McVittie ]
* ostree-tests: Remove gjs dependency on s390x.
mozjs60 doesn't work on s390x, so gjs is in danger of being removed
from that architecture (see #909536). The test that uses JS is
automatically skipped if the interpreter is missing.
(Closes: #910286)
* Standards-Version: 4.2.1 (no changes required)
[ Ondřej Nový ]
* d/tests: Use AUTOPKGTEST_TMP instead of ADTTMP
* d/changelog: Remove trailing whitespaces
-- Simon McVittie <smcv@debian.org> Thu, 04 Oct 2018 14:54:29 +0100
ostree (2018.8-1) unstable; urgency=medium
* New upstream release
- d/p/debian/Skip-test-pull-repeated-during-CI.patch:
Drop, applied upstream
- d/copyright: Update
* Standards-Version: 4.2.0 (no changes required)
-- Simon McVittie <smcv@debian.org> Thu, 23 Aug 2018 13:19:00 +0100
ostree (2018.7-2) unstable; urgency=medium
* d/p/debian/Skip-test-pull-repeated-during-CI.patch:
Skip a test that is non-deterministic and can spuriously fail,
which is not suitable for build-time testing or gating migration in
autopkgtest.
-- Simon McVittie <smcv@debian.org> Mon, 30 Jul 2018 16:52:35 +0100
ostree (2018.7-1) unstable; urgency=medium
* New upstream release
- d/libostree-1-1.symbols: Update
- Drop all patches, applied upstream
- d/copyright: Remove details of Rust files not included in this
release
* d/p/lib-pull-Fix-minor-memleak-in-error-path.patch:
Apply a memory leak fix from upstream
* Use upstream default ${libexecdir} now that Debian Policy allows
/usr/libexec (via FHS 3.0)
* Standards-Version: 4.1.5 (no changes required)
-- Simon McVittie <smcv@debian.org> Wed, 25 Jul 2018 23:46:29 +0100
ostree (2018.6-3) unstable; urgency=medium
* d/p/avahi-Fail-immediately-if-we-can-t-talk-to-D-Bus-or-Avahi.patch:
Mark as applied upstream
* d/p/OstreeRepoFinderConfig-Fix-guint-gsize-confusion.patch:
Add patch to fix incorrect type aliasing that caused assertion
failures on 64-bit big-endian platforms (Closes: #902209)
-- Simon McVittie <smcv@debian.org> Sun, 24 Jun 2018 13:04:09 +0100
ostree (2018.6-2) unstable; urgency=medium
* d/p/lib-repo-Fix-32-bit-format-string-error.patch:
Apply patch from upstream to fix FTBFS on 32-bit architectures
(Closes: #902194)
-- Simon McVittie <smcv@debian.org> Sat, 23 Jun 2018 12:37:27 +0100
ostree (2018.6-1) unstable; urgency=medium
* New upstream release with support for peer-to-peer software
collections, required by Flatpak's peer-to-peer app sharing feature
- d/copyright: Update
- d/libostree-1-1.symbols: Update
- Build-depend on Avahi libraries
* d/rules: Explicitly enable various desired libraries
* d/p/avahi-Fail-immediately-if-we-can-t-talk-to-D-Bus-or-Avahi.patch:
Add patch to avoid Flatpak test failures with this ostree if Avahi
(or dbus-daemon --system) is not available on the build/test system
-- Simon McVittie <smcv@debian.org> Fri, 22 Jun 2018 21:05:29 +0100
ostree (2018.5-2) unstable; urgency=medium
* d/tests/gnome-desktop-testing: Skip libostree/test-concurrency.py.test
during autopkgtest. It does not appear to be completely reliable.
(See #901170)
-- Simon McVittie <smcv@debian.org> Sun, 10 Jun 2018 13:57:19 +0100
ostree (2018.5-1) unstable; urgency=medium
* New upstream release
- d/copyright: Upstream clarified that only doc/ is CC-BY-SA-3.0 or
GFDL-1.3-or-later, and doc/ isn't included in dist tarballs, so
remove those licenses
- d/libostree-1-1.symbols: Update (and sort)
- d/p/Don-t-write-to-parent-repo.patch: Drop, applied upstream
- d/ostree-boot.install: Add new systemd service
lib/systemd/system/ostree-finalize-staged.service
- d/rules: Remove lib/systemd/system/ostree-finalize-staged.service
until we build ostree-boot
* ostree-tests: Add Lintian override for library-not-linked-against-libc.
libreaddir-rand.so genuinely doesn't use any libc ABIs directly, only
via GLib.
* Standards-Version: 4.1.4 (no changes required)
-- Simon McVittie <smcv@debian.org> Tue, 15 May 2018 11:30:03 +0100
ostree (2018.4-2) unstable; urgency=medium
* d/p/Don-t-write-to-parent-repo.patch:
Add patch from upstream to prevent trying to write to a parent
repository, fixing installation of Flatpak apps and runtimes into
the system-wide repository (Closes: #895883)
-- Simon McVittie <smcv@debian.org> Tue, 17 Apr 2018 09:06:42 +0100
ostree (2018.4-1) unstable; urgency=medium
* New upstream release
* Update symbols file
* Drop all patches, including one that was previously considered to
be Debian-specific (moving to Python 3 for tests)
* d/copyright: Update
-- Simon McVittie <smcv@debian.org> Sat, 24 Mar 2018 19:20:08 +0000
ostree (2018.2-1) unstable; urgency=medium
* New upstream release
- d/copyright: Update
- d/libostree-1-1.symbols: Update
* Mark patches as forwarded
* Add gnupg to build-time test dependencies (and ostree-tests
dependencies) as it is no longer transitively build-essential
-- Simon McVittie <smcv@debian.org> Mon, 19 Feb 2018 09:01:47 +0000
ostree (2018.1-1) unstable; urgency=medium
* New upstream release
- d/copyright: Update
- d/patches: Remove, applied upstream
- d/libostree-1-1.symbols: Update
* Move Vcs-* to salsa.debian.org
d/p/test-concurrency-Explicitly-use-floor-division.patch,
d/p/tests-bootloader-entries-crosscheck-Use-Python-3-friendly.patch:
Make tests compatible with Python 3
* d/control, d/p/debian/Use-Python-3-for-tests.patch:
Switch build-time tests and autopkgtests to Python 3
-- Simon McVittie <smcv@debian.org> Wed, 17 Jan 2018 15:34:46 +0000
ostree (2017.15-2) unstable; urgency=medium
* d/p/2018.1/tests-Don-t-assume-uid-primary-gid.patch: Mark as applied
upstream in 2018.1
* d/p/2018.1/tests-Assert-that-byte-order-[etc.].patch:
Add patch to fix test failures on big-endian machines
(Closes: #886218)
* Temporarily disable gjs tests. gjs is not currently installable on
buildds due to the glibc transition and a long dependency chain
involving systemd-shim being preferred over systemd-sysv, which
ends with libnih1 Depends: libc6 (<< 2.26).
-- Simon McVittie <smcv@debian.org> Thu, 04 Jan 2018 19:26:16 +0000
ostree (2017.15-1) unstable; urgency=medium
* New upstream release
- d/libostree-1-1.symbols: Update
* d/rules: Stop forcing C.UTF-8 locale: the tests now do this internally
* Standards-Version: 4.1.3 (no changes required)
* d/p/tests-Don-t-assume-uid-primary-gid.patch: Mark as forwarded
-- Simon McVittie <smcv@debian.org> Tue, 02 Jan 2018 14:13:08 +0000
ostree (2017.14-1) unstable; urgency=medium
* New upstream release
- d/libostree-1-1.symbols: Update
* Standards-Version: 4.1.2 (no changes required)
* d/p/tests-Don-t-assume-uid-primary-gid.patch:
Add patch to fix automated test failure when uid != primary gid
-- Simon McVittie <smcv@debian.org> Sun, 10 Dec 2017 19:42:36 +0000
ostree (2017.13-1) unstable; urgency=medium
* New upstream release
- d/patches: Drop all patches
- d/copyright: Update
- Update symbols file
* d/control: Require dh-exec 0.23~, for build-profile support.
Strictly speaking we might only need 0.15, but I'm not going to
test versions older than the jessie backport.
* Set Rules-Requires-Root to no
* Standards-Version: 4.1.1 (no changes required)
-- Simon McVittie <smcv@debian.org> Sat, 04 Nov 2017 14:05:06 +0000
ostree (2017.12-2) unstable; urgency=medium
* Disable gtk-doc if we are not going to build libostree-doc,
in particular for architecture-specific builds. Note that it remains
in Build-Depends (not Build-Depends-Indep) because it is also needed
for gtkdocize during dh_autoreconf.
- In particular this might fix FTBFS on sparc64, where highlight(1)
fails.
* d/p/2017.13/lib-core-Init-struct-stat-buffer.patch,
d/p/2017.13/lib-sysroot-Fix-pointer-going-out-of-scope-in-unlock-code.patch,
d/p/2017.13/lib-deploy-Ignore-FIFREEZE-FITHAW-errors-when-already-in-.patch,
d/p/2017.13/lib-deploy-Use-_exit-for-FIFREEZE-watchdog.patch,
d/p/2017.13/lib-deltas-Check-cancellable-during-processing.patch,
d/p/2017.13/lib-utils-Check-for-invalid-UTF-8-in-filenames.patch,
d/p/2017.13/Cope-with-xattr-syscalls-raising-EOPNOTSUPP.patch,
d/p/2017.13/lib-sysroot-Fix-error-handling-when-mounting-overlayfs-fa.patch,
d/p/2017.13/lib-repo-Properly-handle-NULL-homedir-when-signing-commit.patch,
d/p/2017.13/fdio-allow-NULL-for-fstatat_allow_noent-stbuf.patch,
d/p/2017.13/lib-repo-Fix-loading-commitstate-with-parent-repos.patch:
Add various bugfix patches from upstream
- In particular, dealing with the possibility that EOPNOTSUPP != ENOTSUP
should fix test failures on hppa.
* d/p/2017.13/tests-Add-test-pull-bareuseronly.patch:
Add more test coverage from upstream
- d/rules: Make the new test executable
* d/test.sh: Clean up ostree-trivial-httpd processes
* d/test.sh: Don't repeat build-time tests if they fail once. They seem
to be somewhat reliable now.
-- Simon McVittie <smcv@debian.org> Fri, 27 Oct 2017 00:19:45 +0100
ostree (2017.12-1) unstable; urgency=medium
* New upstream release
- Drop all current patches, applied upstream
- Update symbols file
* Add some post-release bug fix patches
* Simplify autopkgtest now that test-local-pull seems to be stable
* Unexport HTTP proxy variables in autopkgtest to work around lack of
support for no_proxy, which breaks the tests on Ubuntu autopkgtest.
We don't actually need Internet access, so this is OK.
* debian/test.sh: Unexport HTTP proxy variables for build-time tests
too
* Make build-time test failures fatal if they fail at least twice
out of 5 tries (previously they had to fail at least 3 times)
* Add patch to reinstate test-libglnx-shutil.c, which was missed out
of the upstream tarball
-- Simon McVittie <smcv@debian.org> Tue, 03 Oct 2017 22:47:48 +0100
ostree (2017.11-2) unstable; urgency=medium
* Replace patch with the version applied upstream in 2017.12
* Standards-Version: 4.1.0 (no changes)
* Add a patch to fix FTBFS in non-English locales
* Add a patch to fix FTBFS if building as root with umask != 022,
which for some reason debomatic does (Closes: #876138)
* Add a patch from upstream to fix undefined behaviour with
O_RDONLY|O_CREAT in rofiles-fuse
-- Simon McVittie <smcv@debian.org> Fri, 22 Sep 2017 15:48:24 +0100
ostree (2017.11-1) unstable; urgency=medium
* New upstream release
- Drop all current patches, applied upstream
- Update symbols file
* Adjust Description and Upstream-Name to emphasize libostree
* Classify new ostree-tmpfiles.conf as part of ostree-boot, and so
don't install it yet
* Stop copying an old ostree-trivial-httpd.xml from debian/dist/
into source tree. Upstream distributes it again, and has since
2017.8.
* Add a patch to fix JavaScript tests with gjs 1.50.0, which is
more strict about 'let'
* Stop providing "ostree trivial-httpd" CLI, following upstream
default behaviour. flatpak used to use it in its tests, but
the version in stable no longer does.
-- Simon McVittie <smcv@debian.org> Fri, 15 Sep 2017 16:58:15 +0100
ostree (2017.10-1) unstable; urgency=medium
* New upstream release
- Update symbols file
- Install new bash completions
* Use dh_missing --fail-missing instead of dh_install --fail-missing
* Only run tests when building architecture-dependent packages.
The tests aren't so interesting that we want to run them again
when splitting -arch/-indep builds.
* Add patches to make the tests pass again when /var/tmp is on tmpfs,
which does not support user xattrs
* Add patch to remove useless #! from bash completions
* Make build-time test failures fatal again, but only if they are
reproducible (at least 3 times out of 5) for now
-- Simon McVittie <smcv@debian.org> Tue, 29 Aug 2017 18:18:49 +0100
ostree (2017.9-1) unstable; urgency=medium
* New upstream release
- Drop backported patch
- Update symbols file
* debian/rules: Adjust a comment to avoid Lintian thinking this is a
dh_make template
-- Simon McVittie <smcv@debian.org> Fri, 28 Jul 2017 14:43:30 +0100
ostree (2017.8-1) unstable; urgency=medium
* New upstream release
- Update symbols file
- Remove patches that are no longer needed
- Add patch from upstream PR #1016 to fix a regression
* Add a Breaks on flatpak (<< 0.8.7-2~), which rely on libostree to
download the summary and its signature when mirroring.
libostree >= 2017.7 no longer does this. On affected flatpak versions,
this breaks installation of new apps and runtimes system-wide.
* Add Build-Depends-Indep: libglib2.0-doc so gtk-doc can set up
cross-references
-- Simon McVittie <smcv@debian.org> Wed, 19 Jul 2017 22:18:20 +0100
ostree (2017.7-1) unstable; urgency=medium
* New upstream release
- Update symbols file
- Add post-release patches so test-symbols.sh passes again
- debian/dist/: Add ostree-trivial-httpd.xml, which was incorrectly
excluded from the upstream release
* Standards-Version: 4.0.0
- Use https URL for copyright-format
* Implement <nodoc> build profile
* Upload to unstable
-- Simon McVittie <smcv@debian.org> Wed, 21 Jun 2017 13:06:54 +0100
ostree (2017.6-1) experimental; urgency=medium
* New upstream release
- Update debian/copyright
- Update disabled ostree-boot packaging for new systemd generator
- Add new ABI to symbols file
* Skip build-time tests when nocheck is in DEB_BUILD_OPTIONS
(Closes: #862803). Thanks to Krzesimir Nowak
-- Simon McVittie <smcv@debian.org> Thu, 25 May 2017 10:01:12 +0100
ostree (2017.5-1) experimental; urgency=high
* New upstream release
- This release fixes a regression in 2017.4 that caused symlinks
in Flatpak apps and runtimes to be checked out as regular files.
Any apps or runtimes that were installed or updated with 2017.4
will need to be removed and reinstalled.
-- Simon McVittie <smcv@debian.org> Wed, 19 Apr 2017 14:18:16 +0100
ostree (2017.4-1) experimental; urgency=medium
* New upstream release
- d/rules: Explicitly enable trivial-httpd: the tests still need it
- Update symbols file for new ABI
-- Simon McVittie <smcv@debian.org> Mon, 17 Apr 2017 17:19:58 +0100
ostree (2017.3-2) experimental; urgency=medium
* d/ostree.maintscript: Clean up obsolete conffiles from before we
started removing what will eventually become ostree-boot
(see #824650)
* libostree-dev: Add missing dependency on libostree-1-1
(Closes: #860047)
-- Simon McVittie <smcv@debian.org> Mon, 10 Apr 2017 18:52:26 +0100
ostree (2017.3-1) experimental; urgency=medium
* d/watch, d/copyright: upstream project is now named libostree
* New upstream release
- d/copyright: update
- symbols file: update
- tests, ostree-tests.install: update for new location of tests
- d/control: ostree-tests now needs python-yaml
- build-depend on python, python-yaml for tests
-- Simon McVittie <smcv@debian.org> Thu, 16 Mar 2017 06:58:46 +0000
ostree (2017.1-1) experimental; urgency=medium
* Branch to experimental to avoid interfering with the Debian 9 freeze
* Remove an unintended line in the previous changelog
* New upstream release
- trivial-httpd is now a separate binary. Move it to ostree-tests,
so that it doesn't continue to pull in libsoup if the ostree
downloader is ported to libcurl.
- d/copyright: update
- d/patches: drop all patches, applied upstream
* Explicitly depend on autoconf, automake, libtool. This avoids
builds for experimental non-deterministically pulling in an older
version of automake, in my case automake1.11 which is far too old.
-- Simon McVittie <smcv@debian.org> Fri, 27 Jan 2017 10:23:47 +0000
ostree (2016.15-3) unstable; urgency=medium
* debian/control: Don't run gjs tests on sparc64. gjs doesn't seem
to work there at all (#827815)
- d/ostree-tests.lintian-overrides: silence
missing-dep-for-interpreter error on sparc64, where we install
the script but do not attempt to run it
* debian/tests/gnome-desktop-testing: Skip test-local-pull.sh.test
which suffers from a known bug (#842606)
- debian/tests/test-local-pull: Run the unreliable test separately,
repeated 3 times to assess how often it fails
* d/p/Sourced-test-snippets-remove-shebang-and-make-non-executa.patch,
d/p/Make-corrupt-repo-ref.js-executable.patch:
Fix permissions and #! lines for some tests in the upstream build
system
* d/rules: remove workarounds for script permissions.
The upstream build system now uses the intended permissions throughout.
- Retain explicit chmod for *.js, which dh_fixperms assumes should
not be executable.
* d/p/Fix-TAP-syntax-in-test-basic-user.sh-and-run-it.patch:
Run an additional test, which was previously installed but not run
-- Simon McVittie <smcv@debian.org> Thu, 19 Jan 2017 13:23:32 +0000
ostree (2016.15-2) unstable; urgency=medium
* Make all test failures non-fatal at build time, so that intermittent
test failures do not interfere with possible security updates during
Debian stretch-as-stable.
-- Simon McVittie <smcv@debian.org> Tue, 20 Dec 2016 11:28:41 +0000
ostree (2016.15-1) unstable; urgency=medium
* New upstream release
- d/patches: drop all patches, applied upstream
-- Simon McVittie <smcv@debian.org> Tue, 13 Dec 2016 13:13:44 +0000
ostree (2016.14-2) unstable; urgency=medium
* Make build-time test failures non-fatal, as long as at least
3 out of 5 attempts succeed.
There are several upstream bugs that cause intermittent test
failures, and can intermittently be reproduced in real use.
However, these are not regressions, so we should not FTBFS just
because we happen to have been unlucky during build.
* d/p/Terminate-individual-tests-after-10-minutes.patch:
replace d/p/debian/Terminate-individual-tests-after-half-an-hour.patch
with the version that I sent upstream, which uses SIGABRT and
terminates the tests sooner
* d/p/*.patch: import more memory leak fixes from upstream
-- Simon McVittie <smcv@debian.org> Thu, 01 Dec 2016 12:38:54 +0000
ostree (2016.14-1) unstable; urgency=medium
* Switch the build-dependency on libgpgme11-dev (which no longer exists
as a real package) to libgpgme-dev
* Drop the version from versioned build-dependencies where the required
version was already present in oldstable
* New upstream release
- update symbols file for new ABI
* Import various post-release fixes from upstream
-- Simon McVittie <smcv@debian.org> Tue, 29 Nov 2016 11:05:44 +0000
ostree (2016.13-1) unstable; urgency=medium
* New upstream release
- d/p/dist/Retrieve-some-missing-test-files-from-upstream-git.patch:
remove, 2016.13 was released with a fixed "make dist"
- d/p/Filter-bootloader-supplied-kernel-cmdline-options.patch:
remove, merged upstream
* d/copyright: drop copyright and license stanzas for files that are
in upstream git but not in tarballs
-- Simon McVittie <smcv@debian.org> Sun, 20 Nov 2016 21:58:11 +0000
ostree (2016.12-2) unstable; urgency=medium
* d/p/Filter-bootloader-supplied-kernel-cmdline-options.patch:
- Filter out kernel command line parameters set by the bootloading when
deriving the configuration from /proc/cmdline.
* Add myself to uploaders
-- Sjoerd Simons <sjoerd@debian.org> Thu, 03 Nov 2016 15:48:01 -0600
ostree (2016.12-1) unstable; urgency=medium
* Force LC_ALL=C.UTF-8 during build, so that builds in non-English
locales can pass their build-time tests
* New upstream release
* Build-depend on ca-certificates. glib-networking now generates
warnings if those are missing, causing the build-time tests to fail.
-- Simon McVittie <smcv@debian.org> Wed, 26 Oct 2016 19:11:14 +0100
ostree (2016.11-1) unstable; urgency=medium
* New upstream release
* Relicense debian/ from GPL-2+ to LGPL-2+, with permission from
David King
* Install GObject-Introspection typelibs to multiarch path,
and mark gir1.2-ostree-1.0 as Multi-Arch: same
* libostree-dev: stop depending on ostree. It isn't necessary to
use the library, and would break multiarch installability
* Move to debhelper compat level 10
- stop using dh --parallel, it's the default now
- don't use autoreconf and systemd addons explicitly, they are
the default now
* d/p/dist/Retrieve-some-missing-test-files-from-upstream-git.patch:
fetch missing test files from upstream git
- debian/rules: make the missing scripts executable
-- Simon McVittie <smcv@debian.org> Fri, 07 Oct 2016 23:39:06 +0100
ostree (2016.10-1) unstable; urgency=medium
* New upstream release
* Make libostree-dev Multi-Arch: same
* Make libostree-doc Multi-Arch: foreign
-- Simon McVittie <smcv@debian.org> Thu, 15 Sep 2016 08:26:51 +0100
ostree (2016.9-2) unstable; urgency=medium
* debian/patches/Terminate-individual-tests-after-half-an-hour.patch:
terminate individual tests after 30 minutes, in an attempt to debug
what happened on the ppc64el buildd
-- Simon McVittie <smcv@debian.org> Fri, 09 Sep 2016 08:23:44 +0100
ostree (2016.9-1) unstable; urgency=medium
* New upstream version
- update symbols file for new ABI
- update copyright file
- update ostree-boot packaging: the utilities in /usr/sbin moved to
/usr/lib/ostree
- drop libgsystem build-dependency
- d/p/Makefile-tests.am-make-check-uses-the-built-binaries.patch:
drop, applied upstream
* Explicitly build-depend on xsltproc, which is directly used
-- Simon McVittie <smcv@debian.org> Tue, 06 Sep 2016 09:59:00 +0100
ostree (2016.7-1) unstable; urgency=medium
* New upstream version
- drop all patches, applied upstream
- build-depend on libsystemd (unconditionally, because this package is
Linux-specific already)
- update symbols file for new ABI
* d/p/Makefile-tests.am-make-check-uses-the-built-binaries.patch:
add patch from upstream to make sure we use the built binaries for
build-time testing
* d/control: mention Flatpak, not its former name xdg-app
-- Simon McVittie <smcv@debian.org> Thu, 28 Jul 2016 07:40:27 +0100
ostree (2016.6-4) unstable; urgency=medium
* Switch sense of check in debian/test.sh so we really ignore test
failures on mipsel, and not on !mipsel.
-- Simon McVittie <smcv@debian.org> Wed, 06 Jul 2016 15:23:31 +0100
ostree (2016.6-3) unstable; urgency=medium
* Ignore build-time test failures on mipsel. "ostree pull"
intermittently fails with a bus error on at least some mipsel CPUs,
and applying gdb to the resulting core dump does not produce any
useful information. Debugging help would be appreciated.
(Mitigates: #827473)
-- Simon McVittie <smcv@debian.org> Wed, 06 Jul 2016 10:17:43 +0100
ostree (2016.6-2) unstable; urgency=medium
* d/p/tests-Improve-check-for-proc-cmdline-kargs.patch: add patch from
upstream fixing FTBFS on host machines without root= in /proc/cmdline,
such as the reproducible builds armhf workers
* d/control, d/copyright: use the GitHub repository as the Homepage
and Source: the GNOME wiki page is less frequently updated
-- Simon McVittie <smcv@debian.org> Tue, 28 Jun 2016 09:29:53 +0100
ostree (2016.6-1) unstable; urgency=medium
[ Jeremy Bicha ]
* Fix debian/watch (Closes: #827440)
[ Simon McVittie ]
* New upstream release
- drop all patches, included upstream
- update symbols file
- this version is more careful about thread-safety, which appears
to fix the test failures that caused FTBFS on mipsel
(Closes: #827473)
* d/watch: fetch releases from GitHub instead of GNOME
* d/gbp.conf: configure to use upstream/latest for upstream imports
* d/gbp.conf: configure to merge upstream tags into upstream/latest
(add https://github.com/ostreedev/ostree as a remote)
* d/p/libostree.sym-Fix-test-symbols.patch: apply patch from upstream
to fix a build-time test
* d/p/pull-Correctly-handle-repo-parent_repo-when-applying-stat.patch:
apply patch from upstream to fix a bug that flatpak currently works
around
* d/p/tests-fail-the-build-if-symlinking-tests-ostree-fails.patch,
d/p/tests-use-our-own-generated-libtool-not-the-one-in-PATH.patch:
add patches to ensure that the build-time tests act on the copy
of ostree that we just built
* d/p/entry_pathname_test_helper-these-tests-need-extended-attr.patch:
skip more tests if /var/tmp doesn't support extended attributes
* d/control: ostree no longer needs its Suggests on dracut. A stronger
dependency on dracut will be needed in the ostree-boot package when
the boot integration is reinstated (see #824650).
-- Simon McVittie <smcv@debian.org> Sun, 26 Jun 2016 19:51:31 +0100
ostree (2016.5-4) unstable; urgency=medium
* d/p/test-sysroot.js-set-strict-mode-when-sourcing-libtest.sh.patch,
d/p/tests-Use-strict-mode-by-default-for-C-tests.patch: add patches
to make sure the tests fail as soon as something goes wrong
* Build-depend on procps, used to check for leaked processes
* debian/test.sh: factor out our dh_auto_test wrapper, and clean
up any stray processes even if the test fails
* If build-time tests fail, try 4 more times to get an idea of
whether the failure is reproducible (hoping to diagnose #826858)
* Add a patch to link libreaddir-rand to libdl, which should fix
test failures on Ubuntu (Closes: #826857)
-- Simon McVittie <smcv@debian.org> Tue, 14 Jun 2016 15:35:18 -0400
ostree (2016.5-3) unstable; urgency=medium
* Remove ostree-grub2 and the boot-related parts of ostree, leaving
the library and the command-line tool, which are also used by
Flatpak.
When we have documentation for how to use and test OSTree
deployments with a Debian derivative (see #824649), they should be
reinstated in an ostree-boot package (see #824650).
* Upload to unstable.
-- Simon McVittie <smcv@debian.org> Wed, 08 Jun 2016 11:58:01 +0100
ostree (2016.5-2) experimental; urgency=medium
* Add a patch to skip the test-parent test if /var/tmp doesn't support
user xattrs, hopefully fixing FTBFS on x86-csail-02 buildd
-- Simon McVittie <smcv@debian.org> Mon, 25 Apr 2016 12:51:33 +0100
ostree (2016.5-1) experimental; urgency=medium
* New upstream release
- Remove all patches, applied upstream
- debian/libostree-1-1.symbols: update for new versioned symbols
- Build-depend on libmount-dev
- debian/copyright: update
- debian/rules, debian/ostree-tests.install: adjust for new installation
directory for installed-tests
- debian/rules: use Debian's grub2-mkconfig path
* debian/gbp.conf: use DEP-14 branch names; disable numbered patches
* Fix ITP bug number in changelog (was #813308, should have been #697477)
* debian/control: build-depend on attr, for the tests (only required if
/var/tmp supports extended attributes)
* debian/rules: clean up stale gpg-agent processes after testing
* debian/rules: warn if there are leftover daemon processes after testing
* debian/ostree-tests.lintian-overrides: override a couple of false
positives
* Run dh_auto_test with VERBOSE=1, to get logs with older debhelper
* Build-depend on elfutils, for test-abi.sh
* Work around #821235 to avoid undefined macro 'AQ' in some man pages
* Add a patch to put more information in the log if tests fail,
in an attempt to debug a failure in test/pull-resume.sh which
I can no longer reproduce
* Standards-version: 3.9.8 (no changes needed)
-- Simon McVittie <smcv@debian.org> Mon, 25 Apr 2016 07:46:16 +0100
ostree (2016.3-1) experimental; urgency=medium
* Prepare package for Debian (Closes: #697477)
* New upstream release
* Remove -dbg package, rely on automatic dbgsym packages instead
* Extend package descriptions a bit
* debian/.gitignore: add
* debian/copyright: fill in all copyright holders and licenses
* debian/control: set Maintainer to the pkg-utopia team, with packaging
in collab-maint git, and myself and Matthias Klumpp as uploaders
* Normalize packaging via `wrap-and-sort -abst`
* debian/control: move shared library to Section: libs
* debian/control: remove redundant Section
* debian/control: change Section to admin
* Remove unnecessary uses of dh-exec
* debian/patches: remove all patches, no longer needed or applied
* Use dh_install --fail-missing to catch mistakes
* Add a symbols file
* Add missing dependency on libglib2.0-dev
* Add an ostree-tests package, and use it for autopkgtest
* Enable systemd helpers, but do not start the early-boot systemd services
on installation
* Don't override dh_auto_clean to nothing
* ostree-grub2: recommend concrete GRUB packages instead of hard-depending
on a transitional package. This is only a Recommends because you
could be using some other architecture's grub packages.
* Redirect libexecdir to /usr/lib (not /usr/lib/${multiarch}) since we don't
need multiarch for anything that's installed there, fixing a broken
symlink in ostree-grub2
* Document the limited situations in which ostree-grub2 will work in
practice
* Only build on Linux architectures; this package is specifically
not portable
* Add patch to fix underlinking of test-archive
* Add patch to skip one build-time test if /var/tmp cannot support xattrs,
for example if it is on tmpfs
* Stop dh_makeshlibs thinking that the LD_PRELOAD module libreaddir-rand.so
(part of the tests) is meant to be a shared library
* Add a missing #!/bin/sh to one test
-- Simon McVittie <smcv@debian.org> Sat, 19 Mar 2016 17:56:21 +0000
ostree (2016.1-alexlarsson1~wily1) wily; urgency=medium
* New upstream release
-- Alexander Larsson <alexander.larsson@gmail.com> Thu, 01 Oct 2015 11:28:39 +0200
ostree (2015.11-alexlarsson1~vivid1) vivid; urgency=medium
* New upstream release
-- Alexander Larsson <alexander.larsson@gmail.com> Thu, 01 Oct 2015 11:28:39 +0200
ostree (2015.9-alexlarsson1) vivid; urgency=medium
* New upstream release
-- Alexander Larsson <alexander.larsson@gmail.com> Thu, 01 Oct 2015 11:28:39 +0200
ostree (2015.4-0amigadave2) trusty; urgency=low
[ David King ]
* Add build dependency on libattr1-dev.
-- David King <amigadave@amigadave.com> Wed, 08 Apr 2015 13:10:39 +0100
ostree (2015.4-0amigadave1) trusty; urgency=low
[ David King ]
* Initial packaging.
-- David King <amigadave@amigadave.com> Thu, 02 Apr 2015 15:40:52 +0000
|