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 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349
|
gnustep-base (1.30.0-11) unstable; urgency=medium
* Upload to unstable.
* debian/gbp.conf: Remove debian-branch.
* debian/templates/control.m4 (libgnustep-base-dev) <Recommends>:
Promote gnustep-base-doc from Suggests.
* debian/control: Regenerate.
-- Yavor Doganov <yavor@gnu.org> Tue, 28 Jan 2025 06:11:40 +0200
gnustep-base (1.30.0-10) experimental; urgency=medium
* debian/rules (v_gcc, cross_flags): New variables.
(v_make): Bump to 2.9.2-5 for the multiarch layout.
(override_dh_testdir): Handle $(v_gcc) as well. Pass $(cross_flags)
to configure; conditionally defined for a cross build only.
* debian/templates/control.m4 (Build-Depends): Replace gobjc`'V_OBJC
with gobjc`'V_OBJC <!cross> and gobjc-for-host`'V_OBJC <cross>;
add libobjc-`'V_GCC-dev <cross> to support cross builds because
otherwise dpkg-shlibdeps fails (Addresses: #1093949).
(gnustep-base-common) <Multi-Arch>: Set to foreign.
<Depends>: Annotate gnustep-common with :any.
<Breaks>: Add gnustep-gui-common (<< 0.31.1-7) to ensure that
multiarch-based gnustep-base and gnustep-gui are upgraded together.
(gnustep-base-runtime) <Multi-Arch: Set to foreign.
(libgnustep-base`'SOV_BASE) <Multi-Arch>: Set to same.
<Depends>: Add gnustep-multiarch`'V_MAKE to ensure that both the build
and host packages are installed for cross builds.
(libgnustep-base-dev) <Multi-Arch>: Set to same.
<Depends>: Add gobjc++`'V_OBJC | gobjc++-for-host`'V_OBJC to support
cross builds for all reverse dependencies.
<Provides>: Add gnustep-base-abi-`'SOV_BASE so that
libuniversaldetector-dev can depend on it and we can track
universal-detector for future gnustep-base library transitions,
ensuring it's always binNMUed before unar.
* debian/control: Regenerate.
* debian/gnustep-base-common.install: Update for the multiarch layout.
* debian/libgnustep-base-dev.install: Likewise.
* debian/templates/libgnustep-baseN.install.in: Likewise.
* debian/not-installed: Likewise.
* debian/patches/multiarch+cross.patch: New; add support for the
multiarch layout and cross builds (Closes: #1093948, #1093949).
* debian/patches/NSCalendarDate-tests-tzdata-2024b.patch: Mark as
Forwarded: not-needed. This was fixed in a different way upstream but
it's not worth cherry-picking it unless the tzdata turmoil continues.
* debian/patches/no-etc-timezone.patch: Mark as forwarded.
* debian/gdomap_probes: New file; make /etc/GNUstep/gdomap_probes a
proper conffile and stop creating it in postinst.
* debian/gnustep-base-runtime.install: Add gdomap_probes.
* debian/gnustep-base-runtime.gdomap.default: Pass -c
/etc/GNUstep/gdomap_probes while still keeping the -p option; there's
a comment how to enable probing.
* debian/gnustep-base-runtime.postrm: Delete.
* debian/gnustep-base-runtime.postinst: Likewise.
* debian/gbp.conf: Set debian-branch to experimental.
* debian/salsa-ci.yml: Delete; will use the default Salsa recipe.
* debian/watch: Remove pasv option; we no longer use the FTP server.
-- Yavor Doganov <yavor@gnu.org> Sat, 25 Jan 2025 08:14:30 +0200
gnustep-base (1.30.0-9) unstable; urgency=medium
* debian/patches/no-etc-timezone.patch: New; fix innocent bug in
NSTimeZone +systemTimeZone when trying to determine the time zone from
/etc/localtime if /etc/timezone is missing (Closes: #1093333). Fixes
FTBFS (testsuite failure) with tzdata/2024b-5; thanks Santiago Vila.
* debian/patches/NSStream-test-riscv64.patch: Mark as applied upstream.
* debian/templates/gnustep-base-common.links.in: Remove symlink to
/etc/timezone as it'll be dangling on new installations.
* debian/templates/gnustep-base-common.postinst.in: New file; create a
symlink to /etc/timezone only if it exists.
* debian/templates/gnustep-base-common.prerm.in: New file; delete the
/etc/timezone symlink on package removal if it exists.
* debian/rules (override_dh_auto_configure): Add commands to generate
gnustep-base-common's maintainer scripts.
* debian/clean: Add gnustep-base-common.{postinst,prerm}.
* debian/gnustep-base-doc.lintian-overrides: Delete; lintian fixed.
* debian/not-installed: Add more comments and remove redundant entries.
* debian/upstream/metadata: New file with links pointing to GitHub which
is what upstream prefer.
* debian/salsa-ci.yml: New file.
* debian/copyright: Update copyright years.
-- Yavor Doganov <yavor@gnu.org> Sat, 18 Jan 2025 09:45:12 +0200
gnustep-base (1.30.0-8) unstable; urgency=medium
* debian/patches/NSCalendarDate-tests-tzdata-2024b.patch: New; adapt to
yet another change in tzdata (Closes: #1084260). Thanks Santiago Vila
for the report. This upload comes handy as gnustep-base needs to be
rebuilt for the new (in fact old) libxml2 ABI.
* Run wrap-and-sort -ast.
-- Yavor Doganov <yavor@gnu.org> Mon, 07 Oct 2024 16:36:02 +0300
gnustep-base (1.30.0-7) unstable; urgency=medium
* debian/patches/NSStream-test-riscv64.patch: Revert last change. Fix
logic error in -[Listener stream:handleEvent:].
-- Yavor Doganov <yavor@gnu.org> Wed, 14 Aug 2024 10:02:07 +0300
gnustep-base (1.30.0-6) unstable; urgency=medium
* debian/patches/NSStream-test-riscv64.patch: Prevent global buffer
overflow (caught by GCC's AddressSanitizer).
-- Yavor Doganov <yavor@gnu.org> Sun, 11 Aug 2024 18:13:14 +0300
gnustep-base (1.30.0-5) unstable; urgency=medium
* debian/patches/non-portable-tests.patch: New; cherry-pick two upstream
commits to fix compilation of tests with GCC.
* debian/patches/gcc-synthesize.patch: New; make
NSUserNotification/NSUserNotificationCenter work with GCC.
* debian/patches/NSStream-test-riscv64.patch: New; attempt to fix a
strange intermittent test abort on riscv64.
* debian/changelog: Typo fixes.
* debian/templates/control.m4 (Build-Conflicts): Remove; obsolete.
(gnustep-base-common): Add Breaks/Replaces for the manpages' move.
* debian/control: Regenerate.
* debian/rules (override_dh_auto_configure): Stop generating files with
constant names from templates with variables having constant values.
Do not involve sed where a simple copy operation is sufficient.
(GS_DTDs_DEBIAN): Remove definition.
(v_make): Bump to 2.9.2-3 for recent dh_gnustep additions.
(override_dh_auto_install-indep): Delete timezones.
(execute_before_dh_link): New target; run dh_gnustep.
* debian/templates/gnustep-base-runtime.postrm.in: Rename as...
* debian/gnustep-base-runtime.postrm: ...since generating it is useless.
* debian/templates/gnustep-base-runtime.postinst.in: Rename as...
* debian/gnustep-base-runtime.postinst: ...as above.
* debian/templates/gnustep-base-common.xmlcatalogs.in: Rename as...
* debian/gnustep-base-common.xmlcatalogs: ...as above.
* debian/templates/gnustep-base-common.install.in: Rename as..
* debian/gnustep-base-common.install: ...as above; simplify. Install
all manpages in this package; -runtime depends on it.
* debian/template/gnustep-base-runtime.links.in: Delete and move
manpages' symlinks...
* debian/templates/gnustep-base-common.links.in: ...here.
* debian/templates/libgnustep-baseN.install.in: Replace @GS_LIBS@.
* debian/gnustep-base-runtime.install: Remove manpages.
* debian/clean: Remove files that are no longer generated.
* debian/watch: Use HTTPS protocol.
* debian/tests/adequate: New autopkgtest.
* debian/tests/control (Tests): Add new test.
(Depends): Add adequate and debhelper.
* debian/copyright: Add more stanzas for files under various permissive
licenses. Move all license texts at the end.
-- Yavor Doganov <yavor@gnu.org> Sun, 11 Aug 2024 11:58:00 +0300
gnustep-base (1.30.0-4) unstable; urgency=medium
* debian/patches/hurd-tests.patch: Add two more testHopeful definitions
as the variable is reset after each set of tests.
-- Yavor Doganov <yavor@gnu.org> Thu, 27 Jun 2024 09:51:08 +0300
gnustep-base (1.30.0-3) unstable; urgency=medium
* debian/rules (v_objc): Set to the empty string.
(m4_objc, m4_make): New variables. Handle the case when the gobjc and
gnustep-make versions in (old)stable are sufficient enough; in this
case no version constraint should be generated.
(override_dh_testdir): Use the new conditionally defined variables.
* debian/templates/control.m4: Restore lost V_OBJC macro, adapt V_MAKE
macros to the new rule.
* debian/patches/autogsdoc-reproducibility.patch: Fix reproducibility
regression following upstream changes to autogsdoc which now adds a
timestamp to generated .gsdoc/.html files. Extract the date from
debian/changelog instead when building a Debian package.
* debian/patches/hurd-tests.patch: New; mark as hopeful tests that
sometimes fail on GNU/Hurd. This problem appears to be an
intermittent issue with the Debian buildds.
-- Yavor Doganov <yavor@gnu.org> Wed, 26 Jun 2024 18:13:45 +0300
gnustep-base (1.30.0-2) unstable; urgency=medium
* Upload to unstable.
* debian/gbp.conf: Remove debian-branch.
* debian/patches/libxml2-2.11.patch: Delete; fixed in 1.30.0.
* debian/patches/nscalendardate-hppa+ppc.patch: Delete; problem gone.
* debian/clean: Add gnustep-base.pc.
-- Yavor Doganov <yavor@gnu.org> Thu, 20 Jun 2024 13:44:14 +0300
gnustep-base (1.29.0-8) unstable; urgency=medium
* debian/patches/libxml2-2.11.patch: New; fix FTBFS with libxml2 >= 2.11
(Closes: #1073313). Thanks Lucas Nussbaum for the report.
-- Yavor Doganov <yavor@gnu.org> Sun, 16 Jun 2024 19:56:29 +0300
gnustep-base (1.30.0-1) experimental; urgency=medium
* New upstream release.
* debian/gbp.conf: Set debian-branch to experimental.
* debian/control: Regenerate to reflect the SONAME change.
* debian/patches/tzdb.h-include.patch: Delete; applied upstream.
* debian/patches/fix-spelling-error.patch: Likewise.
* debian/patches/GSTimeZoneDetail-retain-abbrev.patch: Likewise.
* debian/patches/HTMLLinker-troff-warning.patch: Likewise.
* debian/patches/nstimezone-32bit-time_t.patch: Likewise.
* debian/patches/NSURL-tests-new-url.patch: Likewise.
* debian/patches/TestHelper-category-interface.patch: Likewise.
* debian/patches/pkg-config-macro.patch: Refresh.
* debian/patches/fix-tests-network.patch: Likewise.
* debian/patches/autogsdoc-reproducibility.patch: Likewise.
* debian/patches/nscalendardate-hppa+ppc.patch: Disable for now.
* debian/not-installed: Add the .pc file as it produces multiple
pkg-config-bad-directive lintian errors.
* debian/gnustep-base-runtime.lintian-overrides: Remove no-manual-page
for usr/libexec/gdomap-helper; apparently this lintian bug was fixed.
* debian/templates/control.m4 (Uploaders): Change Gürkan's name to Alex.
(Standards-Version): Bump to 4.7.0; no changes needed.
* debian/copyright: Update copyright years.
-- Yavor Doganov <yavor@gnu.org> Sat, 01 Jun 2024 20:14:25 +0300
gnustep-base (1.29.0-7) unstable; urgency=medium
* debian/templates/control.m4 (Build-Depends): Replace tzdata with
tzdata-legacy; fixes FTBFS and autopkgtest failure with recent tzdata
(Closes: #1050528, #1052840). Thanks Paul Gevers for the report.
(gnustep-base-common) <Depends>: Likewise. This has the unfortunate
effect of pulling in tzdata-legacy on practically every GNUstep
installation but it's necessary so that methods like NSTimeZone
+timeZoneWithAbbreviation: continue to work.
* debian/control: Regenerate.
* debian/patches/kbsd-test.patch: Delete as it is no longer applicable;
regretfully GNU/kFreeBSD is no more.
* debian/rules (override_dh_auto_configure): Don't pass
ac_cv_lib_kvm_kvm_getenvv=no; was only needed for GNU/kFreeBSD.
(override_dh_auto_test): Remove kfreebsd-specific snippet.
* debian/tests/testsuite: Sync configure arguments with the
override_dh_auto_configure target.
-- Yavor Doganov <yavor@gnu.org> Wed, 27 Sep 2023 07:41:50 +0300
gnustep-base (1.29.0-6) unstable; urgency=medium
* debian/patches/hurd-nsurlconnection.patch: Delete; issue gone somehow.
* debian/patches/nscalendardate-hppa+ppc.patch: Enable and refresh.
Mark as Debian-specific as it's not a real fix to be forwarded.
* debian/patches/NSURL-tests-new-url.patch: Explicitly mark as
Forwarded: not-needed. Lintian correctly assumes that it doesn't need
forwarding as it's taken from upstream, however udd.d.o does not.
* debian/patches/TestHelper-category-interface.patch: Likewise.
-- Yavor Doganov <yavor@gnu.org> Wed, 02 Aug 2023 17:39:40 +0300
gnustep-base (1.29.0-5) unstable; urgency=medium
* debian/patches/tmp-test-fix.patch: Remove and replace with new patches
containing the (unrelated) actual fixes sent upstream.
* debian/patches/TestHelper-category-interface.patch: New; add interface
for category (taken from upstream, identical with our fix).
* debian/patches/tzdb.h-include.patch: New.
* debian/patches/GSTimeZoneDetail-retain-abbrev.patch: New; an attempt
to fix the problem exposed in the testsuite (forwarded upstream).
* debian/patches/NSURL-tests-new-url.patch: New; replace httpbin.org
with example.com as it is more reliable (taken from upstream), thanks
Adrien Nader (Closes: #1038725).
* debian/patches/HTMLLinker-troff-warning.patch: New; fix a warning
exposed with groff/1.23.0.
* debian/patches/fix-spelling-error.patch: Mark as forwarded.
* debian/patches/nstimezone-32bit-time_t.patch: Likewise.
* debian/patches/fix-tests-network.patch: Mark as Debian-specific.
* debian/patches/fix-tests-timings.patch: Likewise.
* debian/patches/hurd-nsurlconnection.patch: Disable for now.
* debian/patches/nscalendardate-hppa+ppc.patch: Likewise.
* debian/gnustep-base-runtime.gdomap.service: New file; provide a
systemd unit for gdomap (Closes: #1029997, #1039212).
* debian/gdomap-helper: New file -- common helper script to start/stop
gdomap; used both by the init script and the systemd unit.
* debian/templates/gnustep-base-runtime.gdomap.init.in: Move to...
* debian/gnustep-base-runtime.gdomap.init: ...as it's useless to
generate it from a template. Modify it to use gdomap-helper.
* debian/gnustep-base-runtime.install: Install gdomap-helper in
/usr/libexec as it's not supposed to be run by a user.
* debian/clean: Remove debian/gnustep-base-runtime.gdomap.init.
Delete all .type files; fixes building twice in a row.
* debian/gnustep-base-runtime.lintian-overrides: Override no-manual-page
[usr/libexec/gdomap-helper]; oddly enough, lintian complains despite
the fact that binaries in /usr/libexec are not required to have one.
* debian/rules (override_dh_auto_configure): Don't generate
gnustep-base-runtime.gdomap.init.
(override_dh_installsystemd): New; pass --no-enable --no-start.
-- Yavor Doganov <yavor@gnu.org> Sun, 30 Jul 2023 19:37:39 +0300
gnustep-base (1.29.0-4) unstable; urgency=medium
* Upload to unstable.
* debian/gbp.conf: Remove debian-branch.
* debian/patches/tmp-test-fix.patch: Move #include of tzdb.h in
NSTimeZone.m a bit earlier so that the POSIX_TZONES conditional is
correct. As of tzdata/2023c-6 /usr/share/zoneinfo/posix is removed.
-- Yavor Doganov <yavor@gnu.org> Fri, 16 Jun 2023 23:14:46 +0300
gnustep-base (1.29.0-3) experimental; urgency=medium
* debian/patches/nscalendardate-hppa+ppc.patch: Fix conditional. Also
skip NSTimeZone localtime tests on these architectures.
* debian/patches/kbsd-test.patch: Adjust conditional to match
GNU/kFreeBSD only; the test passes on GNU/Hurd.
* debian/rules (override_dh_auto_test): Print the result of the failing
NSFileManager test only on GNU/kFreeBSD.
-- Yavor Doganov <yavor@gnu.org> Thu, 23 Feb 2023 15:10:21 +0200
gnustep-base (1.29.0-2) experimental; urgency=medium
* debian/patches/nstimezone-32bit-time_t.patch: Fix stupid typo which
caused build failure for that file.
* debian/patches/nscalendardate-hppa+ppc.patch: New; as temporary
measure skip DST tests on hppa and powerpc.
* debian/patches/texinfo5.diff: Delete; fixed upstream in a better way.
* debian/rules (v_make): Bump to 2.9.1-2, for "nodoc" support.
(override_dh_auto_configure): Conditionally create .install and .links
files for the gnustep-base-doc package.
(override_dh_auto_build-indep): Enclose documentation-related commands
within an appropriate nodoc conditional.
(override_dh_auto_install-indep): Likewise.
(override_dh_auto_test): Remove unnecessary conditional.
* debian/templates/control.m4 (Build-Depends-Indep): Annotate all but
xml-core with <!nodoc>; they are only needed for building docs.
(gnustep-base-doc) <Build-Profiles>: Set to <!nodoc>.
(gnustep-base-runtime) <Depends>: Remove lsb-base; obsolete.
* debian/control: Regenerate.
* debian/gnustep-base-doc.install: Rename as...
* debian/templates/gnustep-base-doc.install.in: ...for "nodoc" support.
* debian/gnustep-base-doc.links: Rename as...
* debian/templates/gnustep-base-doc.links.in: ...as above.
* debian/clean: Add gnustep-base-doc.{install,links}.
-- Yavor Doganov <yavor@gnu.org> Wed, 22 Feb 2023 18:53:19 +0200
gnustep-base (1.28.1+really1.28.0-5) unstable; urgency=medium
* Revert uploads 1.28.1-1 and 1.28.1-2 thus restoring upstream 1.28.0
release. 1.28.1 was mistakently uploaded to unstable as it introduced
an ABI break discovered post-factum (Closes: #1028189).
* debian/gbp.conf: Set debian-branch to snafu.
-- Yavor Doganov <yavor@gnu.org> Mon, 09 Jan 2023 16:54:48 +0200
gnustep-base (1.29.0-1) experimental; urgency=medium
* New upstream release (identical to 1.28.1 which was mistakenly
uploaded to unstable).
* debian/gbp.conf: Set debian-branch to experimental.
* debian/control: Regenerate to reflect the SONAME change.
-- Yavor Doganov <yavor@gnu.org> Sun, 08 Jan 2023 11:10:35 +0200
gnustep-base (1.28.1-2) unstable; urgency=medium
* debian/patches/nstimezone-32bit-time_t.patch: New; skip tests that
rely on 64bit time_t on all 32-bit architectures (Closes: #1028020).
* debian/patches/series: Update.
-- Yavor Doganov <yavor@gnu.org> Fri, 06 Jan 2023 11:45:04 +0200
gnustep-base (1.28.1-1) unstable; urgency=medium
* New upstream release.
* debian/patches/fix-tests-network.patch: Update and refresh.
* debian/patches/texinfo5.diff: Refresh.
* debian/patches/fix-tests-timings.patch: Remove unnecessary hunks.
* debian/patches/hurd-nsurlconnection.patch: Refresh.
* debian/patches/plutil-manpage.patch: Remove hunk applied upstream.
* debian/patches/tmp-test-fix.patch: New; disable two tests as temporary
measure; more investigation is needed.
* debian/patches/series: Update.
* debian/templates/control.m4 (Build-Depends): Add gnutls-bin
<!nocheck>; needed by GSTLS tests.
(libgnustep-base`'SOV_BASE) <Depends>: Add gnutls-bin, required by
GSTLS.
(Standards-Version): Bump to 4.6.2; no changes needed.
* debian/control: Regenerate.
* debian/rules (override_dh_auto_install-indep): Do not convert
translations; no longer needed.
* debian/gnustep-base-common.docs: Adjust renamed README file.
* debian/gnustep-base-doc.docs: Likewise.
* debian/copyright: Update copyright years.
-- Yavor Doganov <yavor@gnu.org> Tue, 03 Jan 2023 19:33:10 +0200
gnustep-base (1.28.0-4) unstable; urgency=medium
* debian/patches/kbsd-test.patch: New; skip an NSFileManager failing
test on GNU/kFreeBSD and obtain result instead.
* debian/patches/series: Update.
* debian/rules (override_dh_auto_test): Print test result.
-- Yavor Doganov <yavor@gnu.org> Fri, 10 Dec 2021 10:42:55 +0200
gnustep-base (1.28.0-3) unstable; urgency=medium
* Upload to unstable.
* debian/gbp.conf: Remove debian-branch.
* debian/clean: Fix build twice in a row which got accidentally broken
in 1.28.0-1 by yours truly.
-- Yavor Doganov <yavor@gnu.org> Tue, 07 Dec 2021 01:46:20 +0200
gnustep-base (1.28.0-2) experimental; urgency=medium
* debian/rules (override_dh_auto_configure): Pass
--with-installation-domain in an attempt to fix a completely awkward
build failure on GNU/Hurd.
* debian/not-installed: Remove pl tool, now installed.
* debian/clean: Use glob patterns for generated library files.
-- Yavor Doganov <yavor@gnu.org> Tue, 16 Nov 2021 23:34:46 +0200
gnustep-base (1.28.0-1) experimental; urgency=medium
* New upstream release:
- SONAME change: libgnustep-base1.27 -> 1.28.
* debian/gbp.conf: Set debian-branch to experimental.
* debian/templates/control.m4 (Build-Depends): Switch to
debhelper-compat. Remove dh-exec; not needed as of this release.
(Uploaders): Change Gürkan's email address.
(Standards-Version): Bump to 4.6.0; no changes required.
* debian/control: Regenerate, reflecting the SONAME change.
* debian/compat: Delete.
* debian/rules (v_make): Bump to 2.9.0 for @setfilename fix;
the package will FTBFS with older versions of gnustep-make.
(override_dh_auto_configure): Do not generate
gnustep-base-doc.install and gnustep-base-runtime.install from
templates; utterly pointless.
(override_dh_auto_install-indep): Convert French and German
translations to UTF-8 to avoid lintian warning.
* debian/templates/gnustep-base-doc.install.in: Delete.
* debian/templates/gnustep-base-runtime.install.in: Likewise.
* debian/gnustep-base-doc.install: New file.
* debian/gnustep-base-runtime.install: Likewise.
* debian/templates/gnustep-base-runtime.links.in: Adjust symlink for
pl's manpage.
* debian/clean: Adjust for the new SONAME and doc-related changes.
* debian/not-installed: Remove usr/share/info, now installed.
* debian/gnustep-base-doc.doc-base.manual: Adjust PDF file.
* debian/gnustep-base-doc.doc-base.standards: Likewise.
* debian/patches/pkg-config-macro.patch: Refresh.
* debian/patches/fix-spelling-error.patch: Likewise.
* debian/patches/fix-tests-network.patch: Likewise.
* debian/patches/doc-links.patch: Remove; applied upstream.
* debian/patches/icu65.patch: Likewise.
* debian/patches/gstls-time_t-limitation.patch: Likewise.
* debian/patches/pldes-manpage-rename.patch: Remove; no longer necessary
following the restoration of the pl tool.
* debian/patches/plutil-manpage.patch: New; install plutil manpage and
fix some roff warnings that cause lintian warnings.
* debian/patches/series: Update.
* debian/README.Debian: Delete; no longer needed.
* debian/gnustep-base-runtime.lintian-overrides: Amend to match current
lintian's expectations.
* debian/gnustep-base-doc.lintian-overrides: Let it apply to all docs.
* debian/gnustep-base-runtime.preinst: Delete; no longer needed.
* debian/changelog: Typo fix.
* debian/copyright: Update copyright years, fix redundant pattern.
-- Yavor Doganov <yavor@gnu.org> Sun, 14 Nov 2021 16:50:04 +0200
gnustep-base (1.27.0-4) unstable; urgency=medium
* debian/rules (override_dh_auto_configure): Fix FTBFS with
Autoconf/2.71 (Closes: #995007).
-- Yavor Doganov <yavor@gnu.org> Wed, 29 Sep 2021 22:15:52 +0300
gnustep-base (1.27.0-3) unstable; urgency=medium
* Upload to unstable.
* debian/gbp.conf: Remove debian-branch.
* debian/compat: Bump to 13.
* debian/templates/control.m4 (Build-Depends): Bump debhelper
requirement to match the compat level.
* debian/control: Regenerate.
* debian/not-installed: Add /usr/bin/pl.
* debian/patches/icu65.patch: Replace with the fix that was actually
committed upstream.
* debian/patches/hurd-nsurlconnection.patch: New; mark a test as hopeful
on GNU/Hurd until we figure out why it is failing.
* debian/patches/gstls-time_t-limitation.patch: Mark as forwarded.
* debian/patches/series: Update.
* debian/templates/libgnustep-baseN.lintian-overrides.m4: Replace
shlibs-declares-dependency-on-other-package with
distant-prerequisite-in-shlibs (tag renamed by Lintian).
-- Yavor Doganov <yavor@gnu.org> Thu, 11 Jun 2020 20:13:29 +0300
gnustep-base (1.27.0-2) experimental; urgency=medium
* debian/patches/gstls-time_t-limitation.patch: New; skip certificate
expiration test on all 32-bit architectures as it is doomed to fail.
* debian/patches/series: Update.
-- Yavor Doganov <yavor@gnu.org> Tue, 28 Apr 2020 11:34:07 +0300
gnustep-base (1.27.0-1) experimental; urgency=medium
* New upstream release:
- SONAME change: libgnustep-base1.26 -> 1.27.
* debian/gbp.conf: Set debian-branch to experimental.
* debian/templates/control.m4 (gnustep-base-doc): Remove Breaks and
Replaces: gnustep-base-examples; no longer needed.
* debian/control: Regenerate, reflecting the SONAME change.
* debian/clean: Update for the new SONAME.
* debian/patches/no-xml-config.patch: Remove; merged upstream.
* debian/patches/gdomap-udp-amplification.patch: Likewise.
* debian/patches/icu65.patch: Remove hunks applied upstream.
* debian/patches/armhf-test.patch: Remove since the test now passes on
arm64 buildds, both Debian's and Ubuntu's. As mysterious it may be,
it looks like it was due to a libffi and/or toolchain bug(s) which
apparently have been fixed (Closes: #918366).
* debian/patches/series: Update.
* debian/rules (override_dh_auto_test): Remove armhf workaround.
(DEB_LDFLAGS_MAINT_APPEND): Drop -Wl,--as-needed; now GCC default.
* debian/copyright: Bump copyright years.
-- Yavor Doganov <yavor@gnu.org> Thu, 16 Apr 2020 18:54:21 +0300
gnustep-base (1.26.0-7) unstable; urgency=medium
[ Debian Janitor ]
* Fix day-of-week for changelog entries 0.5.0.981222-1.
[ Yavor Doganov ]
* debian/patches/no-xml-config.patch: New; detect libxml2 with
pkg-config instead of xml-config (Closes: #949152).
* debian/patches/icu65.patch: New; compatibility fixes for ICU 65
(Closes: #952156).
* debian/patches/series: Update.
* debian/templates/control.m4 (Rules-Requires-Root): Set to "no".
(Standards-Version): Bump to 4.5.0. I intentionally ignore the new
requirement to include a systemd service unit. The init script works
on all GNU variants, has some hardening features, so I fail to see why
this functionality should be duplicated.
* debian/control: Regenerate.
* debian/copyright: Bump copyright years.
-- Yavor Doganov <yavor@gnu.org> Fri, 03 Apr 2020 16:46:00 +0300
gnustep-base (1.26.0-6) unstable; urgency=medium
* debian/gnustep-base-runtime.preinst: Use a different approach that
actually does the job (really closes: #939119). Thanks Alan Jenkins.
* debian/NEWS: Document that the gdomap daemon is disabled forcefully.
-- Yavor Doganov <yavor@gnu.org> Fri, 20 Sep 2019 13:43:28 +0300
gnustep-base (1.26.0-5) unstable; urgency=medium
* debian/gnustep-base-runtime.preinst: New file; handle the poor
upgrade from stretch to buster which left the gdomap daemon enabled
(Closes: #939119). Thanks to Alan Jenkins.
* debian/gnustep-base-runtime.maintscript: Delete; migration done.
* debian/libgnustep-base-dev.maintscript: Likewise.
* debian/gnustep-base-doc.links: New file; install symlinks in
/usr/share/doc pointing to /usr/share/GNUstep/Documentation.
* debian/gnustep-base-doc.doc-base.additions: Use /usr/share/doc
symlinks for doc-base registration; fixes a lintian error.
* debian/gnustep-base-doc.doc-base.base: Likewise.
* debian/gnustep-base-doc.doc-base.manual: Likewise.
* debian/gnustep-base-doc.doc-base.standards: Likewise.
* debian/gnustep-base-doc.doc-base.tools: Likewise.
* debian/patches/gdomap-udp-amplification.patch: New; fix UDP
amplification vulnerability. Thanks Alan Jenkins.
* debian/patches/fix-spelling-error.patch: Fix yet another typo.
* debian/patches/series: Update.
* debian/templates/control.m4 (Standards-Version): Bump to 4.4.0; no
changes required.
* debian/control: Regenerate.
-- Yavor Doganov <yavor@gnu.org> Wed, 18 Sep 2019 00:38:19 +0300
gnustep-base (1.26.0-4) unstable; urgency=medium
* debian/patches/armhf-test.patch: New; ignore a failing test on armhf
and attempt to investigate the failure (Addresses: #918366). Not
closing it as I'm quite confident it's a real bug in GNUstep or GCC.
* debian/patches/series: Update.
* debian/rules (override_dh_auto_test): Print the NSRect's from the
failing test on armhf.
-- Yavor Doganov <yavor@gnu.org> Fri, 01 Feb 2019 23:20:45 +0200
gnustep-base (1.26.0-3) unstable; urgency=medium
* debian/templates/control.m4: Tighten dependencies, disallowing partial
upgrades and co-installation of different library versions. This
reverts the changes made in 1.25.0-2 (Addresses: #918844).
* debian/control: Regenerate.
* debian/gnustep-base-doc.examples: Remove Version and config.mak to
make the build reproducible; they are not needed anyway.
-- Yavor Doganov <yavor@gnu.org> Thu, 17 Jan 2019 14:39:54 +0200
gnustep-base (1.26.0-2) unstable; urgency=medium
* Upload to unstable.
* debian/gbp.conf: Remove debian-branch.
* debian/rules: Suppress verbose output in install/clean recipes. It is
uninteresting and extremely unlikely to vary across architectures.
(override_dh_auto_configure): Drop --disable-icu-config.
-- Yavor Doganov <yavor@gnu.org> Thu, 10 Jan 2019 14:59:50 +0200
gnustep-base (1.26.0-1) experimental; urgency=medium
* New upstream release:
- Detects ICU with pkg-config (Closes: #915714).
- SONAME change: libgnustep-base1.25 -> 1.26.
* Remove patches applied upstream:
- portmessage-msgid.patch;
- icu-60.patch;
- hurd-systemuptime.patch.
* debian/patches/pkg-config-macro.patch: Remove hunks applied upstream
(that is, all of them). However, upstream opted to cater for ancient
pkg-config which does not provide the PKG_PROG_PKG_CONFIG macro and
this approach still triggers a lintian warning; update accordingly.
* debian/patches/fix-spelling-error.patch: Refresh.
* debian/patches/fix-tests-network.patch: Refresh and mark 2 more tests
as hopeful (GSXML).
* debian/patches/series: Update.
* debian/compat: Bump to 12.
* debian/templates/control.m4 (Build-Depends): Bump debhelper
requirement to match the compat level.
(Standards-Version): Claim compliance with 4.3.0; no changes needed.
* debian/control: Regenerate, reflecting the SONAME change.
* debian/rules: Replace all occurrences of "messages=yes" with
"$(verbose)" to support "terse" in DEB_BUILD_OPTIONS.
(v_make): Bump to 2.7.0-4 for "terse" support.
(override_dh_installinit): Also pass --no-start (Closes: #913914).
(override_dh_auto_install-indep): Delete duplicate or otherwise
unnecessary files which trigger lintian warnings.
(override_dh_compress): Remove; not necessary with compat 12.
* debian/upstream/signing-key.asc: Minimize.
* debian/gnustep-base-doc.lintian-overrides: New; override
package-contains-documentation-outside-usr-share-doc for a node from
the Texinfo manual in HTML format; it is in GNUSTEP_DOC on purpose.
* debian/gbp.conf: New file.
* debian/templates/gnustep-base-runtime.install.in: Add usr/share/man as
all manpages are installed by the upstream build system; there's no
need to install them explicitly.
* debian/gnustep-base-runtime.manpages: Delete; not really necessary.
* debian/not-installed: New file; explicitly list all files which are
not installed on purpose.
* debian/copyright: Add explicit entry for Source/Additions/Unicode.m,
which is now (a portion of) under the Expat license and copyrighted by
Bjoern Hoehrmann. Bump copyright years for Debian packaging. There
were copyrightable changes upstream in 2018 but these are not actually
reflected in the source files so leave statements as they are.
* debian/clean: Update for the new SONAME.
-- Yavor Doganov <yavor@gnu.org> Tue, 08 Jan 2019 04:07:39 +0200
gnustep-base (1.25.1-4) unstable; urgency=medium
* debian/patches/hurd-systemuptime.patch: New, fix intermittent test
failure/FTBFS on GNU/Hurd when procfs is not available.
* debian/patches/series: Update.
* debian/templates/control.m4: Move Suggests: gnustep-base-doc from
-common to the -dev package as it is most useful for developers.
Remove version requirement; not really needed. Likewise, let the -doc
package recommend -dev without specific version.
* debian/control: Regenerate.
-- Yavor Doganov <yavor@gnu.org> Mon, 21 May 2018 11:11:29 +0300
gnustep-base (1.25.1-3) unstable; urgency=medium
* debian/patches/icu-60.patch: Fix FTBFS on big-endian architectures
(really closes: #888908).
* debian/templates/control.m4 (Standards-Version): Bump to 4.1.4; no
changes required.
* debian/control: Regenerate.
-- Yavor Doganov <yavor@gnu.org> Fri, 11 May 2018 15:55:27 +0300
gnustep-base (1.25.1-2) unstable; urgency=medium
* debian/patches/autogsdoc-reproducibility.patch: Also fix
-mergeMarkup:ofKind:.
* debian/patches/portmessage-msgid.patch: New; cherry-pick as it is
needed by lynkeos.app/2.10.
* debian/patches/icu-60.patch: New; fix testsuite failure/FTBFS with
ICU 60.2 (Closes: #888908).
* debian/patches/series: Update.
* debian/templates/control.m4 (Vcs-Git, Vcs-Browser): Update fields to
point to salsa.debian.org.
* debian/control: Regenerate.
* debian/rules: Remove boilerplate dh_make comments as they trigger a
lintian error.
(override_dh_auto_configure): Pass --disable-icu-config as icu-config
has been removed in icu/59.1-1 (also addresses #888908).
-- Yavor Doganov <yavor@gnu.org> Fri, 16 Feb 2018 09:22:43 +0200
gnustep-base (1.25.1-1) unstable; urgency=medium
* New upstream release:
+ Fixes use-after-free in privateSetLocale; thanks Jakub Wilk for the
bug report (Closes: #880575).
* debian/watch: Track ftp.gnustep.org.
* debian/compat: Bump compat level to 11.
* debian/gnustep-base-runtime.gdomap.default: Remove ENABLED as per
new Policy requirement in 9.3.3.1.
* debian/templates/gnustep-base-runtime.gdomap.init.in: Remove all code
snippets related to ENABLED.
* debian/rules (override_dh_installinit): Pass --no-enable.
(override_dh_auto_build-arch): Pass dpkg-buildflags explicitly as C
files are compiled without hardening flags.
* debian/templates/control.m4 (Build-Depends): Require debhelper (>=
11.1) for dh_insallinit --no-enable.
(Standards-Version): Claim compliance with 4.1.3 as of this release.
* debian/control: Regenerate.
* debian/patches/pkg-config-macro.patch: New, use PKG_PROG_PKG_CONFIG to
find pkg-config; handles cross-compilation properly.
* debian/patches/series: Update.
* debian/tests/testsuite: New; run the whole testsuite.
* debian/tests/control (Tests): Add testsuite.
(Restrictions): Add allow-stderr.
(Depends): Add @builddeps@.
* debian/templates/libgnustep-baseN.lintian-overrides.m4: Remove
no-symbols-control-file as #749202 has been fixed.
* debian/copyright: Update debian copyright years.
-- Yavor Doganov <yavor@gnu.org> Fri, 19 Jan 2018 18:50:53 +0200
gnustep-base (1.25.0-2) unstable; urgency=medium
[ Yavor Doganov ]
* debian/patches/autogsdoc-reproducibility.patch: New; fix
reproducibility issue with autogsdoc.
* debian/patches/series: Update.
* debian/templates/control.m4: Relax some dependencies for smoother
transitions.
* debian/control: Regenerate.
* debian/rules: Remove --with autoreconf; not needed for compat level
10. Handle "noopt" manually to take advantage of gnustep-make's
debug=yes option.
(v_make): Require at least 2.7.0-3 for the optim definition.
(DEB_LDFLAGS_MAINT_APPEND): Add -Wl,--no-undefined.
(override_dh_shlibdeps): Add -runtime to generated shlibs.
* debian/templates/libgnustep-baseN.lintian-overrides.m4: Override
shlibs-declares-dependency-on-other-package.
[ Eric Heintzmann ]
* Upload to unstable.
* debian/templates/control.m4: Mark gnustep-base-doc as Multi-Arch: foreign.
* debian/control: Regenerate.
* debian/changelog: Remove trailing whitespaces.
* debian/rules: Remove trailing whitespace.
-- Eric Heintzmann <heintzmann.eric@free.fr> Sun, 29 Oct 2017 10:16:51 +0100
gnustep-base (1.25.0-1) experimental; urgency=medium
[ Eric Heintzmann ]
* New upstream version 1.25.0:
+ Garbage collection support removed (Closes: #145759).
+ Rename library package as per SONAME change:
- libgnustep-base1.24 -> libgnustep-base1.25
* debian/patches:
+ Remove patches already applied upstream:
- fix-thread-deadlock
- fix-ftbfs-hurd
- fix-spelling-errors3
- fix-ftbfs-s390x
- fix-test-var-size
- fix-ftbfs-kfreebsd
- fix-test-lock
- fix-test-pipe
- info-direntry
- fix-spelling-errors2
- fix-test-includedirs
- fix-test-icu
- fix-spelling-errors
- fix-gdnc
- fix-test-icu2
+ Refresh patches:
- fix-tests-network
- manpage-fixes
+ New fix-spelling-error patch.
* debian/templates/control.m4:
+ Add tzdata to build dependencies.
+ Bump Standards-Version to 4.1.0
+ Update Vcs-Browser field
+ Update Gürkan's name.
* debian/rules:
+ Now build depends on latest gnustep-make
+ Update gobjc version
+ Remove -pie option.
+ Add --as-needed to LDFLAGS.
+ Remove -shared-libgcc LDFLAG, now useless
* Update libgnustep-base-dev.install.in file.
* Remove obsolete symbols file and override lintian warning
* Add a testsuite.
* Update debian/clean file.
[ Yavor Doganov ]
* debian/templates/control.m4: Remove -dbg package; switch to automatic
-dbgsym packages.
(Build-Depends): Require debhelper >= 10. Remove dh-autoreconf, not
necessary with compat level 10.
(gnustep-base-common) <Depends>: Add tzdata; thanks Andreas Beckmann
(Closes: #857153).
(gnustep-base-examples): Remove; move contents to the -doc package.
(gnustep-base-doc): Add appropriate Replaces and Breaks.
(Standards-Version): Bump to 4.1.1; no changes needed.
* debian/control: Regenerate.
* debian/templates/libgnustep-baseN-dbg.docs.in: Delete.
* debian/rules: Replace shell comments with makefile comments.
(p_dbg, p_exam, override_dh_strip): Remove.
(override_dh_installdocs): Remove entirely; --link-doc is unsupported
for packages with different architecture types.
(override_dh_install): Remove; gsdoc files are necessary for correct
references when building other GNUstep documentation.
(override_dh_testdir): New; ensure that control is always regenerated
so that any changes to the template are taken into account.
(override_dh_auto_configure): Remove control generation snippet.
(override_dh_installexamples, override_dh_compress): Act on the -doc
package since -examples is being removed.
* debian/compat: Bump compat level to 10.
* debian/gnustep-base-runtime.mainscript:
* debian/libgnustep-base-dev.maintscript: New; handle the transformation
of symlinks to real directories.
* debian/gnustep-base-examples.examples: Rename as...
* debian/gnustep-base-doc.examples: ...since -examples is moved to -doc.
* debian/gnustep-base-examples.dirs: Delete.
* debian/NEWS: Inform users that examples are now available in -doc.
* debian/copyright: Update copyright years
-- Eric Heintzmann <heintzmann.eric@free.fr> Sat, 07 Oct 2017 17:05:40 +0200
gnustep-base (1.24.9-3.1) unstable; urgency=medium
* Non-maintainer upload.
* Add B-D: tzdata to fix a FTBFS (Closes: #839409).
-- Andrey Rahmatullin <wrar@debian.org> Fri, 03 Feb 2017 00:12:50 +0500
gnustep-base (1.24.9-3) unstable; urgency=medium
* New fix-thread-deadlock patch (Closes: #649419).
* New fix-test-icu2 patch (Closes: #833755).
* Build using default gobjc: update control file.
* Update description of fix-test-lock patch.
* Update debian/copyright file (Thanks to cme).
-- Eric Heintzmann <heintzmann.eric@free.fr> Tue, 09 Aug 2016 18:32:12 +0200
gnustep-base (1.24.9-2) unstable; urgency=medium
* Display Tests/tests.log file if tests fail.
* Now Build-Depends on latest gobjc-5i.
* New fix-spelling-errors3 patch.
* Don't install config.log to avoid unreproducibility issue.
* Display config.log if configure script fails.
* New debian/libgnustep-base1.24.symbols.kfreebsd-amd64 file.
* New debian/libgnustep-base1.24.symbols.kfreebsd-i386 file.
* Thanks to Richard Frith-Macdonald:
+ New fix-ftbfs-hurd patch
+ New fix-test-lock patch to avoid FTFS on non linux arch
+ New fix-ftbfs-s390x patch
+ New fix-ftbfs-kfreebsd patch
+ New fix-test-var-size patch
+ New fix-gdnc patch
+ New fix-tests-timings patch
+ New fix-test-var-size patch:
remove workaround for tests in debian/rules
+ Replace fix-test-chroot patch by fix-test-pipe patch.
-- Eric Heintzmann <heintzmann.eric@free.fr> Mon, 27 Jun 2016 21:09:17 +0200
gnustep-base (1.24.9-1) unstable; urgency=low
* Team upload.
* New Upstream version 1.24.9
* Update fix-spelling-errors.patch
* Update doc-links.patch
* Update info-direntry.patch
* Update pldes-manpage-rename.patch
* Update manpage-fixes.patch
* Update texinfo5.diff
* New fix-test-icu.patch
* New fix-spelling-errors2.patch
* New debian/patches/fix-tests-network.patch
* New fix-test-chroot.patch
* Remove testsuite-fixes.patch, now useless
* Move debian/*.in and debian/*.m4 to new debian/templates directory
+ Update debian/templates/control.m4
- In agreement with the Debian GNUstep maintainers,
add myself as new Co-Maintainer
- Bump Standards-Version to 3.9.8
- Now depends on latest gnustep-make
- Remove unused {gnustep:Depends} variable
- Update Vcs-* fields
- Add build dependency to dh-exec
- Add build dependency to dh-autoreconf,
and remove build dependency to autotools-dev
- Tighten dependencies
+ Update debian/templates/gnustep-base-common.xmlcatalogs.in file
+ Update debian/templates/libgnustep-base-dev.install.in file
+ Rename gnustep-base-runtime.gdomap.in
to gnustep-base-runtime.gdomap.init.i
+ Provide a new debian/templates/gnustep-base-common.install.in file
+ Provide new debian/templates/gnustep-base-common.links.in file
+ Provide new debian/templates/gnustep-base-runtime.install.in file
+ Provide a new debian/templates/gnustep-base-runtime.links.in file
+ Provide a new debian/templates/libgnustep-base-dev.install.in file
+ Provide a new debian/templates/gnustep-base-doc.install.in file
+ Provide a new debian/templates/libgnustep-baseN.install.in file
+ Provide a new debian/templates/libgnustep-baseN-dbg.docs.in file
+ Remove debian/templates/libgnustep-baseN.overrides.m4 file, now useless
* Update debian/watch file to version 4
* Update debian/copyright file
* Update debian/gnustep-base-runtime.lintian-overrides file
* Rename debian/gdomap.default to debian/gnustep-base-runtime.gdomap.default
* Provide a new debian/clean file
* Provide a new debian/gnustep-base-common.docs file
* Provide a new debian/gnustep-base-runtime.manpages file
* Provide a new debian/libgnustep-base1.24.symbols file
* Provide a new debian/gnustep-base-doc.docs file
* Provide a new debian/gnustep-base-examples.dirs file
* Provide a new debian/gnustep-base-examples.examples file
* Remove debian/source.lintian-overrides file, now useless
* Remove debian/upstream/ signing-key.pgp file,
add debian/upstream/signing-key.asc file,
remove debian/source/ include-binaries file
* Rewrite debian/rules for easier maintenance
+ Switch from autotools-dev to dh-autoreconf
+ Use override_dh_* targets
+ Enable hardening
+ Fix crash when runnig tests
-- Eric Heintzmann <heintzmann.eric@free.fr> Thu, 26 May 2016 11:31:39 +0200
gnustep-base (1.24.7-1) unstable; urgency=medium
* New upstream bugfix release:
- SSLv3 is disabled by default because of CVE-2014-3566.
* debian/patches/testsuite-fixes.patch: Remove hunks applied upstream.
Disable some tests that are doomed to fail.
* debian/patches/info-direntry.patch:
* debian/patches/manpage-fixes.patch: Remove hunks applied upstream.
* debian/patches/NSString-buffer-overrun.patch:
* debian/patches/ftbfs-mips64.patch:
* debian/patches/hide-SYSTEM_CONFIG-vars.patch:
* debian/patches/use-local-DTDs.patch:
* debian/patches/CVE-2014-2980.patch:
* debian/patches/kfreebsd-fake-main.patch:
* debian/patches/avoid-nsl-linkage.patch:
* debian/patches/gnutls28.patch:
* debian/patches/alignment-check.patch:
* debian/patches/avoid-tools-extra-linkage.patch:
* debian/patches/maxsymlinks.diff: Delete; applied upstream.
* debian/patches/pldes-manpage-rename.patch: Refresh.
* debian/patches/autoreconf.patch: Delete; no longer needed.
* debian/patches/fix-spelling-errors.patch: New.
* debian/patches/series: Update.
* debian/HTMLLinker.1:
* debian/make_strings.1: Delete; added upstream.
* debian/rules (configure-stamp): Dump config.log to stdout in case of
configure error.
(binary-arch): Install upstream manpages.
* debian/control.m4 (Standards-Version): Bump to 3.9.6; no changes
needed.
* debian/control: Regenerate.
* debian/gnustep-base-common.xmlcatalogs.in: Add new 1_0_4 DTD.
* debian/gnustep-base-runtime.gdomap.in: Check for daemon existence,
thanks Felipe Sateler (Closes: #764526). Create /var/run/gdomap
before the daemon starts.
* debian/gdomap.default: Avoid chroot to /tmp, thanks Ansgar Burchardt
(Closes: #741441).
* debian/gnustep-base-runtime.NEWS: Rename as NEWS as it is not picked
by apt-listchanges.
* debian/watch: Check upstream signature.
* debian/upstream/signing-key.pgp: Add upstream keyring.
* debian/source/include-binaries: New file.
* debian/copyright: Switch to format 1.0, update copyright years.
-- Yavor Doganov <yavor@gnu.org> Wed, 22 Oct 2014 17:36:45 +0300
gnustep-base (1.24.6-2) unstable; urgency=medium
* Upload to unstable.
* debian/compat: Set to 9 to get .build-id debugging symbols.
* debian/control.m4 (Build-Depends): Require debhelper >= 9. Build
against gnutls28, thanks Andreas Metzler (Closes: #753033).
(libgnustep-base`'SOV_BASE-dbg) <Conflicts>: Remove.
<Recommends>: Remove libobjc3-dbg.
* debian/control: Regenerate.
* debian/patches/hurd-ignore-NSURL-test.diff: Delete; apparently no
longer needed.
* debian/patches/ftbfs-mips64.patch: New; fixes FTBFS on mips64(el),
thanks Yunqiang Su (Closes: #753961).
* debian/patches/gnutls28.patch: New; avoid using and linking libgcrypt
with recent GnuTLS.
* debian/patches/NSString-buffer-overrun.patch: New, cherry-picked from
upstream SVN.
* debian/patches/alignment-check.patch: New, fix word-alignment
configure test on sparc. Cherry-picked from upstream.
* debian/patches/testsuite-fixes.patch: New.
* debian/patches/doc-links.patch: Point links to index.html.
* debian/patches/autoreconf.patch: Regenerate.
* debian/patches/series: Update.
* debian/rules (confflags): Define conditionally and pass --host to
configure if cross-compiling.
(install-debug): Install config.log and tests.log to analyze testsuite
failures on the buildds.
-- Yavor Doganov <yavor@gnu.org> Mon, 07 Jul 2014 12:16:59 +0300
gnustep-base (1.24.6-1) experimental; urgency=low
* New upstream release:
- Fixes FTBFS with recent libxml2 (Closes: #738347).
- GNUSTEP_USER_DIRECTORY is no longer created unconditionally (Closes:
#720190).
- Fixes regression in performSelector: with message forwarding
(Closes: #753603).
* Ack NMUs; thanks Matthias Klose, gregor herrmann and Pino Toscano.
* debian/patches/libobjc4.patch:
* debian/patches/recent-libxml2-fix.patch: Remove; fixed upstream.
* debian/patches/kfreebsd-fake-main.patch:
* debian/patches/avoid-nsl-linkage.patch:
* debian/patches/maxsymlinks.diff: Refresh.
* debian/patches/autoreconf.patch: Regenerate.
* debian/patches/texinfo5.diff: Add description.
* debian/patches/hurd-ignore-NSURL-test.diff: Disable for now.
* debian/patches/manpage-fixes.patch: Fix two more issues reported by
lintian.
* debian/patches/info-direntry.patch: Fix few texinfo warnings.
* debian/patches/CVE-2014-2980.patch: New patch from upstream, fixes
gdomap user security hole (Closes: #745470).
* debian/patches/use-local-DTDs.patch: New; use local DTDs to avoid
annoying warnings from autogsdoc when built in a chroot. Thanks
Svante Signell (Closes: #736587).
* debian/patches/hide-SYSTEM_CONFIG-vars.patch: New; fix for upstream
bug #42423.
* debian/patches/doc-links.patch: New; fix some broken links to manuals
in the various -doc packages, thanks js (Closes: #749196).
* debian/patches/series: Update.
* debian/rules (build-arch): Remove dependency on patch.
(binary-indep): Invoke dh_installxmlcatalogs with -n since only DTDs
are being installed, not catalogs (Closes: #637093).
(install-doc): Don't create Developer symlink; useless. Delete all
gsdoc files. Install manually the HTML manuals.
(install-common): Use the system's ca-certificates.crt.
(v_make): Bump to 2.6.6-2, for texi2html related changes and a
gnustep-make bug exposed when linking static libraries.
* debian/gdomap.default:
* debian/gnustep-base-runtime.gdomap.in: Disable the gdomap daemon by
default (Closes: #717773). Provide "fancy" output; thanks Dirk
Sandbrink (Closes: #729588). Remove set -e/-u because of the lsb
logging.
* debian/control.m4 (libgnustep-base`'SOV_BASE-dbg) <Description>: Typo
fix; thanks Pascal De Vuyst (Closes: #697628).
<Conflicts>: Remove libgnustep-base1.20-dbg.
(gnustep-base-doc) <Depends>: Remove dpkg (>= 1.15.4) | install-info.
<Description>: Edit to reflect reality.
(gnustep-base-common) <Depends>: Add ca-certificates, needed for the
GnuTLS support.
(Build-Depends-Indep): Remove texi2html. Remove texlive-base (pulled
in); add texlive-fonts-recommended, needed for the manual.
(Vcs-Git, Vcs-Browser): Use the canonical URIs.
(Standards-Version): Claim compliance with 3.9.5 as of this release.
* debian/control: Regenerate.
* debian/gnustep-base-runtime.postinst.in: Remove obsolete stuff.
* debian/gnustep-base-runtime.prerm.in: Delete; obsolete.
* debian/gnustep-base-runtime.NEWS: New; document that the gdomap daemon
is not started by default.
* debian/copyright: Update copyright years, add more copyright holders
and ISC/Apache 2.0 blurbs. Typo fixes.
* debian/gnustep-base-doc.doc-base.manual:
* debian/gnustep-base-doc.doc-base.standards: Remove Info, add HTML
format.
-- Yavor Doganov <yavor@gnu.org> Sat, 05 Jul 2014 10:45:07 +0300
gnustep-base (1.22.1-4.3) unstable; urgency=low
* Non-maintainer upload.
* Fix FTBFS on hurd-i386: provide MAXSYMLINKS (patch maxsymlinks.diff),
and disable the hanging test NSURL (patch hurd-ignore-NSURL-test.diff).
(Closes: #732642)
-- Pino Toscano <pino@debian.org> Sat, 25 Jan 2014 13:27:48 +0100
gnustep-base (1.22.1-4.2) unstable; urgency=low
* Non-maintainer upload.
* Fix "FTBFS: GSXML.m:983:38: error: dereferencing pointer to
incomplete type":
add patch from Ubuntu / Benjamin Drung:
- Backport upstream fix for recent libxml2.
(Closes: #713666)
-- gregor herrmann <gregoa@debian.org> Sun, 10 Nov 2013 19:57:52 +0100
gnustep-base (1.22.1-4.1) unstable; urgency=low
* Non maintainer upload.
* Fix build failure with texinfo 5.x. Closes: #707509.
* Rebuild for the libffi transition.
-- Matthias Klose <doko@debian.org> Mon, 13 May 2013 13:52:38 +0200
gnustep-base (1.22.1-4) unstable; urgency=low
* debian/rules (build-arch): Depend on the patch target to ensure that
patches are applied when the package is built by the official
buildds.
-- Yavor Doganov <yavor@gnu.org> Wed, 04 Jul 2012 18:58:10 +0300
gnustep-base (1.22.1-3) unstable; urgency=low
* debian/patches/libobjc4.patch: New; fixes FTBFS with gcc-4.7 (Closes:
#667868).
* debian/patches/series: Update.
* debian/control.m4 (libgnustep-base`'SOV_BASE-dbg) <Recommends>: Add
libobjc4-dbg as alternative.
* debian/control: Regenerate.
-- Yavor Doganov <yavor@gnu.org> Wed, 04 Jul 2012 13:40:56 +0300
gnustep-base (1.24.0-1) experimental; urgency=low
* New major upstream release:
+ Fixes FTBFS with GCC-4.7 (Closes: #667868).
+ Does not create empty ~/GNUstep directory by default (Closes: #643305).
* debian/control.m4 (Build-Depends): Remove quilt.
(libgnustep-base`'SOV_BASE-dbg) <Recommends>: Add libobjc4-dbg as
alternative.
<Conflicts>: Add libgnustep-base1.22-dbg.
(Standards-Version): Bump to 3.9.3; no changes needed.
* debian/control: Regenerate.
* debian/source/format: Switch to 3.0 (quilt).
* debian/README.source: Delete; redundant.
* debian/rules: Don't include /usr/share/quilt/quilt.make. Remove quilt
patch/unpatch stuff. Don't bother messing with CC as it fails the
configure test. Build with hardening enabled.
* debian/patches/gnutls-deprecated.patch: Remove; fixed upstream.
* debian/patches/kfreebsd-fake-main.patch:
* debian/patches/avoid-nsl-linkage.patch: Refresh.
* debian/patches/autoreconf.patch: Regenerate.
* debian/patches/series: Update.
* debian/gnustep-base-runtime.gdomap.in: Add LSB Description keyword.
* debian/gnustep-base-runtime.lintian-overrides: New, override hardening
false positives.
* debian/copyright: Update copyright years.
-- Yavor Doganov <yavor@gnu.org> Mon, 21 May 2012 16:22:29 +0300
gnustep-base (1.22.1-2) unstable; urgency=low
* debian/patches/kfreebsd-fake-main.patch: New; treat GNU/kFreeBSD as
GS_FAKE_MAIN platform because programs with many arguments abort
(Closes: #644868).
* debian/patches/autoreconf.patch: Regenerate.
* debian/patches/series: Update.
* debian/gnustep-base-runtime.gdomap.in: Add support for the `status'
action, thanks Peter Eisentraut (Closes: #646844).
* debian/control.m4 (gnustep-base-runtime) <Depends>: Add lsb-base.
* debian/control: Regenerate.
-- Yavor Doganov <yavor@gnu.org> Thu, 03 Nov 2011 19:58:33 +0200
gnustep-base (1.22.1-1) unstable; urgency=low
* New upstream release:
+ Fixes implicit declaration of function (Closes: #629216).
* debian/rules (v_make): Set to 2.6.1.
(install-common): Do not delete non-existent .swp file.
* debian/control.m4 (Build-Depends): Remove gobjc; gnustep-make now
depends on it.
(libgnustep-base-dev) <Depends>: Likewise.
(Suggests): Remove; completely pointless.
* debian/control: Regenerate.
* debian/patches/avoid-nsl-linkage.patch: Refresh.
* debian/patches/autoreconf.patch: Regenerate.
-- Yavor Doganov <yavor@gnu.org> Thu, 15 Sep 2011 12:31:15 +0300
gnustep-base (1.22.0-1) experimental; urgency=low
* New major upstream release:
+ Includes support for the new Objective-C runtime (Closes: #624928).
* debian/control.m4 (Vcs-Arch): Replace with...
(Vcs-Git): ...since tla-buildpackage is gone.
(Vcs-Browser): New field.
(Standards-Version): Bump to 3.9.2; no changes needed.
(Build-Depends): Add libicu-dev, needed for NSLocale.
(libgnustep-base`'SOV_BASE-dbg) <Conflicts>: Set to
libgnustep-base1.20-dbg only.
<Recommends>: Set to libobjc3-dbg.
* debian/control: Regenerate.
* debian/patches/gnutls-deprecated.patch: New; fix usage of deprecated
GnuTLS function (Closes: #624054).
* debian/patches/missing-header.patch:
* debian/patches/no-march.patch: Delete; fixed upstream.
* debian/patches/NSBundle-PROCFS_EXE_LINK.patch: Delete; apparently not
needed anymore.
* debian/patches/manpage-fixes.patch: A few more fixes.
* debian/patches/avoid-nsl-linkage.patch: Refresh.
* debian/patches/autoreconf.patch: Regenerate.
* debian/patches/series: Update.
* debian/rules (v_objc, v_make): Bump to 4:4.6 (for libobjc3) and 2.6
(for the sake of the testsuite) accordingly.
(debian/build-shared-stamp): Run the testsuite.
(install-shared): Do not delete non-existent .swp file.
(install-common): Use $(sov_base) instead of hardcoded version.
* debian/copyright: Update copyright years.
-- Yavor Doganov <yavor@gnu.org> Tue, 31 May 2011 11:03:16 +0300
gnustep-base (1.20.2-2) unstable; urgency=medium
* debian/patches/missing-header.patch: New; install
NSNetServices+GNUstepBase.h (Closes: #614480).
* debian/patches/series: Update.
-- Yavor Doganov <yavor@gnu.org> Tue, 08 Mar 2011 18:47:59 +0200
gnustep-base (1.20.2-1) unstable; urgency=low
* New upstream release.
* debian/control.m4 (Build-Depends): Replace
libavahi-compat-libdnssd-dev with libavahi-client-dev; NSNetServices
has been rewritten to use Avahi natively (Closes: #588396).
* debian/control: Regenerate.
* debian/rules (binary-arch): Revert last change.
* debian/patches/hppa-pthread-alignment.patch: Remove; present upstream.
* debian/patches/avoid-nsl-linkage.patch: Refresh.
* debian/patches/autoreconf.patch: Regenerate.
* debian/patches/series: Update.
-- Yavor Doganov <yavor@gnu.org> Sun, 13 Feb 2011 12:06:09 +0200
gnustep-base (1.20.1-6) unstable; urgency=high
* debian/rules (binary-arch): Pass -R to dh_installinit to facilitate
upgrades from lenny (really closes: #605565). Thanks Axel Beckert and
Julien Cristau.
-- Yavor Doganov <yavor@gnu.org> Wed, 29 Dec 2010 20:02:39 +0200
gnustep-base (1.20.1-5) unstable; urgency=high
* debian/gnustep-base-runtime.gdomap.in: Pass --oknodo to
start-stop-daemon; thanks Adam Borowski (Closes: #605565).
-- Yavor Doganov <yavor@gnu.org> Wed, 01 Dec 2010 19:00:25 +0200
gnustep-base (1.20.1-4) unstable; urgency=medium
* debian/control.m4 (Build-Depends): Remove libkvm-dev; current
GNU/kFreeBSD supports /proc and the HAVE_KVM_ENV code branch leads to
aborts when programs are started with many arguments (Closes:
#593898). Thanks to Axel Beckert for the report and testing.
* debian/control: Regenerate.
* debian/rules (KVM_ARCHS): Remove.
(debian/control debian/control.tmp): Do not define the KVM_ARCHS
macro.
(debian/configure-stamp): Pass ac_cv_lib_kvm_kvm_getenvv=no to
`configure' to ensure that the /proc implementation in NSProcessInfo
is used even if libkvm-dev happens to be installed.
-- Yavor Doganov <yavor@gnu.org> Fri, 27 Aug 2010 21:05:22 +0300
gnustep-base (1.20.1-3) unstable; urgency=medium
* debian/patches/hppa-pthread-alignment.patch: New; check for alignment
of pthread types and align the opaque gs_* equivalents accordingly,
making the library usable again on hppa (Closes: #592751). Thanks to
dann frazier and Mehdi Dogguy for their tireless assistance, and to
Carlos O'Donell for pointing out where the bug lies.
* debian/patches/autoreconf.patch: Regenerate.
* debian/patches/series: Update.
-- Yavor Doganov <yavor@gnu.org> Fri, 20 Aug 2010 09:36:47 +0300
gnustep-base (1.20.1-2) unstable; urgency=low
* Upload to unstable.
* debian/control.m4 (libgnustep-base`'SOV_BASE-dbg) <Conflicts>:
Add libgnustep-base1.16-dbg, libgnustep-base1.16-libffi-dbg,
libgnustep-base1.19-dbg.
(Standards-Version): Compliant with 3.9.1; no changes needed.
* debian/control: Regenerate.
-- Yavor Doganov <yavor@gnu.org> Tue, 10 Aug 2010 14:02:25 +0300
gnustep-base (1.20.1-1) experimental; urgency=low
* New upstream bugfix release:
+ Fixes whitespace handling in XML property lists (Closes: #583804).
+ Fixes FTBFS on GNU/kFreeBSD (Closes: #583825).
* debian/patches/avoid-nsl-linkage.patch: Refresh.
* debian/patches/autoreconf.patch: Regenerate.
* debian/rules (LDFLAGS): Revert last change; gnustep_base_user_main is
declared `weak' as of this release, so this should allow
-Wl,--no-undefined.
(install-common): Delete a useless backup file.
* debian/watch: Track only stable releases.
-- Yavor Doganov <yavor@gnu.org> Mon, 21 Jun 2010 19:57:31 +0300
gnustep-base (1.20.0-1) experimental; urgency=low
* New major upstream release.
* debian/control.m4 (Description): Don't praise the OpenStep API.
(libgnustep-base`'SOV_BASE-dbg): Recommend libobjc2-dbg.
* debian/control: Regenerate, which automatically reflects the SONAME
change as well.
* debian/rules (OPTFLAG): Remove and rework `noopt' handling to be
compatible with gnustep-make/2.4.x.
* debian/patches/powerpc-asm-local-labels.patch:
* debian/patches/gdomap-bug29755.patch: Remove; already present
upstream.
* debian/patches/no-march.patch: New; avoid passing -march=i686 to GCC
as Debian's minimum supported x86 CPU is i486.
* debian/patches/autoreconf.patch: Regenerate.
* Refresh all other patches.
* debian/patches/series: Update.
* debian/gnustep-base-runtime.postinst.in: Remove the override for
/usr/lib/GNUstep/System/Tools/gdomap if it exists; apparently some
systems still have it as it was not properly cleaned up during the
gnustep-make 1.x -> 2.x transition.
* debian/source.lintian-overrides: New file; override
debian-rules-calls-debhelper-in-odd-order as it is entirely legitimate
in our case.
* debian/copyright: Add new copyright holders and bump copyright years.
Add license for the ObjectiveC2 framework, and clarify that the
library as a whole remains under LGPLv2.1+.
-- Yavor Doganov <yavor@gnu.org> Tue, 18 May 2010 11:03:40 +0300
gnustep-base (1.19.3-3) unstable; urgency=low
* debian/patches/powerpc-asm-local-labels.patch: New; should fix FTBFS
on powerpc with GCC 4.4 and above.
* debian/patches/series: Update.
* debian/rules (LDFLAGS): Conditionally define to avoid FTBFS on
GNU/Hurd.
-- Yavor Doganov <yavor@gnu.org> Mon, 10 May 2010 14:10:50 +0300
gnustep-base (1.19.3-2) unstable; urgency=high
* debian/control.m4: Wrap all fields for diff-friendliness.
(Uploaders): Add myself, remove Hubert.
(Section): Change to `gnustep' to match the override file.
(Standards-Version): Claim compliance to 3.8.4 as of this release.
(Build-Depends): Drop obsolete version requirement of libffi-dev. Add
quilt.
(gnustep-base-common) <Section>: Remove.
(gnustep-base-runtime) <Section>: Likewise.
<Description>: Extend short description.
<Conflicts, Replaces>: Remove; obsolete.
(libgnustep-base`'SOV_BASE) <Conflicts, Replaces>: Likewise.
(libgnustep-base-dev): <Conflicts, Replaces, Provides>: Likewise.
<Depends>: Remove ${shlibs:Depends}.
(libgnustep-base`'SOV_BASE-dbg) <Section>: Change to `debug'.
<Provides, Conflicts>: Remove; not needed.
<Depends>: Remove ${shlibs:Depends}.
(gnustep-base-examples) <Depends>: Likewise.
(gnustep-base-doc) <Conflicts>: Remove.
<Recommends>: Replace the runtime library with the -dev package.
<Depends>: Add ${misc:Depends} and dpkg (>= 1.15.4) | install-info as
per Policy 12.2.
<Description>: Extend.
(Homepage, Vcs-Arch): New fields.
* debian/control: Regenerate.
* debian/rules: Do not invoke dh_installdirs without arguments. Include
/usr/share/GNUstep/debian/config.mk, /usr/share/quilt/quilt.make and
adjust the rules accordingly. Do not use gs_make.
(LDFLAGS): Define to -Wl,-z,defs -Wl,--as-needed.
(OPTFLAG): Define conditionally based on the presence of `noopt' in
DEB_BUILD_OPTIONS.
(debian/build-shared-stamp, debian/build-static-stamp): Use it.
(debian/configure-stamp): Pass LDFLAGS and --disable-bfd (Addresses:
#528005).
(debian/libgnustep-base$(sov_base).lintian-overrides): New rule to
generate automatically a lintian override file.
(clean_files): Add debian/libgnustep-base$(sov_base).lintian-overrides.
(install-doc): Rename the Info manuals to be less ambiguous.
(binary-arch): Add debian/libgnustep-base$(sov_base).lintian-overrides
to prerequisites. Invoke dh_lintian. Install the newly added manual
pages.
* debian/patches/pldes-manpage-rename.patch:
* debian/patches/NSBundle-PROCFS_EXE_LINK.patch: Add, extracted from the
diff.gz.
* debian/patches/avoid-tools-extra-linkage.patch: New, avoid linking the
tools against all the external libraries that gnustep-base depends
upon.
* debian/patches/avoid-nsl-linkage.patch: New, use AC_SEARCH_LIBS
instead of AC_CHECK_LIB to avoid useless linking against libnsl.
* debian/patches/autoreconf.patch: New.
* debian/patches/manpage-fixes.patch: New, fix some errors from man.
* debian/patches/info-direntry.patch: New, use appropriate @dircategory
and @direntry for the Info manuals.
* debian/patches/gdomap-bug29755.patch: New, fix for some severe
security issues; taken from upstream SVN (CVE-2010-1457,
CVE-2010-1620).
* debian/patches/series:
* debian/source/format:
* debian/README.source: New file.
* debian/watch: Pass opts=pasv; don't uupdate.
* debian/libgnustep-baseN.overrides.m4: New file, a template for the
lintian overrides.
* debian/gnustep-base-doc.doc-base.base:
* debian/gnustep-base-doc.doc-base.additions:
* debian/gnustep-base-doc.doc-base.tools:
* debian/gnustep-base-doc.doc-base.manual:
* debian/gnustep-base-doc.doc-base.standards: New files.
* debian/gnustep-base-runtime.gdomap.in: Don't test for the presence of
GNUstep.sh and do not source it -- the file is no longer executable,
so this causes the init script to exit prematurely (Closes: #560740).
* debian/gnustep-base-runtime.postinst.in: Make sure gdomap is not
installed setuid root. Remove obsolete code for gdnc and
/var/run/GNUstep.
* debian/HTMLLinker.1:
* debian/make_strings.1: New manpages.
* debian/copyright: Indicate that the daemons/tools are under GPLv3+
now. Update copyright years.
-- Yavor Doganov <yavor@gnu.org> Thu, 06 May 2010 10:25:31 +0300
gnustep-base (1.19.3-1) unstable; urgency=low
* New upstream version.
* Bump standards version.
-- Gürkan Sengün <gurkan@phys.ethz.ch> Wed, 18 Nov 2009 12:59:52 +0100
gnustep-base (1.19.0-2) unstable; urgency=low
* Upload to unstable.
-- Hubert Chathi <uhoreg@debian.org> Sat, 11 Apr 2009 13:30:33 -0400
gnustep-base (1.19.0-1) experimental; urgency=low
[Gürkan Sengün]
* New upstream version.
* Bump standards version.
* Bump debhelper version.
* Add myself to Uploaders field.
[Hubert Chathi]
* Don't use ffcall any more; only build using libffi.
* Bump required gnustep-make versions.
* Force installation to system domain.
* Target to experimental distribution.
-- Gürkan Sengün <gurkan@phys.ethz.ch> Fri, 20 Feb 2009 17:25:20 +0100
gnustep-base (1.16.3-3) unstable; urgency=low
* debian/rules: Use the right variable for the info document directory.
(Thanks to Yavor.) (Closes: #489279)
-- Hubert Chathi <uhoreg@debian.org> Fri, 08 Aug 2008 14:19:00 -0400
gnustep-base (1.16.3-2) unstable; urgency=low
* debian/rules: Don't build against libffi on non-libffi packages.
-- Hubert Chathi <uhoreg@debian.org> Sat, 19 Jul 2008 11:36:33 -0400
gnustep-base (1.16.3-1) unstable; urgency=low
* New upstream release.
-- Hubert Chathi <uhoreg@debian.org> Thu, 17 Jul 2008 15:14:56 -0400
gnustep-base (1.16.1-3) unstable; urgency=low
* debian/control: Build-depend against texlive-base, texlive-latex-base
instead of texlive-base-bin.
-- Hubert Chathi <uhoreg@debian.org> Fri, 04 Jul 2008 18:46:35 -0400
gnustep-base (1.16.1-2) unstable; urgency=low
* Upload to unstable.
-- Hubert Chathi <uhoreg@debian.org> Wed, 02 Jul 2008 12:02:59 -0400
gnustep-base (1.16.1-1) experimental; urgency=low
* New upstream release.
-- Hubert Chathi <uhoreg@debian.org> Fri, 20 Jun 2008 10:28:32 -0400
gnustep-base (1.16.0-1) experimental; urgency=low
* New upstream version. (Closes: #467583)
* debian/control, debian/rules: Build against libgnutls instead of libssl.
* No longer builds SSL bundle. (Closes: #479074)
* debian/control: Build against libavahi.
* debian/control: Add dependencies on ${gnustep:Depends}.
* debian/control: Tweak dependencies for lib-dbg packages.
-- Hubert Chathi <uhoreg@debian.org> Sun, 15 Jun 2008 18:50:11 -0400
gnustep-base (1.14.1-8) unstable; urgency=low
* debian/control: Build-Depend on a recent version of libffi-dev --
older versions seem to be failing.
* debian/rules: Calculate libgnustep-base's shlibs dependency separately
to avoid dependency on gnustep-base-runtime. (Closes: #478757)
-- Hubert Chathi <uhoreg@debian.org> Wed, 30 Apr 2008 17:31:30 -0400
gnustep-base (1.14.1-7) unstable; urgency=low
* debian/README.Debian: Remove obsolete information.
-- Hubert Chathi <uhoreg@debian.org> Thu, 10 Apr 2008 16:12:22 -0400
gnustep-base (1.14.1-6) unstable; urgency=low
* debian/control: s/libffi4-dev/libffi-dev/ (Closes: #472150)
-- Hubert Chathi <uhoreg@debian.org> Tue, 01 Apr 2008 09:50:15 -0400
gnustep-base (1.14.1-5) unstable; urgency=low
* Upload to unstable.
* Source/NSMessagePortNameServer.m: Add upstream patch to use locks to
prevent interference between processes. (closes: #463416)
-- Hubert Chathi <uhoreg@debian.org> Thu, 13 Mar 2008 15:20:57 -0400
gnustep-base (1.14.1-4) experimental; urgency=low
* debian/copyright: Add copyright info, update note about
common-licenses to point to specific the version of the license as
well as the latest version.
* debian/gnustep-base-runtime.gdomap.in: Add LSB init information, as
provided by Petter Reinholdtsen. (closes: #460224)
* debian/control, debian/rules: Add debugging package. (closes: #468125)
* debian/rules (binary-arch): Remove call to strip. (dh_strip should be
sufficient)
* debian/control, debian/compat: Debhelper compatibility level 5.
* debian/control (Standards-Version): Bump to 3.7.3.
* debian/rules: SSL bundle should be in library package, instead of runtime.
* Compile both ffcall and libffi versions of the library, if supported by the
architecture.
* debian/rules: Compile both ffcall and libffi versions; install ffcall
version by default, install libffi version in libgnustep-base-ffi, change
debhelper calls from "-a" to "-s" where necessary.
* debian/control: Add new packages libgnustep-base-ffi and
libgnustep-base-ffi-dbg that contain the libffi versions.
* debian/libgnustep-base-ffi*: Divert non-ffi versions of library.
* debian/libgnustep-base-ffi.override.in: Override lintian warnings about
normal library stuff (these things are handled in libgnustep-base
instead).
* debian/rules, debian/gnustep-base-common.xmlcatalogs.in: Fix registering
with xml-core.
* debian/control (libgnustep-base-dev): Change some Depends: to Suggests:
(only needed for static linking).
-- Hubert Chathi <uhoreg@debian.org> Sat, 08 Mar 2008 14:40:38 -0500
gnustep-base (1.14.1-3) experimental; urgency=low
* debian/control, debian/rules, debian/README.Debian: use libffi for all
architectures instead of ffcall. Not being able to run on machines with
security features enabled doesn't give Hubert a warm fuzzy feeling.
(closes: #453242)
(but make it reasonably easy to recompile with ffcall, if wanted)
* Tools/gdomap.h: patch to use the correct mask for UDP. (patch by
Philippe Roussel)
-- Hubert Chathi <uhoreg@debian.org> Tue, 11 Dec 2007 21:21:45 -0500
gnustep-base (1.14.1-2) unstable; urgency=low
* debian/control: Make sure that debian/control doesn't change on ffcall
architectures.
-- Hubert Chathi <uhoreg@debian.org> Fri, 23 Nov 2007 18:07:43 -0500
gnustep-base (1.14.1-1) unstable; urgency=low
* New upstream release.
* debian/rules: remove .../NSTimeZones/.README.swp
* debian/rules debian/control:Use libffi for arm, since ffcall is officially
"untested" on arm. (closes: #449163)
* debian/control: Use source:Version and binary:Version instead of deprecated
Source-Version, plus other cleanups and fixes.
-- Hubert Chathi <uhoreg@debian.org> Wed, 21 Nov 2007 16:25:14 -0500
gnustep-base (1.14.0-2) unstable; urgency=low
* Upload to unstable.
-- Hubert Chathi <uhoreg@debian.org> Wed, 3 Oct 2007 17:16:39 -0400
gnustep-base (1.14.0-1) experimental; urgency=low
* New upstream release.
* Don't use /proc/<pid>/exe link, as it is broken on the LiveCD.
* Update build-depends for texlive.
* Register DTDs with xml-core.
* Remove duplicated information from README.Debian.
-- Hubert Chan <uhoreg@debian.org> Thu, 28 Jun 2007 18:28:03 -0400
gnustep-base (1.13.0-7) unstable; urgency=low
* Revert conflict: with tendra; rename pl binary to plio, as per Section
10.1 of Policy. (really closes: #402558)
-- Hubert Chan <uhoreg@debian.org> Tue, 12 Dec 2006 13:31:22 -0500
gnustep-base (1.13.0-6) unstable; urgency=low
* gnustep-base-runtime: Conflict: with tendra, since they both contain
the pl binary and manpage. (Closes: #402558)
-- Hubert Chan <uhoreg@debian.org> Mon, 11 Dec 2006 16:33:09 -0500
gnustep-base (1.13.0-5) unstable; urgency=low
* Remove obsolete dependency on timezoneconf. (Closes: #397423)
* Add tool symlinks and manpage symlinks for various tools.
-- Hubert Chan <uhoreg@debian.org> Tue, 7 Nov 2006 22:46:31 -0500
gnustep-base (1.13.0-4) unstable; urgency=low
* New maintainer address.
* Move /etc/init.d/gdomap to gnustep-base-runtime (thanks to Yavor for
spotting this).
* Remove unnecessary conflicts with old libgnustep-gui.
-- Hubert Chan <uhoreg@debian.org> Tue, 17 Oct 2006 22:53:01 -0400
gnustep-base (1.13.0-3) unstable; urgency=low
* Provide: the right -dev package name this time.
-- Hubert Chan <hubert@uhoreg.ca> Wed, 27 Sep 2006 13:17:19 -0400
gnustep-base (1.13.0-2) unstable; urgency=low
* Provide: old -dev package name, to allow binNMUs of GNUstep packages.
* Fix /usr/lib/debug/libgnustep-base.so symlink.
-- Hubert Chan <hubert@uhoreg.ca> Mon, 25 Sep 2006 18:33:35 -0400
gnustep-base (1.13.0-1) unstable; urgency=low
* New upstream release.
* Minor improvements to debian/control generation.
-- Hubert Chan <hubert@uhoreg.ca> Mon, 28 Aug 2006 16:26:03 -0600
gnustep-base (1.12.0-1) experimental; urgency=low
* New upstream version.
* Improved rules file.
* Drop SONAME from -dev package instead of bumping it to new SONAME, as
that is what ftpmaster seems to prefer now.
* Fix -dbg package to behave like other -dbg packages and put the
libraries in /usr/lib/debug.
* Sync kfreebsd-amd64 Build-Depends: with kfreebsd-i386. (Closes: #361461)
* Change priority of -dbg package to extra, to agree with override file.
* Get rid of circular dependency. (Closes: #359158)
- Split off -runtime package from -common to contain all needed runtime
support binaries.
- -common now only contains data files and is now Arch: all.
- Add -runtime to shlibs file, so that all programs that compile against
this library will depend on it.
* Bump standards version to 3.7.2 (no changes).
* Move base.make to -dev package since it's only needed for development.
* Add license headers to copyright file.
-- Hubert Chan <hubert@uhoreg.ca> Mon, 14 Aug 2006 20:21:23 -0600
gnustep-base (1.11.2-3) unstable; urgency=low
* Fix check for word-aligned shorts/ints. (Closes: #362192)
-- Hubert Chan <hubert@uhoreg.ca> Sat, 22 Apr 2006 15:59:19 -0600
gnustep-base (1.11.2-2) unstable; urgency=low
* Fix typo in NSTimeZones/localtime symlink.
-- Hubert Chan <hubert@uhoreg.ca> Mon, 2 Jan 2006 16:29:50 -0700
gnustep-base (1.11.2-1) unstable; urgency=low
[ Hubert Chan ]
* New upstream release.
[ Christoph Berg ]
* Point gdomap symlink to /usr/sbin.
-- Christoph Berg <myon@debian.org> Thu, 29 Dec 2005 18:14:22 +0100
gnustep-base (1.11.1-1) unstable; urgency=low
* New upstream release.
* Build with new gnustep-make.
* Remove unneeded lintian and linda overrides.
* Remove temporary files from an old build.
-- Hubert Chan <hubert@uhoreg.ca> Mon, 12 Dec 2005 20:32:34 -0500
gnustep-base (1.10.3-2) unstable; urgency=low
* Rebuild using gcc/gobjc 4.0.
* debian/control.m4:
- Bump Standards-Version to 3.6.2.1.
- Clean Replaces and Conflicts fields.
- As recommended by Adam Fedor and Fred Kiefer,
add libgmp3-dev in Build-Conflicts field (closes: #321495).
* debian/rules:
- add ppc64 to FFCALL_ARCHS (closes: #324105).
- add hurd-i386 in the FFCALL_ARCHS (closes: #309073).
* Source/mframe.m:
- Use latest CVS version to avoid ICE on all architectures.
-- Eric Heintzmann <eric@gnustep.fr.st> Sat, 27 Aug 2005 00:16:24 +0200
gnustep-base (1.10.3-1) unstable; urgency=low
* New upstream release.
-- Eric Heintzmann <eric@gnustep.fr.st> Sun, 17 Apr 2005 00:14:38 +0200
gnustep-base (1.10.2-1) unstable; urgency=low
* New upstream release.
* Add *BSD support (closes: #267889).
* .README.swp removed (closes: #285460). Thanks to Robert Millan.
* Overrides inappropriate linda warnings.
-- Eric Heintzmann <eric@gnustep.fr.st> Sat, 2 Apr 2005 11:32:30 +0200
gnustep-base (1.10.1-3) unstable; urgency=low
* Build-depend on ffcall-dev on all architectures, drop build dependency
on libffi2-dev.
-- Matthias Klose <doko@debian.org> Tue, 29 Mar 2005 00:43:33 +0200
gnustep-base (1.10.1-2) unstable; urgency=low
* Upload in unstable.
-- Eric Heintzmann <eric@gnustep.fr.st> Thu, 4 Nov 2004 20:14:51 +0100
gnustep-base (1.10.1-1) experimental; urgency=low
* New upstream release.
* Upload in experimental.
-- Eric Heintzmann <eric@gnustep.fr.st> Sat, 30 Oct 2004 18:23:41 +0200
gnustep-base (1.10.0-1) unstable; urgency=low
* New upstream release.
* debian/control.m4:
- Remove empty transitionnal package gnustep-base1.
- Bump Standards-Version to 3.6.1.1.
* SONAME has changed, thus lib packages has been renamed:
- libgnustep-base1 -> libnustep-base1.10
- libgnustep-base1-dev -> libnustep-base1.10-dev
- libgnustep-base1-dbg -> libnustep-base1.10-dbg
* As recommended by Adam Fedor and Fred Kiefer,
remove GMP dependencies.
-- Eric Heintzmann <eric@gnustep.fr.st> Mon, 25 Oct 2004 20:26:35 +0200
gnustep-base (1.9.2-6) unstable; urgency=medium
* Sources/NSTimeZones.m :
apply NSTimeZone stucture packing patch from CVS
(avoid Core dump on arm).
* debian/control.m4:
-libgnustep-base1 now depends on gnustep-base-common
(>= {Source:Version}) and not (= {Source:Version})
(needed if we want to install multiple version of shared lib).
-Add {shlibs:Depends} and {misc:Depends} in
libgnustep-base1-dbg Depends field.
-libgnustep-base1-dev now depends on libxslt1-dev and libssl-dev.
* Regenerate debian/control file:
add amd64 in Build-Depends (closes: #247141).
-- Eric Heintzmann <eric@gnustep.fr.st> Sat, 10 Jul 2004 17:33:06 +0200
gnustep-base (1.9.2-5) unstable; urgency=low
* Add build-indep dependency on tetex-bin (closes: #257801).
* Add amd64 support (addresses: #247141).
-- Matthias Klose <doko@debian.org> Tue, 6 Jul 2004 07:26:39 +0200
gnustep-base (1.9.2-4) unstable; urgency=low
* Tighten build dependency on ffcall.
-- Matthias Klose <doko@debian.org> Sat, 3 Jul 2004 06:46:37 +0200
gnustep-base (1.9.2-3) unstable; urgency=low
* Fix symbolic link to shared library.
-- Matthias Klose <doko@debian.org> Mon, 28 Jun 2004 07:11:06 +0200
gnustep-base (1.9.2-2) unstable; urgency=low
* Provide wrapper scripts for GNUstep tools (closes: #256147).
-- Matthias Klose <doko@debian.org> Fri, 25 Jun 2004 21:39:41 +0200
gnustep-base (1.9.2-1) unstable; urgency=low
* New upstream release.
* debian/control.m4:
-Update Debian GNUstep maintainers e-mail
-New build-dependancy: libxslt1-dev
* Sources/NSUserDefaults.m:
Apply Richard Frith-Macdonald's patch from CVS
(allow to build all the documentation).
* New Packaging scheme. Apply all recommendations of the
Debian Library Packaging Guide:
- gnustep-base1 is now an empty transitional package.
- gnustep-base1-dev has been renamed in libgnustep-base1-dev.
- gnustep-base1-dbg has been renamed in libgnustep-base1-dbg.
- new gnustep-base-common package (common files).
- new libgnustep-base1 package (shared library).
-- Eric Heintzmann <eric@gnustep.fr.st> Mon, 14 Jun 2004 19:33:29 +0200
gnustep-base (1.9.1-2) unstable; urgency=low
* debian/rules: Update CC.
* Source/NSUserDefaults: apply patch from CVS.
-- Eric Heintzmann <eric@gnustep.fr.st> Tue, 6 Apr 2004 15:21:11 +0200
gnustep-base (1.9.1-1) unstable; urgency=low
* New upstream release.
-- Eric Heintzmann <eric@gnustep.fr.st> Sun, 14 Mar 2004 20:16:48 +0100
gnustep-base (1.9.0-4) unstable; urgency=low
* Use Source/simple-load.h from CVS:
resolves problems when loading frameworks.
-- Eric Heintzmann <eric@gnustep.fr.st> Mon, 16 Feb 2004 22:42:37 +0100
gnustep-base (1.9.0-3) unstable; urgency=low
* Build-Depend on ffcall1-dev on mips (closes: #229844).
-- Matthias Klose <doko@debian.org> Thu, 29 Jan 2004 00:08:53 +0100
gnustep-base (1.9.0-2) unstable; urgency=low
* Add conflict with gnustep-gui 0.9.0.
-- Eric Heintzmann <eric@gnustep.fr.st> Fri, 19 Dec 2003 19:39:16 +0100
gnustep-base (1.9.0-1) unstable; urgency=low
* New upstream release.
-- Eric Heintzmann <eric@gnustep.fr.st> Sat, 13 Dec 2003 23:45:29 +0100
gnustep-base (1.8.0-2) unstable; urgency=medium
* Make libffcall-dev/libffi-dev build dependencies more strict.
-- Matthias Klose <doko@debian.org> Mon, 6 Oct 2003 21:44:11 +0200
gnustep-base (1.8.0-1) unstable; urgency=low
* New upstream release.
* gnustep-base1 now depends on timezoneconf (closes: #213157).
-- Eric Heintzmann <eric@gnustep.fr.st> Tue, 30 Sep 2003 12:21:41 +0200
gnustep-base (1.7.3-2) unstable; urgency=low
* Do not start gdnc at boot time.
* Update debian/README.Debian file.
-- Eric Heintzmann <eric@gnustep.fr.st> Wed, 24 Sep 2003 17:52:10 +0200
gnustep-base (1.7.3-1) unstable; urgency=low
* New upstream release.
* Update to standard version 3.6.1.
* debian/control file : update Conflicts fields.
-- Eric Heintzmann <eric@gnustep.fr.st> Tue, 26 Aug 2003 17:03:07 +0200
gnustep-base (1.7.2-2) unstable; urgency=low
* New Co-Maintainer.
* Update to standard version 3.6.0.
* Patch Tools/gdnc.m (properly daemonize gdnc).
* Add "-V" option to dh_makeshlibs.
-- Eric Heintzmann <eric@gnustep.fr.st> Fri, 22 Aug 2003 23:26:55 +0200
gnustep-base (1.7.2-1) unstable; urgency=low
* New upstream release.
* Update debian/rules to use flattened directory structure :
remove GS_HOST, GS_CPU, GS_OS, GS_LIB_DIR, GS_COMBO_DIR variables.
* Install new gdnc manpage (closes: #166368).
-- Eric Heintzmann <eric@gnustep.fr.st> Thu, 24 Jul 2003 18:33:29 +0200
gnustep-base (1.7.1-6) unstable; urgency=low
* Add m4 to the build dependencies (the autoconf build dependency
was removed in 1.7.1-1 without adding the m4 dependency).
-- Matthias Klose <doko@debian.org> Wed, 23 Jul 2003 11:05:32 +0200
gnustep-base (1.7.1-5) unstable; urgency=low
* Fix check to detect procfs support.
-- Matthias Klose <doko@debian.org> Wed, 23 Jul 2003 07:47:10 +0200
gnustep-base (1.7.1-4) unstable; urgency=low
* Add zlib1g-dev to build dependencies (closes: #202279).
* Fix typo in extracting the CC used in gnustep-make.
* Turn on verbose build.
-- Matthias Klose <doko@debian.org> Tue, 22 Jul 2003 08:48:33 +0200
gnustep-base (1.7.1-3) unstable; urgency=low
* Don't depend build target on build-indep target.
-- Matthias Klose <doko@debian.org> Fri, 18 Jul 2003 06:44:47 +0200
gnustep-base (1.7.1-2) unstable; urgency=low
* Updates to the build system.
-- Matthias Klose <doko@debian.org> Wed, 16 Jul 2003 00:15:03 +0200
gnustep-base (1.7.1-1) unstable; urgency=low
* New upstream release.
* Update to standard version 3.5.10.
* Update to debhelper compatibility level 4.
* New gnustep-base-doc package (closes: #148030).
* Use gcc/gobjc 3.3.
* Fix lintian warnings and errors.
* Update README.Debian file.
* Update copyright file.
* Update Descriptions field in debian/control
( using descriptions found in .spec files ).
* Update gdomap and gdnc init scripts.
* Do not use dh_doclink any longer.
* New gdomap manpage.
* Add debian/watch file.
-- Eric Heintzmann <eric@gnustep.fr.st> Tue, 17 Jun 2003 18:56:09 +0200
gnustep-base (1.6.0-2) unstable; urgency=low
* Correct CPU string on arm.
-- Matthias Klose <doko@debian.org> Fri, 21 Mar 2003 07:51:57 +0100
gnustep-base (1.6.0-1) unstable; urgency=low
* New upstream release.
-- Matthias Klose <doko@debian.org> Thu, 20 Mar 2003 22:57:53 +0100
gnustep-base (1.5.90-1) unstable; urgency=low
* Snapshot taken from the freeze-1_6_0 branch (CVS 20030303).
-- Matthias Klose <doko@debian.org> Tue, 4 Mar 2003 00:31:39 +0100
gnustep-base (1.5.2-2) unstable; urgency=low
* Add GNU_TYPE in configure.
-- Matthias Klose <doko@debian.org> Sat, 1 Mar 2003 14:05:19 +0100
gnustep-base (1.5.2-1) unstable; urgency=low
* New upstream release.
* Correctly stop gdnc process in init script (closes: #180728).
-- Matthias Klose <doko@debian.org> Sat, 22 Feb 2003 18:52:29 +0100
gnustep-base (1.5.1-1) unstable; urgency=low
* New upstream release.
-- Matthias Klose <doko@debian.org> Sun, 19 Jan 2003 10:10:10 +0100
gnustep-base (1.5.0-1) unstable; urgency=low
* New upstream release.
-- Matthias Klose <doko@debian.org> Sun, 8 Sep 2002 13:30:21 +0200
gnustep-base (1.4.0-1) unstable; urgency=low
* New upstream version.
-- Matthias Klose <doko@debian.org> Wed, 31 Jul 2002 00:11:23 +0200
gnustep-base (1.3.4-2) unstable; urgency=medium
* Fix gobjc dependency on m68k (closes: #153975).
-- Matthias Klose <doko@debian.org> Wed, 24 Jul 2002 00:12:09 +0200
gnustep-base (1.3.4-1) unstable; urgency=low
* New upstream release.
* Add conflict to gnustep-ssl (closes: #152422).
* Call ldconfig in postinst (closes: #151975).
-- Matthias Klose <doko@debian.org> Sun, 14 Jul 2002 21:05:43 +0200
gnustep-base (1.3.2-3) unstable; urgency=low
* Use gcc-3.1 except on m68k (gcc-3.0).
* gobjc-3.0 ICE is fixed in gobjc-3.1 on hppa (closes: #145910).
-- Matthias Klose <doko@debian.org> Sat, 1 Jun 2002 00:19:23 +0200
gnustep-base (1.3.2-2) unstable; urgency=low
* Use libffcall for arm and hppa as well (closes: #145910, #147622).
-- Matthias Klose <doko@debian.org> Fri, 24 May 2002 00:48:14 +0200
gnustep-base (1.3.2-1) unstable; urgency=low
* New upstream version.
* Experimental: Configure gnustep-base with --enable-libffi on
architectures, which don't have ffcall (alpha, arm, ia64).
* Add gdnc init script.
-- Matthias Klose <doko@debian.org> Sat, 4 May 2002 14:56:19 +0200
gnustep-base (1.3.0-4) unstable; urgency=low
* Enable building the SSL bundle (the SSL bundle code is licensed under
the LGPL).
-- Matthias Klose <doko@debian.org> Wed, 1 May 2002 15:50:16 +0200
gnustep-base (1.3.0-3) unstable; urgency=high
* gdomap: Close stderr after forking (closes: #140077). The buildd did hang,
when installing the package. Therefore, urgency=high.
-- Matthias Klose <doko@debian.org> Sun, 31 Mar 2002 08:11:32 +0200
gnustep-base (1.3.0-2) unstable; urgency=low
* Configure SSL directory as well.
-- Matthias Klose <doko@debian.org> Mon, 18 Mar 2002 00:37:20 +0100
gnustep-base (1.3.0-1) unstable; urgency=low
* New upstream version.
* Suggests gnustep-ssl package (containing the SSL bundle).
* Refer to /etc/init.d/gdomap in README.Debian (closes: #135931).
* /etc/default/gdomap: New file sourced by /etc/init.d/gdomap.
-- Matthias Klose <doko@debian.org> Fri, 15 Mar 2002 22:55:02 +0100
gnustep-base (1.1.0-3) unstable; urgency=high
* gdomap: Close open files after forking, use syslog (closes: #135390).
The buildd did hang, when installing the package. Therefore,
urgency=high.
-- Matthias Klose <doko@debian.org> Tue, 26 Feb 2002 08:05:40 +0100
gnustep-base (1.1.0-2) unstable; urgency=low
* Fix zoneinfo symlink (closes: #129482).
-- Matthias Klose <doko@debian.org> Wed, 16 Jan 2002 21:24:44 +0100
gnustep-base (1.1.0-1) unstable; urgency=low
* New upstream version.
* configure with --disable-openssl.
-- Matthias Klose <doko@debian.org> Wed, 9 Jan 2002 23:18:04 +0100
gnustep-base (1.0.2-2) unstable; urgency=low
* Correctly determine s390 architecture.
* Build-Depend on gnustep-base (>= 1.2.0-2) on architecture s390.
-- Matthias Klose <doko@debian.org> Wed, 9 Jan 2002 02:24:07 +0100
gnustep-base (1.0.2-1) unstable; urgency=low
* Tighten dependency on gnustep-make (>= 1.2.0-1).
-- Matthias Klose <doko@debian.org> Mon, 31 Dec 2001 03:07:06 +0100
gnustep-base (1.0.2-0.5) unstable; urgency=low
* Tighten dependency on gnustep-make (>= 1.2).
-- Matthias Klose <doko@debian.org> Sun, 9 Dec 2001 11:18:01 +0100
gnustep-base (1.0.2-0.4) unstable; urgency=low
* Lower 'Depends' to 'Recommends' in gnustep-base-examples
(closes: #107940, #112484).
-- Matthias Klose <doko@debian.org> Sat, 22 Sep 2001 10:14:36 +0200
gnustep-base (1.0.2-0.3) unstable; urgency=low
* Add dependency on gobjc-3.0 (closes: #109779).
-- Matthias Klose <doko@debian.org> Sat, 25 Aug 2001 10:45:24 +0200
gnustep-base (1.0.2-0.2) unstable; urgency=low
* gstep-core isn't part of woody anymore. Replaced by the component
packages (closes: #67701, #81482, #84609, #87362)
* gnustep uses gcc-3.0, gnustep-objc removed from woody (closes: #87968,
#106785)
* build error on alpha with gcc-2.95 (closes: #88146).
* fixed gnustep-base-examples link (closes: #69789).
* call dpkg-statoverride only, if not yet registered (closes: #88720).
* debian/control.m4: Add Uploaders field.
* Fixed dependency error on libxml (closes: #93356).
* gnustep-base doesn't add a line to ld.so.conf anymore, gstep-base0
isn't in the dist anymore (closes: #77360).
-- Matthias Klose <doko@debian.org> Sun, 19 Aug 2001 11:03:11 +0200
gnustep-base (1.0.2-0.1) unstable; urgency=low
* New upstream release.
* Use Standards-Version: 3.5.5.
-- Chanop Silpa-Anan <chanop@debian.org> Fri, 6 Jul 2001 22:39:48 +1000
gnustep-base (0.9.1.010302-1) unstable; urgency=low
* New maintainer.
* New CVS version.
* Various small fixes.
-- Kai Henningsen <kai@khms.westfalen.de> Sat, 3 Mar 2001 01:14:35 +0100
gnustep-base (0.9.1.010224-1) unstable; urgency=low
* New snapshot from CVS.
* Each library gets its own source package.
-- Matthias Klose <doko@debian.org> Sun, 4 Feb 2001 20:40:07 +0100
gstep-core (0.6.6-0.1) unstable; urgency=low
* New upstream version.
* debian/control.in: Update build dpendencies.
-- Matthias Klose <doko@cs.tu-berlin.de> Thu, 20 Jul 2000 21:02:28 +0200
gstep-core (0.6.5-3) frozen unstable; urgency=low
* base/Source/NSInvocation.m: Fix important build error on alpha #59373.
* Set GNUSTEP_SYSTEM_ROOT to /usr/lib/GNUstep and disable separate
system root. Needed to correctly build gstep-extensions and gstep-guile.
* debian/gstep-base.init.in: Fix typo (fixes #59423).
* debian/gstep-base.postrm: Remove directory in ld.so.conf inserted
in postinst (fixes #59424).
-- Matthias Klose <doko@cs.tu-berlin.de> Wed, 1 Mar 2000 21:33:53 +0100
gstep-core (0.6.5-2) frozen unstable; urgency=medium
* Updated to the current state of the CVS. Integrates the Debian
patches submitted upstream.
* debian/gstep-base.init.d: Use new gdomap option -p for not probing
machines on the local network (really fixes grave #55906).
* debian/README.Debian: Document gdomap configuration.
* debian/control.in: Add autoconf to Build-Depends (fixes i#58873).
-- Matthias Klose <doko@cs.tu-berlin.de> Sun, 27 Feb 2000 22:31:00 +0100
gstep-core (0.6.5-1) frozen unstable; urgency=medium
* Final release.
* Don't probe machines on the local network (grave #55906).
* Stop gdomap daemon (#48796).
* /etc/GNUstep: directory for GNUstep configuration files.
* debian/control.in: Add build depends.
-- Matthias Klose <doko@cs.tu-berlin.de> Sat, 19 Feb 2000 10:09:19 +0100
gstep-core (0.6.0.90-1) unstable; urgency=low
* New snapshot from CVS (1999-10-28).
-- Matthias Klose <doko@cs.tu-berlin.de> Thu, 28 Oct 1999 21:04:46 +0200
gstep-core (0.6.0-1) unstable; urgency=low
* New upstream release.
* debian/gstep-base.init: Change init script message (fixes #40339).
* debian/gstep-xgps.{preinst,postrm}: Divert gpbs (fixes #40976).
* debian/gstep-base.init.in: Don't source GNUstep.sh (fixes #40338).
* debian/control.in: Use versioned package names for libraries.
-- Matthias Klose <doko@cs.tu-berlin.de> Sat, 21 Aug 1999 20:41:37 +0200
gstep-core (0.5.5.990625-1) unstable; urgency=low
* New snapshot.
-- Matthias Klose <doko@cs.tu-berlin.de> Fri, 25 Jun 1999 22:24:56 +0200
gstep-core (0.5.5.990508-1) unstable; urgency=low
* New snapshot. Built with xgps as backend.
-- Matthias Klose <doko@cs.tu-berlin.de> Sun, 9 May 1999 15:18:28 +0200
gstep-core (0.5.5.990310-1) unstable; urgency=low
* GNUstep 0.5.5 + minor updates from the CVS archive.
-- Matthias Klose <doko@cs.tu-berlin.de> Thu, 11 Mar 1999 22:47:17 +0100
gstep-core (0.5.5-1) unstable; urgency=low
* gstep-0.6 prerelease2 ("dawn").
* gstep-extensions, gstep-db and gstep-guile are moved out of the core package.
* Moved to debhelper-1.2.x.
* First try for powerpc and alpha architectures.
* New package gstep-base-dbg (link with -lgnustep-base_d).
-- Matthias Klose <doko@cs.tu-berlin.de> Wed, 24 Feb 1999 18:35:13 +0100
gstep-core (0.5.0.981229-1) frozen unstable; urgency=low
* Fixed linking of guile dependent binaries (introduced with guile 1.3-11).
* Fixed x permissions of debian installation scripts.
-- Matthias Klose <doko@cs.tu-berlin.de> Tue, 29 Dec 1998 20:12:17 +0100
gstep-core (0.5.0.981222-1) frozen unstable; urgency=low
* Moved symlink patches upstream.
* Built with debhelper 1.1.24 and provide the needed debhelper-1.2.18 files.
-- Matthias Klose <doko@cs.tu-berlin.de> Tue, 22 Dec 1998 21:41:54 +0200
gstep-core (0.5.0.981218-1) frozen unstable; urgency=low
* New maintainer.
* Previous builds included GNUSTEP_SYSTEM_ROOT, if GNUstep packages
were installed.
* Fixed build error on the alpha architecture (forwarding still doesn't
work).
* Install compiled guile modules in /usr/lib/guile1.3; don't know, if
this is correct, but better than /usr/share/guile.
-- Matthias Klose <doko@cs.tu-berlin.de> Sat, 19 Dec 1998 01:53:27 +0200
gstep-core (0.5.0.981215-0.1) frozen unstable; urgency=low
* Finally recompiled with correct libc.
* Finished db and guile packages (db already was in 0.5.0.980820-0.1).
-- Matthias Klose <doko@cs.tu-berlin.de> Mon, 14 Dec 1998 16:15:27 +0200
gstep-core (0.5.0.981207-0.1) frozen unstable; urgency=low
* Recompiled with correct libc.
* Removed dependencies on dpsclient.
* Fixed dependencies of gstep-*-dev packages.
* debian/rules: Removed explicit ix86 dependencies (again!).
* Added debian/patches directory for Debian specific patches.
-- Matthias Klose <doko@cs.tu-berlin.de> Mon, 7 Dec 1998 14:38:47 +0200
gstep-core (0.5.0.981106cvs-1) frozen unstable; urgency=low
* New upstream CVS snapshot.o
With the new anon CVS server, we can now track the GNUstep
development much faster.
* Don't build gstep-xdps until there's a free DPS system in Debian.
* Instead, we have the X/RAW backend. With X/RAW, gstep doesn't any
longer depend on non-free components and can go into main.
* gstep-gui now has a working NSText class.
* debian/rules: Rewritten again.
-- Gregor Hoffleit <flight@debian.org> Sat, 7 Nov 1998 12:08:45 +0100
gstep-core (0.5.0.980820-0.1) unstable; urgency=low
* New upstream snapshot.
* Built with X/RAW as backend; still depends on dgs.
* New postinst/postrm scripts.
* debian/rules: Rewritten.
* debian/control.in: Tightened dependencies.
* Keep NEXTSTEP files.
-- Matthias Klose <doko@cs.tu-berlin.de> Tue, 25 Aug 1998 13:48:48 +0200
gstep-core (0.5.0.980806-1) unstable; urgency=low
* New upstream snapshot.
* GNUstep is now built from a single source package, gstep-core.
-- Gregor Hoffleit <flight@debian.org> Fri, 7 Aug 1998 13:33:43 +0200
|