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
|
packagekit (1.1.12-5) unstable; urgency=medium
* Fix FTBFS on !amd64 architectures by removing the
GTK+2 plugin properly.
-- Matthias Klumpp <mak@debian.org> Sat, 02 Mar 2019 22:02:38 +0100
packagekit (1.1.12-4) unstable; urgency=medium
* Add aptcc-frontend-locking.patch
- This implements APT frontend locking, which prevents other programs
from stealing the dpkg lock in race conditions where apt(cc) has to
release the lock in order to run dpkg.
-- Matthias Klumpp <mak@debian.org> Sat, 02 Mar 2019 16:46:16 +0100
packagekit (1.1.12-3) unstable; urgency=medium
* Do not ship the GTK+2 plugin (Closes: #922118)
- Unfortunately we still need to build-depend on GTK+2 to
enable the GTK plugin build.
-- Matthias Klumpp <mak@debian.org> Fri, 01 Mar 2019 10:02:38 +0100
packagekit (1.1.12-2) unstable; urgency=medium
[ Matthias Klumpp ]
* Remove Ubuntu-specific patch series, handle vendor config by
conditionally installing it in d/rules (Closes: #915352)
* Add no-distupgrade.patch:
- Disable GetDistroUpgrades() completely, it was partially
disabled before but still caused problems.
* Add keep-ref-on-transaction-while-doing-polkit-call.patch
- Avoids some log spam
[ Andrew Hayzen ]
* Add aptcc-use-correct-return-type-in-function.patch:
- Fix function return type, which resolves packagekitd crash
when gnome-software launches, causing gnome-software to hang
(Closes: #917812, #922236)
-- Matthias Klumpp <mak@debian.org> Tue, 26 Feb 2019 21:56:06 +0100
packagekit (1.1.12-1) unstable; urgency=medium
* New upstream version: 1.1.12
- Applied aptcc patches carried in Debian
- common: Handle quoted strings in /etc/os-release
- offline update: Fix translations to show up
* Drop aptcc patches: Applied upstream
-- Matthias Klumpp <mak@debian.org> Sat, 22 Dec 2018 18:11:20 +0100
packagekit (1.1.11-1) unstable; urgency=medium
* New upstream version: 1.1.11
* Never restart packagekitd via systemd after an upgrade of the daemon
* Add aptcc-always-do-multiarch-lookups.patch
- Always check multi-arch paths for .list files, as dpkg always adds the
architecture, even on non-multiarch systems.
* Add aptcc-update-section-mappings.patch
- Updates aptcc section mappings (Closes: #880484)
* Bump standards version: No changes needed
* Mark packagekit-docs as MA-foreign
-- Matthias Klumpp <mak@debian.org> Mon, 15 Oct 2018 18:54:28 +0200
packagekit (1.1.10-1) unstable; urgency=high
* New upstream release: 1.1.10
- This release fixes CVE-2018-1106 (Closes: #896703)
- aptcc: Not all downloads have to be packages
- aptcc: Return multiple packages when using '|' operator
- aptcc: Simplify search methods
* Bump standards version: No changes needed
* Update Vcs-* URLs to point to Salsa
* Use auth_admin instead of auth_admin_keep as default authorization
for downgrades and package removals.
-- Matthias Klumpp <mak@debian.org> Mon, 23 Apr 2018 23:14:46 +0200
packagekit (1.1.9-1) unstable; urgency=medium
* New upstream version: 1.1.9
* Drop patches: Applied upstream
* Adjust for dh compat level 11
* Update symbols file
* d/watch: Use https URL
* d/rules: Drop obsolete dh modules
-- Matthias Klumpp <mak@debian.org> Mon, 12 Mar 2018 20:42:45 +0100
packagekit (1.1.7-1) unstable; urgency=medium
[ Matthias Klumpp ]
* New upstream version: 1.1.7
* Drop all patches: Applied upstream
* Add aptcc-fix-mimetype-search.patch: Don't fail when searching for mimetypes
- See LP: #1719077
* Bump standards and dh version
* Fail on missing files
* Add missing build-dependency on libappstream-dev
[ Iain Lane ]
* Always rebuild gtk-doc documentation
-- Matthias Klumpp <mak@debian.org> Sun, 24 Sep 2017 19:56:12 +0200
packagekit (1.1.6-2) unstable; urgency=medium
[ Matthias Klumpp ]
* Upload to unstable
* libpackagekit-glib2-dev: Depend on Gir typelib package
* Drop obsolete flags to disable network-manager on non-Linux
* no-nm-connman.patch: Drop unnecessary dependencies on
network-manager (CLoses: #862774)
* Bump standards version: No changes needed
[ Iain Lane ]
* Add two patches from pr#199 to improve codec installation.
* debian/packagekit-gtk3-module.install: Install the gtk-modules desktop
file in the right directory (Closes: #866953)
-- Matthias Klumpp <mak@debian.org> Thu, 13 Jul 2017 21:08:29 +0200
packagekit (1.1.6-1) experimental; urgency=medium
[ Jeremy Bicha ]
* Add Breaks: packagekit-plugin-click (Closes: #852085)
[ Iain Lane ]
* New upstream version: 1.1.6
* debian/patches/01_aptcc-protect-bad-package-id.patch: Drop, applied
upstream.
-- Iain Lane <laney@debian.org> Thu, 15 Jun 2017 12:28:19 +0100
packagekit (1.1.5-2) unstable; urgency=medium
* aptcc-protect-bad-package-id.patch: Don't crash when
encountering bad package-ids (Closes: #845575)
-- Matthias Klumpp <mak@debian.org> Wed, 08 Mar 2017 21:33:38 +0100
packagekit (1.1.5-1) unstable; urgency=medium
* New upstream version: 1.1.5
* Drop all patches: Applied upstream
-- Matthias Klumpp <mak@debian.org> Fri, 20 Jan 2017 20:48:52 +0100
packagekit (1.1.4-3) unstable; urgency=medium
* Remove duplicate description paragraph (Closes: #836290)
* Build-depend on autoconf-archive
-- Matthias Klumpp <mak@debian.org> Fri, 21 Oct 2016 14:51:51 +0200
packagekit (1.1.4-2) unstable; urgency=medium
* Reject invalid search strings
- Prevents a daemon crash with the aptcc backend and
is one part of resolving #840654.
-- Matthias Klumpp <mak@debian.org> Fri, 21 Oct 2016 10:08:42 +0200
packagekit (1.1.4-1) unstable; urgency=medium
* New upstream release: 1.1.4
* Drop patches: Applied upstream
* Directly depend on intltool and pkg-config (Closes: #837836)
* toinstall-aptcompliant.patch
- Fixes autoinst resolution
- Fixes installation of recommends
- Does not unconditionally install packages with FromUser=true
* aptcc-exclude-held.patch: Properly exclude held packages from
updates again.
* Update .symbols file
-- Matthias Klumpp <mak@debian.org> Tue, 20 Sep 2016 15:34:28 +0200
packagekit (1.1.1-1) unstable; urgency=medium
* New upstream release: 1.1.1
* Drop the manual -dbg package in favor of the auto-generated
dbgsym packages
* Drop progress-callback-notified.patch: Applied upstream
* aptcc-full-package-origin.patch: Make aptcc backend return a
complete origin ID
* Use secure Vcs-* URLs
* Bump standards version: No change needed
* debian/rules: Remove some dead logic
-- Matthias Klumpp <mak@debian.org> Thu, 12 May 2016 19:19:54 +0200
packagekit (1.1.0-2) unstable; urgency=medium
* progress-callback-notified.patch: Fix GIR annotations for
PkProgressCallback callbacks in async functions.
This prevents crashes when using PackageKit from languages
like Python.
-- Matthias Klumpp <mak@debian.org> Sat, 12 Mar 2016 23:28:06 +0100
packagekit (1.1.0-1) unstable; urgency=medium
* New upstream release: 1.1.0
* Drop the browser plugin
- Removed upstream, "appstream://" URLs are much more useful today.
Also, browser plugins will go away in the near future anyway.
- Remove browser plugin information from debian/copyright
* Drop pkid-state-in-data.patch: Applied upstream
* Update symbols file
-- Matthias Klumpp <mak@debian.org> Fri, 12 Feb 2016 22:45:04 +0100
packagekit (1.0.11-2) unstable; urgency=medium
* pkid-state-in-data.patch: Always set data part of a package-id to
"installed" if the package is installed, and do not include repo
information in that case.
The previous behavior broke GNOME Software removals (Closes: #804094)
-- Matthias Klumpp <mak@debian.org> Thu, 04 Feb 2016 14:36:47 +0100
packagekit (1.0.11-1) unstable; urgency=medium
* New upstream release: 1.0.11
- Reworked downloading of changelogs (Closes: #794697)
- Works with APT 1.1 now (Closes: #798709)
* Update .symbols file
-- Matthias Klumpp <mak@debian.org> Fri, 27 Nov 2015 15:46:22 +0100
packagekit (1.0.10-1) unstable; urgency=medium
* New upstream release: 1.0.10
* Drop patches: Applied upstream
-- Matthias Klumpp <mak@debian.org> Wed, 14 Oct 2015 20:04:36 +0200
packagekit (1.0.8-1) unstable; urgency=medium
* New upstream release: 1.0.8
- Closes: #797138
* Refresh patches, drop libsystemd-only patch (applied upstream)
* Add Vala VAPI file and missing metadata
* critical-warnings.patch: Fix critical compile warnings
* dont-assume-time_t-is-long.patch: Fix build on x32 (Closes: #777509)
- Thanks to Adam Borowski for the patch!
* Do not recommend gnome-packagekit-session anymore
- The interface is now part of GNOME-Software, so we need to
recommend that instead.
-- Matthias Klumpp <mak@debian.org> Fri, 28 Aug 2015 17:05:20 +0200
packagekit (1.0.6-1) unstable; urgency=medium
* New upstream release: 1.0.6
* Update symbols file
* Build-depend on libsystemd only, instead of the deprecated
libsystemd-* libs (Closes: #779757)
* Use HTTPS for Debian Wiki links (Closes: #784794)
- Thanks to Raphael Geissert for the patch!
* Use the fd.o URL of PackageKit, instead of packagekit.org
as homepage, since the latter is now only a redirect to the former
location
-- Matthias Klumpp <mak@debian.org> Sun, 07 Jun 2015 16:14:26 +0200
packagekit (1.0.1-2) unstable; urgency=medium
* Ship with pkla file for older PolicyKit versions (Closes: #766792)
* Place temporary data in subdirectory in /tmp (Closes: #764928)
* Don't try to ask any questions if we are running in
non-interactive mode (Closes: #764926)
* Drop obsolete configuration (Closes: #768420)
* Recommend PackageKit session-interface providers for packages
which need a session-interface (Closes: #770814)
-- Matthias Klumpp <mak@debian.org> Mon, 08 Dec 2014 18:44:28 +0100
packagekit (1.0.1-1) unstable; urgency=medium
* New upstream release: 1.0.1
* Drop patches: Applied upstream
* Build package using dh-systemd to cleanup stuff on package removal
* Drop Python3 backend bindings
* Remove dist-upgrade notification support from aptcc
- This only really worked on Ubuntu, and the functionality relies
on outdated Python code and needs to be reimplemented in a
sane way. There is no need to ship cruft with Jessie.
-- Matthias Klumpp <mak@debian.org> Tue, 21 Oct 2014 14:52:34 +0200
packagekit (1.0.0-3) unstable; urgency=medium
* Don't explicitly pass systemd unit path to configure
- Should resolve FTBFS on non-Linux ports
-- Matthias Klumpp <mak@debian.org> Wed, 08 Oct 2014 22:48:18 +0200
packagekit (1.0.0-2) unstable; urgency=medium
* Add patch to fix systemd-dependent conditional compilation
- Will hopefully resolve the FTBFS on !linux
-- Matthias Klumpp <mak@debian.org> Sat, 27 Sep 2014 08:20:48 +0200
packagekit (1.0.0-1) unstable; urgency=medium
* New upstream release: 1.0.0
- This release drops support for plugins
- Aptcc is now the only viable backend for Debian, other
backends have been removed upstream.
* Drop patches: Applied upstream
* Update symbols file
* Update copyright
* Bring back the PackageKit command-not-found support in a
separate package.
-- Matthias Klumpp <mak@debian.org> Mon, 22 Sep 2014 18:02:58 +0200
packagekit (0.9.5-2) unstable; urgency=medium
* Include missing header for plugin builds
-- Matthias Klumpp <mak@debian.org> Mon, 08 Sep 2014 19:34:44 +0200
packagekit (0.9.5-1) unstable; urgency=medium
* Upload to unstable
* New upstream release: 0.9.5
* Drop all previous patches: Applied upstream
* Drop defaults.diff: Debian's defaults are now upstream
* Take patch from upstream to increase hardcoded transation limits
* Update symbols file
-- Matthias Klumpp <mak@debian.org> Mon, 08 Sep 2014 17:28:40 +0200
packagekit (0.9.4-1) experimental; urgency=medium
* New upstream release: 0.9.4
* Drop build-dep on browsers, use npapi-sdk instead (Closes: #754373)
* Drop patches which have been applied upstream
* npapi-sdk.patch: Compile using npapi-sdk
-- Matthias Klumpp <mak@debian.org> Tue, 22 Jul 2014 14:26:14 +0200
packagekit (0.8.17-4) unstable; urgency=medium
* Tighten dependency on iceweasel-dev
* aptcc-python3.patch: Use Python3 for aptcc upgrade helper
* link-gstreamer1.0.patch: Link against GStreamer 1.0 by default
* Build GStreamer 1.0 plugin by default, drop 0.10 plugin
-- Matthias Klumpp <mak@debian.org> Sat, 14 Jun 2014 14:10:16 +0200
packagekit (0.8.17-3) unstable; urgency=medium
* Don't ship transactions.db (Closes: #746327)
* tdb-permissions.patch: Update permissions on the transactions db
* Replace xulrunner-dev build-dep with dependency on iceweasel-dev
-- Matthias Klumpp <mak@debian.org> Sat, 14 Jun 2014 12:34:04 +0200
packagekit (0.8.17-2) unstable; urgency=low
* Fix default changelog URL (Closes: #739172)
* Update debian/watch file
-- Matthias Klumpp <mak@debian.org> Thu, 10 Apr 2014 18:54:04 +0200
packagekit (0.8.17-1) unstable; urgency=low
* New upstream release: 0.8.17
- Lots of small enhancements and bugfixes
- Contains fix for changelog-fetching (Closes: #739172)
* Ship transactions.db file by default (Closes: #737556)
-- Matthias Klumpp <mak@debian.org> Wed, 26 Mar 2014 16:56:24 +0100
packagekit (0.8.16-1) unstable; urgency=low
* New upstream release: 0.8.16
- Adds missing annotations to DBus spec,
which closes: #735812
- Increases aptcc notification timeout, which likely
closes: #688428
- Verious other improvements and bugfixes
* Bump standards version: No change needed
* Drop patches: Applied upstream
* Update symbols file
-- Matthias Klumpp <mak@debian.org> Tue, 21 Jan 2014 21:04:48 +0100
packagekit (0.8.14-2) unstable; urgency=low
* Explicitly set systemd unit dir (Closes: #731556)
* 03_syslog-nodebug.patch: Don't send debug messages to syslog
by default (Closes: #731569)
* Fix build on kFreeBSD/Hurd (Closes: #731680)
-- Matthias Klumpp <mak@debian.org> Sun, 08 Dec 2013 21:46:28 +0100
packagekit (0.8.14-1) unstable; urgency=low
* New upstream release: 0.8.14
- This release brings lots of speed improvements
- Please note that some features have been removed from
PackageKit.
You can find information about removed features at
http://lists.freedesktop.org/archives/packagekit/2013-December/026185.html
* Adjust default configuration and vendor information
* Update symbols file
* 01_pkpackage-noassert.patch: Make PkPackage reusable again, fixes GPK crash
* 02_new-cve-format.patch: Update CVE RegEx to new CVE format
* Clean up build dependencies
-- Matthias Klumpp <mak@debian.org> Wed, 04 Dec 2013 18:04:32 +0100
packagekit (0.8.12-1) unstable; urgency=low
* New upstream release: 0.8.12
* Depend on policykit-1 (Closes: #719569)
* Update symbols file
* Remove TODO from docs
* Fix default URL for Ubuntu vendor
-- Matthias Klumpp <mak@debian.org> Sun, 20 Oct 2013 18:42:46 +0200
packagekit (0.8.10-2) unstable; urgency=low
* Always ask for passwort when installing packages
- Ask for password even if packages are trusted and user
is in sudo group.
- This is a more conservative default, since apparently software
on servers started using PackageKit too.
- Sudo-people are still able to perform updates
-- Matthias Klumpp <mak@debian.org> Fri, 02 Aug 2013 20:48:42 +0200
packagekit (0.8.10-1) unstable; urgency=low
* New upstream release: 0.8.10
* Adjusted Debian default settings to new upstream configuration
* Updated security policy, the following config is valid:
- Allow any local, active user in the "sudo" group to perform
system-updates, trigger offline-updates and install signed packages
from trusted sources.
- Allow any user to refresh the package cache
- Restrict all other tasks to users with superuser-privileges
- These changes will take effect with PolicyKit >= 0.110
* Fix package-install policy, was changed temporarily
by upstream (Closes: #717742)
* Provide symbols-file for libpackagekit-glib2 (Closes: #700204)
-- Matthias Klumpp <mak@debian.org> Fri, 26 Jul 2013 16:32:20 +0200
packagekit (0.8.9-3) unstable; urgency=low
* Don't make aptcc backend recommend appstream-index
- Frontends will recommend it if they support it
* Drop unneeded build-dependency on python3-dev
-- Matthias Klumpp <mak@debian.org> Thu, 11 Jul 2013 18:48:42 +0200
packagekit (0.8.9-2) unstable; urgency=low
* Upload to unstable (Closes: #709580)
* Break old client library packages (Closes: #700237)
-- Matthias Klumpp <mak@debian.org> Sun, 23 Jun 2013 22:32:52 +0200
packagekit (0.8.9-1) experimental; urgency=low
* New upstream release: 0.8.9
- Many bugfixes and new features, see the NEWS file for details
* Remove system-interface virtual package
- Was only used in Ubuntu, and not really useful there, since they
had to patch PackageKit anyway. It also made finding issues in Debian
harder.
* Drop 01_compile-nonlinux.patch: Applied upstream
* Install bash-completion for pkcon
-- Matthias Klumpp <mak@debian.org> Tue, 04 Jun 2013 14:08:24 +0200
packagekit (0.8.7-2) experimental; urgency=low
* Make PackageKit compile on non-Linux platforms (Closes: #705797)
- Thanks to Petr Salinger for the patch!
-- Matthias Klumpp <mak@debian.org> Mon, 22 Apr 2013 18:18:08 +0200
packagekit (0.8.7-1) experimental; urgency=low
* New upstream release: 0.8.7
* Change mail to my Debian address
* Apply DEP-5 specs to (new) copyright file
-- Matthias Klumpp <mak@debian.org> Tue, 19 Mar 2013 20:24:14 +0100
packagekit (0.8.6-1) experimental; urgency=low
* Remove Aptcc trigger which became useless
* Recommend gdebi-core again (LP: #1060395)
* New upstream release: 0.8.6
- Many improvements and bugfixes
* Remove Qt bindings, have been split out to new source package
* Build PackageKit with Python3
* Bump standards version (no changes needed)
* Don't create extra package for offline-updates
* Make PackageKit work on non-Linux archs again
-- Matthias Klumpp <matthias@tenstral.net> Tue, 28 Nov 2012 14:12:40 +0100
packagekit (0.8.4-1) experimental; urgency=low
* New upstream release: 0.8.4
-- Matthias Klumpp <matthias@tenstral.net> Mon, 01 Oct 2012 20:26:47 +0200
packagekit (0.8.3-1) experimental; urgency=low
* New upstream release: 0.8.3
This is a release from the 0.8.x series which contains many
exciting new features, for example parallel transactions,
heavily improved backend API, many speed optimizations,
offline-update support etc. For details see the PackageKit
changelog.
* Use systemd on all Linux architectures
* Add offline-update technology preview
* Adjust library package names to new soversions
-- Matthias Klumpp <matthias@tenstral.net> Tue, 21 Aug 2012 17:42:27 +0200
packagekit (0.7.6-1) unstable; urgency=low
* New upstream bugfix release: 0.7.6
Changes relevant to Debian:
- aptcc: Don't use tempfile with fixed name for conffiles
(Matthias Klumpp) (Closes: #678189)
- Add GStreamer 1.0 support to the PackageKit plugin
(Richard Hughes)
- Ignore "accept-eula" in pk-transaction-run (Gary Ching-Pang Lin)
- Check for CancelBackgroundTransactions setting again
(Matthias Klumpp)
- Fix a crash where NetworkManager is restarted whilst packagekitd
is running (Richard Hughes)
- Drop the unused polkit-backend-1 check from configure as
it's gone upstream (Richard Hughes)
- Fix segfault in pkcon when user does ctrl-d at the package prompt
(Richard Hughes)
- Inhibit shutdown when the package manager is locked (Richard Hughes)
- Fix several return values in pkcon when there is an error
(Richard Hughes)
- Allow the user to specify standard GNU help options (Richard Hughes)
- Do not allow the client to overwrite files when downloading packages
(Richard Hughes)
-- Matthias Klumpp <matthias@tenstral.net> Tue, 21 Aug 2012 16:41:43 +0200
packagekit (0.7.5-2) unstable; urgency=low
* Fix mistake in GTK3-module install file
-- Matthias Klumpp <matthias@tenstral.net> Tue, 26 Jun 2012 21:14:58 +0200
packagekit (0.7.5-1) unstable; urgency=low
* Disable strict mode
* Allow alternative system-interface implementations
* New upstream bugfix release: 0.7.5
Changes relevant to Debian:
- glib: Allow adding packages to PkPackageSack from package-list
files (Matthias Klumpp)
- glib: More GIR annotations (Matthias Klumpp)
- glib: Use the correct user-cache directory (Richard Hughes)
- aptcc: Don't freeze if apt-listchanges is installed
(Matthias Klumpp) (Closes: #662602)
- aptcc: Make get-distro-upgrades.py helper work with Python3
(Sebastian Heinlein)
- aptcc: save the changelog to a random directory (Daniel Nicoletti)
- Add a dummy GTK+2 module to avoid a warning when starting GTK+2
applications (Richard Hughes) (Closes: #649039)
- Add the pkg to the PkPackageSack hash when using
pk_package_sack_add_package_by_id() (Richard Hughes)
- Automatically set the Locked property true if allow cancel is set
to false (Richard Hughes)
- Clarify message for org.freedesktop.packagekit.package-install
(Nils Philippsen)
- Document HARDWARE_DRIVER (Martin Pitt)
- Document MODALIAS (Martin Pitt)
- Don't show a warning on refresh if /var/run/PackageKit/udev does
not exist (Richard Hughes)
- Fix importing GPG signatures (Richard Hughes)
* Removed patches: Applied upstream
* Removed Apt backend again: Backend is broken and can't be included
in Wheezy at the current state. Please use aptcc, which works much
better at time and is well-tested (Closes: #678978)
-- Matthias Klumpp <matthias@tenstral.net> Tue, 26 Jun 2012 20:12:14 +0200
packagekit (0.7.4-4) unstable; urgency=low
* Install browser-plugin into valid path (Closes: #674910)
* Install introduction pages (Closes: #665289)
-- Matthias Klumpp <matthias@tenstral.net> Sat, 02 Jun 2012 12:40:34 +0200
packagekit (0.7.4-3) unstable; urgency=medium
* aptcc: Save changelog to random dir
-- Matthias Klumpp <matthias@tenstral.net> Wed, 23 May 2012 17:57:28 +0200
packagekit (0.7.4-2) unstable; urgency=low
* Fixed qt2 library soname
* Don't install GIR into multiarch path (Closes: #670374)
* Updated packagekit-python description
-- Matthias Klumpp <matthias@tenstral.net> Thu, 26 Apr 2012 17:20:41 +0200
packagekit (0.7.4-1) unstable; urgency=low
* New upstream release: 0.7.4
This is the ultimate-aptcc release, fixing nearly all known bugs!
PK changes relevant to Debian:
- packagekit-glib2: Add GType's for packagekit-glib2 enumerations
(Stef Walter)
- packagekit-qt2: Add simulateRepairSystem and repairSystem(bool) to
the Transaction API (Daniel Nicoletti)
- python: Speed up get_package_list (Tomáš Trnka)
- apt: apt.cache.Cache() now reuses the dpkg of the chroot
(Sebastian Heinlein)
- apt: Fix modalias search on non-multi-arch systems
(Sebastian Heinlein)
- apt: Replace use of depracted python-apt 0.7.x API
(Sebastian Heinlein)
- aptcc: Add a new class to show cache opening progress
(Daniel Nicoletti)
- aptcc: Add AptCacheFile to handle all pkg cache openings
(Daniel Nicoletti)
- aptcc: Add SimulateRepairSystem and RepairSystem methods
(Daniel Nicoletti) (LP: #496290)
- aptcc: Avoid crashing when error messages containing invalid utf8
is sent (Daniel Nicoletti)
- aptcc: Change the way we mark auto-installed packages
(Daniel Nicoletti)
- aptcc: Correctly emit if a repo is enabled (Matthias Klumpp)
- aptcc: Don't emit error if repo is empty (Matthias Klumpp)
- aptcc: Emit newly-installed local package information (Matthias Klumpp)
- aptcc: Emit packages that are untrusted with the
PK_INFO_ENUM_UNTRUSTED enum (Daniel Nicoletti)
- aptcc: Emit UnfinishedTransaction when we were not able to fix the
cache (Daniel Nicoletti)
- aptcc: Fix a multiarch bug that failed to resolve packages
(Daniel Nicoletti)
- aptcc: Fix crash when a package for an invalid version
(Daniel Nicoletti)
- aptcc: Fix resolving of gdebi packages when they have :arch field
(Daniel Nicoletti)
- aptcc: Implement support for InstallFiles()
(Matthias Klumpp) (Closes: #606131)
- aptcc: Implement SUPPORTED support (Matthias Klumpp)
- aptcc: Improve the autoremove code (Daniel Nicoletti)
- aptcc: Mark dependencies of a file-installation as automatic
(Matthias Klumpp)
- aptcc: Move ShowBroken to AptCacheFile, and added CheckDeps from
apt-get (Daniel Nicoletti)
- aptcc: Refactored to use AptCacheFile (Daniel Nicoletti)
- aptcc: Reident the code and re-enforce KDElibs coding style
(Daniel Nicoletti)
- aptcc: Remove a code duplication and emit proper RestartRequired
signal (Daniel Nicoletti)
- aptcc: Reorganise parts of AptCC to make the code more readable
(Matthias Klumpp)
- aptcc: Separate the try install/remove functions (Daniel Nicoletti)
- aptcc: Simplify code for checking trusted packages (Matthias Klumpp)
- aptcc: Update license headers & fix some more indentation and typos
(Matthias Klumpp)
- aptcc: Use _exit() to quit the child process as synaptic does
(Daniel Nicoletti)
- aptcc: When on multiarch some packages that should have the :arch
appended to the installed list files (Daniel Nicoletti)
- Deprecate Message(untrusted-package) from the API (Richard Hughes)
- Install pk-task-sync.h as part of the public API (Stef Walter)
- Add full integration so that UI can know when to repair the system
(Daniel Nicoletti)
- Do not allow an empty resolve call to be passed down to the
backends (Richard Hughes)
- Do not include the website in the tarball (Richard Hughes)
* Don't ship PackageKit bash-completion: Apt can do this already
* Ship PackageKit tools in separate package
* Drop all patches: Applied upstream
* Refresh remaining patches (for policy & default settings)
-- Matthias Klumpp <matthias@tenstral.net> Tue, 24 Apr 2012 12:03:55 +0200
packagekit (0.7.3-3) unstable; urgency=low
* Drop dependency on python-gobject (Closes: #663742)
* Update links to Debian wiki
* Allow upgrading Firefox/Iceweasel while running (LP: #958609)
* Don't suggest aptd as alternative to PK
* Switch to compat-level 9
* Make library packages multiarch-compatible
* Don't ship PackageKit website
-- Matthias Klumpp <matthias@tenstral.net> Tue, 17 Apr 2012 20:48:00 +0200
packagekit (0.7.3-2) unstable; urgency=low
* Drop dependency on update-manager-core: Not required
* aptcc: Fix crash if we got a package with an invalid version
* aptcc: Fix a multiarch bug which prevented resolving packages
-- Matthias Klumpp <matthias@tenstral.net> Sat, 10 Mar 2012 14:07:35 +0100
packagekit (0.7.3-1) unstable; urgency=low
* New upstream release: 0.7.3
Debian-relevant highlights of this release:
- glib: Fix transfer annotation of pk_results_get_package_sack()
(Vincent Untz)
- glib: Fix transfer annotations for GPtrArray returns (Martin Pitt)
- glib: Do not send progress updates for non-verb packages
(Richard Hughes)
- apt: Add support for plugins, call them for what-provides
(Martin Pitt)
- apt: Add test case for what-provides CODEC (Martin Pitt)
- apt: Add test cases for what-provides ANY and unsupported types
(Martin Pitt)
- apt: Add test for what-provides MODALIAS (Martin Pitt)
- apt: Do not fail on missing /var/lib/PackageKit/mime-map.gdbm
(Martin Pitt)
- apt: Fix error code for what-provides CODEC (Martin Pitt)
- apt: Implement support for what-provides ANY (Martin Pitt)
- apt: Implement support for what-provides MODALIAS (Martin Pitt)
- apt: what_provides() search argument is a list, not a string
(Martin Pitt)
- aptcc: Disable InstallFiles() again (Matthias Klumpp)
- aptcc: Don't hang on long transactions (Matthias Klumpp)
- aptcc: Fix crash when simulating local package install
(Matthias Klumpp)
- Add LANGUAGE_SUPPORT what-provides type (Martin Pitt)
- Don't crash when the system bus isn't available, just abort with an
error (Richard Hughes)
- Fix a critical warning when starting gnome-settings-daemon
(Matthias Clasen)
- Imply the install trusted polkit auth when we get the remove auth
(Richard Hughes)
- Imply the install trusted polkit auth when we get the untrusted
auth (Richard Hughes)
* Bump standards version to 3.9.3
* Only suggest gdebi, it's not a requirement
* Drop patches: Everything is applied upstream now
* Disable as-needed patch again, no ltmain is shipped
* Refreshed vendor patches
-- Matthias Klumpp <matthias@tenstral.net> Sun, 04 Mar 2012 17:26:21 +0100
packagekit (0.7.2-4) unstable; urgency=low
* Don't ship transactions.db with PK package (Closes: #657831)
* Add APTd PackageKit compat layer as alternative to the original daemon
* Add Python APT backend again
* Add language-support what-provides type
* Don't crash if D-Bus is not available
-- Matthias Klumpp <matthias@tenstral.net> Wed, 15 Feb 2012 16:12:10 +0100
packagekit (0.7.2-3) unstable; urgency=low
* Depend on GLib tools, so gdbus is available (Closes: #656559)
* Fix warnings when running GSD with PackageKit enabled
* aptcc: Don't hang on long transactions (LP: #905415)
-- Matthias Klumpp <matthias@tenstral.net> Fri, 27 Jan 2012 23:26:32 +0100
packagekit (0.7.2-2) unstable; urgency=low
* Solve override disparity for GIR
* Disable InstallFiles() in aptcc again, function isn't ready yet
* Compile with --as-needed again
* Make libs recommend installation of the PackageKit daemon
* Fix segfault if there are no cached properties (Closes: #656376)
* Make GStreamer- and browser plugin suggest a PK frontend
-- Matthias Klumpp <matthias@tenstral.net> Thu, 19 Jan 2012 11:51:41 +0100
packagekit (0.7.2-1) unstable; urgency=low
* New upstream release: 0.7.2
Highlights of this release, relevant for Debian:
- glib: Convert libpackagekit-glib2 from dbus-glib to GDBus
(Richard Hughes)
- apt: Reintroduce apt backend (Sebastian Heinlein)
- aptcc: Add Multi-Arch support (Daniel Nicoletti)
- aptcc: Fix crash on get-categories, backend does not support that
(Matthias Klumpp)
- aptcc: Support for InstallPackageFiles by using gdebi
(Daniel Nicoletti) (Closes: #606131)
- aptcc: Basic conffile support (Closes: #606025)
- Add a new repair-system policy and use it by the corresponding
RepairSystem method (Sebastian Heinlein)
- Add a transaction_reset backend hook (Richard Hughes)
- Add new roles SimulateRepairSystem and RepairSystem
(Sebastian Heinlein)
- Add possibility to connect/disconnect backend signals (Matthias Klumpp)
- Add PropertiesChanged signals to the main and transaction
interfaces (Richard Hughes)
- Allow the Plasma version to be specified for
PK_PROVIDES_ENUM_PLASMA_SERVICE (Kevin Kofler)
- browser-plugin: Make it compile with newest xulrunner
(Matthias Klumpp)
- Fix a critical warning in the client tools when a simulation
is cancelled (Richard Hughes)
- Fix item-percentage call in the spawned backend (Sebastian Heinlein)
- gtk-plugin: Fix name of GTK plugin schema file
(Matthias Klumpp) (Closes: #649377)
- Make PkProc part of the daemon (Matthias Klumpp) (LP: #898891)
- Remove deprecated g_thread_init() on GLib < 2.31 (Per Øyvind Karlsen)
- Set the frontend socket as environment variable in the
spawned backend (Sebastian Heinlein)
* Fix typo in package description (Closes: #655443)
* Make backends depend on Python again
* Remove patch 01_new_xulrunner: Applied upstream
-- Matthias Klumpp <matthias@tenstral.net> Tue, 17 Jan 2012 19:02:38 +0100
packagekit (0.7.1-2) unstable; urgency=low
* Remove /var/lib/PackageKit on purge (Closes: #648455)
* Make aptcc backend recommend PackageKit daemon
* Make xulrunner dependency stronger (Closes: #649604)
* Allow DM upload
-- Matthias Klumpp <matthias@tenstral.net> Mon, 28 Nov 2011 15:37:55 +0100
packagekit (0.7.1-1) unstable; urgency=low
* New upstream release: 0.7.1
- qt2: Remove old Find* macro
(Matthias Klumpp) (Closes: #635981)
- qt: Drop packagekit-qt1 which is obsolete in favor of
packagekit-qt2 (Daniel Nicoletti)
- aptcc: Don't wrap sys.stdout with codecs.getwriter(...)
(Nils Philippsen)
- python: Add initial Python3 compatibility (keeping Python2.7
support) (Fabio Erculiani)
- python: Implement and use utf8 stream writer for stdout, stderr
(Nils Philippsen)
- python: Require at least Python 2.7 (Fabio Erculiani)
- python: Update exception code syntax, make it work with both
Python2 and Python3 (Fabio Erculiani)
- python: Use print() as function (Fabio Erculiani)
- smart: Implement the simulate methods (Anders F Bjorklund)
- smart: Make sure that data=installed is honored
(Anders F Bjorklund)
- smart: Remove the vfuncs table (Anders F Bjorklund)
- Add command line option to keep environment (Nils Philippsen)
- Add introspection support for PK-Plugins (Matthias Klumpp)
- Add possibility for backends/plugins to skip transactions
(Matthias Klumpp)
- Add 'uid' and 'cmdline' properties to PkBackend (Richard Hughes)
- Use the new g_thread_new() for new versions of GLib (Richard Hughes)
- Check if a transaction should be skipped after it has started too
(Matthias Klumpp)
- Don't use the deprecated g_thread_supported() in the dameon code
(Richard Hughes)
- Fix the role of the EULA transaction (Daniel Nicoletti)
- Make PK compile on GNU Hurd (Matthias Klumpp)
- Move the gtk-module extra files to the PK tarball
(Richard Hughes) (Closes: #642910)
- Offset the cache age by 30 minutes (Richard Hughes)
- plugin: Add a few GIR annotations (Matthias Klumpp)
- Remove the implemented checks for the simulate methods
(Richard Hughes)
- Require exactly 'y<enter>' or 'yes<enter>' before running a
transaction (Richard Hughes)
- Use the newest filter when resolving for new packages to install
(Richard Hughes)
* 01_new-xulrunner.patch: Fix FTBFS of browser-plugin with new Xulrunner
* 01_aptcc_fix-long-desc.patch: Applied upstream
* 02_gnuhurd-comp.patch: Applied upstream
* 03_smart-vfuncs.patch: Applied upstream
* 99_ltmain-as-needed.patch: Dropped, needs further thinking
-- Matthias Klumpp <matthias@tenstral.net> Thu, 10 Nov 2011 21:11:48 +0100
packagekit (0.7.0-1) unstable; urgency=low
* New upstream release: 0.7.0
- This is the first release of the unstable 0.7.x series.
- This code removes a lot of deprecated code and compatibility shims
compared to the previous branch.
- Highlights of this release is the new transaction plugin interface
that allows external projects to add modules for interfacing with
PackageKit. This allows projects such as Listaller to interface with
PackageKit to install self contained software blobs.
See http://listaller.tenstral.net/ for more information.
- The daemon code is now using GDBus rather than dbus-glib, but the
libpackagekit-glib library is still using the latter. It'll be
converted hopefully in time for 0.7.1.
- The changelog of this release is very long. You can look at the
NEWS file in the release tarball if you want more information.
* Remove the old apt backend, please use aptcc instead (which works
much better)
* Fix FTBFS on hurd-i386 (Closes: #645553)
* Fix Python package dependencies
-- Matthias Klumpp <matthias@tenstral.net> Fri, 14 Oct 2011 19:44:48 +0200
packagekit (0.6.18-1) unstable; urgency=low
* New upstream release: 0.6.18
- glib: Fix a small memory leak (Garrett Regier)
- qt: Do not dist the moc files (Richard Hughes)
- aptcc: Fix the size by emitting installed and download size
(DanielNicoletti)
- Fix the browser-plugin build with GTK+ < 2.24 (Frederic Crozat)
- Make the lsof plugin not lookup hostnames (Richard Hughes)
- Remove the duplicate 'The software is not from a trusted source'
(Richard Hughes)
* Removed patches which have been applied upstream
* Fix segfault with >= GLib 2.29
* Remove old, unnecessary *.moc files
-- Matthias Klumpp <matthias@tenstral.net> Wed, 07 Sep 2011 19:19:53 +0200
packagekit (0.6.17-1) unstable; urgency=low
* New upstream release: 0.6.17
- Actually use the value from /etc/login.defs (Richard Hughes)
- Ignore local packages when calculating the simulate list
(Richard Hughes)
- Ignore untrusted packages when calculating the simulate list
(Richard Hughes)
- Add an untrusted section header when using console applications
(Richard Hughes)
* aptcc: Fix crash when long description blow char buffer,
remove some mem leaks too
* aptcc: Fix the size of the packages by emitting installedSize
when installed and download size when available.
-- Matthias Klumpp <matthias@tenstral.net> Sat, 20 Aug 2011 15:12:22 +0200
packagekit (0.6.16-1) unstable; urgency=low
* New upstream release: 0.6.16
- glib: Added element-type annotations for each function returning a
GPtrArray (Alex Eftimie)
- glib: Ensure packages from the progress handler have the package_id
assigned (Richard Hughes)
- aptcc: Better put last fix in pk_backend_initialize
(Daniel Nicoletti)
- aptcc: Fix bug that resolved packages were emited as installed when
updates (Daniel Nicoletti)
- aptcc: Fix getDetails to actually use the resolved version,
deb#606135 (Daniel Nicoletti)
- aptcc: Initial support to conffile handling (Daniel Nicoletti)
- aptcc: Set env var to disable apt-listbugs closes deb#628835
(Daniel Nicoletti)
- Support looking up Plasma services (Kevin Kofler)
- Do not hardcode G_DISABLE_DEPRECATED as it breaks with GTK+-2 and
GLib (Richard Hughes)
- Do not hardcode the UID_MIN as 500. Fixes rh#717110
(Richard Hughes)
- Do not try to parse any arguments in command-not-found
(Richard Hughes)
- Ensure we save the updates cache for the pre-transaction checks
(Richard Hughes)
- Fix a build error in the browser plugin when using old versions of
gdk (Richard Hughes)
* Remove patches which were applied upstream
* Drop dependency on dh_autoreconf
* Update my mailadress
-- Matthias Klumpp <matthias@tenstral.net> Mon, 04 Jul 2011 23:00:54 +0200
packagekit (0.6.15-1) unstable; urgency=low
* New upstream release: 0.6.15
- gir: More gir annotations (Matthias Klumpp)
- packagekit-qt2: Remove package caching as we use const Packages now
(Daniel Nicoletti)
- aptcc: Emit repos while refreshing cache, and speed up
searchDetails a bit (Daniel Nicoletti)
- aptcc: Fix the way we emit repos, now it emits the string more
human readable (Daniel Nicoletti)
- Added PK_INFO_ENUM_UNTRUSTED so we can tell which packages are
trusted (Daniel Nicoletti)
- When refreshing cache backends should emit RepoDetail as frontends
will be able to present extra details (Daniel Nicoletti)
- Do not prevent updating when firefox is running, we don't have all
the client UI ready yet (Richard Hughes)
- Only include glib-unix.h if the GLib version is >= 2.29.4
(Richard Hughes)
* Set env var in aptcc to disable apt-listbugs (Closes: #628835)
* Fix aptcc getDetails method (Closes: #606135)
* Enabled build with deprecated symbols
* Don't ship .la files
-- Matthias Klumpp <matthias@nlinux.org> Tue, 14 Jun 2011 14:06:41 +0200
packagekit (0.6.14-2) unstable; urgency=low
* Removed XS-Python-Version line (Closes: #626104)
* Adjusted VCS links
* Fixed typo in package description
* Updated libpackagekit-glib2-dev dependencies
-- Matthias Klumpp <matthias@nlinux.org> Wed, 01 Jun 2011 18:10:04 +0200
packagekit (0.6.14-1) unstable; urgency=low
* Upload to unstable
* Make PK compile on non-linux archs
(Thanks to Pino Toscano) (Closes: #623125)
* Imported Upstream version 0.6.14
- glib: Add GIR annotations to make PK GIR usable
(Matthias Klumpp)
- qt2: Add Qt2 library (Daniel Nicoletti)
- qt: Fix typo in SearchGroups (Dimitar Popov)
- aptcc: Fix configure.ac to avoid pk-qt linking
against apt-pkg (Daniel Nicoletti)
- browser-plugin: Remove deprecated symbols
(Matthias Klumpp) (LP: #766046)
- Fix precedence when assigning strings to a *GStrv
(Jonny Lamb) (Closes: #622605)
- Create transaction db properly if it's not exist
(Zhang Qiang)
- Do not allow backends to output duplicate older
packages when searching with newest (Richard Hughes)
- Use the new threadsafe signal handling support in GLib
(Richard Hughes)
* Replace qt package with qt2 package
* Fix some spelling errors in description
* Remove PackageKit PolKit extension (has been removed upstream too)
* Build GTK+3 module
-- Matthias Klumpp <matthias@nlinux.org> Wed, 04 May 2011 14:23:05 +0200
packagekit (0.6.12-2) experimental; urgency=low
* Fixed changelog
* Enabled GObject introspection
* Build-depend on xulrunner or firefox
* Apply best practices for dpkg source format 3.0 (quilt)
* Add debug-info package
* Wipe out dependency_libs from .la files (Closes: #619544)
-- Matthias Klumpp <matthias@nlinux.org> Fri, 25 Mar 2011 11:17:32 +0100
packagekit (0.6.12-1) unstable; urgency=low
* Imported Upstream version 0.6.12
- Add speed python backend method (Anders F Bjorklund)
- Allow the user to specify a comma delimited list of default
backends (Richard Hughes)
- Do not enable command not found debugging by default. Fixes
rh#666254 (Richard Hughes)
- Explictly include GIO in LDADD to fix a compile error on Debian
(Matthias Klumpp, Richard Hughes)
- Fix calling pk_client_helper_start() with no environment set
(Richard Hughes)
- Fix LP#591474 bug which caused a crash when the Section() of a
package was NULL (Daniel Nicoletti)
- Only try to populate the command list in pkcon after the PkControl
command has finished (Richard Hughes)
- pkcon: check PK error in pk_console_resolve_package (Zhang Qiang)
- Set client locale to LC_MESSAGES rather than LC_ALL (Colin Watson)
- Provide a hook so spawned backends can report speed (Richard Hughes)
- aptcc: Fix compile with GLib 2.24 (Matthias Klumpp)
- aptcc: Sanitize file descriptor handling (Matthias Klumpp)
- aptcc: Use a pty rather than a pipe for writing to apt (Colin Watson)
* Drop APTcc and PK bugfix patches: Applied upstream
-- Matthias Klumpp <matthias@nlinux.org> Wed, 02 Feb 2011 17:09:14 +0100
packagekit (0.6.11-2) unstable; urgency=low
* Select right browser on Debian/Ubuntu
* Reformatted control file
* Fix crash if Section() of a package is NULL
* Fix falure of some postinst scripts when running using APTcc (LP: #680328)
-- Matthias Klumpp <matthias@nlinux.org> Tue, 25 Jan 2011 15:54:54 +0100
packagekit (0.6.11-1) unstable; urgency=low
* New upstream release
- Add a new backend role for updating the whole distro: UpgradeSystem
(Richard Hughes)
- Allow backend to encode the package origin in the package-id
(Richard Hughes)
- Added PK_ERROR_ENUM_CANNOT_FETCH_SOURCES when refreshing cache
fails (Daniel Nicoletti)
- Add recommendation repo:foo' to be able to return all packages in a
certain repository (Richard Hughes)
- Change the spec to recommend 'category:web-development' rather than
'@web-development' (Richard Hughes)
- Spawn KDE Debconf frontend if KDE is running (Matthias Klumpp)
- aptcc: Added GStreamer search (Daniel Nicoletti)
- aptcc: Fix regex not to match "()(64bit)" as we don't support
multiarch anyway (Daniel Nicoletti)
- aptcc: Port away from PK_BACKEND_OPTIONS (Daniel Nicoletti)
- aptcc: Set the env proxy vars so that Apt::Acquire is not
overwritten, fixes LP: #633008 (Daniel Nicoletti)
- aptcc: Use the new PK_ERROR_ENUM_CANNOT_GET_LOCK (Daniel Nicoletti)
* Added libnspr4-dev build-dependency
* Switch to dh_python2
* Allow every user to set proxy
* Refreshed patches
* Build-Depend on python >= 2.6.6-3+squeeze4
* Switched back to compat level 7
* Removed patches which were applied upstream
-- Matthias Klumpp <matthias@nlinux.org> Fri, 07 Jan 2011 19:58:26 +0100
packagekit (0.6.10-3) unstable; urgency=low
[ Matthias Klumpp ]
* Bumped debhelper version & added Gitignore
* Changed control file indentation
[ Julian Andres Klode ]
* Add support for GLib 2.24; thus upload to unstable
* Build with -Wl,--as-needed to avoid large dependencies
* Add myself to uploaders
-- Julian Andres Klode <jak@debian.org> Sun, 19 Dec 2010 20:20:42 +0100
packagekit (0.6.10-2) experimental; urgency=low
* Require privileges to install updates (Closes: #606092)
* Break old backends and depend on the new ones (Closes: #606133)
* Adjusted Vcs information to link to our new Git repository
* Added series file for Ubuntu to apply Ubuntu-specific patches
(like the vendor patch for example)
-- Matthias Klumpp <matthias@nlinux.org> Mon, 06 Dec 2010 18:48:47 +0100
packagekit (0.6.10-1) experimental; urgency=low
* New upstream release
- This is the first release of PackageKit to support session
configuration helper support in the GLib and Qt libraries.
- This allows debconf to work when using PackageKit on Debian.
- A formal transaction lifecyle is now in place, which allows future
extensions to hook into the transaction at certain points.
* Disabled introspection support
(requires a more recent version of gobject-introspection)
* APTcc proxy patch from upstream (makes APTcc use APT proxy settings)
* Upstream patch for some APTcc crashes
-- Matthias Klumpp <matthias@nlinux.org> Tue, 02 Nov 2010 18:08:34 +0100
packagekit (0.6.8-2) unstable; urgency=low
* Make dh_makeshlibs ignore non-public libraries. This prevents it from
including an useless shlibs-controlfile into the packages.
* Merged some patches from Ubuntu
-- Matthias Klumpp <matthias@nlinux.org> Tue, 19 Oct 2010 21:05:19 +0200
packagekit (0.6.8-1) unstable; urgency=low
* Initial release (Closes: #468132)
-- Matthias Klumpp <matthias@nlinux.org> Wed, 25 Aug 2010 19:40:12 +0200
|