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 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672
|
ibus (1.5.32-2) unstable; urgency=medium
* Upload to unstable.
-- Boyuan Yang <byang@debian.org> Wed, 02 Jul 2025 10:15:42 -0400
ibus (1.5.32-2~exp1) experimental; urgency=medium
* Team upload.
* Run xvfb-run with -s "-noreset" to avoid random FTBFS in tests.
(Closes: #1108040)
-- Boyuan Yang <byang@debian.org> Wed, 02 Jul 2025 00:28:55 -0400
ibus (1.5.32-1) unstable; urgency=medium
* Team upload.
* New upstream release.
-- Boyuan Yang <byang@debian.org> Thu, 10 Apr 2025 20:22:56 -0400
ibus (1.5.32~rc2-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* debian/control: Add missing build-dependencies:
+ gir1.2-gobject-2.0-dev <!nogir>
+ gir1.2-gio-2.0-dev <!nogir>
* debian/control: Add missing ${gir:Depends} and ${gir:Provides}
for libibus-1.0-dev binary package.
-- Boyuan Yang <byang@debian.org> Thu, 20 Mar 2025 18:46:30 -0400
ibus (1.5.32~rc1-1) unstable; urgency=medium
* Team upload.
* New upstream version 1.5.32~rc1. (Closes: #1098736)
-- Boyuan Yang <byang@debian.org> Fri, 28 Feb 2025 00:37:05 -0500
ibus (1.5.32~beta2-2) unstable; urgency=medium
* Team upload
* Avoid direct dependency on GTK. In particular, this allows ibus
to provide GTK2 support by default without requiring GTK2 to be
installed for people who don't need it.
-- Alessandro Astone <alessandro.astone@canonical.com> Wed, 19 Feb 2025 16:44:54 -0500
ibus (1.5.32~beta2-1) unstable; urgency=medium
* Team upload.
* New upstream version 1.5.32~beta2.
* debian/patches/backport/: Dropped, merged now.
* debian/patches/debian-multiarch.patch: Unfuzz patch.
* debian/libibus-1.0-5.symbols: Add new symbol info.
-- Boyuan Yang <byang@debian.org> Sun, 16 Feb 2025 15:47:09 -0500
ibus (1.5.32~beta1-1) unstable; urgency=medium
* Team upload.
* New upstream version 1.5.32~beta1.
* debian/control: Add build-dependency wayland-protocols [linux-any].
* Bump Standards-Version to 4.7.0.
* debian/: Use dh-sequence-python3 instead of dh-python.
* debian/patches/: Backport patches till 2025-01-30.
* README.Debian: Refresh info about libpinyin and GTK4 support.
* debian/libibus-1.0-5.symbols: Add new symbols.
-- Boyuan Yang <byang@debian.org> Fri, 31 Jan 2025 16:43:15 -0500
ibus (1.5.31-1) unstable; urgency=medium
* Team upload.
* New upstream release.
-- Boyuan Yang <byang@debian.org> Thu, 14 Nov 2024 14:06:44 -0500
ibus (1.5.31~rc1-1) unstable; urgency=medium
* Team upload.
* New upstream release. (Closes: #1070738, #1085342)
* debian/control: Update build-dep: pkg-config => pkgconf.
* debian/copyright: Fix copyright information.
* debian/ibus-tests.lintian-overrides: Drop unused overrides.
* debian/ibus-tests.install: Also install the new binary
/usr/libexec/ibus-desktop-testing-module.
-- Boyuan Yang <byang@debian.org> Sat, 02 Nov 2024 15:56:12 -0400
ibus (1.5.30-1) unstable; urgency=medium
* Team upload.
* New upstream release. (Closes: #1074507)
* debian/libibus-1.0-5.symbols: Add new symbol.
-- Boyuan Yang <byang@debian.org> Tue, 02 Jul 2024 11:25:46 -0400
ibus (1.5.29-2) unstable; urgency=medium
* Team upload.
[ Jeremy BÃcha ]
* Bump Build-Depends for unicode-cldr-core & unicode-data.
This forces ibus to support Unicode 15.1.
[ Boyuan Yang ]
* debian/control: Remove retired package uploader.
* debian/control: Add a basic package description to the source package.
Also use ${source:Synopsis} and ${source:Extended-Description} to
avoid duplication of the same texts in the file.
* debian/control: Place libglib2.0 version requirement to
build-dependencies. (Closes: #1067942)
-- Boyuan Yang <byang@debian.org> Sun, 31 Mar 2024 08:04:22 -0400
ibus (1.5.29-1) unstable; urgency=medium
* Team upload.
* New upstream release (identical with 1.5.29-rc2).
* debian/control:
+ Replace build-dependency systemd [linux-any] with
systemd-dev [linux-any].
-- Boyuan Yang <byang@debian.org> Sat, 06 Jan 2024 15:13:23 -0500
ibus (1.5.29~rc2-1) unstable; urgency=medium
* Upstream rc release
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Mon, 13 Nov 2023 14:57:52 +0100
ibus (1.5.29~rc1-1) unstable; urgency=medium
* Upstream rc release
- Fixes issue with candidate window position in gtk4 apps
(closes: #1040615).
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Tue, 22 Aug 2023 16:13:57 +0200
ibus (1.5.29~beta2-1) unstable; urgency=medium
* Make d/watch search also for beta releases
* Upstream beta release
* Drop patch, applied upstream
* Refresh d/p/debian-multiarch.patch
* Update d/libibus-1.0-5.symbols
* Lintian overrides about no-manual-page
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Tue, 15 Aug 2023 14:00:08 +0200
ibus (1.5.29~beta1-3) unstable; urgency=high
* d/p/Fix-typo-in-src-ibusservice.h.patch
- Modified patch added in 1.5.29~beta1-2 to fix build failure.
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Wed, 02 Aug 2023 17:43:06 +0200
ibus (1.5.29~beta1-2) unstable; urgency=high
* Fix typo in src/ibusservice.h (LP: #2029322)
* d/control: Add myself to Uploaders list
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Wed, 02 Aug 2023 08:24:16 +0200
ibus (1.5.29~beta1-1) unstable; urgency=medium
* Upstream beta release
* Dropped patches, applied upstream
* Refreshed patches:
- 0003-dconf-Use-dbus-run-session-to-set-up-dconf-overrides.patch
- dconf-Create-a-temporary-XDG_RUNTIME_DIR.patch
* Added libdbusmenu to Build-Depends
* Update d/libibus-1.0-5.symbols again
* d/control: Drop obsolete Breaks/Replaces
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Tue, 01 Aug 2023 10:45:25 +0200
ibus (1.5.28-6) unstable; urgency=medium
* Team upload
* Fix jumbling issue when typing fast (LP: #1996652)
- d/p/bus-Apply-code-style-to-inputcontext.c.patch
- d/p/src-Fix-sync-ibus_input_context_process_key_event.patch
- d/p/client-x11-Fix-sync-ibus_input_context_process_key_event.patch
* Update d/libibus-1.0-5.symbols accordingly
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Wed, 26 Jul 2023 22:39:15 +0200
ibus (1.5.28-5) unstable; urgency=medium
* Team upload
* Re-enable the xkb-latin-layouts test
* Upload to unstable
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Mon, 19 Jun 2023 18:31:29 +0200
ibus (1.5.28-4) experimental; urgency=medium
* Team upload
* Fix FTBFS twice in a row (closes: #1034090)
- d/p/Make-ibusenumtypes.h-ready-after-clean.patch
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Tue, 11 Apr 2023 19:43:57 +0200
ibus (1.5.28-3) experimental; urgency=medium
* Team upload
* Fix broken code point feature (LP: #2012788)
- d/p/src-Call-IBUS_TYPE_EMOJI_DATA-in-ibus_init.patch
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Wed, 29 Mar 2023 16:38:51 +0200
ibus (1.5.28-2) experimental; urgency=medium
* Team upload
* Fix missing key events (LP: #2009700)
- d/p/client-x11-Fix-Key-typing-order.patch
- d/p/util-IMdkit-Disable-while-loop-before-call-ForwardEvent.patch
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Thu, 16 Mar 2023 13:31:39 +0100
ibus (1.5.28-1) experimental; urgency=medium
* Team upload
* New upstream release
* Drop patches applied upstream
* Refresh debian-multiarch.patch
* d/rules: Skip the xkb-latin-layouts test
- This is a temporary workaround. simple.xml has been adapted to
xkeyboard-config 2.38, while Debian is still on 2.35.
* Updated d/libibus-1.0-5.symbols
* d/copyright: Dropped reference to non-existing file
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Wed, 22 Feb 2023 21:49:59 +0100
ibus (1.5.27-5) unstable; urgency=medium
* Team upload
[ Janitor ]
* Remove constraints unnecessary since buster
[ Gunnar Hjalmarsson ]
* Bump Standards-Version to 4.6.2
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Mon, 13 Feb 2023 12:22:01 +0100
ibus (1.5.27-4) unstable; urgency=medium
* Team upload
* Work around uscan issue with GitHub releases page
* Override Lintian "source-is-missing" error
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Sun, 06 Nov 2022 22:12:55 +0100
ibus (1.5.27-3) unstable; urgency=medium
* Team upload
[ Changwoo Ryu ]
* Drop the FHS 2.x /usr/lib/ibus compatibility; all the ibus engine
packages have been migrated to use /usr/libexec. (Closes: #955219)
[ Eberhard Beilharz ]
* Fix surrounding text issue (closes: #1019453):
- d/p/client-gtk2_Stop-many-warnings-of-surrounding-text.patch
- d/p/client-gtk2_Update-capabilities-if-retrieve-surrounding-.patch
- d/p/client-gtk2_Update-surrounding-text-properties-by-focus-.patch
[ Samuel Thibault ]
* Ignore systemd when building on non-Linux (closes: #1023340)
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Wed, 02 Nov 2022 23:01:09 +0100
ibus (1.5.27-2) unstable; urgency=medium
* Team upload
[ Simon McVittie ]
* Only build and run ibus-tests on architectures with working mozjs102
(closes: #1018871)
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Thu, 01 Sep 2022 22:31:05 +0200
ibus (1.5.27-1) unstable; urgency=medium
* Team upload
* New upstream release
* Dropped patches, applied upstream
* Refresh d/p/debian-multiarch.patch
* Bump Standards-Version to 4.6.1
* Build-dep on libnotify-dev
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Mon, 29 Aug 2022 00:01:19 +0200
ibus (1.5.26-4) unstable; urgency=medium
* Team upload
* d/p/src-services_Fix-bashisms-in-org.freedesktop.IBus.session.patch:
- Cherry picked upstream PR from Mitsuya Shibata (closes: #1009256,
LP: #1968459).
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Sun, 10 Apr 2022 14:16:37 +0200
ibus (1.5.26-3) unstable; urgency=medium
* Team upload
* d/p/src-Fix-refcounting-issues.patch:
- Cherry picked from upstream (LP: #1965673)
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Mon, 04 Apr 2022 13:01:37 +0200
ibus (1.5.26-2) unstable; urgency=medium
* Team upload
* Add systemd to Build-Depends (LP: #1964682)
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Mon, 14 Mar 2022 18:55:49 +0100
ibus (1.5.26-1) unstable; urgency=medium
* Team upload
* New upstream release
* Tweak of lintian override files
* Dropped patches, applied upstream
* Install new files
* Bump copyright year
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Mon, 14 Mar 2022 11:27:48 +0100
ibus (1.5.25-3) unstable; urgency=medium
* Team upload
* d/p/ui_gtk2-Deprecate-gettext.bind_textdomain_codeset.patch:
- Handle deprecated function and prevent with that an issue when
the default python version is bumped to 3.10.
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Sat, 13 Nov 2021 22:10:11 +0100
ibus (1.5.25-2) unstable; urgency=medium
* Team upload
* d/p/ibusimcontext_Fix-wrong-cursor-location-in-gtk3-apps.patch:
- Fix issue with wrong candidate window position.
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Sun, 05 Sep 2021 01:55:19 +0200
ibus (1.5.25-1) unstable; urgency=medium
* Team upload
* New upstream release
* Bump Standards-Version to 4.6.0
* Refresh socket-name-compatibility.patch
* Update symbols file
* Release to unstable
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Sat, 04 Sep 2021 23:26:33 +0200
ibus (1.5.24-2~exp1) experimental; urgency=medium
* Team upload
[ Changwoo Ryu ]
* debian/control:
- Update the ibus-wayland description
[ Gunnar Hjalmarsson ]
* debian/rules, debian/control, debian/ibus-gtk4.install:
- Enable GTK 4 and build the ibus-gtk4 binary
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Fri, 30 Jul 2021 19:21:27 +0200
ibus (1.5.24-1) unstable; urgency=medium
* Team upload
* New upstream release
- This includes GTK 4 support, but we build without enabling GTK 4
for now.
* debian/patches/Warn-deprecated-IBus-XKB-engines-w-dialog.patch:
- Dropped, applied upstream
* Added a debian/upstream/metadata file
* debian/copyright: Upstream-Contact added, copyright year bumped
-- Gunnar Hjalmarsson <gunnarhj@ubuntu.com> Tue, 02 Mar 2021 21:47:06 +0100
ibus (1.5.23-2) unstable; urgency=medium
* Team upload
* debian/patches/Warn-deprecated-IBus-XKB-engines-w-dialog.patch:
- Show a warning dialog when a deprecated engine name from
ibus < 1.5.23 is configured (LP: #1901789).
* Bump Standards-Version to 4.5.1
-- Gunnar Hjalmarsson <gunnarhj@ubuntu.com> Mon, 14 Dec 2020 13:09:45 +0100
ibus (1.5.23-1) unstable; urgency=medium
[ Changwoo Ryu ]
* debian/control: Update ibus-wayland description
* debian/ibus.bug-script: Update bug script
- Fix for when $XDG_CURRENT_DESKTOP has colon separated values.
- Use absolute paths for commands.
- Remove QT4 environment variable; not supported anymore
* debian/rules: Correct test for debhelper 13
- Do not check DEB_BUILD_OPTIONS nocheck anymore
- Do not use debhelper 13 provided $HOME and XDG dirs. The provided
$XDG_CACHE_HOME is too long so the ibus-daemon socket name length
easily exceeds the limit (107 bytes in Linux).
* debian/control: Replace Build-profiles with Build-Profiles
* debian/copyright: Fix duplicated files
* debian/control: Drop Build-Depends on qtbase5-dev; the upstream
1.5.23 doesn't check it anymore.
[ Gunnar Hjalmarsson ]
* debian/control: Make ibus-data suggest ibus instead of recommending
it (closes: #964558)
* New upstream release
* d/p/0003-dconf-Use-dbus-run-session-to-set-up-dconf-overrides.patch:
- Refreshed
* Dropped patches, applied upstream:
- d/p/bashism-installed-tests.patch
- d/p/remove-glib-check-version.patch
- d/p/use-wayland-display-for-socket-name.patch
-- Changwoo Ryu <cwryu@debian.org> Sat, 31 Oct 2020 18:10:02 +0900
ibus (1.5.22-5) unstable; urgency=medium
[ Changwoo Ryu ]
* debian/control:
- Enable package ibus-tests on s390x again. Currently gnome-shell
3.36.x is being built on s390x.
- Bump debhelper compat version to 13
* debian/rules:
- Remove the emoji-test.txt version check; not needed anymore
- Remove -Wl,--as-needed linker flag; the bullseye tool chain defaults
to it
* debian/patches/socket-name-compatibility.patch: Updated. Writing
additional file for "DISPLAY" was not enough. Find non-setup X11
display for X11 clients and write an additional file.
[ Gunnar Hjalmarsson ]
* Ubuntu only additions which make it possible for Ubuntu to sync the
source from Debian (closes: #959185)
-- Changwoo Ryu <cwryu@debian.org> Fri, 15 May 2020 07:53:17 +0900
ibus (1.5.22-4) unstable; urgency=medium
* debian/patches/socket-name-compatibility.patch: Compatibility for
use-wayland-display-for-socket-name.patch. This fixes Qt clients
breakage in Wayland.
-- Changwoo Ryu <cwryu@debian.org> Sun, 12 Apr 2020 12:12:18 +0900
ibus (1.5.22-3) unstable; urgency=medium
* debian/patches/use-wayland-display-for-socket-name.patch: Backport
from the upstream. It fixes the problem on using X11 clients in
gnome-shell 3.36 wayland sessions. (Closes: #955769)
-- Changwoo Ryu <cwryu@debian.org> Tue, 07 Apr 2020 11:59:49 +0900
ibus (1.5.22-2) unstable; urgency=medium
[ Changwoo Ryu ]
* Revert the emoji-test.txt embedding and use emoji-test.txt in
unicode-data (>= 13.0.0-2), which ships this file (#953795).
* debian/patches/libexec-fhs2-compat.patch: Provide compatibility with
FHS 2.x built ibus engine packages, after moving to /usr/libexec
* debian/rules: Set GVFS_DISABLE_FUSE=1 while running tests, to prevent
gvfsd from mounting FUSE filesystems.
* debian/patches/remove-glib-check-version.patch: Do not check glib
runtime version on gtk immodule init. (Closes: #954207)
* debian/ibus.bug-script: Updated
- Use /bin/sh instead of /bin/bash
- Remove locale/shell envvars which are redundant (See #946326)
- Add more settings from GSettings, localectl, setxkbmap and ~/.Xmodmap
(Closes: #942470)
[ Laurent Bigonville ]
* Move the daemons to /usr/libexec now that's allowed in the policy
-- Changwoo Ryu <cwryu@debian.org> Sat, 21 Mar 2020 21:23:02 +0900
ibus (1.5.22-1) unstable; urgency=high
[ Changwoo Ryu ]
* debian/lintian-overrides: Ignore lintian info
hardening-no-fortify-functions on /usr/bin/ibus-daemon. It uses
readlink(2) which is not protectable.
* debian/copyright: Correct copyright years and add new files
* Fix FTBFS with unicode-data 13.0 (Closes: #953775)
- debian/emoji/emoji-test.txt: Added in the source, downloaded from
https://www.unicode.org/Public/emoji/13.0/.
- debian/README.source: Add information on it
- debian/copyright: Add Unicode license
- debian/rules: Add --with-unicode-emoji-dir flag
* debian/control: Update Build-Depends
- The upstream requires GTK 3.12.0
[ Laurent Bigonville ]
* debian/control: Add libglib2.0-doc to the Build-Depends-Indep. This
will fix the link between the ibus documentation and the GLib one
-- Changwoo Ryu <cwryu@debian.org> Mon, 16 Mar 2020 19:06:40 +0900
ibus (1.5.22-1~exp1) experimental; urgency=medium
[ Changwoo Ryu ]
* New upstream version
- Remove upstream-applied patches:
bashism.patch, bus-Implement-GDBusAuthObserver-callback.patch,
unix-socket-path.patch, test-fix-on-slow-machines.patch
- Remove upstream-applied .desktop entry changing rule
(https://github.com/ibus/ibus/pull/2162)
* Bump Standards-Version to 4.5.0.
* debian/patches/bashism-installed-tests.patch: Fix bashism in
the ibus-desktop-testing-runner installed-tests script
-- Changwoo Ryu <cwryu@debian.org> Wed, 26 Feb 2020 20:53:23 +0900
ibus (1.5.21-6) UNRELEASED; urgency=low
[ Changwoo Ryu ]
* Fix test failure on some slow machines
- debian/patches/test-fix-on-slow-machines.patch: Increase the delay
after running the background ibus-daemon while running tests.
-- Changwoo Ryu <cwryu@debian.org> Thu, 02 Jan 2020 20:16:10 +0900
ibus (1.5.21-5) unstable; urgency=medium
[ Changwoo Ryu ]
* debian/patches/*: Add/Update patch tags on upstream status
* debian/control: Drop alternative Recommends and Suggests on
libqt5gui5; Qt apps always have this dependency and not-installing
ibus-gtk can cause issues with Chromium or Firefox to KDE users. See
#926625.
* debian/control: Move librsvg2-common dependency from ibus to ibus-data,
which contains SVG icons.
* debian/patches/unix-socket-path.patch: Apply upstream git commits
about the IBus Unix socket. It fixes non-linux FTBFS.
* debian/rules: Revert non-linux FTBFS regression by 1.5.21-4~exp1.
Add a comment on the reason why cleaning Vala-generated files.
-- Changwoo Ryu <cwryu@debian.org> Wed, 01 Jan 2020 18:52:17 +0900
ibus (1.5.21-4) unstable; urgency=medium
[ Changwoo Ryu ]
* debian/rules: for fixing and debugging FTBFS on non-systemd
- Use xvfb to run dh_auto_test
- Do not run ibus daemon in background on test
* debian/rules:
- Do not build ibus-tests on (compatibility-only) Ubuntu i386, as some
of ibus-tests depends are not in the compatibility layer. Patch from
Steve Langasek. (Closes: #947262)
-- Changwoo Ryu <cwryu@debian.org> Thu, 26 Dec 2019 08:46:04 +0900
ibus (1.5.21-4~exp1) unstable; urgency=medium
* Upload to experimental due to new binpkg python3-ibus-1.0
[ Changwoo Ryu ]
* ibus-tests: Move the test-only ibus-desktop-testing-runner executable
from /usr/bin to /usr/lib/ibus/installed-tests/.
* debian/control: Update Build-Depends to match the upstream source
- Remove unused libdbus-glib-1-dev, libjson-glib-dev and python3-dbus.
- Update versions of gobject-introspection, libdconf-dev,
libglib2.0-dev, libwayland-dev, qtbase5-dev, python-gi-dev and valac.
- Add Depends libglib2.0-0 (>= 2.62.2-2) for #941018
* debian/rules: Clean up override_dh_* rules
* debian/ibus.bug-script
- Fix a typo
- Remove "locale" command; bug-script always runs in "C" locale.
* debian/{control,rules}: Support nodoc and noinsttest build profiles
* gir1.2-ibus-1.0:
- Do not install python2 file in gir1.2-ibus-1.0 (Closes: #944387)
- Move Python 3 overrides to new python3-ibus-1.0
* debian/{ibus,ibus-data}.install: Move manpages to the same package
with the executables.
-- Changwoo Ryu <cwryu@debian.org> Tue, 17 Dec 2019 14:16:50 +0900
ibus (1.5.21-3) unstable; urgency=medium
* Team upload.
* debian/control: Disable package ibus-tests on s390x.
This really fixes Debian bug 944614.
-- Boyuan Yang <byang@debian.org> Tue, 26 Nov 2019 14:10:45 -0500
ibus (1.5.21-2) unstable; urgency=high
* Team upload.
[ Boyuan Yang ]
* debian/README.Debian: Drop words about Qt4.
* debian/control:
+ Bump Standards-Version to 4.4.1.
+ Downgrade dependency of ibus-tests -> gnome-shell to
recommendation on s390x since gnome-shell currently FTBFS on
s390x architecture.
This makes ibus able to migrate to testing. (Closes: #944614)
[ Changwoo Ryu ]
* d/rules: Improve tests
- Check DEB_BUILD_OPTIONS nocheck on override_dh_auto_test
- Use dbus-run-session to run tests
- Create/remove XDG data directories under debian/ so it run tests without
touching dot folders in $HOME.
- Try to unmount gvfs-fuse mount in $XDG_RUNTIME_DIR if any
* d/{README.update-po,update-po}: Removed as it's currently not valid
* d/ibus.bug-presubj: Fix GNOME input source setting information for
recent GNOME versions.
* d/{control,README.Debian}: Replace old name GTK+ with GTK
* d/control: Add "Rules-Requires-Root: no"
[ Osamu Aoki ]
* debian/ibus.bug-script: Fix typo in reportbug script.
(Closes: #942465)
-- Boyuan Yang <byang@debian.org> Tue, 12 Nov 2019 15:12:39 -0500
ibus (1.5.21-1) unstable; urgency=medium
[ Changwoo Ryu ]
* Upload to unstable
* Apply upstream commit to fix CVE-2019-14822 (Closes: #940267)
* d/rules: Add XDG_RUNTIME_DIR settings on build
- Based on d/rules of the glib2.0 package
- possibly to fix the test failures in non-linux arch builds
* d/control: Remove unnecessary Build-Depends: gnome-common,
libnotify-dev
-- Changwoo Ryu <cwryu@debian.org> Wed, 18 Sep 2019 23:52:06 +0900
ibus (1.5.21-1~exp2) experimental; urgency=medium
[ Changwoo Ryu ]
* Split out data files into ibus-data
* d/rules: Enable tests with exceptions. Some tests (ibus-bus,
ibus-compose, ibus-keypress, test-stress) are disabled as they require
a GUI session. They can be run in autopkgtest later. (Closes: #834331)
* d/copyright: Fix lintian warnings
* d/libibus-1.0-5.symbols: Add Build-Depends-Package
* Add installed tests / autopkgtest
- d/rules: Add --enable-install-tests configure flag
- Install the test files to ibus-tests binary package
- d/tests/{control,installed-tests}: Add autopkgtest files
-- Changwoo Ryu <cwryu@debian.org> Tue, 03 Sep 2019 01:18:39 +0900
ibus (1.5.21-1~exp1) experimental; urgency=medium
[ Osamu Aoki ]
* Allow pushd (bashism) in ibus/src/tests/runtest.
[ Changwoo Ryu ]
* d/rules: Use --with-python=... flag with absolute path.
(Closes: #931800)
[ Boyuan Yang ]
* New upstream version 1.5.21. (Closes: #933767, #915547)
* d/control: Bump Standards-Version to 4.4.0.
* d/control: Drop recommendation to ibus-qt4. (Closes: #926624)
* d/control: Make recommendation to libqt5gui5 as alternative.
(Closes: #926625)
* debian/gir1.2-ibus-1.0.lintian-overrides: Add override for
python-package-missing-depends-on-python for now in the python2
removal phase.
* d/patches: Refresh patches:
- remove-popup: Removed, no longer necessary.
- wayland.patch: Removed, merged upstream.
[ Changwoo Ryu ]
* d/rules: Update the setup desktop filename for 1.5.21
* d/control: Build-Depends on gettext >= 0.19.8 instead of intltool
* d/libibus-1.0-dev.install: Add gettext ITS rule for ibus
component XML
* d/libibus-1.0-5.symbols: Update library symbols
* d/copyright: Update
- d/*.lintian-overrides: Remove overrides for fixed license typo
* d/salsa-ci: Add Salsa CI config
* d/control: Add myself to Uploaders
-- Changwoo Ryu <cwryu@debian.org> Wed, 28 Aug 2019 19:43:46 +0900
ibus (1.5.19-4) unstable; urgency=medium
[ Simon McVittie ]
* d/p/dconf-Use-dbus-run-session-to-set-up-dconf-overrides.patch:
Use dbus-run-session instead of dbus-launch to work with a temporary
dconf. Build-depend on dbus (>= 1.8) for this, instead of dbus-x11.
(Closes: #835913)
* d/p/dconf-Create-a-temporary-XDG_RUNTIME_DIR.patch:
Create a temporary XDG_RUNTIME_DIR while generating dconf overrides,
instead of interacting with the user's real XDG_RUNTIME_DIR (if
available) or issuing warnings (in sbuild).
[ Osamu Aoki ]
* Update Wayland protocol from upstream branch. (Closes: #905001)
* Update bug script.
-- Osamu Aoki <osamu@debian.org> Sun, 17 Feb 2019 15:19:20 +0900
ibus (1.5.19-3) unstable; urgency=medium
* Make all available supporting packages to be installed via
"Recommends: ..." with and-condition. Closes: #921541
-- Osamu Aoki <osamu@debian.org> Sat, 16 Feb 2019 07:17:21 +0900
ibus (1.5.19-2) unstable; urgency=medium
[ Jonathan Carter]
* Non-maintainer upload
(with ack from team member Osamu Aoki)
* Add patch to remove obsolete ibus popup (Closes: 905790)
* Update standards version to 4.3.0
* Upgrade to debhelper-compat (=12)
[ Ondřej Nový ]
* d/copyright: Use https protocol in Format field
-- Jonathan Carter <jcc@debian.org> Wed, 13 Feb 2019 16:24:24 +0000
ibus (1.5.19-1) unstable; urgency=medium
[ Jeremy Bicha ]
* Team upload
* New upstream release
* debian/libibus-1.0-5.symbols: Add new symbols
* Drop fix-ucd-directory-override.patch: Applied
[ Laurent Bigonville ]
* Remove the dependency of the gir package against python, it's useless
(Closes: #907196)
* debian/rules: Add terminator to --with-no-snooper-apps
-- Jeremy Bicha <jbicha@debian.org> Fri, 24 Aug 2018 14:51:25 -0400
ibus (1.5.18-1) unstable; urgency=medium
* Team upload
* New upstream release
* Use Debian Input Method list for Maintainer
* Update Vcs fields for migration to https://salsa.debian.org/
* Drop Build-Depends on gconf2 (Closes: #894320)
* Point to unicode data directory
* debian/ibus.install: Install usr/lib/ibus/ibus-extension-gtk3
* debian/libibus-1.0-5.symbols: Add new symbols
* Drop patch: Applied in new release
* Bump debhelper compat to 11
* Bump Standards-Version to 4.1.3
-- Jeremy Bicha <jbicha@debian.org> Thu, 29 Mar 2018 21:12:39 -0400
ibus (1.5.17-3) unstable; urgency=medium
* enable emoji. Closes: #883229
-- Osamu Aoki <osamu@debian.org> Sun, 31 Dec 2017 18:46:31 +0900
ibus (1.5.17-2) unstable; urgency=medium
* Clean up debian/patches.
* Fix symbols.
-- Osamu Aoki <osamu@debian.org> Fri, 29 Dec 2017 22:10:20 +0900
ibus (1.5.17-1) unstable; urgency=medium
* New upstream version 1.5.15
* New upstream version 1.5.16 Closes: #864913
* New upstream version 1.5.17
* Clean debian directory
* Add build-dep
* Migrate to the new dbgsym package
* Sort old symbols file
* Update symbols file for 1.5.16
* Use autogen.sh for autoreconf
* Don't depend on gtk2. Closes: #883112
* Use dh_missing --fail-missing
* Install ibus-portal files.
-- Osamu Aoki <osamu@debian.org> Mon, 25 Dec 2017 23:20:01 +0900
ibus (1.5.14-3) unstable; urgency=medium
* Set ENABLE_APPINDICATOR_ENGINE_ICON by installing qtbase5-dev.
Closes: #862814
-- Osamu Aoki <osamu@debian.org> Sat, 20 May 2017 20:36:04 +0900
ibus (1.5.14-2) unstable; urgency=medium
* Update d/control and d/watch file for URLs.
-- Osamu Aoki <osamu@debian.org> Sat, 10 Dec 2016 15:26:04 +0900
ibus (1.5.14-1) unstable; urgency=medium
[ Osamu Aoki ]
* harden
[ Aron Xu ]
* Enable appindicator support
* Imported Upstream version 1.5.14
* Add json-glib to B-D
* Correct json-glib-dev package name
* Correct json-glib-dev package name
* Disable emoji dict for the moment of not having nodejs-emojione
* Install usr/share/dbus-1/services/org.freedesktop.IBus.service
* Remove unused override: package-contains-empty-directory
* Update symbols
-- Aron Xu <aron@debian.org> Thu, 20 Oct 2016 20:10:54 +0800
ibus (1.5.11-1) unstable; urgency=medium
* Replace gnome-icon-theme with adwaita-icon-theme, thanks to Iain Lane
* Imported Upstream version 1.5.11
-- Aron Xu <aron@debian.org> Thu, 19 Nov 2015 23:39:21 +0800
ibus (1.5.10-1) unstable; urgency=medium
* Imported Upstream version 1.5.10.
* Remove ibus-zz-C.UTF-8.patch, applied upstream.
* Drop python-notify dependency (Closes: #781920).
* Build with python3 only (LP: #1440391).
-- Aron Xu <aron@debian.org> Sun, 14 Jun 2015 03:23:31 +0800
ibus (1.5.9-1) unstable; urgency=medium
* New upstream release.
-- Osamu Aoki <osamu@debian.org> Thu, 23 Oct 2014 01:09:09 +0900
ibus (1.5.8-4) unstable; urgency=medium
* Enable M-A.
-- Osamu Aoki <osamu@debian.org> Wed, 22 Oct 2014 23:20:35 +0900
ibus (1.5.8-3) unstable; urgency=medium
* Debian jessie has C.UTF-8 but doen't always have en_US.UTF-8.
Closes: #758385
-- Osamu Aoki <osamu@debian.org> Fri, 10 Oct 2014 00:18:09 +0900
ibus (1.5.8-2) unstable; urgency=medium
* Disable parallel to try avoid FTBFS on kfreebsd*
-- Aron Xu <aron@debian.org> Wed, 06 Aug 2014 11:47:58 +0800
ibus (1.5.8-1) unstable; urgency=medium
[ Aron Xu ]
* Allow parallel building
[ Osamu Aoki ]
* Update ibus document with Qt5 support
[ Aron Xu ]
* Imported Upstream version 1.5.8
* Remove patch for chasing HEAD, imported new upstream release
* Remove the patch for updating IBusKeymap jp, applied upstream
* Drop gtk2 version of the password patch because it's never executed
* Drop ibus-541492-xkb.patch
* Drop ibus-530711-preload-sys.patch
* Drop ibus-810211-no-switch-by-no-trigger.patch
* Drop 999-update-po.patch
[ Osamu Aoki ]
* linux-any for ibus-wayland
* Remove some symbols matching ibus-541492-xkb.patch
* Remove old patch for GTK+ 3.6
-- Osamu Aoki <osamu@debian.org> Mon, 04 Aug 2014 22:42:19 +0900
ibus (1.5.7-2) unstable; urgency=medium
* Fix Japanese keycode/keysym table (upstream accepted patch).
* Build override modules with python-gi-dev and include them
in gir*. Closes: #754670
* Add debug package. Closes: #754650
-- Osamu Aoki <osamu@debian.org> Sun, 27 Jul 2014 16:09:53 +0900
ibus (1.5.7-1) unstable; urgency=medium
* New upstream release.
- Update patches with FC21.3 patches.
-- Osamu Aoki <osamu@debian.org> Fri, 20 Jun 2014 22:28:56 +0900
ibus (1.5.6-4) unstable; urgency=medium
* Fix dependency to python3-gi. Closes: 751010
-- Osamu Aoki <osamu@debian.org> Mon, 09 Jun 2014 23:53:33 +0900
ibus (1.5.6-3) unstable; urgency=medium
* Make ibus-wayland [linyx-any]. Closes: #750902
* Update bug script.
-- Osamu Aoki <osamu@debian.org> Mon, 09 Jun 2014 21:05:25 +0900
ibus (1.5.6-2) unstable; urgency=medium
* Set ibus-wayland to Multi-Arch: foreign.
* Update copyright to DEP-5.
* Update uploaders field matching current contributors.
* Add lintian-overides.
* Remove python-ibus.install
-- Osamu Aoki <osamu@debian.org> Sat, 07 Jun 2014 00:02:47 +0900
ibus (1.5.6-1) unstable; urgency=medium
* New upstream release.
- Update patches with FC21 patches.
- Fix Vala issues. Closes: #746136
* Build with wayland support.
* Build with python3
* Drop python-ibus.
* New upstream URL. Closes: #748320
* Add bug report script support.
-- Osamu Aoki <osamu@debian.org> Thu, 05 Jun 2014 22:41:50 +0900
ibus (1.5.5-1) unstable; urgency=medium
* New upstream release.
- CVE-2013-4509 (also with FC19 patch). Closes: #729065
- Update ibus-setup message. Closes: #729472
* Sync with ibus-1.5.5-1.fc19.src.rpm
* Update debian/rules using DEB_*_MAINT_APPEND (compat=9).
* Update README.Debian. Closes: #732434
* Update Standards-Version: 3.9.5
-- Osamu Aoki <osamu@debian.org> Sun, 26 Jan 2014 16:28:28 +0900
ibus (1.5.4-1) unstable; urgency=low
* New upstream release.
* Depend on gir1.2-gtk-3.0 (>=3.8.5). Closes: #723031, #725134, #726467
* wrap-and-sort.
* Sync upstream with ibus-HEAD.patch which fixes candidate orientation
bug. Closes: #725024
-- Osamu Aoki <osamu@debian.org> Tue, 15 Oct 2013 22:01:21 +0900
ibus (1.5.3-7) unstable; urgency=low
* Fix unowned files after purge: /etc/dconf/db/ibus
Closes: #722593
-- Osamu Aoki <osamu@debian.org> Sat, 14 Sep 2013 01:50:04 +0900
ibus (1.5.3-6) unstable; urgency=low
* debian/control:
- Depend on gir1.2-gtk-3.0 and python-gi. Closes: #722121
* debian/rules: (thanks Jeremy)
- Simplify override_dh_install rule
- Only hide ibus-setup in GNOME and Unity
- Restore --disable-silent-rules
-- Osamu Aoki <osamu@debian.org> Wed, 11 Sep 2013 23:56:01 +0900
ibus (1.5.3-5) unstable; urgency=low
* This initiates ibus 1.4 to 1.5 transition. This changes IM
switching key to SUPER-space and integrates xkb.
Closes: #690605, #699368
* Remove gjs and gnome-shell build dependency since ibus-gjs was
removed.
* Add breaks to packages indirectly depending on python-ibus
since ibus does not depend on python-ibus anymore.
-- Osamu Aoki <osamu@debian.org> Fri, 06 Sep 2013 23:41:07 +0900
ibus (1.5.3-4) experimental; urgency=low
* Deprecate python-ibus and mention GObject introspection
transition.
-- Osamu Aoki <osamu@debian.org> Sat, 31 Aug 2013 00:24:35 +0900
ibus (1.5.3-3) experimental; urgency=low
* Deleted ibus-gjs as EOL. (1.5.3-2 was configured with
different options.)
* Confirmed functioning ibus 1.5. Closes: #692424
-- Osamu Aoki <osamu@debian.org> Mon, 26 Aug 2013 22:09:40 +0900
ibus (1.5.3-2) experimental; urgency=low
* Drop multiarch patch introduced in ibus (1.4.0-2) which
is not required with compat 9.
* Merge from the FC19 released package.
- ibus-810211-no-switch-by-no-trigger.patch: refreshed
- ibus-xx-setup-frequent-lang.patch: refreshed
- ibus-gjs-3.4.1.20130115.patch: refreshed
* Update package dependency and build rules.
-- Osamu Aoki <osamu@debian.org> Sat, 24 Aug 2013 22:01:01 +0900
ibus (1.5.3-1) experimental; urgency=low
* New upstream release. Applied patches dropped:
- the 0001 - 0017 backport patches
- the format-security patches
* Merge from 1.5.3-0ubuntu1
- debian/control:
+ Recommend ibus-gtk | ibus-qt4, ibus-gtk3 | ibus-qt4 instead of
recommending all of them
+ Suggest ibus-clutter instead of recommending it
+ Depend on dconf-cli instead of dconf-tools
- debian/rules:
+ Use --disable-silent-rules
- debian/patches/ibus-541492-xkb.patch: from Fedora, refreshed
- debian/patches/ibus-530711-preload-sys.patch: from Fedora, refreshed
* Not merging Ubuntu specific following changes in 1.5.3-0ubuntu1
- use of dh_translations in rules
- 02_title_update.patch
- 05_appindicator.patch
- disable-input-trigger.patch
* Update symbols file with 1.5.3.
- Somehow 1.5.3-0ubuntu1 symbols file is marked these and 1.5.2-3~
as 1.5.2.
-- Osamu Aoki <osamu@debian.org> Sat, 24 Aug 2013 01:25:05 +0900
ibus (1.5.2-4) experimental; urgency=low
* Update postinst/prerm since no im-switch is not supported.
Closes: #716829
-- Osamu Aoki <osamu@debian.org> Sat, 13 Jul 2013 22:07:58 +0900
ibus (1.5.2-3) experimental; urgency=low
* Typo fix. Thanks Ansgar Burchardt
* Merge upstream changes (FC19 timing)
* Refreshed and adjusted patches to the Debian package
* Add dependency.
* Patch to avoid hitting -Werror=format-security.
* updated debian/* for file installation etc.
* updated symbols
-- Osamu Aoki <osamu@debian.org> Sat, 13 Jul 2013 21:31:57 +0900
ibus (1.5.2-2) experimental; urgency=low
* Drop "Replaces: libibus-1.0-0"
-- Osamu Aoki <osamu@debian.org> Thu, 11 Jul 2013 23:10:13 +0900
ibus (1.5.2-1) experimental; urgency=low
[ Osamu Aoki ]
* New upstream release.
* Merge post-revert changes in the recent unstable released packages
and include such changelog entries.
[ Aron Xu ]
* debian/control:
- ibus Depends on gir1.2-ibus-1.0 and dconf-tools. Closes: #700076
-- Osamu Aoki <osamu@debian.org> Wed, 10 Jul 2013 07:41:50 +0900
ibus (1.5.1.is.1.4.2-2) unstable; urgency=low
[ Peter Michael Green ]
* Fix format security error by passing format string and parameter directly
to g_dbus_method_invocation_return_error rather than formatting the string
ourselves and passing that to the function. Closes: #710643
[ Osamu Aoki ]
* Fix ibus-setup breakage by setting all related packages to use
--libexec=/usr/lib/ibus. Closes: #712149
-- Osamu Aoki <osamu@debian.org> Sun, 16 Jun 2013 22:29:37 +0900
ibus (1.5.1.is.1.4.2-1) unstable; urgency=low
* Revert to 1.4.2.
-- Aron Xu <aron@debian.org> Wed, 13 Feb 2013 20:58:07 +0800
ibus (1.5.1-1) unstable; urgency=low
* New upstream release.
* debian/control:
- Add myself to Uploaders, remove LI and Zhengpeng
- Remove M-A: same from libibus-1.0-dev since gir isn't M-A:same
- Update std-ver 3.9.3 -> 3.9.4, no change
- Remove obsolete DMUA field
* debian/libibus-1.0-5.symbols:
- Add new symbols file, remove old one
* debian/rules:
- Enable tests, but do not fail
- Call dh_install with --fail-missing
- Remove useless .la files
- Remove executable bit from bash_complemention file
-- Aron Xu <aron@debian.org> Sat, 02 Feb 2013 00:36:51 +0800
ibus (1.4.99.20120917-3) experimental; urgency=low
* Team upload
* Call gir with dh sequences (Closes: #691071).
-- Aron Xu <aron@debian.org> Wed, 24 Oct 2012 22:55:06 +0800
ibus (1.4.99.20120917-2) experimental; urgency=low
* Fix "libibus-1.0-0 ships libibus-1.0.so.5" (Closes: #690287)
-- Asias He <asias@debian.org> Wed, 17 Oct 2012 12:41:59 +0800
ibus (1.4.99.20120917-1) experimental; urgency=low
* New upstream release
* Bump debhelper to (>= 9)
* Drop 'ibus source: package-needs-versioned-debhelper-build-depends 9'
from debian/source/lintian-overrides
-- Asias He <asias.hejun@gmail.com> Fri, 05 Oct 2012 13:32:50 +0800
ibus (1.4.1-7) unstable; urgency=low
* Add dependency to gnome-icon-theme. Closes: #678422
* Use Hardening Options.
-- Osamu Aoki <osamu@debian.org> Sat, 23 Jun 2012 03:16:04 +0900
ibus (1.4.1-6) unstable; urgency=low
* Fix build-depend by adding python-dbus-dev. Closes: #673853
-- Osamu Aoki <osamu@debian.org> Thu, 24 May 2012 00:17:47 +0900
ibus (1.4.1-5) unstable; urgency=low
* Fix multiarch bug for gir1.2-ibus-1.0. Closes: #669982
* Add Suggests: ibus-doc. Closes: #666466
-- Osamu Aoki <osamu@debian.org> Fri, 27 Apr 2012 00:22:42 +0900
ibus (1.4.1-4) unstable; urgency=low
* Fix FTBFS by cleaning up install. Closes: Bug#669545
* Fix control for "Multi-Arch:".
-- Osamu Aoki <osamu@debian.org> Fri, 20 Apr 2012 22:49:02 +0900
ibus (1.4.1-3) unstable; urgency=low
* Fixed im-switch hook script. Closes: #664201
-- Osamu Aoki <osamu@debian.org> Sun, 18 Mar 2012 00:25:01 +0900
ibus (1.4.1-2) unstable; urgency=low
* Reenable --enable-surrounding-text. Closes: #664102
-- Osamu Aoki <osamu@debian.org> Fri, 16 Mar 2012 22:07:41 +0900
ibus (1.4.1-1) unstable; urgency=low
* Remove old patches included in the upstream.
* Revert pkglibexec patch by Kees Cook with old automake1.11-2
workaround and use configure option --libexec.
* Add doc-base support and preinst for documentation location
migration.
* Fix 'ibus-1.0' not found error using patch by Daiki Ueno.
-- Osamu Aoki <osamu@debian.org> Sun, 12 Feb 2012 14:08:49 +0900
ibus (1.4.0-4) unstable; urgency=low
* Apply patch to add gobject-introspection support from Daiki Ueno.
Closes: #657436
* Add Daiki Ueno as Uploaders.
* Fix build problem due to old automake1.11-2. Closes: #657828
* Fix typo and other minor issues.
* Fix documentation location. Closes: #655056
-- Osamu Aoki <osamu@debian.org> Tue, 31 Jan 2012 20:56:01 +0900
ibus (1.4.0-3) unstable; urgency=low
[ Kees Cook ]
* debian/{control,*.install}: Convert to Multi-Arch. Closes: #651488
* debian/patches/use_pkglibexec.patch: modify upstream build to use
pkglibexec instead of libexec, since this provides the ibus/
subdirectory.
* proper-gtk-plugin-path.patch: adjust to leave gtk3 where it thinks
it should be.
[ Osamu Aoki ]
* debian/xinput/ibus: adopt to multiarch having multiple matches.
* Add comments to patch fixing #642317 in 1.4.0-2.
* Add im-switch as seconday choice for smoother upgrade.
* Enable autoreconf for each build. Closes: #558568
-- Osamu Aoki <osamu@debian.org> Thu, 15 Dec 2011 23:44:12 +0900
ibus (1.4.0-2) unstable; urgency=low
[ LI Daobing ]
* Fix "The xim doesn't work; the location to install gtk im modules
doesn't consider multiarch", thanks Steve Langasek.
(Closes: #642317)
* Fix "checking for ibus support in gtk2 and gtk3 separately", thanks Steve
Langasek and Osamu Aoki (Closes: #645729)
[ Osamu Aoki ]
* Remove old README.source (Closes:#645728)
* Add README.Debian to improve documentation. (Closes: #600414)
* Breaks should be used instead of Conflicts for versioned case.
-- Osamu Aoki <osamu@debian.org> Wed, 07 Dec 2011 23:35:51 +0900
ibus (1.4.0-1) unstable; urgency=low
* New upstream release.
-- Asias He <asias.hejun@gmail.com> Sat, 24 Sep 2011 10:02:49 +0800
ibus (1.3.99.20110817-1) unstable; urgency=low
* New upstream release
* Fix "--enable-surrounding-text" (Closes: #639552)
* Fix "new upstream version 1.3.99.20110817" (Closes: #639824)
* Fix "typo in package description" (Closes: #636109)
* Fix "Typing errors in package description." (Closes: #639133)
-- Asias He <asias.hejun@gmail.com> Sat, 03 Sep 2011 23:17:02 +0800
ibus (1.3.99.20110419-1) unstable; urgency=low
* New upstream release
* Fix "Switch to dh_python2" (Closes: #635023)
* Use dh in debian/rules
-- Asias He <asias.hejun@gmail.com> Sat, 23 Jul 2011 22:10:45 +0800
ibus (1.3.9-2) unstable; urgency=low
* Enable GTK3 support
* Bump standards version to 3.9.2
* Set DM-Upload-Allowed to yes
* Set VCS to git.debian.org
* Introduce ibus-gtk3
* Add Add CLUTTER_IM_MODULE in xinput.d
* Fix "ibus-setup.desktop need to be policy complient" (Closes: #586524)
* Fix "Please enable GTK3 support" (Closes: #622910)
* Fix "Please add support for ibus-clutter in xinput.d" (Closes: #621133)
* Fix "[ibus] ibus-setup shouldn't recommend $HOME/.bashrc for
environment variables"(Closes: #557555)
-- Asias He <asias.hejun@gmail.com> Fri, 20 May 2011 22:02:36 +0800
ibus (1.3.9-1) unstable; urgency=low
* New upstream release.
-- Asias He <asias.hejun@gmail.com> Sun, 05 Dec 2010 15:44:16 +0800
ibus (1.3.8-1) unstable; urgency=low
[ LI Daobing ]
* fix typo in debian/changelog
[ Asias He ]
* New upstream release.
* debian/control: drop Depends python-glade2 (closes: #599301)
-- LI Daobing <lidaobing@debian.org> Mon, 25 Oct 2010 23:31:31 +0800
ibus (1.3.7-1) unstable; urgency=low
[ Asias He ]
* New upstream release.
* debian/control: bump standards version to 3.9.1.
* debian/libibus2.symbols: updated.
* debian/control: added im-config to Recommends (closes: #587296)
-- LI Daobing <lidaobing@debian.org> Wed, 04 Aug 2010 21:47:44 +0800
ibus (1.3.6-1) unstable; urgency=low
[ Asias He ]
* New upstream release. (closes: #586976)
* debian/libibus2.symbols: updated.
* debian/patches/*: updated.
* debian/control: bump standards version to 3.9.0.
* debian/ibus.install: updated.
* debian/libibus-dev.install: updated.
[ LI Daobing ]
* debian/control: replaces and breaks ibus (<< 1.3.6)
-- LI Daobing <lidaobing@debian.org> Tue, 06 Jul 2010 16:02:22 +0800
ibus (1.3.5-1) unstable; urgency=low
[ Asias He ]
* New upstream release.
* debian/libibus2.symbols: updated.
-- LI Daobing <lidaobing@debian.org> Sat, 12 Jun 2010 19:37:05 +0800
ibus (1.3.4-1) unstable; urgency=low
[ Asias He ]
* New upstream release.
[ LI Daobing ]
* debian/libibus2.symbols: updated.
-- LI Daobing <lidaobing@debian.org> Sun, 30 May 2010 10:35:47 +0800
ibus (1.3.3-1) unstable; urgency=low
* New upstream release.
-- LI Daobing <lidaobing@debian.org> Thu, 06 May 2010 19:42:32 +0800
ibus (1.3.2-1) unstable; urgency=low
* New upstream release.
* debian/libibus2.symbols: updated.
* debian/control:
- change maintainer to IME Packaging Team, add me to uploaders.
- update Vcs-* fields.
-- LI Daobing <lidaobing@debian.org> Thu, 29 Apr 2010 19:51:08 +0800
ibus (1.3.1-2) unstable; urgency=low
* Fix "Please fix python-notify dependancy" (Closes: #577587)
- debian/control: ibus depends on python-notify
* improve manpages (Closes: #562542)
- debian/ibus.1 -> debian/ibus.7, and add setup information.
- debian/ibus-daemon.1: updated.
- debian/ibus-setup.1: updated.
- debian/ibus-gconf.1, debian/ibus-ui-gtk.1, debian/ibus-x11.1: removed.
- debian/ibus.manpages: updated.
* debian/source/format: 3.0.
- remove dpatch, update debian/control, debian/rules, debian/patches
-- LI Daobing <lidaobing@debian.org> Wed, 14 Apr 2010 20:59:30 +0800
ibus (1.3.1-1) unstable; urgency=low
* New upstream release.
-- LI Daobing <lidaobing@debian.org> Sat, 03 Apr 2010 18:53:10 +0800
ibus (1.3.0-1) experimental; urgency=low
* New upstream release.
* debian/source/format: missing-debian-source-format
* debian/libibus2.symbols: updated.
-- LI Daobing <lidaobing@debian.org> Wed, 24 Mar 2010 20:47:49 +0800
ibus (1.2.99.20100202-1) experimental; urgency=low
* New upstream release.
* debian/control: bump standards version to 3.8.4.
* libibus1 -> libibus2 transition:
- debian/control: updated
- debian/libibus1.*: deleted
- debian/libibus2.*: added
- debian/rules: updated.
-- LI Daobing <lidaobing@debian.org> Sun, 21 Mar 2010 18:23:37 +0800
ibus (1.2.0.20091215-1) unstable; urgency=low
* New upstream release.
* debian/libibus1.symbols: updated
-- LI Daobing <lidaobing@debian.org> Thu, 17 Dec 2009 19:43:32 +0800
ibus (1.2.0.20091124-1) unstable; urgency=low
* New upstream release.
-- LI Daobing <lidaobing@debian.org> Thu, 26 Nov 2009 19:24:06 +0800
ibus (1.2.0.20091024-1) unstable; urgency=low
* new upstream release.
- Fix "notification icon should be optional" (LP: #422253)
* Fix "move im-switch from depends to recommends" (Closes: #551157)
- debian/control: updated.
* debian/rules: rewrited.
* debian/clean: updated.
* Fix "Desktop entry needs the X-Ubuntu-Gettext-Domain key" (LP: #457632)
- debian/control: add dpatch to build-depends.
- debian/patches/*: added.
- debian/README.source: added.
* debian/rules: ignore test.
-- LI Daobing <lidaobing@debian.org> Mon, 26 Oct 2009 18:55:02 +0800
ibus (1.2.0.20091014-1) unstable; urgency=low
* new upstream release.
* debian/control:
- depends on librsvg2-common instead of python-rsvg.
- Turn ANDed ibus-{gtk,qt4} dependency into an OR, to avoid installing
both. (LP: #449966)
* debian/xinput/ibus: Turn ANDed ibus-{gtk,qt4} dependency into an OR
-- LI Daobing <lidaobing@debian.org> Wed, 14 Oct 2009 19:04:57 +0800
ibus (1.2.0.20090927-2) unstable; urgency=low
* create po template when build (LP: #188690)
- debian/rules: updated.
- debian/clean: remove pot file when clean.
* debian/control: build depends on python-rsvg (LP: #432375)
-- LI Daobing <lidaobing@debian.org> Mon, 05 Oct 2009 20:45:18 +0800
ibus (1.2.0.20090927-1) unstable; urgency=low
* new upstream release.
-- LI Daobing <lidaobing@debian.org> Tue, 29 Sep 2009 20:28:59 +0800
ibus (1.2.0.20090915-1) unstable; urgency=low
* new upstream release.
-- LI Daobing <lidaobing@debian.org> Tue, 15 Sep 2009 19:30:53 +0800
ibus (1.2.0.20090904-1) unstable; urgency=low
* new upstream release.
* debian/rules: remove ibus.desktop (LP: #420282)
-- LI Daobing <lidaobing@debian.org> Sat, 05 Sep 2009 12:17:53 +0800
ibus (1.2.0.20090828-1) unstable; urgency=low
* new upstream release.
* debian/control: bump standards version to 3.8.3.
* debian/libibus1.symbols: updated.
-- LI Daobing <lidaobing@debian.org> Sun, 30 Aug 2009 12:37:45 +0800
ibus (1.2.0.20090812-1) unstable; urgency=low
* new upstream release.
* debian/libibus1.symbols: updated.
-- LI Daobing <lidaobing@debian.org> Wed, 12 Aug 2009 20:41:02 +0800
ibus (1.2.0.20090810-1) unstable; urgency=low
* new upstream release.
-- LI Daobing <lidaobing@debian.org> Mon, 10 Aug 2009 19:15:15 +0800
ibus (1.2.0.20090807-1) unstable; urgency=low
* new upstream release.
* suggest qt4:
- debian/control: add recommends for ibus-qt4
- debian/xinput/ibus: detect ibus-qt4
-- LI Daobing <lidaobing@debian.org> Sun, 09 Aug 2009 15:27:19 +0800
ibus (1.2.0.20090806-1) unstable; urgency=low
* new upstream release.
-- LI Daobing <lidaobing@debian.org> Thu, 06 Aug 2009 22:00:41 +0800
ibus (1.2.0.20090723-1) unstable; urgency=low
* new upstream release.
-- LI Daobing <lidaobing@debian.org> Thu, 23 Jul 2009 20:22:09 +0800
ibus (1.2.0.20090719-2) unstable; urgency=low
* Fix "Cannot find libibus.so and fail to launch ibus", change it to
libibus.so.1 (Closes: #537685)
-- LI Daobing <lidaobing@debian.org> Mon, 20 Jul 2009 21:33:29 +0800
ibus (1.2.0.20090719-1) unstable; urgency=low
* new upstream release.
* debian/libibus1.symbols: updated.
* debian/control: change url of vcs-bzr
-- LI Daobing <lidaobing@debian.org> Sun, 19 Jul 2009 16:00:48 +0800
ibus (1.2.0.20090617-2) unstable; urgency=low
* Fix "ibus' autostart in xdg folder breaks im-switch and other input
method" (Closes: #537217)
- debian/ibus.install: remove the autostart file.
- debian/rules: remove /etc/xdg after install.
- debian/ibus.postinst: remove the autostart file.
-- LI Daobing <lidaobing@debian.org> Thu, 16 Jul 2009 20:41:18 +0800
ibus (1.2.0.20090617-1) unstable; urgency=low
* new upstream release.
* libibus0 -> libibus1:
- debian/control: rename the package.
- debian/libibus0.install: removed
- debian/libibus0.symbols: removed
- debian/libibus1.install: added
- debian/libibus1.symbols: added
- debian/rules: change script of dh_gtkmodules
* debian/ibus-gtk.install: updated.
* debian/control:
- ibus conflicts the ibus modules with low version.
- bump policy version to 3.8.2.
-- LI Daobing <lidaobing@debian.org> Fri, 26 Jun 2009 22:47:52 +0800
ibus (1.1.0.20090612-1) unstable; urgency=low
* new upstream release.
* Fix "python-ibus should depends on iso-codes" (Closes: #532163)
* debian/libibus0.symbols: update symbols
-- LI Daobing <lidaobing@debian.org> Sat, 13 Jun 2009 11:39:05 +0800
ibus (1.1.0.20090531-1) unstable; urgency=low
* new upstream release.
-- LI Daobing <lidaobing@debian.org> Mon, 01 Jun 2009 20:57:27 +0800
ibus (1.1.0.20090508-1) unstable; urgency=low
* new upstream release.
* merge ubuntu changelog.
* debian/control:
- depends of ibus: add python-xdg (closes: #529055)
-- LI Daobing <lidaobing@debian.org> Sun, 17 May 2009 22:19:38 +0800
ibus (1.1.0.20090508-0ubuntu1) karmic; urgency=low
* new upstream release (LP: #373976)
* debian/libibus0.symbols: update symbols
-- LI Daobing <lidaobing@debian.org> Sat, 09 May 2009 13:52:29 +0800
ibus (1.1.0.20090423-0ubuntu1) karmic; urgency=low
* new upstream release (LP: #325740)
* debian/patches/01_typo_in_Makefile_am.dpatch: merged by upstream, removed.
* no patch needed, remove dpatch from debian/*
* debian/rules:
- add "--list-missing --fail-missing" to dh_install, refactor other to make
this works.
* debian/xinput/ibus: change XIM_PROGRAM from ibus to ibus-daemon, add
"--xim" to XIM_ARGS
* debian/xinput/ibus-qt4: removed.
* debian/ibus.install: install gconf schemas, lib and autostart.
* debian/rules: add dh_gconf
* debian/control:
- build depends: add intltool, python-dbus, python-gobject-dev,
libgconf2-dev. remove libqt4-dev, dpatch.
- package libibus-gtk0 renamed to libibus0.
- change maintainer's email.
- bump standards version to 3.8.1.
- use simple depends on python-dbus.
- depends of ibus: add python-xdg.
- package ibus-qt4 removed. (no longer supported)
- new package libibus-dev.
* debian/libibus0.symbols: update symbols
* debian/docs: added
-- LI Daobing <lidaobing@debian.org> Fri, 01 May 2009 10:41:09 +0800
ibus (1.1.0.20090417-1) unstable; urgency=low
* initial release to Debian (closes: #501106)
* new upstream release (LP: #325740)
- package libibus-gtk0 renamed to libibus0.
- package ibus-qt4 removed. (no longer supported)
- new package libibus-dev.
- debian/control: add intltool to build depends.
* debian/patches/01_typo_in_Makefile_am.dpatch: merged by upstream, removed.
* no patch needed, remove dpatch from debian/*
* debian/rules:
- add "--list-missing --fail-missing" to dh_install, refactor other to make
this works.
* debian/xinput/ibus: change XIM_PROGRAM from ibus to ibus-daemon, add
"--xim" to XIM_ARGS
* debian/xinput/ibus-qt4: removed.
* debian/ibus.install: install gconf schemas
* debian/rules: add dh_gconf
* debian/control:
- build depends on python-dbus.
- change maintainer's email.
- bump standards version to 3.8.1.
- use simple depends on python-dbus.
* debian/libibus0.symbols: update symbols
* debian/docs: added
-- LI Daobing <lidaobing@debian.org> Wed, 22 Apr 2009 21:28:45 +0800
ibus (0.1.1.20081023-0ubuntu5) jaunty; urgency=low
* debian/control: Add depends on python-gconf as ibus needs this to run
correctly. (LP: #358770)
-- LI Daobing <lidaobing@gmail.com> Sun, 12 Apr 2009 10:58:27 +0800
ibus (0.1.1.20081023-0ubuntu4) jaunty; urgency=low
* port to python2.6 (LP: #336525)
- debian/pyversions: change from "2.5" to "2.5-"
- debian/rules: fix dh_pysupport
* debian/rules: change "dh_clean -k" to "dh_prep"
-- LI Daobing <lidaobing@gmail.com> Mon, 02 Mar 2009 13:03:03 +0800
ibus (0.1.1.20081023-0ubuntu3) jaunty; urgency=low
* debian/rules: add dh_gtkmodules (LP: #314375)
* debian/control: depends on ${misc:Depends}
-- LI Daobing <lidaobing@gmail.com> Tue, 06 Jan 2009 22:29:46 +0800
ibus (0.1.1.20081023-0ubuntu2) jaunty; urgency=low
* ibus should depends on python-ibus (LP: #312428)
-- LI Daobing <lidaobing@gmail.com> Tue, 30 Dec 2008 21:26:16 +0800
ibus (0.1.1.20081023-0ubuntu1) jaunty; urgency=low
[ LI Daobing ]
* Initial release (LP: #292616)
[ Zhengpeng Hou ]
* Add myself as an uploader. :)
* Add im-switch's support, stole it from scim-bridge. :)
-- Zhengpeng Hou <zhengpeng-hou@ubuntu.com> Sun, 30 Nov 2008 10:41:05 +0000
|