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 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258
|
libxml2 (2.9.10+dfsg-6.7+deb11u4) bullseye-security; urgency=high
* Non-maintainer upload by the Security Team.
* schemas: Fix null-pointer-deref in xmlSchemaCheckCOSSTDerivedOK
* Fix null deref in xmlSchemaFixupComplexType (CVE-2023-28484)
(Closes: #1034436)
* Hashing of empty dict strings isn't deterministic (CVE-2023-29469)
(Closes: #1034437)
-- Salvatore Bonaccorso <carnil@debian.org> Sat, 15 Apr 2023 20:52:15 +0200
libxml2 (2.9.10+dfsg-6.7+deb11u3) bullseye-security; urgency=high
* Non-maintainer upload by the Security Team.
* Fix integer overflows with XML_PARSE_HUGE (CVE-2022-40303)
(Closes: #1022224)
* Fix dict corruption caused by entity reference cycles (CVE-2022-40304)
(Closes: #1022225)
-- Salvatore Bonaccorso <carnil@debian.org> Sun, 30 Oct 2022 13:03:35 +0100
libxml2 (2.9.10+dfsg-6.7+deb11u2) bullseye-security; urgency=high
* Non-maintainer upload by the Security Team.
* Fix integer overflow in xmlBufferResize
* Fix integer overflows in xmlBuf and xmlBuffer (CVE-2022-29824)
(Closes: #1010526)
-- Salvatore Bonaccorso <carnil@debian.org> Sun, 15 May 2022 15:58:46 +0200
libxml2 (2.9.10+dfsg-6.7+deb11u1) bullseye; urgency=medium
* Non-maintainer upload.
* Use-after-free of ID and IDREF attributes (CVE-2022-23308)
(Closes: #1006489)
-- Salvatore Bonaccorso <carnil@debian.org> Thu, 17 Mar 2022 21:52:53 +0100
libxml2 (2.9.10+dfsg-6.7) unstable; urgency=medium
* Non-maintainer upload.
* Patch for security issue CVE-2021-3541 (Closes: #988603)
-- Salvatore Bonaccorso <carnil@debian.org> Sat, 22 May 2021 08:21:29 +0200
libxml2 (2.9.10+dfsg-6.6) unstable; urgency=medium
* Non-maintainer upload.
* Upload to unstable.
-- Salvatore Bonaccorso <carnil@debian.org> Thu, 06 May 2021 10:48:16 +0200
libxml2 (2.9.10+dfsg-6.5) experimental; urgency=medium
* Non-maintainer upload.
* Propagate error in xmlParseElementChildrenContentDeclPriv (CVE-2021-3537)
(Closes: #988123)
-- Salvatore Bonaccorso <carnil@debian.org> Thu, 06 May 2021 10:28:10 +0200
libxml2 (2.9.10+dfsg-6.4) experimental; urgency=medium
* Non-maintainer upload.
* Fix use-after-free with `xmllint --html --push` (CVE-2021-3516)
(Closes: #987739)
* Validate UTF8 in xmlEncodeEntities (CVE-2021-3517) (Closes: #987738)
* Fix user-after-free with `xmllint --xinclude --dropdtd` (CVE-2021-3518)
(Closes: #987737)
-- Salvatore Bonaccorso <carnil@debian.org> Sun, 02 May 2021 16:23:29 +0200
libxml2 (2.9.10+dfsg-6.3) unstable; urgency=medium
* Non-maintainer upload.
* Remove the Python2 autopkg test.
-- Matthias Klose <doko@debian.org> Sun, 29 Nov 2020 11:58:00 +0100
libxml2 (2.9.10+dfsg-6.2) unstable; urgency=medium
* Non-maintainer upload.
* Fix out-of-bounds read with 'xmllint --htmlout' (CVE-2020-24977)
(Closes: #969529)
-- Salvatore Bonaccorso <carnil@debian.org> Sun, 25 Oct 2020 13:56:23 +0100
libxml2 (2.9.10+dfsg-6.1) unstable; urgency=medium
* Non-maintainer upload.
* Fix build with Python 3.9. Closes: #972022.
-- Matthias Klose <doko@debian.org> Wed, 14 Oct 2020 08:45:25 +0200
libxml2 (2.9.10+dfsg-6) unstable; urgency=medium
* Team upload.
[ Mattia Rizzolo ]
* Drop Python2 support. Closes: #936941
* Use dh-sequence-python3 to at least simplify one line of d/rules.
* Bump debhelper compat level to 13.
+ Drop dh_missing override, dh13 defaults to --fail-missing.
[ Debian Janitor ]
* Use correct machine-readable copyright file URI.
* Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
Repository-Browse.
* Rely on pre-initialized dpkg-architecture variables.
-- Mattia Rizzolo <mattia@debian.org> Fri, 04 Sep 2020 23:05:12 +0200
libxml2 (2.9.10+dfsg-5) unstable; urgency=medium
* Team upload.
[ Mattia Rizzolo ]
* d/rules:
+ Drop --disable-silent-rules, already passed by dh_auto_configure.
+ Drop --parallel, now default with debhelper compat > 10.
+ Use dh_installdocs and dh_installexamples to install docs and examples.
+ Use dh_missing --fail-missing (and add the relevant d/not-installed).
+ Minimize indep build to build only the docs.
* d/watch: fix an option to avoid a warning message.
* d/control:
+ Move most of the build-deps to Build-Depends-Arch.
+ Use ${python:Depends} also for python-libxml2-dbg.
* Add a lintian override for
debian-rules-uses-supported-python-versions-without-python-all-build-depends
[ Gunnar Hjalmarsson ]
* d/p/python3-unicode-errors.patch:
Fix segfault issue with itstool and py3. LP: #1869814
-- Mattia Rizzolo <mattia@debian.org> Fri, 10 Apr 2020 14:53:23 +0200
libxml2 (2.9.10+dfsg-4) unstable; urgency=medium
* Team upload.
* Add patch from upstream to prevent a segfault in some platforms with
illegal documents.
-- Mattia Rizzolo <mattia@debian.org> Thu, 27 Feb 2020 19:21:45 +0100
libxml2 (2.9.10+dfsg-3) unstable; urgency=medium
* Team upload.
* Add patch so that xml2-config only disaplys libraries needed for dynamic
linking. Closes: #952115
-- Mattia Rizzolo <mattia@debian.org> Sun, 23 Feb 2020 12:08:21 +0100
libxml2 (2.9.10+dfsg-2.1) unstable; urgency=medium
* Non-maintainer upload.
* Fix memory leak in xmlSchemaValidateStream (CVE-2019-20388)
(Closes: #949583)
* Fix infinite loop in xmlStringLenDecodeEntities (CVE-2020-7595)
(Closes: #949582)
-- Salvatore Bonaccorso <carnil@debian.org> Sat, 22 Feb 2020 23:36:57 +0100
libxml2 (2.9.10+dfsg-2) unstable; urgency=medium
* Team upload
* Re-instate Python2 support for now, the rev-deps are not ready.
Re-opens: #936941
* python-libxml2-dbg: Depend on python2-dbg instead of python-dbg.
Closes: #948493
* d/control: Bump Standards-Version 4.5.0, no changes needed.
* Re-instnate the xml2-config script for now.
* Upload to unstable.
-- Mattia Rizzolo <mattia@debian.org> Fri, 21 Feb 2020 14:45:03 +0100
libxml2 (2.9.10+dfsg-1) experimental; urgency=medium
* Team upload.
* New upstream version 2.9.10+dfsg.
+ Fix memory leak. CVE-2019-19956
* Drop all patches.
* d/control:
+ Bump debhelper compat level to 12.
+ Bump Standards-Version to 4.4.1, no changes needed.
* d/libxml2.symbols: add Build-Depends-Package field, by lintian.
-- Mattia Rizzolo <mattia@debian.org> Mon, 25 Nov 2019 16:48:13 +0100
libxml2 (2.9.9+dfsg1-1~exp2) experimental; urgency=medium
* Team upload.
* Merge the lost uploads 2.9.7+dfsg-1 and 2.9.8+dfsg-1.
-- Mattia Rizzolo <mattia@debian.org> Tue, 19 Nov 2019 14:53:11 +0100
libxml2 (2.9.9+dfsg1-1~exp1) experimental; urgency=medium
[ Rene Engelhard ]
* actually remove the override_dh_gencontrol (thanks mattia)...
[ Aron Xu ]
* New upstream version 2.9.9+dfsg1
+ Fix infinite loop in LZMA decompression. CVE-2018-9251; Closes: #895195
+ Fix (another) infinite loop in LZMA decompression. CVE-2018-14567
+ Fix nullptr deref with XPath logic ops. CVE-2018-14404; Closes: #901817
* Remove patches merged upstream
* Update symbols
* Remove python2 support Closes: #936941
-- Aron Xu <aron@debian.org> Tue, 29 Oct 2019 10:08:51 +0000
libxml2 (2.9.8+dfsg-1) experimental; urgency=medium
* Team upload.
[ Rene Engelhard ]
* New upstream version 2.9.8+dfsg.
+ Fix possible XML External Entity attack. CVE-2016-9318; Closes: #844581
* Update Vcs-* to salsa.debian.org.
[ Mattia Rizzolo ]
* d/libxml2.symbols:
+ Remove removed symbols xmlNop@Base (no users found anywhere).
+ Add two new symbols.
* Refresh patches.
+ Drop the Python 3.6 compatibility patch, upstreamed.
* d/copyright: Update.
* d/control: Bump Standards-Version to 4.2.1, no changes needed.
* d/rules: Bump shlibs version.
-- Mattia Rizzolo <mattia@debian.org> Wed, 03 Oct 2018 16:45:11 +0200
libxml2 (2.9.7+dfsg-1) experimental; urgency=medium
* Team upload.
* New upstream version 2.9.7+dfsg. Closes: #882074
+ Infinite recursion in parameter entities. CVE-2017-16932; Closes: #882613
+ Double entity expansion; Closes: #836698
+ Set memory limit for LZMA decompression. CVE-2017-18258; Closes: #895245
* Refresh patches.
* Refresh symbols.
* Stop installing /usr/bin/xml2-config.
Packages should just use pkg-config instead.
* Remove the libxml2-dbg package, in favour of automatic debug package.
-- Mattia Rizzolo <mattia@debian.org> Wed, 03 Jan 2018 18:15:18 +0100
libxml2 (2.9.4+dfsg1-8) unstable; urgency=medium
* Team upload.
* Fix autopkgtest: use `python2` instead of `python` and actually run the
`python3` test. Closes: #943386
-- Mattia Rizzolo <mattia@debian.org> Tue, 19 Nov 2019 12:05:14 +0100
libxml2 (2.9.4+dfsg1-7) unstable; urgency=medium
* Team upload.
* drop automatically generated dependency on (non-existing) libicu60-dbg
from libxm2-dbg (closes: #900113)
-- Rene Engelhard <rene@debian.org> Sat, 26 May 2018 10:03:44 +0000
libxml2 (2.9.4+dfsg1-6.1) unstable; urgency=medium
* Non-maintainer upload.
* Out-of-bounds read in htmlParseTryOrFinish (CVE-2017-8872)
(Closes: #862450)
-- Salvatore Bonaccorso <carnil@debian.org> Tue, 02 Jan 2018 08:59:03 +0100
libxml2 (2.9.4+dfsg1-6) unstable; urgency=medium
* Team upload.
* d/watch: bump to version 4, wrap lines, and limit matching to released
stable versions.
* Drop libxml2-udeb. The package has been broken in Ubuntu for a while
already, and nobody seems to care anyway.
* d/copyright: Rewrite using copyright-format 1.0.
* Employ automatic upstream tarball repacking.
* Bump debhelper compat level to 11.
* Remove old upgrade code dealing with symlinks-to-dir in /usr/share/doc.
* d/control:
+ Bump Standards-Version to 4.1.3, no changes needed.
+ Set Rules-Requires-Root: no.
+ Move from the deprecated priority:extra to priority:optional also for the
-dbg packages.
+ Lower the priority of the libxml2 package to optional.
Since Policy 4.0.1 library packages should not have a priority higher
than optional. See #886039 for the override change.
* d/rules:
+ Stop installing the TODO files.
+ Install the AUTHORS and README files only on the main libxml2 binary.
+ Workaround debhelper bug #886037 by reshuffling the dh_strip calls.
-- Mattia Rizzolo <mattia@debian.org> Tue, 02 Jan 2018 00:54:05 +0100
libxml2 (2.9.4+dfsg1-5.2) unstable; urgency=medium
* Non-maintainer upload.
* Fix XPath stack frame logic (CVE-2017-15412) (Closes: #883790)
-- Salvatore Bonaccorso <carnil@debian.org> Thu, 14 Dec 2017 20:36:07 +0100
libxml2 (2.9.4+dfsg1-5.1) unstable; urgency=medium
* Non-maintainer upload.
* Fix NULL pointer deref in xmlDumpElementContent (CVE-2017-5969)
(Closes: #855001)
* Check for integer overflow in memory debug code (CVE-2017-5130)
(Closes: #880000)
* Fix copy-paste errors in error messages
* python: remove single use of _PyVerify_fd (Closes: #878684)
-- Salvatore Bonaccorso <carnil@debian.org> Sat, 18 Nov 2017 16:39:04 +0100
libxml2 (2.9.4+dfsg1-5) unstable; urgency=medium
* Team upload.
* d/control: Bump Standards-Version to 4.1.1, no changes needed.
* d/rules:
+ Use `rename` instead of `prename`, and separate the -v and -f options.
Closes: #876308
+ Fix usage of debhelper's -N and -p options: newer debhelper doesn't
accept specifying packages not present in d/control.
-- Mattia Rizzolo <mattia@debian.org> Sun, 15 Oct 2017 02:18:26 +0200
libxml2 (2.9.4+dfsg1-4) unstable; urgency=medium
* Team upload.
* Drop Recommends: xml-core from libxml2.
xml-core is not really needed by anything, and packages needing it
already depend on it. Closes: #869744
Thanks to Adam Borowski <kilobyte@angband.pl> for proposing it.
* Run wrap-and-sort.
* Add Build-Depends on rename. Closes: #874211
* Bump Standards-Version to 4.1.0:
+ keep debug packages priority to extra as they are special cased by tools.
-- Mattia Rizzolo <mattia@debian.org> Mon, 04 Sep 2017 11:46:04 +0200
libxml2 (2.9.4+dfsg1-3.1) unstable; urgency=low
* Non-maintainer upload.
* Increase buffer space for port in HTTP redirect support (CVE-2017-7376)
Incorrect limit was used for port values. (Closes: #870865)
* Prevent unwanted external entity reference (CVE-2017-7375)
Missing validation for external entities in xmlParsePEReference.
(Closes: #870867)
* Fix handling of parameter-entity references (CVE-2017-9049, CVE-2017-9050)
- Heap-based buffer over-read in function xmlDictComputeFastKey
(CVE-2017-9049).
- Heap-based buffer over-read in function xmlDictAddString
(CVE-2017-9050).
(Closes: #863019, #863018)
* Fix buffer size checks in xmlSnprintfElementContent (CVE-2017-9047,
CVE-2017-9048)
- Buffer overflow in function xmlSnprintfElementContent (CVE-2017-9047).
- Stack-based buffer overflow in function xmlSnprintfElementContent
(CVE-2017-9048).
(Closes: #863022, #863021)
* Fix type confusion in xmlValidateOneNamespace (CVE-2017-0663)
Heap buffer overflow in xmlAddID. (Closes: #870870)
-- Salvatore Bonaccorso <carnil@debian.org> Sun, 20 Aug 2017 06:56:40 +0200
libxml2 (2.9.4+dfsg1-3) unstable; urgency=medium
* Team upload.
[ Mattia Rizzolo ]
* d/control:
+ Use HTTPS in Vcs-* fields.
+ Remove the deprecated '${python:Provides}' and '${python3:Provides}'.
+ Bump Standards-Version to 4.0.0, no changes needed.
* Build for all supported python versions. Closes: #864328
Thanks to YunQiang Su <wzssyqa@gmail.com> for the initial patch.
* Drop libxml-utils-dbg package in favour of the automatic debug package.
* Replace the upstream ChangeLog with the NEWS file. Closes: #808372
The ChangeLog file stopped being updated in 2009, whereas NEWS is
automatically generated by upstream during releases.
* d/rules:
+ Correctly make use of the dh sequencer in the build step.
Override dh_auto_build instead of using build/build-arch/build-indep
targets directly.
This makes possible for dh to call dh_autoreconf and other helpers that
would otherwise be skipped (like dh_update_autotools_config).
+ Fix duplicated targets for override_dh_auto_install-indep.
+ Streamline dpkg-buildflags usage.
* Bump debhelper compat level to 10
+ remove --parallel, now default
+ remove --with autoreconf, now default
[ Helmut Grohne ]
* Improve build profiles support. Closes: #862867
+ Rename the meaningless stage1 to the meaningful nopython.
+ Use the standard variable DEB_BUILD_PROFILES rather than
DEB_BUILD_PROFILE by checking dh_listpackages.
+ Correctly build nopython even when python is installed.
+ Add build profile annotations to debian/control.
-- Mattia Rizzolo <mattia@debian.org> Tue, 04 Jul 2017 21:59:55 +0200
libxml2 (2.9.4+dfsg1-2.2) unstable; urgency=medium
* Non-maintainer upload.
* Fix attribute decoding during XML schema validation
(Closes: #832602, #832864)
-- Mònica Ramírez Arceda <monica@debian.org> Sat, 14 Jan 2017 15:31:49 +0100
libxml2 (2.9.4+dfsg1-2.1) unstable; urgency=medium
* Non-maintainer upload.
* Fix comparison with root node in xmlXPathCmpNodes
* Fix XPointer paths beginning with range-to (CVE-2016-5131)
(Closes: #840554)
* Disallow namespace nodes in XPointer ranges (CVE-2016-4658)
(Closes: #840553)
* Fix more NULL pointer derefs in xpointer.c
-- Salvatore Bonaccorso <carnil@debian.org> Sun, 30 Oct 2016 16:30:55 +0100
libxml2 (2.9.4+dfsg1-2) unstable; urgency=medium
[ YunQiang Su ]
* add python3 support (Closes: #737774)
* fix typo in test/control: python->python3
[ Aron Xu ]
* Really allow parallel building
* Mark python3-libxml2* as M-A: same
-- Aron Xu <aron@debian.org> Mon, 12 Sep 2016 02:57:02 +0800
libxml2 (2.9.4+dfsg1-1) unstable; urgency=medium
* Imported Upstream version 2.9.4+dfsg1
- Closes: 829718, CVE-2016-4448
* Drop patches applied upstream, refresh remainers
* Update Std-Ver to 3.9.8 from 3.9.6
* Update symbols for 2.9.4
* cherry-pick: Fix NULL pointer deref in XPointer range-to
-- Aron Xu <aron@debian.org> Tue, 19 Jul 2016 11:42:45 +0800
libxml2 (2.9.3+dfsg1-1.2) unstable; urgency=medium
[ Simon McVittie ]
* Non-maintainer upload.
* Add -arch suffix to some architecture-specific debhelper overrides,
fixing FTBFS with dpkg-buildpackage -A or when source-only uploads
are used (Closes: #806065)
- Do a build for the default Python version even when we are
building arch-indep-only: we need something for gtk-doc to analyze
-- Salvatore Bonaccorso <carnil@debian.org> Sun, 05 Jun 2016 07:23:42 +0200
libxml2 (2.9.3+dfsg1-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Heap-based buffer overread in xmlNextChar (CVE-2016-1762)
* heap-buffer-overflow in xmlStrncat (CVE-2016-1834)
* Add missing increments of recursion depth counter to XML parser
(CVE-2016-3705) (Closes: #823414)
* Avoid an out of bound access when serializing malformed strings
(CVE-2016-4483) (Closes: #823405)
* Heap-buffer-overflow in xmlFAParsePosCharGroup (CVE-2016-1840)
* Heap-based buffer overread in xmlParserPrintFileContextInternal
(CVE-2016-1838)
* Heap-based buffer overread in xmlDictAddString (CVE-2016-1839
CVE-2015-8806 CVE-2016-2073) (Closes: #813613, #812807)
* Heap use-after-free in xmlDictComputeFastKey (CVE-2016-1836)
* Fix inappropriate fetch of entities content (CVE-2016-4449)
* Heap use-after-free in htmlParsePubidLiteral and htmlParseSystemiteral
(CVE-2016-1837)
* Heap use-after-free in xmlSAX2AttributeNs (CVE-2016-1835)
* Heap-based buffer-underreads due to xmlParseName (CVE-2016-4447)
* Heap-based buffer overread in htmlCurrentChar (CVE-2016-1833)
* Avoid building recursive entities (CVE-2016-3627) (Closes: #819006)
-- Salvatore Bonaccorso <carnil@debian.org> Sat, 28 May 2016 06:51:08 +0200
libxml2 (2.9.3+dfsg1-1) unstable; urgency=medium
* New upstream release.
-- Aron Xu <aron@debian.org> Mon, 14 Dec 2015 15:35:25 +0800
libxml2 (2.9.2+zdfsg1-4) unstable; urgency=medium
* Revert everything in N'ACKed NMU revert to 2.9.1.
- Resolving regression, Closes: #754424
- Drop the following NMU, not needed in 2.9.2, Closes: #781232
- Drop not approved patch for GNOME #746048
* Revert icu dbg drop, but don't hardcode version,
thanks Matthias Klose <doko>, Closes: #798642
* Cherry pick upstream post release patches:
- Fix for regression triggered by CVE-2014-3660, Closes: #768089
- Fix for the spurious ID already defined error, Closes: #766884
- Fix for CVE-2015-1819, Closes: #782782
- Fix for GNOME #744980, Closes: #783010
- Several fixes for memory related issues.
-- Aron Xu <aron@debian.org> Tue, 22 Sep 2015 16:31:48 +0800
libxml2 (2.9.2+dfsg1-3) unstable; urgency=medium
* Add icu related deps for -dev and -dbg packages
(Closes: #776741)
-- Aron Xu <aron@debian.org> Sun, 01 Feb 2015 12:35:52 +0800
libxml2 (2.9.2+dfsg1-2) unstable; urgency=medium
[ Michael Gilbert ]
* Enable icu support (Closes: #776254)
[ Aron Xu ]
* 0003-Fix-missing-entities-after-CVE-2014-3660-fix.patch:
Fix upstream bug triggered by CVE fix (Closes: #768089)
-- Aron Xu <aron@debian.org> Fri, 30 Jan 2015 13:52:23 +0800
libxml2 (2.9.2+dfsg1-1) unstable; urgency=low
* New upstream release (Closes: #765722, CVE-2014-3660)
* Remove no-longer-needed upstream patches
* Update distro patch
* Std-ver: 3.9.5 -> 3.9.6, no change.
-- Aron Xu <aron@debian.org> Sun, 26 Oct 2014 07:04:50 +0800
libxml2 (2.9.1+dfsg1-4) unstable; urgency=low
[ Christian Svensson ]
* Do not build-depend on readline (Closes: #742350)
[ Daniel Schepler ]
* Patch to bootstrap without python (Closes: #738080)
[ Helmut Grohne ]
* Drop unneeded B-D on perl and binutils (Closes: #753005)
[ Adam Conrad ]
* Actually run dh_autoreconf, which the old/new mixed rules file misses.
[ Matthias Klose ]
* Add patch to fix python multiarch issue
* Allow the package to cross-build by tweaking B-Ds on python
* Set PYTHON_LIBS for cross builds
[ Aron Xu ]
* Use correct $CC
* Configure udeb without python
* New round of cherry-picking upstream fixes
- Includes fixes for CVE-2014-0191 (Closes: #747309).
* Call prename with -vf
* Require python-all-dev (>= 2.7.5-5~)
* Bump std-ver: 3.9.4 -> 3.9.5, no change
-- Aron Xu <aron@debian.org> Wed, 09 Jul 2014 05:40:15 +0800
libxml2 (2.9.1+dfsg1-3) unstable; urgency=low
* debian/patches/0007-Fix-XPath-optimization-with-predicates.patch:
- Upstream patch to fix XPath evaluation issue. (Closes: #713146)
-- Aron Xu <aron@debian.org> Mon, 05 Aug 2013 11:02:43 +0800
libxml2 (2.9.1+dfsg1-2) unstable; urgency=low
* Upload to unstable.
* debian/patches/000[2-6]-*.patch:
- cherry-picking upstream post-release fixes.
-- Aron Xu <aron@debian.org> Mon, 17 Jun 2013 23:24:07 +0800
libxml2 (2.9.1+dfsg1-1) experimental; urgency=low
* New upstream release (Closes: #696300, #705722).
* Add -llzma for static linking (Closes: #697382).
* Update symbols.
* Update debian/watch, thanks to Bart Martens.
* Use canonical Vcs-* fields.
* Mark python-libxml2-dbg as "Multi-Arch: same".
-- Aron Xu <aron@debian.org> Sun, 09 Jun 2013 00:34:16 +0800
libxml2 (2.9.0+dfsg1-4) experimental; urgency=low
[ Daniel Veillard ]
* Fix potential out of bound access
CVE-2012-5134, Closes: #694521.
-- Aron Xu <aron@debian.org> Wed, 28 Nov 2012 22:34:15 +0800
libxml2 (2.9.0+dfsg1-3) experimental; urgency=low
[ Aron Xu ]
* Remove -L/usr/lib from xml2-config, advise to use pkg-config
in man, and add pkg-config to Suggests. (Closes: #689168)
[ YunQiang Su ]
* Fix python-libxml2 undefined symbol (Closes: #689191)
[ Daniel Holbach ]
* Add simple autopkgtest to the package (Closes: #690047)
-- Aron Xu <aron@debian.org> Sun, 28 Oct 2012 03:59:43 +0800
libxml2 (2.9.0+dfsg1-2) experimental; urgency=low
* Fix a thread portability problem by cherry-picking upstream
patch (Closes: #688473).
-- Aron Xu <aron@debian.org> Sun, 23 Sep 2012 16:50:12 +0800
libxml2 (2.9.0+dfsg1-1) experimental; urgency=low
* New upstream release.
* Remove old patches applied upstream, cherry-pick one
upstream post release patch.
* Update symbols.
* Update std-ver 3.9.3 -> 3.9.4, no change required.
-- Aron Xu <aron@debian.org> Fri, 21 Sep 2012 00:21:42 +0800
libxml2 (2.8.0+dfsg1-5) unstable; urgency=low
[ Daniel Veillard ]
* Fix parser local buffers size problems
* Fix entities local buffers size problems
CVE-2012-2807, Closes: #679280.
-- Aron Xu <aron@debian.org> Thu, 19 Jul 2012 17:11:09 +0800
libxml2 (2.8.0+dfsg1-4) unstable; urgency=low
* Sanitize the output of `xml2-config --libs`.
-- Aron Xu <aron@debian.org> Thu, 19 Jul 2012 17:10:06 +0800
libxml2 (2.8.0+dfsg1-3) unstable; urgency=low
* Remove odd output of xml2-config --libs (Closes: #675682).
* Mark libxml2-dev "M-A: same" again, fixed xml2-config
(Closes: #674474).
-- Aron Xu <aron@debian.org> Tue, 05 Jun 2012 01:44:14 +0800
libxml2 (2.8.0+dfsg1-2) unstable; urgency=low
* debian/control:
- Remove "M-A: same" from libxml2-dev (Closes: #674474).
- Add "M-A: foreign" to libxml2-doc.
* debian/rules:
- Style change on calling dh using --with.
- Enable all hardening features.
- The sed command for removing DEB_HOST_MULTIARCH is not reverted
because it's generally a good idea to avoid it here.
* lintian-overrides:
- libxml2: package-name-doesnt-match-sonames
- python-libxml2-dbg: hardening-no-fortify-functions
-- Aron Xu <aron@debian.org> Sat, 02 Jun 2012 15:09:37 +0800
libxml2 (2.8.0+dfsg1-1) unstable; urgency=low
* New upstream release. (Closes: #148220, #590934)
* Adjust changelog of previous NMU (Closes: #674739).
* Try to avoid useless space in /usr/bin/xml-config (Closes: #674474).
-- Aron Xu <aron@debian.org> Fri, 25 May 2012 04:06:35 +0000
libxml2 (2.7.8.dfsg-9.1) unstable; urgency=high
* Non-maintainer upload by the Security Team.
* Fix CVE-2011-3102: off by one pointer access in xpointer.c
(Closes: #674191).
-- Michael Gilbert <mgilbert@debian.org> Wed, 23 May 2012 13:48:52 -0400
libxml2 (2.7.8.dfsg-9) unstable; urgency=low
* Multi-Arch ready. (Closes: #643026)
- M-A:same packages are libxml2, libxml2-dev and libxml2-dbg.
- M-A:foreign package is libxml2-utils, others are not M-A.
- Library files in udeb are still placed under usr/lib directly.
* New binary: libxml2-utils-dbg.
Move debuggings symbols of libxml2-utils binaries to another package
in favor of marking libxml2-dbg as M-A: same. Descriptions of related
binary packages are slightly modified.
* Enable hardening for Python modules. (Closes: #664107)
* Add support for build-arch and build target, essentially make the
package not FTBFS anymore. (Closes: #668672)
* Use dh compat 9. Not hardcoding libdir in debian/rules.
* Port to source format 3.0 to ease future maintenance of patches.
- Old patches are stored in 01_historical_changes.patch
- Do not patch Makefile.in directly, use dh_autoreconf with patches to
configure.in and Makefile.am instead. This will not actually make
bootstraping a new architecture more difficult since we already have
gettext and autoconf in deep B-D, porters need to break it anyway.
- Store doc/examples/index.html in patch to avoid ciculate B-D with
xsltproc, we should not B-D on it.
* debian/*.dirs: removed, useless.
-- Aron Xu <aron@debian.org> Sun, 22 Apr 2012 00:16:37 +0800
libxml2 (2.7.8.dfsg-8) unstable; urgency=high
* New maintainer (Closes: #654176).
* Apply upstream patch to add randomization to hashing with large
dictionaries to mitigate hash DoS (CVE-2012-0841; Closes: #660846)
* Bump std-ver to 3.9.3, no change needed.
-- Aron Xu <aron@debian.org> Thu, 12 Apr 2012 09:19:04 +0800
libxml2 (2.7.8.dfsg-7) unstable; urgency=low
* Team upload.
* parser.c: Fix an allocation error when copying entities.
CVE-2011-3919. Closes: #656377.
-- Andrew O. Shadura <bugzilla@tut.by> Fri, 20 Jan 2012 12:54:41 +0300
libxml2 (2.7.8.dfsg-6) unstable; urgency=low
* Team upload.
* Enabled hardened build flags (Closes: #654903).
* error.c: Fix __xmlRaiseError (Closes: #622358).
-- Andrew O. Shadura <bugzilla@tut.by> Thu, 12 Jan 2012 00:57:32 +0300
libxml2 (2.7.8.dfsg-5.1) unstable; urgency=high
* Non-maintainer upload.
* encoding.c: Fix off by one error. CVE-2011-0216.
* parser.c: Make sure parser returns when getting a Stop order.
CVE-2011-3905.
* Both closes: #652352.
-- Luk Claes <luk@debian.org> Fri, 30 Dec 2011 18:31:13 +0100
libxml2 (2.7.8.dfsg-5) unstable; urgency=low
* xpath.c, xpointer.c, include/libxml/xpath.h: Hardening of XPath evaluation.
CVE-2011-2821.
* xpath.c: Fix for undefined namespaces. CVE-2011-2834.
* Both closes: #643648.
-- Mike Hommey <glandium@debian.org> Fri, 07 Oct 2011 09:31:14 +0200
libxml2 (2.7.8.dfsg-4) unstable; urgency=low
* debian/rules: Add --with python2 to dh call.
* debian/control:
- Remove build dependency on python-support.
- Build depend on python-all-dev >= 2.6.6-3~.
- Remove XB-Python-Version header.
- Bump Standards-Version to 3.9.2.0. No changes required.
* debian/pycompat: Removed. With the above changes, closes: #631416.
Thanks Colin Watson.
-- Mike Hommey <glandium@debian.org> Fri, 29 Jul 2011 12:33:08 +0200
libxml2 (2.7.8.dfsg-3) unstable; urgency=low
* xpath.c: Fix some potential problems on reallocation failures.
Closes: #628537.
-- Mike Hommey <glandium@debian.org> Sat, 04 Jun 2011 10:40:39 +0900
libxml2 (2.7.8.dfsg-2) unstable; urgency=low
* xpath.c: Fix a double-freeing error in XPath processing code.
(CVE-2010-4494). Closes: #607922.
-- Mike Hommey <glandium@debian.org> Sat, 25 Dec 2010 10:48:27 +0100
libxml2 (2.7.8.dfsg-1) unstable; urgency=low
* New upstream release.
* configure.in: Applied upstream fix to reactivate symbol versioning script.
-- Mike Hommey <glandium@debian.org> Fri, 05 Nov 2010 08:23:58 +0100
libxml2 (2.7.7.dfsg-4) unstable; urgency=low
* debian/rules:
- Use a variable to express which sub-targets to invoke for
configure/build/install.
- Refactor configure-% and build-% rules.
- Avoid possible renaming of _d.so files to _d_d.so files in the
install-python%-dbg rules.
* debian/control, debian/control.udeb, debian/libxml2-udeb.install,
debian/rules: Add an udeb package when building for Ubuntu.
Closes: #583767.
* debian/control:
- Remove old Conflicts/Replaces for packages that have disappeared before
etch.
- Bump Standards-Version to 3.9.0.0.
-- Mike Hommey <glandium@debian.org> Tue, 29 Jun 2010 12:42:35 +0200
libxml2 (2.7.7.dfsg-3) unstable; urgency=low
* debian/rules: Use build_python* instead of build-python* as build
directory when configuring python modules. build-python$* would get
matched by make as an existing file and would prevent evaluation of the
corresponding build rule. Thanks Loïc Minier.
* debian/python-libxml2.install: Don't hardcode site-/dist-packages in
.install. Cope with builds which don't have any dist-packages (or
site-packages) based python versions. Thanks Loïc Minier.
* debian/rules, debian/python-libxml2-dbg.install, debian/control:
Add a python-libxml2-dbg package. Closes: #583582.
* debian/rules: Don't link against libpython.
* python-libxml2-dbg.preinst: Remove /usr/share/doc/python-libxml2-dbg
symlink when it exists (which is the case with older Ubuntu packages).
-- Mike Hommey <glandium@debian.org> Wed, 23 Jun 2010 18:52:51 +0200
libxml2 (2.7.7.dfsg-2) unstable; urgency=low
* debian/libxml2-dbg.preinst, debian/libxml2-dev.preinst,
debian/libxml2-utils.preinst: Remove /usr/share/doc symbolic links on
upgrade. They will then be replaced by directories by dpkg.
Closes: #577025.
-- Mike Hommey <glandium@debian.org> Fri, 09 Apr 2010 10:21:02 +0200
libxml2 (2.7.7.dfsg-1) unstable; urgency=low
* New upstream release.
* debian/control:
+ Bump Standards-Version to 3.8.4.0.
+ Depend on a version of debhelper that provides dh and supports
overrides.
* debian/compat: Bump to 7.
* debian/rules:
+ Don't avoid to build in example/. There is no reason to do so anymore.
+ Remove remains of WORKAROUND_MODIFIED_FILES, that was removed 2 years
ago.
+ Change the way python libs are built. We now use configure to set
different environment with and without python, and arrange things so
that we don't have to build the base libxml2 library several times.
+ Deduplicate in /usr/lib/pyshared, not
/usr/lib/python-support/python-libxml2.
+ Remove old source and diff rules that only displayed a message
inviting to use dpkg-source -b.
+ Force -Wl,--as-needed at the beginning of the gcc command line.
+ Simplify rules by switching to dh.
+ Don't refresh COPYING during clean target, it appears not to be
necessary anymore.
+ Use a common cache for main and python configure passes.
* debian/python-libxml2.install: Install python files from
/usr/lib/python*/dist-packages.
* python/generator.py: Sort python generated stubs so that libxml2.py
doesn't differ between python 2.5 and 2.6.
* doc/devhelp/Makefile.{am,in}: Properly install devhelp files when
builddir != srcdir.
-- Mike Hommey <glandium@debian.org> Sun, 21 Mar 2010 09:51:17 +0100
libxml2 (2.7.6.dfsg-2) unstable; urgency=low
* Cherry-picks from upstream git:
+ globals.c: fix the initialization of the mutex.
+ xmlIO.c: remove an abuse of zlib API and use a clean interface
available in zlib >= 1.2.3. Closes: #565683, #565823.
* debian/control:
+ Put libreadline-dev before libreadline5-dev in Build-Deps.
Closes: #553803.
+ Add misc:Depends dependencies where they are missing.
-- Mike Hommey <glandium@debian.org> Tue, 19 Jan 2010 18:41:49 +0100
libxml2 (2.7.6.dfsg-1) unstable; urgency=low
* New upstream release.
* debian/control:
+ Bump Standards-Version to 3.8.3.0.
+ Set libxml2 package priority to standard to match override (see #507783).
-- Mike Hommey <glandium@debian.org> Sat, 10 Oct 2009 23:55:41 +0200
libxml2 (2.7.5.dfsg-1) unstable; urgency=low
* New upstream release.
+ Fixed a RelaxNG bug introduced in 2.7.4. Closes: #546442.
-- Mike Hommey <glandium@debian.org> Fri, 25 Sep 2009 22:28:53 +0200
libxml2 (2.7.4.dfsg-2) unstable; urgency=low
* debian/libxml2.symbols: Force binaries that use versioned symbols to
depend on version 2.7.4 at least.
* parser.c: Fix a parsing problem with little data at startup.
Cherry-picked from upstream git. Closes: #546254, #546488.
-- Mike Hommey <glandium@debian.org> Wed, 16 Sep 2009 00:12:50 +0200
libxml2 (2.7.4.dfsg-1) unstable; urgency=low
* New upstream release.
* Revert old change to entities.c.
* debian/copyright: Change upstream url. Closes: #541082.
* debian/libxml2.symbols: Change symbols file to use newly introduced
symbol versioning
* debian/rules: bump shlibs to current version.
-- Mike Hommey <glandium@debian.org> Thu, 10 Sep 2009 23:04:35 +0200
libxml2 (2.7.3.dfsg-2.1) unstable; urgency=high
* Non-maintainer upload by the Security Team (Closes: #540865).
* Fix multiple use-after-free flaws when parsing notation and
enumeration attribute types (CVE-2009-2416).
* Fix stack overflow when parsing root XML document element DTD
definition (CVE-2009-2414).
-- Nico Golde <nion@debian.org> Sun, 16 Aug 2009 17:45:17 +0200
libxml2 (2.7.3.dfsg-2) unstable; urgency=low
* debian/no-upstream-changelog: Removed.
* debian/rules: Don't use symlinks in /usr/share/doc anymore, and only
install the upstream changelog in the libxml2 package. Considering
its size, we don't need it everywhere. Closes: #496959.
* include/libxml/*.h: change ATTRIBUTE_PRINTF into LIBXML_ATTR_FORMAT
to avoid macro name. Cherry-pick upstream f076f34. Closes: #521994.
* error.c: fix structured error handling problems. Cherry-pick upstream
719f397. Closes: #522669.
* debian/control:
+ Change libxml2-dbg's section to "debug".
+ Bump Standards-Version to 3.8.2.0.
+ Add Homepage, Vcs-Git and Vcs-Browser fields.
-- Mike Hommey <glandium@debian.org> Mon, 13 Jul 2009 08:56:37 +0200
libxml2 (2.7.3.dfsg-1) unstable; urgency=low
* New upstream release.
* parser.c: Remove useless nbParse* variables and avoid exporting them as
symbols.
* debian/libxml2.symbols: Reference the new symbols.
* debian/rules: bump shlibs to current version.
-- Mike Hommey <glandium@debian.org> Sun, 01 Mar 2009 11:57:55 +0100
libxml2 (2.6.32.dfsg-5) unstable; urgency=high
* parserInternals.c: apply patch from upstream revision 3741 to avoid
double-free in some situations. This fixes a crash while running the
W3C/OASIS XML conformance test.
* tree.c: Fix infinite loop. Fixes: CVE-2008-4225.
* SAX2.c: Fix integer overflow. Fixes: CVE-2008-4226.
-- Mike Hommey <glandium@debian.org> Tue, 18 Nov 2008 08:08:34 +0100
libxml2 (2.6.32.dfsg-4) unstable; urgency=high
* Fix regressions due to previous security fixes. Fixes: CVE-2008-3529.
Closes: #498768.
-- Mike Hommey <glandium@debian.org> Fri, 19 Sep 2008 21:26:19 +0200
libxml2 (2.6.32.dfsg-3) unstable; urgency=high
* Fix DoS which leads to recursive evaluation of entities.
Fixes: CVE-2008-3281, without breaking librsvg and others. Closes: #496125.
-- Mike Hommey <glandium@debian.org> Mon, 25 Aug 2008 22:01:17 +0200
libxml2 (2.6.32.dfsg-2) unstable; urgency=low
* debian/control:
+ Use ${binary:Version} instead of ${Source-Version}.
+ Fixed spelling error for "Python".
* debian/rules: Don't ignore make distclean errors.
* debian/libxml2-doc.doc-base: Changed section to fit doc-base sections
changes.
* xml2-config.1: Remove unknown groff command.
-- Mike Hommey <glandium@debian.org> Sat, 19 Apr 2008 20:38:50 +0200
libxml2 (2.6.32.dfsg-1) unstable; urgency=low
* New upstream release.
* debian/control: Bumped Standards-Version to 3.7.3.0. No changes.
* debian/rules:
+ Make dpkg-shlibdeps fail when symbols are missing.
+ Removed the workaround for removed and modified files during build. The
former was for svn-buildpackage that I don't use anymore, and the latter
for a file that isn't in the .orig.tar.gz anymore.
+ Bump shlibs to current version, since a new symbol was added.
* debian/libxml2.symbols: Reference the new symbol.
-- Mike Hommey <glandium@debian.org> Wed, 09 Apr 2008 11:25:18 +0200
libxml2 (2.6.31.dfsg-2) unstable; urgency=low
* debian/rules: Brown paper bag: uncomment $(MAKE) distclean.
Closes: #442656.
* xstc/Makefile.am, xstc/Makefile.in: Properly clean generated files.
* nanohttp.c: Apply fix from svn revision 3685 to allocate enough memory
for the Host HTTP header when containing a port number. Closes: #464173.
* error.c: Don't grow error buffer indefinitely when vsnprintf returns -1,
which, if it happens, on glibc-based systems, will happen indefinitely.
Closes: #456653.
-- Mike Hommey <glandium@debian.org> Wed, 05 Mar 2008 23:42:37 +0100
libxml2 (2.6.31.dfsg-1) unstable; urgency=low
* New upstream release.
* Acknowledged NMU.
* testModule.c: Revert our change to add PATH_MAX for the Hurd, since we now
don't even build this file.
* debian/rules: bump shlibs to current version, since a new symbol was added.
* debian/libxml2.symbols: Reference the new symbol.
* autogen.sh: Switch to automake1.10 to follow upstream.
-- Mike Hommey <glandium@debian.org> Sat, 19 Jan 2008 18:46:41 +0100
libxml2 (2.6.30.dfsg-3.1) unstable; urgency=high
* Non-maintainer upload by security team.
* This update addresses the following security issue:
- CVE-2007-6284: The xmlCurrentChar function allows context-dependent
attackers to cause a denial of service (infinite loop) via XML
containing invalid UTF-8 sequences (Closes: #460292).
-- Nico Golde <nion@debian.org> Sun, 13 Jan 2008 15:15:04 +0100
libxml2 (2.6.30.dfsg-3) unstable; urgency=low
* debian/libxml2.symbols: Add a symbols file to benefit from the new
features in dpkg-shlibdeps.
* debian/control: Build depend on debhelper (>= 5.0.61) and dpkg-dev (>=
1.14.9), accordingly.
* debian/rules:
+ Apply rules suggested in autotools-dev documentation.
+ Add -Wl,--as-needed to LDFLAGS so that useless dependencies are not
added.
* Makefile.am, Makefile.in: Don't build noinst targets.
-- Mike Hommey <glandium@debian.org> Wed, 21 Nov 2007 19:22:51 +0100
libxml2 (2.6.30.dfsg-2) unstable; urgency=low
* libxml.h: define _LARGEFILE64_SOURCE to properly get gzopen64 defines in
zlib.h. Closes: #439843. Thanks Dann Frazier.
-- Mike Hommey <glandium@debian.org> Tue, 28 Aug 2007 21:52:30 +0200
libxml2 (2.6.30.dfsg-1) unstable; urgency=low
* New upstream release.
-- Mike Hommey <glandium@debian.org> Sun, 26 Aug 2007 10:52:39 +0200
libxml2 (2.6.29.dfsg-1) unstable; urgency=low
* New upstream release.
* debian/rules: bump shlibs to current version, since new symbols were added.
-- Mike Hommey <glandium@debian.org> Wed, 13 Jun 2007 20:52:41 +0200
libxml2 (2.6.28.dfsg-1) unstable; urgency=low
* New upstream release:
+ Provides doc/html/index.html. Closes: #405802.
+ Fixed infinite loop with invalid characters in Xincluded files.
Closes: #410762.
* debian/rules: bump shlibs to current version, since new symbols were added.
-- Mike Hommey <glandium@debian.org> Wed, 18 Apr 2007 08:09:16 +0200
libxml2 (2.6.27.dfsg-1) unstable; urgency=low
* New "huge bug fixes list" upstream release.
* autogen.sh: Updated so that doc/examples/index.html gets updated
correctly.
* debian/control: Bumped Standards-Version to 3.7.2.2. No changes required.
* debian/rules: bump shlibs to current version, since new symbols were added.
-- Mike Hommey <glandium@debian.org> Thu, 26 Oct 2006 23:15:00 +0200
libxml2 (2.6.26.dfsg-4) unstable; urgency=low
* debian/control:
+ Bumped Standards-Version to 3.7.2.1. No changes required.
+ Added a conflict to the sarge version of libxslt1.1 to avoid upgrade
problems. Closes: #390733.
* debian/watch: Updated to mangle the Debian version.
-- Mike Hommey <glandium@debian.org> Wed, 4 Oct 2006 16:51:29 +0200
libxml2 (2.6.26.dfsg-3) unstable; urgency=medium
* debian/rules, debian/libxml2-dev.install: Don't install libxml2.la
directly and sed it to remove the dependency_libs. Note that will break
linking statically libxml2 with libtool, we recommend to use pkg-config
--static --libs libxml-2.0 instead of relying on libtool.
Closes: #379807, #378511.
* xml2-config.in: Fixed usage alignment of the new option introduced in
previous upload.
-- Mike Hommey <glandium@debian.org> Thu, 27 Jul 2006 19:40:27 +0200
libxml2 (2.6.26.dfsg-2) unstable; urgency=low
* The slithering release.
* debian/python-libxml2.examples.in: Renamed to
debian/python-libxml2.examples
* debian/python-libxml2.install.in: Renamed to
debian/python-libxml2.install, and replaced PYVERS by a wildcard.
* debian/control:
+ Adapted dependencies to fit all changes.
+ Added fields required by new Python policy.
+ Added fields necessary for flawless transition.
+ Replaced dummy python-libxml2 package by a full real package which
itself replaces python2.x-libxml2 packages.
* debian/rules:
+ Changed rules to get the python versions we want to build for and
adapted some rules to fit with the new setting.
+ Changed shell loops to make loops.
+ In case python binary modules are identical (and they are, but they
may not be with future versions of the python headers), replace some
of them with symbolic links.
+ Adapted rules to the fact we're installing in only one python package
instead of several.
* debian/pycompat: Set to 2, for new Python policy. Closes: #373456.
* Switching to the new policy avoids necessity to conflict with very old
versions of the python bindings packages. Closes: #365057.
* debian/libxml2-doc.install: Added the /usr/share/gtk-doc directory.
Closes: #375113.
* debian/control: Made libxml2-doc suggest devhelper.
* libxml-2.0.pc.in, libxml-2.0-uninstalled.pc.in: Split Libs in Libs and
Libs.private.
* configure.in, configure: Adapted to fill the variables correctly for
libraries.
* xml2-config.in, xml2-config.1: Added a --static option to add to --libs
so that we can split what is needed when building statically and what is
needed when building dynamically. Closes: #374017.
* libxml-2.0.pc.in, libxml-2.0-uninstalled.pc.in, xml2-config.in: Added
BASE_THREADS_LIBS to the static link information so that -lpthread would
appear. Closes: #372945.
* debian/control: Removed dependency on zlib-dev for libxml2-dev.
* debian/rules: Add the NEWS file to dh_install calls. Closes: #365596.
* debian/watch: Updated.
* NEWS: Updated.
-- Mike Hommey <glandium@debian.org> Sat, 1 Jul 2006 10:45:02 +0200
libxml2 (2.6.26.dfsg-1) unstable; urgency=low
* New upstream release.
* debian/rules:
+ Added -fno-strict-aliasing to the CFLAGS.
+ Use dpkg-architecture to feed configure.
+ Bumped shlibs to current version, since new symbol for XPath cache has
been added.
* debian/control: Bumped Standards-Version to 3.7.2.0. No changes required.
-- Mike Hommey <glandium@debian.org> Thu, 8 Jun 2006 21:39:55 +0200
libxml2 (2.6.24.dfsg-1) unstable; urgency=low
* New upstream release. Closes: #365246.
* debian/control:
+ Changed libxml2-dbg's priority to extra.
+ Bumped Standards-Version to 3.7.0.0. No changes required.
* debian/rules: bump shlibs to current version, since new symbols were added.
-- Mike Hommey <glandium@debian.org> Sat, 29 Apr 2006 22:18:14 +0200
libxml2 (2.6.23.dfsg.2-3) unstable; urgency=low
* debian/rules: Correctly strip python modules.
-- Mike Hommey <glandium@debian.org> Sat, 18 Mar 2006 19:15:53 +0100
libxml2 (2.6.23.dfsg.2-2) unstable; urgency=low
* debian/control: Removed python2.2-libxml2 and build-dep on python2.2-dev.
Closes: #351125.
* doc/xmllint.xml, doc/xmllint.1: Applied patch from upstream cvs. That
improves the manual page by many ways.
* doc/xmllint.html: Manually updated with changes from the .xml file.
* xmllint.c: Don't throw error when failed to load an entity through --path
option of xmllint (patch from upstream cvs). Closes: #352634.
Thanks Daniel Leidert.
-- Mike Hommey <glandium@debian.org> Mon, 20 Feb 2006 10:52:46 +0100
libxml2 (2.6.23.dfsg.2-1) unstable; urgency=low
* result/, test/: Totally removed. There is more suspicious content than
what has been removed in previous upload, so I'm just dropping the
regression tests from the archive until all files are investigated.
Closes: #331534.
* debian/control, debian/rules: Added a libxml2-dbg package containing
debug symlbols for the library and the utilities. We don't provide the
symbols for the python modules, though. Closes: #296299.
* debian/control, debian/compat: Adjust build dependencies and debhelper
compatibility accordingly.
* debian/libxml2-dbg.dirs: Add /usr/share/doc in the new libxml2-dbg
package.
-- Mike Hommey <glandium@debian.org> Tue, 31 Jan 2006 20:17:37 +0100
libxml2 (2.6.23.dfsg.1-0.1) unstable; urgency=medium
* NMU.
* Medium urgency due to RC bugfix.
* Removed non-free test files from upstream tarball. Closes: #331534.
-- Per Olofsson <pelle@debian.org> Sun, 15 Jan 2006 23:02:12 +0100
libxml2 (2.6.23-1.1) unstable; urgency=high
* Non-maintainer upload.
* Fix XML parser to unbreak xsltproc (Closes: #346594).
-- Luk Claes <luk@debian.org> Thu, 12 Jan 2006 15:25:42 +0100
libxml2 (2.6.23-1) unstable; urgency=low
* New upstream release
* debian/control:
+ Added | libreadline-dev for readline dependency.
+ Bumped Standards-Version to 3.6.2.1. No changes needed.
* debian/rules: bump shlibs to current version, since new symbols were added.
-- Mike Hommey <glandium@debian.org> Fri, 6 Jan 2006 19:03:57 +0100
libxml2 (2.6.22-2) unstable; urgency=low
* autogen.sh: Changed the way we rebuild the examples.
* debian/rules: Added history support in xmllint. Closes: #318083.
* debian/control: Added build dependency upon libreadline5-dev for history
support in xmllint.
* xmllint.c: Added some spaces in usage(). Closes: #335015.
* testModule.c: Added PATH_MAX definition for the Hurd. Closes: #333623.
-- Mike Hommey <glandium@debian.org> Wed, 2 Nov 2005 19:22:41 +0100
libxml2 (2.6.22-1) unstable; urgency=low
* New upstream release
* error.c: Reenable support of validation errors in structured error
handler.
* autogen.sh: Use automake1.9, as upstream does, and run it.
-- Mike Hommey <glandium@debian.org> Tue, 13 Sep 2005 18:04:10 +0200
libxml2 (2.6.21-1) unstable; urgency=low
* New upstream release
* debian/control, debian/rules: Removed dummy package. Closes: #322052.
* debian/rules: bump shlibs to current version.
-- Mike Hommey <glandium@debian.org> Wed, 7 Sep 2005 19:11:32 +0200
libxml2 (2.6.20-1) unstable; urgency=low
* New upstream release
* debian/rules: bump shlibs to current version.
-- Mike Hommey <glandium@debian.org> Thu, 14 Jul 2005 09:42:27 +0200
libxml2 (2.6.19-1) unstable; urgency=low
* The "Sarge got released but I was offline, so couldn't upload" release.
* New upstream release.
* debian/rules: bump shlibs to current version.
-- Mike Hommey <glandium@debian.org> Fri, 8 Jul 2005 19:29:29 +0200
libxml2 (2.6.16-7) unstable; urgency=low
* The "dummy packages are arch: all, dammit" release.
* debian/control: Changed to Architecture: all for dummy package.
-- Mike Hommey <glandium@debian.org> Sat, 9 Apr 2005 11:57:29 +0200
libxml2 (2.6.16-6) unstable; urgency=low
* The "Let's do it cleaner" release.
* debian/rules: fix installation of python files and make proper use of
DESTDIR at install time.
-- Mike Hommey <glandium@debian.org> Mon, 28 Mar 2005 18:12:15 +0200
libxml2 (2.6.16-5) unstable; urgency=low
* debian/watch: use svn-upgrade instead of uupdate.
* debian/control, debian/rules, debian/python-libxml2.*.in:
Added support for several python bindings packages. Currently for python
2.2, 2.3 and 2.4.
* debian/python2.3-libxml2.*: Removed.
-- Mike Hommey <glandium@debian.org> Sun, 27 Mar 2005 21:36:53 +0200
libxml2 (2.6.16-4) unstable; urgency=high
* Urgency set to high because we avoid breaking packages depending on us
when we don't properly bytecompile our python bindings.
* debian/rules: Call dh_python. We now get proper maintainer scripts for
bytecompiling files at install time and removing them at removal time.
Closes: #300834.
* debian/control: Adjust build dependencies accordingly.
-- Mike Hommey <glandium@debian.org> Tue, 22 Mar 2005 21:56:50 +0100
libxml2 (2.6.16-3) unstable; urgency=low
* tree.c: Avoid adding namespaced attributes to other elements than element
nodes. Closes: #293592.
* encoding.c: Fix the comments to describe the real return values of
UTF8Toisolat1 and isolat1ToUTF8.
* doc/: Regenerate API documentation.
-- Mike Hommey <glandium@debian.org> Wed, 16 Feb 2005 20:31:17 +0100
libxml2 (2.6.17-1) experimental; urgency=low
* New upstream release.
-- Mike Hommey <glandium@debian.org> Sat, 5 Feb 2005 13:10:13 +0100
libxml2 (2.6.16-2) unstable; urgency=low
* Upload to unstable, targetted for sarge.
* Changed my maintainer address to the fresh new Debian one.
* debian/rules: Added changelog and copyright files in dummy package.
* debian/libxml2-doc.doc-base: Fixed files sections. Closes: #281242.
-- Mike Hommey <glandium@debian.org> Fri, 4 Feb 2005 20:45:48 +0100
libxml2 (2.6.16-1) experimental; urgency=low
* New upstream release
* debian/control, debian/rules: Changed libxml2-python2.3's name to
python2.3-libxml2. Added a dummy package for smooth transition.
* debian/libxml2-python2.3.*: Renamed to python2.3-libxml2.*.
Closes: #279343.
* debian/rules:
- Don't install files in the dummy libxml2-python2.3 package.
- Bump shlibs to current version.
-- Mike Hommey <mh@glandium.org> Sat, 13 Nov 2004 16:38:37 +0900
libxml2 (2.6.15-2) experimental; urgency=low
* error.c: Removed support of validation errors in structured error handler.
That avoids it to crash when a validation error happens. (That was a
broken feature added in 2.6.15. This will get properly fixed in 2.6.16).
Closes: #279040.
-- Mike Hommey <mh@glandium.org> Mon, 8 Nov 2004 22:16:00 +0900
libxml2 (2.6.15-1) experimental; urgency=low
* New upstream release
* debian/rules: Use "dh_makeshlibs -V 'libxml2 (>= 2.6.15)'", since version
2.6.16 introduces some new symbols.
-- Mike Hommey <mh@glandium.org> Thu, 28 Oct 2004 19:08:20 +0900
libxml2 (2.6.11-5) unstable; urgency=high
* Backport patch from libxml2-2.6.15 to fix buffer overflows [nanohttp.c,
nanoftp.c, CAN-2004-0989]
-- Mike Hommey <mh@glandium.org> Thu, 28 Oct 2004 17:34:54 +0900
libxml2 (2.6.14-1) experimental; urgency=low
* New upstream release. Closes: #273961.
* debian/rules: Use "dh_makeshlibs -V 'libxml2 (>= 2.6.14)'", since version
2.6.14 introduces some new symbols.
* debian/shlibs.local: Removed, since it is not useful any more.
-- Mike Hommey <mh@glandium.org> Sat, 16 Oct 2004 16:29:06 +0900
libxml2 (2.6.11-4) unstable; urgency=low
* The "let's do some clean up for sarge" release.
* debian/libxml2-python2.3.install: don't install .a and .la files.
* debian/rules: Avoid compression of both python examples and documentation.
* Reorganization in documentation:
+ debian/libxml2-doc.examples: removed, they will get installed by
libxml2-doc.install, and we don't ship gjob* examples anymore, they
have been superseded by a lot of better examples.
+ debian/libxml2-doc.install, debian/rules: changed the way files are
installed in the libxml2-doc package, and their location.
+ debian/libxml2-doc.doc-base: changed the location of the documentation
base to fit the new one.
+ doc/examples/index.html: generated this file from examples.x?l by
hand. It would otherwise require a build dependency on xsltproc, itself
depending upon libxml2... wouldn't be very reasonnable.
* debian/no-upstream-changelog, debian/rules, debian/libxml2-dev.dirs,
debian/libxml2-utils.dirs: /usr/share/doc directories have been replaced
by a symbolic link in packages libxml2-utils and libxml2-dev.
In libxml2-python2.3, all files but TODO are symlinks to the corresponding
file from libxml2. The one from libxml2-doc is replaced by an explicative
text saying where to find it and why it has been (re)moved.
That will save some space in the archive, especially considering this
file is constantly growing.
* debian/README.Debian: Added a recommentation to upgrade package if user
needs heavy standards compliance.
* debian/shlibs.local: Added to tighten dependencies between libxml2-*
packages.
* xmlIO.c: Fixed typo (Closes: #265740).
* nanohttp.c, nanoftp.c: no_proxy environment variable doesn't disable proxy
anymore. (Closes: #266430)
* debian/rules, debian/control: Removed the workaround to compile with
gcc-3.2 on hppa, since $254549 is closed.
-- Mike Hommey <mh@glandium.org> Sat, 16 Oct 2004 16:20:54 +0900
libxml2 (2.6.11-3) unstable; urgency=low
* debian/control: add a space between gcc-3.2 and [hppa]. Closes: #262101.
* python/drv_libxml2.py: add encoding declaration. Closes: #259526.
* debian/rules: Backup files that are removed or modified by upstream build
system and restore them so that calling the clean target actually gives
the same tree as before a build.
-- Mike Hommey <mh@glandium.org> Sun, 1 Aug 2004 05:02:14 +0900
libxml2 (2.6.11-2) unstable; urgency=medium
* Thanks to Andreas Metzler:
+ Hotfix for toolchain breakage (#254549), because libxml2 blocks lots of
packages from propagating to testing. Compile with gcc-3.2 on hppa.
-- Mike Hommey <mh@glandium.org> Wed, 21 Jul 2004 23:37:22 +0900
libxml2 (2.6.11-1) unstable; urgency=low
* New upstream release
* libxml.m4: removed debian changes which have been incorporated upstream.
* debian/rules: Use "dh_makeshlibs -V 'libxml2 (>= 2.6.11)'", since
version 2.6.11 introduces some new functions.
-- Mike Hommey <mh@glandium.org> Wed, 7 Jul 2004 00:54:50 +0900
libxml2 (2.6.10-3) unstable; urgency=low
* debian/control: changed deps on libz-dev to zlib1g-dev | libz-dev.
* debian/rules: made binary-indep target actually build the libxml2-doc
package which is Arch: all. Closes: #251971.
-- Mike Hommey <mh@glandium.org> Wed, 2 Jun 2004 15:57:21 +0900
libxml2 (2.6.10-2) unstable; urgency=low
* debian/watch: updated the watch file to exclude the cvs-snapshot from
the scope. Closes: #250177.
* debian/rules: rename libxml.m4 to libxml2.m4 in the /usr/share/aclocal
directory.
* libxml.m4: removed the AM_PATH_XML macro which is a macro for checking
libxml, not libxml2. Changed CFLAGS to CPPFLAGS from test compiles so
that using C++ also works. Closes: #249033.
-- Mike Hommey <mh@glandium.org> Wed, 26 May 2004 21:28:54 +0900
libxml2 (2.6.10-1) unstable; urgency=low
* New upstream release:
+ Fixes xincludes fallback issues. Closes: #243580.
+ Fixes output formatting issues. Closes: #246181.
* debian/rules: Use "dh_makeshlibs -V 'libxml2 (>= 2.6.10)'", since
version 2.6.10 introduces some few new functions.
-- Mike Hommey <mh@glandium.org> Mon, 17 May 2004 17:16:44 +0900
libxml2 (2.6.9-2) unstable; urgency=low
* Enable AM_MAINTAINER_MODE and re-run the autotools suite.
Closes: #245990.
-- Mike Hommey <mh@glandium.org> Tue, 27 Apr 2004 16:31:21 +0900
libxml2 (2.6.9-1) unstable; urgency=high
* New upstream release:
+ xincludes fallbacks fixed. Closes: #243580.
* Urgency set to high because of RC bug fixed and it's been too long
libxml2 has been stucking packages in sid.
* Ran all the autotools suite, especially the latest libtool.
Closes: #244557.
* debian/rules:
+ Removed all python file removals since these files get now
correctly removed upstream.
+ Changed once more the python/libxml2-py.c workaround to finally
work really properly.
-- Mike Hommey <mh@glandium.org> Mon, 19 Apr 2004 17:58:56 +0900
libxml2 (2.6.8-2) unstable; urgency=high
* Urgency set to high because of the FTBFS RC bug fixed.
* debian/changelog:
+ Added missing changes for release 2.6.8-1.
+ Converted changelog file to UTF-8.
* debian/rules: Changed the python/libxml2-py.c workaround stuff to
actually work properly
-- Mike Hommey <mh@glandium.org> Sat, 17 Apr 2004 16:59:01 +0000
libxml2 (2.6.8-1.1) unstable; urgency=high
* NMU. Urgency set to high as libxml2 has been preventing too many packages
from entering testing for too long.
* Grabbed from SVN:
Mike Hommey <mh@glandium.org> Sat, 10 Apr 2004 12:42:03 +0900
* debian/control:
+ Updated section for libxml2-doc package.
+ Added dependency on libz-dev for libxml2-dev. (Closes: #242683)
-- J.H.M. Dassen (Ray) <jdassen@debian.org> Fri, 16 Apr 2004 22:37:08 +0200
libxml2 (2.6.8-1) unstable; urgency=low
* New upstream release
* debian/rules:
+ Use "dh_makeshlibs -V 'libxml2 (>= 2.6.8)'", since version 2.6.8
introduces some few new functions.
+ Try to circumvent new troubles with the python/libxml2-py.c with
svn-buildpackage not wanting to make the build (the file used to
be removed because it was modified by the build).
* Removed changes about XML_CATALOG_FILES in manual pages, since it has
been incorporated upstream.
-- Mike Hommey <mh@glandium.org> Thu, 25 Mar 2004 14:57:44 +0900
libxml2 (2.6.7-2) unstable; urgency=low
* debian/control: Changed Maintainer to Debian SGML/XML Group and
put myself into Uploaders.
* Merged back libxml2-headers into libxml2-dev. That was too much of
a split. Closes: #238109.
-- Mike Hommey <mh@glandium.org> Mon, 22 Mar 2004 15:41:30 +0900
libxml2 (2.6.7-1) unstable; urgency=low
* New upstream release
* debian/rules: Use "dh_makeshlibs -V 'libxml2 (>= 2.6.7)'", since
version 2.6.7 introduces some few new functions.
-- Mike Hommey <mh@glandium.org> Wed, 25 Feb 2004 15:43:11 +0900
libxml2 (2.6.6-2) unstable; urgency=low
* debian/control:
+ Added a Recommends: xml-core to libxml2 package.
+ Added a libxml2-headers and a libxml2-docs packages to split
arch-dependent and arch-independent files. These files used to be
in the libxml2-dev package. Note that the new libxml2-dev package
depends on libxml2-headers, so that upgrade will keep the header
files on the system, but libxml2-headers only suggests libxml2-doc,
while libxml2-dev doesn't say anything about it, which means that
the documentation files won't be automagically installed on your
system. Closes: #233405.
+ Added the adequate dependencies between new and old packages.
+ Uniformized short descriptions.
+ Slightly modified long descriptions.
* debian/rules:
+ Externalized all dh_* calls with arguments. (i.e. created
corresponding debian/package.dh_stuff files)
+ Moved installation of some doc files to the install target.
* Removed un-needed debian/libxml2-python2.3.docs.
* Moved libxml manpage from libxml2 to libxml2-dev.
* doc/xmlcatalog_man.xml: Added a note about the incompatibility between
xmlcatalog and update-catalog from xml-core in the man page.
* doc/xmllint.xml, doc/xmlcatalog_man.xml: Added a note about the
XML_CATALOG_FILES environment variable. Closes: #232728.
-- Mike Hommey <mh@glandium.org> Wed, 18 Feb 2004 21:29:58 +0900
libxml2 (2.6.6-1) unstable; urgency=high
* New upstream release
* Set urgency to high, since this new upstream fixes buffer overflows.
Closes: #232447.
* debian/rules: Use "dh_makeshlibs -V 'libxml2 (>= 2.6.6)'", since
version 2.6.6 introduces some new functions.
-- Mike Hommey <mh@glandium.org> Mon, 16 Feb 2004 16:56:57 +0900
libxml2 (2.6.5-1) unstable; urgency=low
* New upstream release
* debian/rules:
- Made better use of CFLAGS.
- Replaced an mv by cp -r. Closes: #227392.
- Use "dh_makeshlibs -V 'libxml2 (>= 2.6.5)'", since version 2.6.5
introduced some new functions.
- Make some clean-up in the example directory.
-- Mike Hommey <mh@glandium.org> Fri, 30 Jan 2004 15:14:02 +0900
libxml2 (2.6.4-1) unstable; urgency=low
* New upstream release
-- Mike Hommey <mh@glandium.org> Sat, 27 Dec 2003 18:25:17 +0900
libxml2 (2.6.3-1) unstable; urgency=low
* New upstream release
* debian/rules:
- Use "dh_makeshlibs -V 'libxml2 (>= 2.6.3)'", since versions 2.6.3
introduced some new functions.
- Put more examples in /usr/share/doc/libxml2-dev/examples.
-- Mike Hommey <mh@glandium.org> Fri, 12 Dec 2003 14:45:24 +0900
libxml2 (2.6.2-1) unstable; urgency=low
* New upstream release
* debian/rules:
- Use "dh_makeshlibs -V 'libxml2 (>= 2.6.2)'", since versions 2.6.2
introduced some new functions.
- Put the API docs back in /usr/share/doc/libxml2-dev/libxml-dev.html.
-- Mike Hommey <mh@glandium.org> Mon, 10 Nov 2003 22:20:33 +0900
libxml2 (2.6.1-1) experimental; urgency=low
* New upstream release
-- Mike Hommey <mh@glandium.org> Wed, 29 Oct 2003 14:07:11 +0900
libxml2 (2.6.0-1) experimental; urgency=low
* New upstream release: should be API and ABI compatible but got a lot
of changes.
* debian/rules:
- Use "dh_makeshlibs -V 'libxml2 (>= 2.6.0)'", since applications
using the new API won't work on previous versions.
Note that this doesn't prevent applications built with older versions
to work properly with newer releases, since it is not supposed to be
any API/ABI breakage.
- Don't remove non-existant python/test/tmp.xml file on clean rule.
- Remove python/libxml2-py.c file on clean rule, to avoid its changes
made during build to be stored in the diff file.
- Added handling of the nostrip DEB_BUILD_OPTIONS.
- Changed old fashion dh_movefiles to dh_install --sourcedir=debian/tmp.
- Added installation of the python/TODO file in the libxml2-python2.3
package.
- Now take what is installed in debian/tmp/usr/share/doc/... for
documentation.
- Copy Copyright file into COPYING file in clean rule to avoid
unrepresentable changes to source.
* debian/*.files: renamed to debian/*.install.
* debian/libxml2.install: removed reference to non-existant
usr/lib/libxml.so.*
* Removed unneeded debian/libxml2-dev.dirs file.
-- Mike Hommey <mh@glandium.org> Tue, 21 Oct 2003 14:07:04 +0900
libxml2 (2.5.11-2) unstable; urgency=low
* debian/rules: Use "dh_makeshlibs -V 'libxml2 (>= 2.5.9)'", since
versions 2.5.8 and 2.5.9 introduced some changes in API.
Closes: #212819, #211318.
-- Mike Hommey <mh@glandium.org> Sun, 28 Sep 2003 21:57:32 +0200
libxml2 (2.5.11-1) unstable; urgency=low
* New upstream release.
* New maintainer.
* Bumped Standards-Version to 3.6.1 (no changes needed).
* Removed garbage debian/libxml-utils.
* moved debhelper compatibility to debian/compat.
-- Mike Hommey <mh@glandium.org> Sun, 14 Sep 2003 16:03:46 +0200
libxml2 (2.5.10-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Tue, 26 Aug 2003 20:08:31 +0200
libxml2 (2.5.8-2) unstable; urgency=low
* Use python 2.3 (closes: #205145)
-- Fredrik Hallenberg <hallon@debian.org> Wed, 13 Aug 2003 21:28:14 +0200
libxml2 (2.5.8-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Thu, 7 Aug 2003 20:08:23 +0200
libxml2 (2.5.7-1) unstable; urgency=low
* New upstream release (closes: #194757)
* Updated shlibs file (closes: #191022)
* Put xmllint and xmlcatalog in new package (closes: #174823)
-- Fredrik Hallenberg <hallon@debian.org> Mon, 26 May 2003 20:16:01 +0200
libxml2 (2.5.6-2) unstable; urgency=low
* Update libtool (closes: #188967)
-- Fredrik Hallenberg <hallon@debian.org> Mon, 14 Apr 2003 20:52:45 +0200
libxml2 (2.5.6-1) unstable; urgency=low
* New upstream release (closes: #188004)
* Applied patch from Graham Wilson <bob@decoy.wox.org> to handle
noopt build option. (closes: #171782)
-- Fredrik Hallenberg <hallon@debian.org> Sat, 12 Apr 2003 20:54:13 +0200
libxml2 (2.5.4-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Fri, 14 Mar 2003 18:40:08 +0100
libxml2 (2.5.3-1.1) unstable; urgency=high
* Applied patch by Paul Hampson <Paul.Hampson@anu.edu.au> to correct
licensing information in debian/copyright which Colin Watson reported
as incorrect. (Addresses #178060 for sid)
-- J.H.M. Dassen (Ray) <jdassen@debian.org> Sun, 16 Mar 2003 09:55:59 +0100
libxml2 (2.5.3-1) unstable; urgency=low
* New upstream release
* xml2-config --libs should be correct (closes: #155312)
-- Fredrik Hallenberg <hallon@debian.org> Sat, 22 Feb 2003 17:34:23 +0100
libxml2 (2.5.1-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Sat, 18 Jan 2003 10:52:56 +0100
libxml2 (2.5.0-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Tue, 7 Jan 2003 19:02:10 +0100
libxml2 (2.4.30-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Sat, 14 Dec 2002 16:55:13 +0100
libxml2 (2.4.28-2) unstable; urgency=low
* Upgraded libtool (closes: #172418)
-- Fredrik Hallenberg <hallon@debian.org> Sun, 1 Dec 2002 15:59:49 +0100
libxml2 (2.4.28-1) unstable; urgency=low
* New upstream release
* Added patch from CVS to fix KDE problems.
-- Fredrik Hallenberg <hallon@debian.org> Tue, 26 Nov 2002 19:58:54 +0100
libxml2 (2.4.27-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Mon, 18 Nov 2002 21:05:07 +0100
libxml2 (2.4.26-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Fri, 15 Nov 2002 17:29:30 +0100
libxml2 (2.4.24-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Sat, 24 Aug 2002 22:28:24 +0200
libxml2 (2.4.23-2) unstable; urgency=low
* Created new libxml2-python package
-- Fredrik Hallenberg <hallon@debian.org> Tue, 30 Jul 2002 20:16:17 +0200
libxml2 (2.4.23-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Mon, 8 Jul 2002 00:20:43 +0200
libxml2 (2.4.22-1) unstable; urgency=low
* New upstream release (closes: #149287)
-- Fredrik Hallenberg <hallon@debian.org> Fri, 7 Jun 2002 19:43:21 +0200
libxml2 (2.4.21-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Fri, 10 May 2002 18:40:02 +0200
libxml2 (2.4.20-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Tue, 23 Apr 2002 22:13:37 +0200
libxml2 (2.4.19-4) unstable; urgency=low
* Make libxml2-dev replace libxml2 <= 2.4.19-1 (closes: #142609, #142741)
* Update shlibs version to 2.4.19-4 (closes: #142806)
-- Fredrik Hallenberg <hallon@debian.org> Sun, 14 Apr 2002 12:19:51 +0200
libxml2 (2.4.19-3) unstable; urgency=low
* Dont use threads for now (closes: #142596)
-- Fredrik Hallenberg <hallon@debian.org> Sat, 13 Apr 2002 15:53:04 +0200
libxml2 (2.4.19-2) unstable; urgency=low
* Move pkgconfig stuff to -dev package (closes: #142171)
* Compile with thread support (closes: #141764)
* xml2-config --cflags will return same paths as previous versions
(closes: #142229)
-- Fredrik Hallenberg <hallon@debian.org> Fri, 12 Apr 2002 18:21:48 +0200
libxml2 (2.4.19-1) unstable; urgency=low
* New upstream release
* Fixed doc-base (closes: #141067)
-- Fredrik Hallenberg <hallon@debian.org> Wed, 3 Apr 2002 19:45:33 +0200
libxml2 (2.4.16-2) unstable; urgency=low
* New version as last version was built with broken debhelper.
-- Fredrik Hallenberg <hallon@debian.org> Tue, 26 Feb 2002 22:28:24 +0100
libxml2 (2.4.16-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Sat, 23 Feb 2002 20:21:34 +0100
libxml2 (2.4.13-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Tue, 15 Jan 2002 20:02:53 +0100
libxml2 (2.4.12-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Sat, 8 Dec 2001 22:52:44 +0100
libxml2 (2.4.10-1) unstable; urgency=low
* New upstream release
* Applied patch from LaMont Jones <lamont@smallone.fc.hp.com> to fix
gcc 3.0 build problem (closes: #120254)
-- Fredrik Hallenberg <hallon@debian.org> Tue, 20 Nov 2001 18:02:29 +0100
libxml2 (2.4.8-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Mon, 5 Nov 2001 19:49:26 +0100
libxml2 (2.4.6-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Thu, 18 Oct 2001 19:48:07 +0200
libxml2 (2.4.5-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Sat, 15 Sep 2001 23:11:11 +0200
libxml2 (2.4.3-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Mon, 27 Aug 2001 20:32:21 +0200
libxml2 (2.4.2-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Tue, 21 Aug 2001 20:39:44 +0200
libxml2 (2.4.1-1) unstable; urgency=low
* New upstream release
* Added ncurses and readline build depends.
-- Fredrik Hallenberg <hallon@debian.org> Tue, 24 Jul 2001 21:08:16 +0200
libxml2 (2.4.0-2) unstable; urgency=low
* xml2-config --libs only outputs -lxml2 (closes: #97739)
* Patched libxml.m4 to include string.h
-- Fredrik Hallenberg <hallon@debian.org> Wed, 18 Jul 2001 13:44:10 +0200
libxml2 (2.4.0-1) unstable; urgency=low
* New upstream release (closes: #105568)
* Fixed xml2-config to not output -I/usr/include, -L/usr/lib
(closes: #101390)
-- Fredrik Hallenberg <hallon@debian.org> Tue, 17 Jul 2001 12:43:34 +0200
libxml2 (2.3.13-3.1) unstable; urgency=low
* NMU (for porting)
* Change configure / configure.in to not specify -I/usr/include
(closes: #104603)
-- Matthew Wilcox <willy@debian.org> Fri, 13 Jul 2001 17:08:36 -0600
libxml2 (2.3.13-3) unstable; urgency=low
* Don't build example (closes: #103220, #103281)
-- Fredrik Hallenberg <hallon@debian.org> Tue, 3 Jul 2001 16:13:31 +0200
libxml2 (2.3.13-2) unstable; urgency=low
* xmllint is back
-- Fredrik Hallenberg <hallon@debian.org> Mon, 2 Jul 2001 21:05:25 +0200
libxml2 (2.3.13-1) unstable; urgency=low
* New upstream release
* Use DH_COMPAT 3
-- Fredrik Hallenberg <hallon@debian.org> Sun, 1 Jul 2001 17:37:08 +0200
libxml2 (2.3.11-1) unstable; urgency=low
* New upstream release
* Apparently builds on Alpha now (closes: #95938)
-- Fredrik Hallenberg <hallon@debian.org> Sun, 17 Jun 2001 21:33:36 +0200
libxml2 (2.3.10-2) unstable; urgency=low
* Quick hack to fix makefiles on m68k (closes: #99897)
-- Fredrik Hallenberg <hallon@debian.org> Mon, 11 Jun 2001 14:51:14 +0200
libxml2 (2.3.10-1) unstable; urgency=low
* New upstream release
* Leave pkgconfig as someone wants it (closes: #97621)
-- Fredrik Hallenberg <hallon@debian.org> Sun, 3 Jun 2001 22:02:25 +0200
libxml2 (2.3.9-1) unstable; urgency=low
* I am back. Some bugs closed by NMUs (closes: #96944, #86508)
* Updated libtool (closes: #98137)
* Fixed dependency (closes: #98323)
-- Fredrik Hallenberg <hallon@debian.org> Sat, 2 Jun 2001 16:37:18 +0200
libxml2 (2.3.9-0.1) unstable; urgency=low
* NMU of a new upstream release.
* Changed shlibs, they should change every time the API is augmented.
* Updated xmllint(1) manpage. Removed useless libxml(4) manpage.
-- Nicolás Lichtmaier <nick@debian.org> Sun, 20 May 2001 20:25:02 -0300
libxml2 (2.3.8-0.2) unstable; urgency=low
* Non-maintainer upload with permission from maintainer to fix the
libxml-dev conflict.
* The symbolic links to old, libxml-dev names introduced in 2.3.0-1 are
now gone: programs wanting to link with libxml2 should explicity call
the new libxml2-config (almost all the packages in debian are already
doing that.)
* Changed libxml-dev to libxml2-dev in debian/libxml2-dev.doc-base to
resolve libxml-dev conflict.
* Fixed shlibs problem introduced in previous NMU by wrong -V argument
of dh_makeshlibs.
-- Federico Di Gregorio <fog@debian.org> Thu, 10 May 2001 16:37:59 +0200
libxml2 (2.3.8-0.1) unstable; urgency=low
* Non-maintainer upload with permission from maintainer
* New upstream release
* Fixes shlibs version info (closes: #96291)
* config.sub & config.guess updated (closes: #96100)
-- Jeremy T. Bouse <jbouse@debian.org> Wed, 9 May 2001 22:57:28 -0700
libxml2 (2.3.7-1) unstable; urgency=low
* New upstream release (closes: #95692)
-- Fredrik Hallenberg <hallon@debian.org> Sun, 29 Apr 2001 11:42:54 +0200
libxml2 (2.3.5-2) unstable; urgency=low
* Rebuild to avoid link problems (closes: #92721)
-- Fredrik Hallenberg <hallon@debian.org> Tue, 3 Apr 2001 16:12:20 +0200
libxml2 (2.3.5-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Sun, 25 Mar 2001 10:58:21 +0200
libxml2 (2.3.4-1) unstable; urgency=low
* New upstream release
* Applied IBM S/390 patch on config.sub (closes: #88551)
-- Fredrik Hallenberg <hallon@debian.org> Thu, 15 Mar 2001 19:49:17 +0100
libxml2 (2.3.3-2) unstable; urgency=low
* Updated shlibs file with dependency (closes: #87337)
-- Fredrik Hallenberg <hallon@debian.org> Thu, 8 Mar 2001 10:26:46 +0100
libxml2 (2.3.3-1) unstable; urgency=low
* New upstream release
* Fixed xml2Conf.sh so gnome-config works (closes: #88341)
-- Fredrik Hallenberg <hallon@debian.org> Sat, 3 Mar 2001 16:53:05 +0100
libxml2 (2.3.2-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Thu, 1 Mar 2001 09:46:37 +0100
libxml2 (2.3.1-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Tue, 20 Feb 2001 09:44:04 +0100
libxml2 (2.3.0-1) unstable; urgency=low
* New upstream release (closes: #86379)
For some reason the library has changed name from libxml to libxml2 and
the config script from libxml-config to libxml2-config. I am providing
symbolic links to the old names, hopefully this will prevent stuff from
breaking.
-- Fredrik Hallenberg <hallon@debian.org> Sat, 17 Feb 2001 23:25:43 +0100
libxml2 (2.2.8-1) unstable; urgency=low
* New upstream release
* Probably a bad idea to remove -lz so put it back and add dependency on
libz-dev in dev-package.
-- Fredrik Hallenberg <hallon@debian.org> Mon, 20 Nov 2000 14:03:34 +0100
libxml2 (2.2.6-1) unstable; urgency=low
* New upstream release
* Removed -lz from xml-config --libs (closes: #74709)
-- Fredrik Hallenberg <hallon@debian.org> Fri, 27 Oct 2000 12:47:57 +0200
libxml2 (2.2.4-1) unstable; urgency=low
* New upstream release (closes: #74488, #70051)
-- Fredrik Hallenberg <hallon@debian.org> Wed, 11 Oct 2000 07:26:31 +0200
libxml2 (2.2.2-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Tue, 29 Aug 2000 22:55:43 +0200
libxml2 (2.2.1-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Thu, 3 Aug 2000 21:28:29 +0200
libxml2 (2.0.0-3) unstable; urgency=low
* Doc-base now uses correct directory
-- Fredrik Hallenberg <hallon@debian.org> Mon, 3 Jul 2000 09:20:23 +0200
libxml2 (2.0.0-2) unstable; urgency=low
* Renamed dev-package to libxml2-dev
-- Fredrik Hallenberg <hallon@debian.org> Wed, 28 Jun 2000 10:48:48 +0200
libxml2 (2.0.0-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Tue, 20 Jun 2000 11:36:12 +0200
libxml (1.8.7-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Sat, 11 Mar 2000 20:33:28 +0100
libxml (1.8.6-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Sat, 5 Feb 2000 15:01:51 +0100
libxml (1.8.5-1) unstable; urgency=low
* New upstream release (closes: #56172)
-- Fredrik Hallenberg <hallon@debian.org> Tue, 25 Jan 2000 14:57:12 +0100
libxml (1.8.4-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Sun, 16 Jan 2000 13:01:14 +0100
libxml (1.8.2-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Thu, 30 Dec 1999 11:38:47 +0100
libxml (1.7.3-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Wed, 29 Sep 1999 23:33:28 +0200
libxml (1.4.0-4) unstable; urgency=low
* Oops, must of course replace old libxml0 package. (closes: #43519)
-- Fredrik Hallenberg <hallon@debian.org> Thu, 26 Aug 1999 09:37:18 +0200
libxml (1.4.0-3) unstable; urgency=low
* Provide libxml.so.0 (which is binary compatible with libxml1)
(closes: #43385)
-- Fredrik Hallenberg <hallon@debian.org> Tue, 24 Aug 1999 09:31:15 +0200
libxml (1.4.0-2) unstable; urgency=low
* Include example in dev-package.
* Fixed postinst to only call ldconfig on configure.
* Let dh_installdocs handle doc-base.
-- Fredrik Hallenberg <hallon@debian.org> Sat, 21 Aug 1999 14:44:52 +0200
libxml (1.4.0-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Thu, 5 Aug 1999 16:05:26 +0200
libxml (1.1.0-2) unstable; urgency=low
* Added man page for xml-config. (closes: #39471)
-- Fredrik Hallenberg <hallon@debian.org> Sat, 3 Jul 1999 14:55:55 +0200
libxml (1.1.0-1) unstable; urgency=low
* New upstream release. (closes: #39791)
* Use install-docs on dev documents.
-- Fredrik Hallenberg <hallon@debian.org> Sun, 20 Jun 1999 10:20:53 +0200
libxml (1.0.0-2) unstable; urgency=low
* Moved html-documentation to dev package. (closes: #39049)
-- Fredrik Hallenberg <hallon@debian.org> Tue, 15 Jun 1999 21:07:44 +0200
libxml (1.0.0-1) unstable; urgency=low
* Patched xml-config.in. xml-config --version didn't work as expected.
Fixes bug #34881.
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Tue, 16 Mar 1999 18:36:11 +0100
libxml (0.99.8-1) unstable; urgency=low
* New upstream release
-- Fredrik Hallenberg <hallon@debian.org> Thu, 18 Feb 1999 15:40:19 +0100
libxml (0.99.3-2) unstable; urgency=low
* New maintainer.
* Some files were missing from the last release (xml-config, encoding.h,
debugXML.h)
* New rules file.
-- Fredrik Hallenberg <hallon@debian.org> Sun, 14 Feb 1999 18:56:10 +0100
libxml (0.99.3-1) unstable; urgency=low
* New upstream version.
* Recompile with lastest GNOME libs.
* Fix #28869.
-- Vincent Renardias <vincent@waw.com> Wed, 20 Jan 1999 11:32:55 +0100
libxml (0.30-1) unstable; urgency=low
* Initial debianization.
-- Vincent Renardias <vincent@waw.com> Fri, 25 Sep 1998 19:16:53 +0200
|