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
|
libx11 (2:1.8.10-2) unstable; urgency=medium
* Fix dh_makeshlibs calls to generate correct libx11-6.shlibs
(closes: #1086735)
-- Julien Cristau <jcristau@debian.org> Tue, 05 Nov 2024 21:10:08 +0100
libx11 (2:1.8.10-1) unstable; urgency=medium
* Add symbols file for libx11-xcb1.
* New upstream release.
* 001_ximcp-hide-internal-functions.diff: add, avoid exporting new
symbols.
* Adjust dh_makeshlibs call for libx11-xcb1 to not generate versioned
dependencies.
-- Julien Cristau <jcristau@debian.org> Fri, 01 Nov 2024 14:47:39 +0100
libx11 (2:1.8.7-1) unstable; urgency=medium
* New upstream release.
- CVE-2023-43785
- CVE-2023-43786
- CVE-2023-43787
-- Timo Aaltonen <tjaalton@debian.org> Wed, 04 Oct 2023 13:16:19 +0300
libx11 (2:1.8.6-1) unstable; urgency=medium
* Team upload.
* New upstream release
- InitExt.c: Add bounds checks for extension request, event, & error codes
(CVE-2023-3138)
-- Julien Cristau <jcristau@debian.org> Fri, 16 Jun 2023 14:36:12 +0200
libx11 (2:1.8.4-2) unstable; urgency=medium
* rules: Drop --disable-thread-safety-constructor again.
-- Timo Aaltonen <tjaalton@debian.org> Mon, 27 Feb 2023 20:31:15 +0200
libx11 (2:1.8.4-1) unstable; urgency=medium
* New upstream version. (Closes: #1031697)
* patches: Drop reverts, as the issues should be fixed upstream.
-- Timo Aaltonen <tjaalton@debian.org> Mon, 27 Feb 2023 10:29:38 +0200
libx11 (2:1.8.3-3) unstable; urgency=medium
* Revert yet another commit causing regressions. (Closes: #1026809)
-- Timo Aaltonen <tjaalton@debian.org> Fri, 23 Dec 2022 12:57:26 +0200
libx11 (2:1.8.3-2) unstable; urgency=medium
[ Debian Janitor ]
* Remove constraints unnecessary since buster (oldstable):
+ Build-Depends: Drop versioned constraint on dpkg-dev, libxcb1-dev and
xutils-dev.
+ Build-Depends-Indep: Drop versioned constraint on xorg-sgml-doctools.
+ libx11-data: Drop versioned constraint on libx11-6 in Breaks.
+ libx11-dev: Drop versioned constraint on libxau-dev and libxdmcp-dev in
Depends.
+ libx11-xcb-dev: Drop versioned constraint on libxcb1-dev in Depends.
+ libx11-doc: Drop versioned constraint on libx11-dev in Replaces.
+ libx11-doc: Drop versioned constraint on libx11-dev in Breaks.
[ Timo Aaltonen ]
* patches: Revert four commits to fix a regression which is still
unfixed.
* rules: Add --disable-thread-safety-constructor again.
* rules: NEWS got removed, don't try to install it.
* symbols: Updated.
-- Timo Aaltonen <tjaalton@debian.org> Tue, 20 Dec 2022 17:02:56 +0200
libx11 (2:1.8.3-1) unstable; urgency=medium
* New upstream release.
* rules: The new upstream release allows to drop --disable-thread-
safety-constructor build option.
-- Timo Aaltonen <tjaalton@debian.org> Tue, 20 Dec 2022 16:01:24 +0200
libx11 (2:1.8.1-2) unstable; urgency=medium
* rules: Disable thread safety constructor. (Closes: #1016363)
-- Timo Aaltonen <tjaalton@debian.org> Thu, 04 Aug 2022 09:21:33 +0300
libx11 (2:1.8.1-1) unstable; urgency=medium
* New upstream release.
-- Timo Aaltonen <tjaalton@debian.org> Fri, 29 Jul 2022 11:11:37 +0300
libx11 (2:1.7.5-1) unstable; urgency=medium
* New upstream release. (Closes: #1008890)
-- Timo Aaltonen <tjaalton@debian.org> Sun, 03 Apr 2022 22:29:52 +0300
libx11 (2:1.7.4-1) unstable; urgency=medium
* New upstream release.
* 0001-makekeys..patch: Deleted, upstream.
* patches: Refreshed.
* Update signing-key.asc.
-- Timo Aaltonen <tjaalton@debian.org> Thu, 31 Mar 2022 22:21:59 +0300
libx11 (2:1.7.2-2) unstable; urgency=medium
* Add an upstream commit to handle new _EVDEVK symbols.
-- Timo Aaltonen <tjaalton@debian.org> Wed, 15 Sep 2021 09:18:20 +0300
libx11 (2:1.7.2-1) unstable; urgency=medium
[ Timo Aaltonen ]
* New upstream release. (Closes: #990998)
[ Julien Cristau ]
* Fix Vcs-Git control field.
-- Timo Aaltonen <tjaalton@debian.org> Mon, 26 Jul 2021 11:29:39 +0300
libx11 (2:1.7.1-1) unstable; urgency=medium
[ Julien Cristau ]
* libx11-6 Breaks old libx11-xcb1, as further mitigation for bug
#979590.
[ Emilio Pozuelo Monfort ]
* New upstream release.
* CVE-2021-31535: X protocol command injection due to missing request
length checks (closes: #988737)
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 19 May 2021 17:22:09 +0200
libx11 (2:1.7.0-2) unstable; urgency=medium
* Set a strict dependency of libx11-xcb1 on libx11-6, as internal ABI
may change across releases - and indeed did change between 1.6.12 and
1.7.0 (closes: #979590)
* Update upstream git URL in package descriptions.
-- Julien Cristau <jcristau@debian.org> Mon, 11 Jan 2021 12:15:25 +0100
libx11 (2:1.7.0-1) unstable; urgency=medium
* New upstream release.
* patches: Refreshed.
* signing-key: Added key from Keith Packard.
* symbols: Updated.
-- Timo Aaltonen <tjaalton@debian.org> Wed, 06 Jan 2021 20:47:58 +0200
libx11 (2:1.6.12-1) unstable; urgency=medium
* New upstream release.
* 001_xim_regression.diff: Dropped, upstream.
-- Timo Aaltonen <tjaalton@debian.org> Thu, 17 Sep 2020 13:11:41 +0300
libx11 (2:1.6.10-3) unstable; urgency=medium
* Fix 001_xim_regression.diff to actually build.
-- Julien Cristau <jcristau@debian.org> Mon, 03 Aug 2020 08:44:37 +0200
libx11 (2:1.6.10-2) unstable; urgency=medium
* Fix regression introduced in 1.6.10 (closes: #966691)
-- Julien Cristau <jcristau@debian.org> Sun, 02 Aug 2020 18:58:23 +0200
libx11 (2:1.6.10-1) unstable; urgency=medium
* New upstream release
+ fixes heap corruption in the X input method client (CVE-2020-14344)
-- Julien Cristau <jcristau@debian.org> Sat, 01 Aug 2020 12:50:40 +0200
libx11 (2:1.6.9-2) unstable; urgency=medium
* control: Depend on x11proto-dev instead of the old protos, bump the
version.
* control: libx11-dev Replaces old x11proto-dev. (Closes: #952589)
-- Timo Aaltonen <tjaalton@debian.org> Wed, 26 Feb 2020 18:40:14 +0200
libx11 (2:1.6.9-1) unstable; urgency=medium
* New upstream release.
* control: Use debhelper-compat, bump to 12.
* signing-key.asc: Add Adam Jackson's key.
* rules: Remove .la files before install.
* rules: Use -a instead of -s for dh_makeshlibs.
* watch: Update upstream url.
* control: Bump policy to 4.5.0.
-- Timo Aaltonen <tjaalton@debian.org> Wed, 26 Feb 2020 14:32:15 +0200
libx11 (2:1.6.8-1) unstable; urgency=medium
[ Timo Aaltonen ]
* New upstream release.
* patches: Refreshed.
[ Helmut Grohne ]
* Move documentation dependencies to Build-Depends-Indep. (Closes: #928878)
-- Timo Aaltonen <tjaalton@debian.org> Wed, 18 Sep 2019 17:09:31 +0300
libx11 (2:1.6.7-1) unstable; urgency=medium
* New upstream release.
- fix video freezing in firefox with amdgpu
* upstream: Add key from Matt Turner.
-- Timo Aaltonen <tjaalton@debian.org> Tue, 09 Oct 2018 18:03:26 +0300
libx11 (2:1.6.6-1) unstable; urgency=medium
* New upstream release.
- Fixes CVE-2018-14598, CVE-2018-14599 and CVE-2018-14600.
* Move libx11-doc from Recommends to Suggests (Closes: #648443).
* Add debian/README.source
* Set source format to 1.0.
* Bump standards version to 4.2.0.
-- Andreas Boll <aboll@debian.org> Wed, 22 Aug 2018 21:22:31 +0200
libx11 (2:1.6.5-1) unstable; urgency=medium
* Add Matt Turner's key to d/u/signing-key.asc
* New upstream release.
* Update VCS metadata for move to salsa.
-- Julien Cristau <jcristau@debian.org> Sun, 18 Mar 2018 16:22:50 +0100
libx11 (2:1.6.4-3) unstable; urgency=high
[ Emilio Pozuelo Monfort ]
* debian/libx11-6.symbols: use arch-bits=64 rather than listing all
64-bits architectures, which is not future-proof.
[ Julien Cristau ]
* Fix two regressions introduced in 2:1.6.4-1:
+ Fix wrong Xfree in XListFonts failure path
+ Revert cs_CZ.UTF-8 XLC_LOCALE to en_US.UTF-8 (closes: #847345)
* Build-depend on dpkg-dev 1.18.0 for arch-bits support in dpkg-gensymbols.
-- Julien Cristau <jcristau@debian.org> Sat, 28 Jan 2017 00:06:50 +0100
libx11 (2:1.6.4-2) unstable; urgency=medium
* Fix arch:all-only build.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 06 Dec 2016 09:47:08 +0100
libx11 (2:1.6.4-1) unstable; urgency=medium
[ Andreas Boll ]
* New upstream release.
- Fixes CVE-2016-7942 and CVE-2016-7943 (Closes: #840439).
* Bump libxcb1-dev build-dep to 1.11.1 per configure.ac.
* Update a bunch of URLs in packaging to https.
[ Julien Cristau ]
* Update d/upstream/signing-key.asc with Matthieu Herrb's key.
[ Emilio Pozuelo Monfort ]
* Cherry-pick upstream commit 20a3f99 to plug a memory leak in the
security fix.
* Bump debhelper compat to 10.
* Switch from old debhelper to dh.
* Drop workaround for old tarballs not shipping some files.
* Switch to -dbgsym packages.
* Bump Standards-Version to 3.9.8, no changes.
* Drop libtool and automake build dependencies, debhelper takes
care of that for us now.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 06 Dec 2016 01:38:30 +0100
libx11 (2:1.6.3-1) unstable; urgency=medium
* New upstream release.
* Drop 006_tailor_pt_BR.UTF-8_Compose.diff, no longer necessary.
* Rediff 003_recognize_glibc_2.3.2_locale_names.diff.
* Let uscan verify tarball signatures.
-- Julien Cristau <jcristau@debian.org> Thu, 30 Apr 2015 22:31:01 +0200
libx11 (2:1.6.2-3) unstable; urgency=medium
[ Julien Cristau ]
* libx11-6.symbols: yet another 64bit arch (ppc64el). Closes: #749728.
-- Cyril Brulebois <kibi@debian.org> Mon, 18 Aug 2014 01:39:32 +0200
libx11 (2:1.6.2-2) unstable; urgency=low
[ Julien Cristau ]
* Yet more 64 bit archs in symbols file: mips64{,el} (closes: #722088).
* Remove Cyril Brulebois from Uploaders.
* Bump debhelper compat level from 5 to 7.
* Switch from xsfbs.mk to standard quilt patching.
[ Colin Watson ]
* Declare libx11-xcb-dev Multi-Arch: same (closes: #727231).
-- Julien Cristau <jcristau@debian.org> Sun, 11 May 2014 18:04:23 +0200
libx11 (2:1.6.2-1) unstable; urgency=low
[ Julien Cristau ]
* So apparently the 64-bit powerpc port is called ppc64 (closes: #613820).
[ Maarten Lankhorst ]
* New upstream release.
-- Maarten Lankhorst <maarten.lankhorst@ubuntu.com> Thu, 03 Oct 2013 09:46:46 +0200
libx11 (2:1.6.1-1) unstable; urgency=low
[ Julien Cristau ]
* New upstream release
* libx11-6.symbols: add powerpc64 to the list of 64bit archs (closes: #613820)
[ Wookey ]
* Update symbols file for arm64
-- Julien Cristau <jcristau@debian.org> Mon, 12 Aug 2013 17:55:45 +0200
libx11 (2:1.6.0-1) unstable; urgency=low
* Bump libx11-dev's x11proto-core-dev dependency to 7.0.17 for _X_NORETURN
(closes: #649866).
* New upstream release
- Fix unbounded recursion when reading resource files (closes: #145048)
- XmbLookupString man page no longer warns (closes: #300819)
- Fix build with automake 1.13 (closes: #710467)
* Update 003_recognize_glibc_2.3.2_locale_names.diff.
* Update 006_tailor_pt_BR.UTF-8_Compose.diff.
* Refresh 008_remove_ko_Compose.diff.
* Update 009_remove_th_Compose.diff.
* Refresh 015_russian_locale_alias.diff.
* Bump shlibs and symbols for _XEatDataWords.
* Add new locales to configure.ac so they can get installed.
* Disable silent rules.
* Use dpkg-buildflags.
-- Julien Cristau <jcristau@debian.org> Sat, 15 Jun 2013 18:31:27 +0200
libx11 (2:1.5.0-1) unstable; urgency=low
* New upstream release. Visible changes:
- Add APL support, yay!
- A few duplicated Compose sequences were tweaked or removed. Affected
characters are: Ã / µ / Ñ / ñ / ¹ / ² / ³ / Ó / ó / Ǻ / ǻ.
* Drop patch, fixed upstream:
- 001-configure-check-if-issetugid-is-declared.diff
-- Cyril Brulebois <kibi@debian.org> Sat, 16 Jun 2012 20:32:52 +0000
libx11 (2:1.4.99.901-2) unstable; urgency=low
* Add AC_CHECK_DECL(issetugid) to fix FTBFS on kfreebsd (closes: #669670).
-- Julien Cristau <jcristau@debian.org> Sun, 29 Apr 2012 16:55:39 +0200
libx11 (2:1.4.99.901-1) unstable; urgency=low
* New upstream release candidate (1.5 RC1)
- XQueryColors: split a request into multiple requests if necessary
(closes: #278984)
- Revert "xcb: Add TCP fallback" (closes: #659558)
* Don't require (fake)root for debian/rules clean.
* Drop xorg-sgml-doctools dependency from libx11-doc, the css is now
included in the html files directly. Also add Breaks in addition to the
Replaces on old libx11-dev.
* Add build-indep and build-arch targets, don't build specs in build-arch.
* Rediff 006_tailor_pt_BR.UTF-8_Compose.diff and
015_russian_locale_alias.diff.
* Upload to unstable.
-- Julien Cristau <jcristau@debian.org> Thu, 19 Apr 2012 22:58:30 +0200
libx11 (2:1.4.99.1-1) experimental; urgency=low
[ Julien Cristau ]
* Move xorg-sgml-doctools dependency from -dev to -doc.
* Move libx11-doc from section libdevel to doc (closes: #648706).
[ Cyril Brulebois ]
* New upstream release candidate:
- Bug fixes, specs clean-up, new compose sequences.
- Add GetRequestSized.
* Bump xorg-sgml-doctools build-dep.
* Refresh patch:
- 006_tailor_pt_BR.UTF-8_Compose.diff
* Add symbol:
- _XGetRequest@Base
* Bump shlibs accordingly, for the udeb.
-- Cyril Brulebois <kibi@debian.org> Thu, 22 Dec 2011 12:58:15 +0100
libx11 (2:1.4.4-4) unstable; urgency=low
* debian/rules: since the documentation is moved to libx11-doc, the
exception handling for libx11-xcb-dev needs to also look at libx11-doc,
not libx11-dev.
-- Steve Langasek <vorlon@debian.org> Fri, 11 Nov 2011 06:51:51 -0800
libx11 (2:1.4.4-3) unstable; urgency=low
* Split documentation out from libx11-dev into a separate libx11-doc
package, so that libx11-dev can be multiarch co-installable.
-- Steve Langasek <vorlon@debian.org> Wed, 09 Nov 2011 12:13:26 -0800
libx11 (2:1.4.4-2) unstable; urgency=low
[ Colin Watson ]
* Fix cross-compilation breakage due to a typo in the multiarch patch
(closes: #642402)
-- Julien Cristau <jcristau@debian.org> Thu, 22 Sep 2011 17:42:39 +0200
libx11 (2:1.4.4-1) unstable; urgency=low
* New upstream release.
* Drop xorg.css from libx11-dev, depend on xorg-sgml-doctools instead.
-- Julien Cristau <jcristau@debian.org> Sat, 30 Jul 2011 22:14:56 +0200
libx11 (2:1.4.3-3) unstable; urgency=low
[ Julien Cristau ]
* Add lintian override for the libx11-private dep in libx11-6.symbols.
[ Cyril Brulebois ]
* Fix the FTBFS on s390x (Closes: #635692): Add s390x to the list of
64-bit architectures in the symbols file. Thanks, Aurélien Jarno!
-- Cyril Brulebois <kibi@debian.org> Thu, 28 Jul 2011 15:08:36 +0200
libx11 (2:1.4.3-2) unstable; urgency=low
* Team upload.
[ Steve Langasek ]
* Build for multiarch.
[ Julien Cristau ]
* Bump Standards-Version to 3.9.2.
* Properly clean up libtool m4 files.
-- Julien Cristau <jcristau@debian.org> Sat, 11 Jun 2011 14:06:01 +0200
libx11 (2:1.4.3-1) unstable; urgency=low
* New upstream release:
- Add Sinhala support.
- Add Docbook external references support.
* Bump x11proto-core-dev build-dep to make defining XK_SINHALA useful.
* Bump xutils-dev build-dep for newer macros.
-- Cyril Brulebois <kibi@debian.org> Tue, 05 Apr 2011 23:42:05 +0200
libx11 (2:1.4.2-1) unstable; urgency=low
[ Timo Aaltonen ]
* New upstream release. (closes: #463159)
[ Cyril Brulebois ]
* Bump x11proto-xf86bigfont-dev build-dep.
-- Cyril Brulebois <kibi@debian.org> Sat, 26 Mar 2011 00:36:43 +0100
libx11 (2:1.4.1-5) unstable; urgency=low
* Mark x11-data Multi-Arch: foreign.
-- Steve Langasek <vorlon@debian.org> Mon, 21 Feb 2011 20:01:35 -0800
libx11 (2:1.4.1-4) unstable; urgency=low
* Bump Standards-Version to 3.9.1.
* specs were converted from groff to xml, so we can ship the html version
now.
* Drop Build-Dependencies on groff/ghostscript/... since the docs were
converted to xml.
-- Julien Cristau <jcristau@debian.org> Mon, 07 Feb 2011 12:36:09 +0100
libx11 (2:1.4.1-3) unstable; urgency=low
* Remove David Nusinow and Brice Goglin from Uploaders. Thanks for all your
work!
* Drop Conflicts on sarge-era xlibs-data, Replaces on sarge-era libx11-6,
Pre-Depends on x11-common (needed for upgrades from sarge), and Conflicts
against pre-XCB libx11-6.
* Wrap debian/control Depends fields.
* Upload to unstable.
-- Julien Cristau <jcristau@debian.org> Sun, 06 Feb 2011 22:42:28 +0100
libx11 (2:1.4.1-2) experimental; urgency=low
* Make libx11-data break earlier versions of libx11-6, since those rely
on XKeysymDB, resulting in a non-functional keyboard and plenty of
such messages: “Internal error: Could not resolve keysym *”.
-- Cyril Brulebois <kibi@debian.org> Tue, 18 Jan 2011 18:47:22 +0100
libx11 (2:1.4.1-1) experimental; urgency=low
[ Julien Cristau ]
* New upstream release.
- lots of fixes for multithreaded apps
- X11 users can now compose anarchism (closes: #555938)
[ Robert Hooker ]
* New upstream release.
* Don't install unshipped XKeysymDB.
* Bump xutils-dev build-dep to 1:7.5+5 for util-macros 1.11 requirement.
[ Cyril Brulebois ]
* New new (new) upstream release.
* As a temporary measure, add 020_keep_xorg_css.diff to avoid having to
depend on xorg-sgml-doctools just for xorg.css.
* Refresh all patches.
* Some functions got hidden by upstream in aebbf36238, since “none of
the functions in Xprivate.h should have any callers outside of Xlib,
by definition”. As a consequence, drop the following symbols from
libx11-6.symbols:
- _XIDHandler@Base
- _XSetPrivSyncFunction@Base
- _XSetSeqSyncFunction@Base
* Drop obsolete --enable-man-pages=3 from configure flags.
* Pass --with-xmlto and --without-fop for the documentation generation.
* Add xmlto, xorg-sgml-doctools, w3m build-dep accordingly.
* Remove *.xml before running dh_install, there's no point in shipping
those files.
* Update debian/copyright from upstream COPYING.
-- Cyril Brulebois <kibi@debian.org> Thu, 13 Jan 2011 01:18:40 +0100
libx11 (2:1.3.3-3) unstable; urgency=low
[ Julien Cristau ]
* Drop manpage from libx11-6-udeb.
* Don't install X11 locale data in the udeb. The installer uses only gtk
apps so this is useless (and big).
[ Cyril Brulebois ]
* Cherry-pick patch from upstream to run user's synchandlers as well as
any internal synchandlers: 75ea8c3793. This fixes xnee issues when
RECORD extension is enabled (Closes: #536491; LP: #378648).
* Merge xsfbs/debian-unstable to fix double autoreconf runs.
-- Cyril Brulebois <kibi@debian.org> Tue, 13 Apr 2010 14:46:16 +0200
libx11 (2:1.3.3-2) unstable; urgency=low
[ Julien Cristau ]
* Update debian/copyright from upstream COPYING.
* Remove myself from Uploaders
[ Brice Goglin ]
* Remove Jamey Sharp and Josh Triplett from Uploaders, closes: #568274.
[ Cyril Brulebois ]
* Add udeb needed for the graphical installer: libx11-6-udeb.
* Bump the B-D on libxcb1-dev to ensure libx11-6-udeb gets a dependency
on libxcb1-udeb.
* Bump Standards-Version from 3.8.3 to 3.8.4 (no changes needed).
* Add myself to Uploaders.
-- Cyril Brulebois <kibi@debian.org> Thu, 11 Mar 2010 01:06:06 +0100
libx11 (2:1.3.3-1) unstable; urgency=low
* xtrans has been fixed to not make us export a weak in6addr_any. Adjust
libx11-6.symbols accordingly (closes: #560648).
* Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
good reason. Thanks, Colin Watson!
* Update symbols file for sparc64 (closes: #560400). Thanks, Aurélien
Jarno!
* New upstream release
+ fix XCopyGC argument order in manpage (LP: #408337)
* Bump xutils-dev build-dep for new util-macros.
* Install the Compose man page in libx11-data.
* Rediff patches 003_recognize_glibc_2.3.2_locale_names.diff,
007_iso8859-15_Compose_fix.diff, 008_remove_ko_Compose.diff,
009_remove_th_Compose.diff, 015_russian_locale_alias.diff.
* libx11-6.symbols: add xlocaledir, made non-static in 1.3.3.
-- Julien Cristau <jcristau@debian.org> Sat, 16 Jan 2010 22:47:32 +0000
libx11 (2:1.3.2-1) unstable; urgency=low
[ Julien Cristau ]
* libx11-6.symbols: _XkbReadBufferCopy32, _XkbReadCopyData32 and
_XkbWriteCopyData32 are only present on 64-bit architectures.
* Unmark the following symbols as private, they're being used:
- _XRegisterFilterByMask
- _XRegisterFilterByType
- _XUnregisterFilter
- _XInitKeysymDB
- _Xevent_to_mask
* Build the Xlib specs and install them in libx11-dev.
* Upload to unstable.
[ Timo Aaltonen ]
* New upstream release.
* Bump the build-dep on xutils-dev (>= 1:7.5~1).
-- Julien Cristau <jcristau@debian.org> Mon, 23 Nov 2009 20:50:03 +0100
libx11 (2:1.3-1) experimental; urgency=low
* libx11-6.symbols: mark some more stuff as private.
* libx11-6.symbols: add kfreebsd-amd64 tag for 64-bit symbols.
* Run dpkg-gensymbols with -c4 to catch mismatches between the symbols file
and the library.
* New upstream release.
* Cherry-pick patch from upstream git to avoid an error in configure due to
underquoting.
* Fix 006_tailor_pt_BR.UTF-8_Compose.diff to apply on new upstream.
* Bump Standards-Version to 3.8.3.
-- Julien Cristau <jcristau@debian.org> Mon, 12 Oct 2009 15:28:23 +0200
libx11 (2:1.2.99.901-1) experimental; urgency=low
[ Brice Goglin ]
* Bump Standards-Version to 3.8.2.
[ Julien Cristau ]
* Drop 002_arm_abi_brain_damage.diff, the old ABI arm port is gone.
* Use a glob in libx11-6.install and libx11-xcb1.install.
* Add tentative symbols file for libX11.so.6. Many private symbols still
included.
* Build-depend on dpkg 1.15.3, to get support for tags in the symbols file.
* New upstream release candidate
+ add {left,right}wards arrow to en_US.UTF-8 compose table
(closes: #532117). Thanks, Filippo Giunchedi!
-- Julien Cristau <jcristau@debian.org> Wed, 05 Aug 2009 17:04:28 +0200
libx11 (2:1.2.2-1) unstable; urgency=low
[ Julien Cristau ]
* Move dbg packages to new debug section.
* Kill preinst which handled upgrades from early Ubuntu versions (before
breezy). This is long obsolete.
[ Brice Goglin ]
* New upstream release.
+ Fix fi_FI.UTF-8, closes: #519474.
+ Fix thai XIM filtering keys when NumLock/CapsLock is on, closes: #443800.
* Add myself to Uploaders.
-- Brice Goglin <bgoglin@debian.org> Sun, 19 Jul 2009 19:21:16 +0200
libx11 (2:1.2.1-1) unstable; urgency=low
* New upstream release.
+ fixes fi_FI.UTF-8 locale (closes: #519474)
+ adds sr_RS locale (closes: #507940)
+ adds hu_HU.utf8 locale alias (closes: #407573)
+ Compose entries for some standard mathematical operators
(closes: #411734)
* Patch 012_ru_RU_UTF-8_XLC_LOCALE.diff removed, applied upstream.
* Update patches 003_recognize_glibc_2.3.2_locale_names.diff,
006_tailor_pt_BR.UTF-8_Compose.diff and 015_russian_locale_alias.diff.
* 003_recognize_glibc_2.3.2_locale_names.diff: don't comment out the
microsoft-cp* entries from compose.dir (closes: #511354). Thanks, Sergei
Golovan!
* 003_recognize_glibc_2.3.2_locale_names.diff: don't comment out the eo_XX
entries from compose.dir and locale.dir (closes: #479058). Thanks, Luiz
Portella!
* 009_remove_th_Compose.diff: new patch, comment out the th_TH.UTF-8 entry
from compose.dir, to allow Thai XIM as default for X apps
(closes: #520509). Thanks, Theppitak Karoonboonyanan!
-- Julien Cristau <jcristau@debian.org> Wed, 08 Apr 2009 12:31:21 +0100
libx11 (2:1.2-1) unstable; urgency=low
* New upstream release.
* Remove obsolete ld.so.conf handling from libx11-6 postinst.
* Run autoreconf on build; add build-deps on automake, libtool, xutils-dev.
* Handle parallel builds.
* Refresh patches 003_recognize_glibc_2.3.2_locale_names.diff and
012_ru_RU_UTF-8_XLC_LOCALE.diff.
* Use a wildcard for usr/share/X11/locale instead of listing every single
file.
-- Julien Cristau <jcristau@debian.org> Mon, 09 Mar 2009 16:36:09 +0100
libx11 (2:1.1.99.2-1) experimental; urgency=low
* New upstream release.
* Use new xcb socket handoff mechanism, update (build-)dependencies.
* Refresh patches.
* Build-dep on x11proto-core-dev >= 7.0.13.
-- Julien Cristau <jcristau@debian.org> Mon, 01 Dec 2008 22:37:28 +0100
libx11 (2:1.1.5-2) unstable; urgency=medium
* Cherry-picked from upstream git: Fix an XCB leak when the client has a
non-fatal error handler.
-- Julien Cristau <jcristau@debian.org> Thu, 25 Sep 2008 17:45:25 +0200
libx11 (2:1.1.5-1) unstable; urgency=low
[ Brice Goglin ]
* Add upstream URL to debian/copyright.
* Add a link to www.X.org and a reference to the upstream module
in the long description.
[ Timo Aaltonen ]
* New upstream release.
+ adds missing <cedilla> Compose sequences (closes: #394068)
[ Julien Cristau ]
* 014_add_Khmer_digraphs.diff: remove, applied upstream
* 006_tailor_pt_BR.UTF-8_Compose.diff: update
-- Julien Cristau <jcristau@debian.org> Sun, 14 Sep 2008 19:09:33 +0200
libx11 (2:1.1.4-2) unstable; urgency=low
* Drop Pre-Depends on x11-common from libx11-6, libx11-data and libx11-xcb1.
* Pull from upstream libX11-1.1-branch
+ fixes Compose sequences for finnish keyboards (closes: #467142)
+ interrobang has been added to the en_US.UTF-8 Compose file
(closes: #300160)
* Update patch 006_tailor_pt_BR.UTF-8_Compose.diff, refresh others.
* Drop the NEWS entry about sun java. sun-java6 is now fixed, and libxcb
doesn't abort() anymore on the locking error.
* (Finally) upload Xlib/XCB to unstable.
-- Julien Cristau <jcristau@debian.org> Mon, 09 Jun 2008 16:27:23 +0200
libx11 (2:1.1.4-1) experimental; urgency=low
[ Timo Aaltonen ]
* control: libx11-data Replaces old versions of libx11-6 to enable
upgrades from Ubuntu 6.06.
[ Julien Cristau ]
* New upstream release
+ fixes XIM hang when switching input contexts (closes: #437437)
* Update patch stack:
+ 003_recognize_glibc_2.3.2_locale_names.diff: fixup; drop the hunk
under #ifdef WIN32, as I don't care enough to fix it
+ 004_en_US.UTF-8_Compose_fix_Unicode_plane_1.diff: remove, applied
upstream
+ 005_Compose_fix_latin1_UTF8.diff: remove, applied upstream
+ 006_tailor_pt_BR.UTF-8_Compose.diff: fixup
+ 007_iso8859-15_Compose_fix.diff: refresh
+ 008_remove_ko_Compose.diff: refresh
+ 009_iso8859-15_Compose_Eurosign.diff: remove, applied upstream
+ 012_ru_RU_UTF-8_XLC_LOCALE.diff: refresh
+ 014_add_Khmer_digraphs.diff: fixup
+ 015_russian_locale_alias.diff: refresh
* Bump Standards-Version to 3.7.3 (no changes).
* Drop XS- prefix from Vcs-* control fields.
* Fix malformed trailer line in libx11-6.NEWS (thanks, lintian).
-- Julien Cristau <jcristau@debian.org> Sat, 08 Mar 2008 03:13:07 +0100
libx11 (2:1.1.3-1) experimental; urgency=low
[ Julien Cristau ]
* New upstream release.
+ Fix locking in _XimGetWindowEventmask (closes: #427296).
+ fix XGetMotionEvents arguments order (closes: #431421).
+ XGetCommand(3) clarified (closes: #133348).
+ XrmCombineDatabase(3) fixed (closes: #393434).
* Install the upstream NEWS file in libx11-6 in addition to the git
changelog.
* Use binary:Version instead of Source-Version in debian/control.
[ Josh Triplett ]
* Expand the description of the problem with Sun Java in libx11-6.NEWS.
-- Julien Cristau <jcristau@debian.org> Thu, 02 Aug 2007 04:13:46 +0200
libx11 (2:1.1.2-1) experimental; urgency=low
[ Brice Goglin ]
* Drop -DLIBXCURSOR from CFLAGS since upstream default is now correct
(closes: #392618).
* Add en_DK.ISO-8859-15 to 003_recognize_glibc_2.3.2_locale_names.diff
Thanks Kaare Hviid. (closes: #419192).
[ Julien Cristau ]
* Add XS-Vcs-Git and XS-Vcs-Browser in debian/control.
* New upstream release:
+ typo in XRecolorCursor.man fixed, closes: #225839;
+ XRegisterIMInstantiateCallback manpage fixed, closes: #232133;
+ XGetVisualInfo manpage fixed, closes: 399094;
+ greek Compose file updated, patch 016_greek_polytonic_Compose.diff
dropped;
+ file descriptor leak in modules/im/ximcp/imLcPrs.c:parseline() fixed,
patch 021_compose_fclose.diff dropped;
+ fix for CVE-2007-1667 included, patch 022_CVE-2007-1667.diff dropped.
* Add a watch file.
* Don't run dh_install with --list-missing in binary-indep, there are too
many false positives for it to be useful.
* Document workarounds for sun-java5-bin and sun-java6-bin in libx11-6.NEWS.
* Strip all packages, not just the shared libs.
-- Julien Cristau <jcristau@debian.org> Wed, 06 Jun 2007 04:46:09 +0200
libx11 (2:1.1.1-1) experimental; urgency=low
[ Michel Dänzer ]
* libx11-dev Depends: libxcb-xlib0-dev, because x11.pc references xcb-xlib
(closes: #410117).
[ Julien Cristau ]
* New upstream release.
* Install upstream ChangeLog.
* libx11-dev doesn't seem to need to depend on libxext-dev
(closes: #366676).
* Use dh_installman in debian/rules to replace ".so" links with symlinks.
-- Julien Cristau <jcristau@debian.org> Fri, 9 Feb 2007 01:17:05 +0100
libx11 (2:1.1-2) experimental; urgency=low
[ Josh Triplett ]
* Include some upstream post-1.1 fixes in debian/patches:
* "Bug #9153: Fix access to freed memory."
* "Bug #9154: Always process an event for _XReadEvents, even if an error
occurs"; fixes an assertion failure, first observed with xcompmgr.
* "Debian bug #354315: Clarify return value in XGetWindowAttributes man
page" (closes: 354315)
* Fix override discrepancies: library packages go in libs, -dbg and -dev
packages go in libdevel. Fix for both the libx11 packages and the new
libx11-xcb packages.
-- Josh Triplett <josh@freedesktop.org> Sat, 25 Nov 2006 14:37:58 -0800
libx11 (2:1.1-1) experimental; urgency=low
[ Josh Triplett, Jamey Sharp ]
* New upstream version.
* Add ourselves to Uploaders.
* Forward-port patches:
* 001_no_xkb_in_pc_file.diff: update
* 003_recognize_glibc_2.3.2_locale_names.diff: update
* 004_en_US.UTF-8_Compose_fix_Unicode_plane_1.diff: update
* 005_Compose_fix_latin1_UTF8.diff: update
* 010_manpage_suffixes.diff: delete, applied upstream
* 012_ru_RU_UTF-8_XLC_LOCALE.diff: update
* 014_add_Khmer_digraphs.diff: update
* 015_russian_locale_alias.diff: update
* 016_greek_polytonic_Compose.diff: update
* 019_new_autoconf.diff: delete, applied upstream
* 020_CVE-2006-5397.diff: delete, applied upstream
* Stop registering /usr/X11R6/lib in /etc/ld.so.conf in the postinst;
instead, deregister it if no libraries remain in it. Remove deregistration
in postrm, and remove now-unnecessary postrm.
* Add Build-Depends on libxcb1-dev >= 0.9.92 and libxcb-xlib0-dev >= 0.9.92.
* Remove Build-Depends not needed with Xlib/XCB: bigreqsproto, xcmiscproto,
libxau-dev, and libxdmcp-dev.
* libx11-dev has some unnecessary Depends, but other packages currently rely
on them, so removal will wait until a later version.
* Add library, -dev, and -dbg packages for new library libX11-xcb. Modify
rules to handle these new packages.
* libX11-xcb Conflicts: libx11-6 (<< 2:1.1), since it requires a version with
Xlib/XCB.
* Add a NEWS.Debian to libx11-6, with Xlib/XCB information.
* Add XS-Vcs-Git field.
* Remove old upstream CVS information from package descriptions.
* Reword package descriptions to stop calling Xlib "the" client interface.
-- Josh Triplett <josh@freedesktop.org> Fri, 24 Nov 2006 17:36:55 -0800
libx11 (2:1.0.3-7) unstable; urgency=high
* Grab patch from upstream git to fix CVE-2007-1667 (the patch included in
2:1.0.3-6 was incomplete). This closes: #414045.
-- Julien Cristau <jcristau@debian.org> Tue, 03 Apr 2007 18:45:51 +0200
libx11 (2:1.0.3-6) unstable; urgency=high
* Add patch by Daniel Kobras <kobras@debian.org> to add more input
validation to XInitImage(), to fix security issues (closes: #414045).
-- Julien Cristau <jcristau@debian.org> Fri, 9 Mar 2007 02:23:06 +0100
libx11 (2:1.0.3-5) unstable; urgency=high
* Remove /usr/X11R6/lib from /etc/ld.so.conf in postinst if it's no longer
needed, instead of adding it there.
* Add patch 021_compose_fclose.diff to fix file descriptor leak when a
Compose file uses the "include" directive. Urgency high because this bug
can have security implications.
* Add myself to Uploaders, and remove Fabio and Branden with their
permission.
-- Julien Cristau <julien.cristau@ens-lyon.org> Thu, 1 Feb 2007 13:09:20 +0100
libx11 (2:1.0.3-4) unstable; urgency=low
* Some patches got lost in the upgrade from 1.0.0 (2:1.0.0-9) to 1.0.3:
- 015_russian_locale_alias.diff. Closes: #368655.
This aligns with the glibc russian definition of ru_RU.KOI8-R in
/usr/share/locale/locale.alias. Note that this only applies to
Debian's glibc, see bug #62586 and glibc 2.2.5-4. Because of the
constraint implosed by glibc in /usr/share/i18n/locales/ru_RU,
we cannot likewise change ru and ru_RU away from ISO8859-5.
They really should be using ru_RU.UTF-8 anyway.
- 016_greek_polytonic_Compose.diff. Closes: #386471.
- 017_FTBFS_makekeys.diff can be left out since it is applied in 1.0.3.
-- Drew Parsons <dparsons@debian.org> Wed, 22 Nov 2006 00:26:36 +1100
libx11 (2:1.0.3-3) unstable; urgency=high
[ Julien Cristau ]
* Urgency high for security bugfix (CVE-2006-5397).
* Add patch 020_CVE-2006-5397 to fix double fopen() of compose file
(closes: #398460). Thanks to Stefan Fritsch for the report.
-- David Nusinow <dnusinow@debian.org> Tue, 14 Nov 2006 19:56:01 -0500
libx11 (2:1.0.3-2) unstable; urgency=low
[ Denis Barbier ]
* Drop --enable-loadable-i18n from confflags, it does not work with 1.0.3.
Closes: #392567 Thanks Jérôme Marant
-- David Nusinow <dnusinow@debian.org> Fri, 13 Oct 2006 13:25:59 -0400
libx11 (2:1.0.3-1) unstable; urgency=low
[ David Nusinow ]
* New upstream release
* Dump obsolete patch 10 for manpage fix and 13 for setuid fix
* Run dh_install with --list-missing
* Remove obsolete patch 011
* Bump debhelper compat to 5
* Upstream fix allows building in gnu environments. Thanks Samuel
Thibault, Robert Millan, and Michael Banck. Closes: #358708
* Add 019_new_autoconf.diff to allow us to not break the server in
horrendous ways using newer versions of autoconf. Thanks to Jamey Sharp
for pointing this patch out in upstream HEAD.
* Add 010_manpage_suffixes.diff to dynamically generate the internal manpage
section using __libmansuffix__ the same way the actual file suffix is
generated, so that they match and lintian becomes useful again here
* Add pre-depends on x11-common for the -dev package
[ Denis Barbier ]
* Sync patches:
- 003_recognize_glibc_2.3.2_locale_names.diff
- 005_Compose_fix_latin1_UTF8.diff
- 006_tailor_pt_BR.UTF-8_Compose.diff
- 014_add_Khmer_digraphs.diff
* Add 014_add_Khmer_digraphs.diff. Khmer keyboards have to generate
several characters with a single keystroke, so define them in
en_US.UTF-8/Compose. They will be added later to all UTF-8 files.
Thanks Paul Wise. (closes: #355957)
* Add support for Khmer locale in 003_recognize_glibc_2.3.2_locale_names.diff
[ Andres Salomon ]
* Test for obj-$(DEB_BUILD_GNU_TYPE) before creating it during build;
idempotency fix.
[ Drew Parsons ]
* dbg package has priority extra.
-- David Nusinow <dnusinow@debian.org> Tue, 10 Oct 2006 22:34:36 -0400
libx11 (2:1.0.0-9) unstable; urgency=low
* Add 015_russian_locale_alias.diff. Locale alias for russian was incorrect,
it should be ru_RU.KOI8-R as in glibc locale.alias. Thanks Andrei Lahun.
(closes: #368655)
* Add 016_greek_polytonic_Compose.diff. Add compose sequences with the
right breathing signs U0313/U0314 to el_GR.UTF-8/Compose.
Thanks Jan Willem Stumpel. (closes: #386471)
* Add 017_FTBFS_makekeys.diff. Fix a FTBFS when compiling with
x11proto-core-dev >= 7.0.3, backported from upstream.
Thanks Goswin von Brederlow. (closes: #387133)
-- Denis Barbier <barbier@debian.org> Thu, 14 Sep 2006 01:35:19 +0200
libx11 (2:1.0.0-8) unstable; urgency=low
* Add 18_nonlinux.diff to fix building in gnu environments. Thanks Samuel
Thibault, Robert Millan, and Michael Banck. Closes: #358708
-- David Nusinow <dnusinow@debian.org> Wed, 27 Sep 2006 21:07:10 -0400
libx11 (2:1.0.0-7) unstable; urgency=high
* Security update. Fix for setuid privledge escalation vulernabilities.
See http://lists.freedesktop.org/archives/xorg/2006-June/016146.html for
the full advisory.
* Bump standards version to 3.7.2.0
-- David Nusinow <dnusinow@debian.org> Sat, 1 Jul 2006 17:05:07 -0400
libx11 (2:1.0.0-6) unstable; urgency=low
* Remove libx11-dev's dependencies on libxi-dev and libxkbfile-dev. Add a
dependency on x11proto-input-dev instead. This should break some circular
dependencies. Thanks go yet again to Kurt Roeckx.
-- David Nusinow <dnusinow@debian.org> Tue, 11 Apr 2006 18:17:46 -0400
libx11 (2:1.0.0-5) unstable; urgency=low
* Upload to unstable
-- David Nusinow <dnusinow@debian.org> Thu, 23 Mar 2006 22:44:26 -0500
libx11 (2:1.0.0-4) experimental; urgency=low
[ David Nusinow ]
* Remove libx11-dev versioned dependency on libxext-dev. This was preventing
bootstrapping of libxext. Thanks Eugene Konev.
[ Denis Barbier ]
* Add Build-Depends: x11proto-input-dev, quilt. Thanks Kurt Roeckx.
(Closes: #356918).
-- David Nusinow <dnusinow@debian.org> Tue, 21 Mar 2006 19:55:58 -0500
libx11 (2:1.0.0-3) experimental; urgency=low
[ David Nusinow ]
* Stop using the xsfbs autoreconf script. The main beneft of using quilt in
keeping the patches separate is for submitting things upstream and porting
our changes between upstream releases. Keeping the automatically generated
build system stuff in patches also doesn't fall under this use category.
* Make libx11-6 conflict with xlibs-data. Thanks Kurt Roeckx.
(closes: #356415)
-- David Nusinow <dnusinow@debian.org> Sun, 12 Mar 2006 14:00:31 -0500
libx11 (2:1.0.0-2) experimental; urgency=low
[ David Nusinow ]
* Properly install all the contents of /usr/lib/X11/locale. Thanks Zephenia
E. Hull.
* Provide versioned build-depends on the X libs. Thanks Kurt Roeckx.
(closes: #354161)
* Provide libx11-dev dependencies on libxdmcp-dev.
Thanks Kurt Roeckx. (closes: #354167)
* Add a bunch of depends to libx11-dev from the monolith. Thanks Eugene
Konev for the pointer.
* Add 001_no_xkb_in_pc_file.diff because we don't need x11proto-input-dev.
Thanks Eugene Konev.
[ Eugene Konev ]
* Move locale data in separate libx11-data package. Make libx11-6 depend
on it.
* libx11-6.install.in? Huh? Replaced with libx11-6.install
* Add real binary-indep.
* Add patches from 6.9:
- 002_arm_abi_brain_damage.diff
- 003_recognize_glibc_2.3.2_locale_names.diff
- 004_en_US.UTF-8_Compose_fix_Unicode_plane_1.diff
- 005_Compose_fix_latin1_UTF8.diff
- 006_tailor_pt_BR.UTF-8_Compose.diff
- 007_iso8859-15_Compose_fix.diff
- 008_remove_ko_Compose.diff
- 009_iso8859-15_Compose_Eurosign.diff
- 012_ru_RU_UTF-8_XLC_LOCALE.diff
* Adjust Pre-depends for libx11-6. Remove depends on x11-common from
libx11-dbg and libx11-dev as they depend on libx11-6 anyway.
* Run dh_install with --fail-missing if there is checkinstall in
DEB_BUILD_OPTIONS
* Resurrect libx11-6.post{inst,rm}.in. Add genscripts to build target's
dependencies.
* Fix libx11-6.preinst.in to include shelllib and define appropriate vars.
* Grab fixes for manpages section from Xorg CVS
- 010_manpages_fix.diff
* Grab ubuntu patch to support XLOCALELIBDIR separate from XLOCALEDIR
- 011_stolen_from_ubuntu_xlocalelibdir.diff
* Add --enable-loadable-i18n to confflags.
* Use new xsfbs-autoreconf.mk to do autoreconfing.
-- Eugene Konev <ejka@imfi.kspu.ru> Mon, 27 Feb 2006 13:45:29 +0700
libx11 (2:1.0.0-1) experimental; urgency=low
* First upload to Debian
* Remove versioned build-dep on x11proto-core-dev, since the first package
we'll be uploading will be versioned properly for us
* Remove patch dir as the patch has been incorporated by upstream
-- David Nusinow <dnusinow@debian.org> Thu, 29 Dec 2005 20:51:20 -0500
libx11 (1:6.2.1+cvs.20050722-8) breezy; urgency=low
* Fix non-UTF-8 locales by fixing generation of compose.dir, locale.alias,
and locale.dir in nls/ (closes: Ubuntu#13724).
-- Daniel Stone <daniel.stone@ubuntu.com> Fri, 30 Sep 2005 16:30:55 +1000
libx11 (1:6.2.1+cvs.20050722-7) breezy; urgency=low
* Move man pages back to section 3 (closes: Ubuntu#16290).
-- Daniel Stone <daniel.stone@ubuntu.com> Thu, 29 Sep 2005 11:26:11 +1000
libx11 (1:6.2.1+cvs.20050722-6) breezy; urgency=low
* Add libx11-dev Build-Depends on x11proto-kb-dev, so we get XKBstr.h, which
makes XKBlib.h usable.
* Add foo_t and TRANS_CLIENT defines to Xtrans users; thanks Isaac Richards
for the catch (closes: Ubuntu#12052).
-- Daniel Stone <daniel.stone@ubuntu.com> Fri, 19 Aug 2005 15:19:33 +1000
libx11 (1:6.2.1+cvs.20050722-5) breezy; urgency=low
* Add x-common Pre-Depends to libx11-6, as we ship stuff in
/usr/lib/X11.
-- Daniel Stone <daniel.stone@ubuntu.com> Thu, 18 Aug 2005 12:12:45 +1000
libx11 (1:6.2.1+cvs.20050722-4) breezy; urgency=low
* Fix search path for libXcursor.
* Add :s to compose.dir to get composition working in apps which use the
default X input method (closes: Ubuntu#12184).
-- Daniel Stone <daniel.stone@ubuntu.com> Mon, 8 Aug 2005 13:32:12 +1000
libx11 (1:6.2.1+cvs.20050722-3) breezy; urgency=low
* Make ErrDes.c and StrKeysym.c look for XKEYSYMDB and XERRORDB, not
KEYSYMDB and ERRORDB, with the pleasant side-effect that they look
directly in /usr/share/X11, not /usr/lib/X11, so we can throw the cheesy
symlinks away. This fixes some corner cases in hoary upgrades.
-- Daniel Stone <daniel.stone@ubuntu.com> Mon, 1 Aug 2005 13:17:15 +1000
libx11 (1:6.2.1+cvs.20050722-2) breezy; urgency=low
* Move locale data back to /usr/share and libraries to /usr/lib. XlcDL.c
and lcFile.c hacked to accommodate this, as well as configure.ac. This
fixes all the locale problems, AFAICT. (closes: Ubuntu#12142)
-- Daniel Stone <daniel.stone@ubuntu.com> Tue, 26 Jul 2005 23:00:21 +1000
libx11 (1:6.2.1+cvs.20050722-1) breezy; urgency=low
* Fix locales harder: add the old loadable locale modules back.
* Although architecture-independent locale data has been moved to
/usr/lib/X11/locale because of limitations in the path-parsing code.
Argh!
* Bump Build-Depends on x11proto-core-dev to today's CVS; -D_XOPEN_SOURCE
begone!
-- Daniel Stone <daniel.stone@ubuntu.com> Fri, 22 Jul 2005 22:29:21 +1000
libx11 (1:6.2.1+cvs.20050711-1) breezy; urgency=low
* New CVS snapshot, incorporating patch #086 from the monolith.
-- Daniel Stone <daniel.stone@ubuntu.com> Mon, 11 Jul 2005 10:10:44 +1000
libx11 (1:6.2.1+cvs.20050615-5) breezy; urgency=low
* Bump libx11-6 -> xlibs-data Conflicts/Replaces to -34; Tollef's -33 did
not change this.
-- Daniel Stone <daniel.stone@ubuntu.com> Tue, 5 Jul 2005 01:41:19 +1000
libx11 (1:6.2.1+cvs.20050615-4) breezy; urgency=low
* Make Build-Depends and Depends on x11proto-core-dev explicitly >=
6.8.99.8-1 (hi LaMont!).
* Add symlinks to X{Error,KeySym}DB from /usr/{X11R6/,}lib/X11. Bump
Conflicts on xlibs-data up to -33. Add symlinks to locale data in
/usr/{X11R6,}lib/X11 (closes: Ubuntu#12081).
-- Daniel Stone <daniel.stone@ubuntu.com> Fri, 17 Jun 2005 15:58:44 +1000
libx11 (1:6.2.1+cvs.20050615-3) breezy; urgency=low
* Add missing build-depends on:
- pkg-config, x11proto-kb-dev, x11proto-input-dev
-- Adam Conrad <adconrad@ubuntu.com> Thu, 16 Jun 2005 13:50:14 +0000
libx11 (1:6.2.1+cvs.20050615-2) breezy; urgency=low
* Move Build-Depends-Indep to Build-Depends to fix FTBFSs.
-- Adam Conrad <adconrad@ubuntu.com> Thu, 16 Jun 2005 08:53:59 +0000
libx11 (1:6.2.1+cvs.20050615-1) breezy; urgency=low
* First libx11 release.
+ XCB support removed for now.
-- Daniel Stone <daniel.stone@ubuntu.com> Mon, 16 May 2005 22:10:17 +1000
|