1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517
|
packagekit (1.3.4-3) unstable; urgency=medium
* Team upload
[ Matthias Klumpp ]
* Stop recommending removed packagekit-tools package (Closes: #1126735)
(LP: #2139443)
[ Jeremy Bícha ]
* Bump Standards Version to 4.7.3
-- Jeremy Bícha <jbicha@ubuntu.com> Sun, 01 Feb 2026 14:22:02 -0500
packagekit (1.3.4-1) unstable; urgency=medium
* New upstream version: 1.3.4
* Drop packagekit-tools package
- The pkcon/pkmon tools are obsolete, and the replacement `pkgcli` tool
is available in the main package. The old split into a separate -tools
package was for historical reasons only.
- Nothing in Debian uses pkcon, and there is plenty of time to adjust any
scripts while this change sits in unstable/testing. But if there is a
huge, justifiable need to reintroduce pkcon, we can add the -tools
package back (please file a bug in that case). The `pkgcli` utility
should be an adequate replacement for both pkcon & pkmon.
* Update symbols file
-- Matthias Klumpp <mak@debian.org> Wed, 28 Jan 2026 21:28:30 +0100
packagekit (1.3.3-1) unstable; urgency=medium
* New upstream version: 1.3.3
* Install GIR typelib to the correct location (Closes: #1118515)
* Install pkgctl, a new experimental command-line interface to
PackageKit, so it can receive some testing
* Update symbols file
* d/control: Drop Rules-Requires-Root (no longer needed)
-- Matthias Klumpp <mak@debian.org> Mon, 24 Nov 2025 20:29:26 +0100
packagekit (1.3.2-1) unstable; urgency=medium
* New upstream version: 1.3.2
-- Matthias Klumpp <mak@debian.org> Thu, 02 Oct 2025 22:06:52 +0200
packagekit (1.3.1-1) unstable; urgency=medium
[ Matthias Klumpp ]
* New upstream version: 1.3.1
- Implement enable/disable support for deb822-style repo sources
- Harmonize repo-ids between deb822 and legacy sources
- Use 'pk_backend_job_details_full()' so download size is
reported properly (Closes: #1026076)
* Drop patches: Applied upstream
* Drop build-dependency on gobject-introspection-bin (Closes: #1094624)
[ Michael Biebl ]
* Drop obsolete pkla configuration file (Closes: #1093073)
-- Matthias Klumpp <mak@debian.org> Tue, 22 Apr 2025 22:18:16 +0200
packagekit (1.3.0-3) unstable; urgency=medium
* Adjust for libapt-pkg7.0 API
-- Julian Andres Klode <jak@debian.org> Mon, 17 Feb 2025 10:35:40 +0100
packagekit (1.3.0-2) unstable; urgency=medium
* Team upload
* Backport patch to fix pkcon crashing in transactions with user prompt
(LP: #2086771)
* Backport patch to fix showing the GTK debconf helper on Wayland
(LP: #2086773)
-- Alessandro Astone <alessandro.astone@canonical.com> Fri, 08 Nov 2024 15:56:31 -0500
packagekit (1.3.0-1) unstable; urgency=medium
* New upstream version: 1.3.0
* Drop all patches: Applied upstream
-- Matthias Klumpp <mak@debian.org> Sun, 16 Jun 2024 17:40:52 +0200
packagekit (1.2.8-2) unstable; urgency=medium
* Add strlen-cmp-memfix.patch:
- Check string length correctly to prevent memory
over-consumption.
* Add identify-ubuntu.patch:
- Do not incorrectly identify Ubuntu sources as coming
from Debian.
* Switch build dependency from pkg-config -> pkgconf,
add gobject-introspection-bin.
-- Matthias Klumpp <mak@debian.org> Tue, 20 Feb 2024 22:20:42 +0100
packagekit (1.2.8-1) unstable; urgency=medium
[ Matthias Klumpp ]
* New upstream version: 1.2.8
- Removes bashisms (Closes: #772289)
- Fixes crash when finishing a uncommitted transaction (Closes: #1054026)
- Deduplicates offline-update entries (Closes: #910365)
* Slightly tweak description text
[ Helmut Grohne ]
* Fix FTBFS when systemd.pc changes systemdsystemunitdir (Closes: #1052982)
-- Matthias Klumpp <mak@debian.org> Wed, 08 Nov 2023 22:28:00 +0100
packagekit (1.2.7-1) unstable; urgency=medium
* New upstream version 1.2.7
* Drop all patches: Applied upstream
* Enable all tests except for the daemon tests
- The daemon tests need special configuration and
root access, so we still can not run them.
* Update symbols file
-- Matthias Klumpp <mak@debian.org> Sun, 27 Aug 2023 15:46:54 +0200
packagekit (1.2.6-5) unstable; urgency=medium
* Add fix-tiny-memleak.patch:
- Free transaction property when progress is done.
* Add remove-references-to-packagekit.org.patch:
- The packagekit.org domain was taken over by an actor who is
serving potentially malicious ads on it, and no longer redirects
to the proper pages. To ensure nobody lands there accidentally,
replace all links to pk.org with the proper ones pointing at
freedesktop.org.
* Make the daemon package recommend packagekit-tools again
- This change was not intended for bookworm and may
be re-applied after its release (Closes: #1036153).
-- Matthias Klumpp <mak@debian.org> Sun, 28 May 2023 19:00:10 +0200
packagekit (1.2.6-4) unstable; urgency=medium
* Add apt-fix-mimetype-search-crash.patch (Closes: #1032510)
- Fixes a daemon crash when searching for provided mediatypes
* packagekit: Recommend, instead of suggest appstream
- It is needed for many operations, and quite odd for users if data
is randomly missing with no explanation.
* Don't have the library recommend the daemon package (Closes: #1012175)
* Bump standards version (no changes needed)
-- Matthias Klumpp <mak@debian.org> Sun, 16 Apr 2023 18:58:34 +0200
packagekit (1.2.6-3) unstable; urgency=medium
* Add apt-better-repo-names.patch:
- Display meaningful repository names instead of just suite names.
* Add pkcon-fix-progressbar-padding.patch:
- Fix layout when progress is shown.
* Add shutdown-daemon-on-idle.patch:
- Shut down daemon when it is not used again. This functionality
was originally removed to work around a bug in DNF which does
not affect us in Debian (Closes: #802306).
* Add fix-uninitialized-timer.patch:
- Fix potential crash that may occur on daemon shutdown.
* Add apt-update-urgency-as-status.patch:
- Send update urgencies as package status again, as this behavior
seems to be expected by frontends and did not cause any problems
in the past (Closes: #1030179).
-- Matthias Klumpp <mak@debian.org> Fri, 10 Feb 2023 22:48:36 +0100
packagekit (1.2.6-2) unstable; urgency=high
* Ensure PackageKit services aren't stopped or restarted during
package upgrade, as PackageKit might be performing an upgrade
of itself, and killing an ongoing APT transaction will break
the package manager and require manual repair.
This is an especially big problem when performing offline upgrades.
(Closes: #880712)
-- Matthias Klumpp <mak@debian.org> Wed, 04 Jan 2023 18:40:38 +0100
packagekit (1.2.6-1) unstable; urgency=medium
* New upstream version: 1.2.6
- New plural signals for improved performance
- Large APT backend refactoring
- Changelogs from APT are emitted correctly now
* Drop patches: Applied upstream
* Adjust rules for aptcc rename
* Refresh policy patch
* Update symbols file
* Depend on polkitd instead of policykit-1 (Closes: #1022071)
* Revert "Add alternate recommends for packagekit-installer"
- This patch changed the maintainer to Ubuntu, so was likely added
by mistake. Dropped the maintainer change, re-added the
"packagekit-installer" recommendation, as it is inert on Debian.
-- Matthias Klumpp <mak@debian.org> Thu, 01 Dec 2022 20:42:52 +0100
packagekit (1.2.5-4) unstable; urgency=medium
[ Ken VanDine ]
* Add alternate recommends for packagekit-installer
[ Debian Janitor ]
* Apply multi-arch hints. + packagekit-gtk3-module: Add Multi-Arch: same.
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 30 Nov 2022 15:25:46 -0500
packagekit (1.2.5-3) unstable; urgency=medium
* fix-single-candidate-pkgid-emission.patch: Handle case when there
is no candidate at all (LP: #1963904)
* Add aptcc_more-smartpointers.patch: Use smartpointers in more places
-- Matthias Klumpp <mak@debian.org> Tue, 15 Mar 2022 14:36:34 +0100
packagekit (1.2.5-2) unstable; urgency=medium
* Add fix-single-candidate-pkgid-emission.patch
- Unblock updates by emitting package-IDs again even if there
is just one candidate available.
-- Matthias Klumpp <mak@debian.org> Tue, 22 Feb 2022 23:48:44 +0100
packagekit (1.2.5-1) unstable; urgency=medium
* New upstream version: 1.2.5
Notable changes:
- aptcc: Do not mark all updates as manually installed
- aptcc: Apply auto/manual state from previously resolved pkgids
when needed
- aptcc: Attempt to fix broken packages again when system
repair is requested
- aptcc: Correctly list all the available package versions
- aptcc: Display an excerpt of dpkg's log on error instead of not
failing at all
- aptcc: Emit only the first, likely highest-quality error when dpkg fails
- aptcc: Make package downgrades work again
- aptcc: Return local file listings in the same format as installed ones
- Add flags to D-Bus offline invoking methods
- Properly handle allow-reinstall flag for installations
- Provide better error message if trying to install an installed package
- Wait until online to activate systemd service
* policy: Allow any inactive user to refresh the package cache
as well (Closes: #965030)
* Update symbols file
* Mark d/rules as not requiring root
* Bump dh compat level to 13
* Drop some no longer needed breaks constraints
* policy: Allow any user to trigger offline updates
by default (Closes: #1003141)
* Remove 2 obsolete maintscript entries in 1 files (thanks, Janitor!)
* Set upstream metadata fields: Bug-Database, Contact (thanks, Janitor!)
-- Matthias Klumpp <mak@debian.org> Thu, 17 Feb 2022 21:40:18 +0100
packagekit (1.2.4-1) unstable; urgency=medium
* New upstream version: 1.2.4
- Resolves FTBFS with newer Meson versions (Closes: #998578)
* Drop no-crash-pk_dbus_get_uid.patch: Applied upstream
* Update symbols file
-- Matthias Klumpp <mak@debian.org> Sun, 07 Nov 2021 20:04:15 +0100
packagekit (1.2.2-2) unstable; urgency=medium
[ Laurent Bigonville ]
* debian/control: Build-Depend on libplymouth-dev (>= 0.9.5) and
Breaks against previous version of the plymouth package
* debian/packagekit.links: Ensure that the packagekit-offline-update service
is started in the system-update.target.wants target (Closes: #977876)
-- Matthias Klumpp <mak@debian.org> Tue, 22 Dec 2020 22:14:10 +0100
packagekit (1.2.2-1) unstable; urgency=medium
* New upstream version: 1.2.2
* Unconditionally disable offline-updates on non-Linux architectures
* Drop all patches: Applied upstream
* Add no-crash-pk_dbus_get_uid.patch: Don't crash when calling
pk_dbus_get_uid() before D-Bus is set up (Closes: #974826).
-- Matthias Klumpp <mak@debian.org> Tue, 22 Dec 2020 12:48:56 +0100
packagekit (1.2.1-1) unstable; urgency=medium
[ Matthias Klumpp ]
* New upstream version: 1.2.1
* Drop all previous patches: Applied upstream.
* Add aptcc-use-pkgconfig.patch: Fix build with newer APT versions,
and simplify dependency on apt-pkg .
* Add aptcc-build-debconfhelper.patch: Build debconf socket-activated
helper again now that PK builds with Meson.
* Add aptcc-CVE-2020-16122.patch: Always distrust local .deb packages
* Add fix-CVE-2020-16121.patch: Resolve information disclosure in
InstallFiles, GetFilesLocal and GetDetailsLocal (Closes: #972229)
* Add test-install-missing-files.patch: Install some missing files used
by the test backend that have been forgotten in the Meson transition.
* Adjust packaging for using the Meson build system
* Cleanup d/rules, a lot of files we previously removed are gone now
by upstream default
* d/control: Update dependencies for new release
* Drop build-dep on xmlto and docbook-utils (no longer needed)
* Remove last remnants of the GTK+2 plugin (Closes: #967678)
* Update .symbols file
[ Laurent Bigonville ]
* Do not try to install pk-debconf-helper on non-linux architectures
(Closes: #952872)
* Move daemon and helper binaries to /usr/libexec
-- Matthias Klumpp <mak@debian.org> Wed, 21 Oct 2020 18:26:38 +0200
packagekit (1.1.13-2) unstable; urgency=medium
* aptcc-fix-locale-set.patch: Set locale properly when performing requests
-- Matthias Klumpp <mak@debian.org> Thu, 16 Jan 2020 21:51:56 +0100
packagekit (1.1.13-1) unstable; urgency=medium
* New upstream version 1.1.13
- also generate a repo detail when a download happened
- Completely remove distro-upgrade support for now
- Disable distro-upgrade functionality (for now)
- Introduce socket-activated pk-debconf-helper
- Add support for user services
- Use new plymouth "system-upgrade" and "reboot" modes
- Do not dereference pk-client-helper argument before checking it
- List installed, removed and obsoleted packages in pkcon get-updates
- Properly mark obsoleted packages when simulating upgrade
- Support non-x86 arches in gstreamer helper
- Don't use a bash regex to fix command not found on other shells
* Switch to dh compat level 12
* Remove debug symbol migration: No longer needed
* Drop all bugfix patches: Applied upstream
* add-missing-pk-debconf-service-files.patch: Add missing service files
* Update install file for new release
* Update symbols
-- Matthias Klumpp <mak@debian.org> Wed, 08 Jan 2020 22:34:06 +0100
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> Wed, 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
|