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
|
git (1:1.7.2.5-3) stable; urgency=low
* debian/diff/0034..0042: new from the upstream maint-1.7.2 branch:
* bisect, blame, cherry-pick, merge-recursive, revert: fix
off-by-one read when searching for the end of a commit subject.
* some minor documentation updates.
* debian/diff/0043-upload-pack-start-pack-objects-before-...: new
from upstream; upload-pack: start child that reads pack_pipe
before writing to it. This prevents server-side deadlocks on
shallow clone (closes: #607346).
* debian/git-daemon/run: use SO_REUSEADDR when binding the listening
socket so the server can restart without waiting for old connections
to time out (thx Daniel Kahn Gillmor; closes: #609405).
* debian/git-daemon-run.postrm purge: terminate the git-daemon/log
service, even if there is an active connection using it, before
deleting logs and the gitlog user (thx Daniel Kahn Gillmor; closes:
#627314).
-- Jonathan Nieder <jrnieder@gmail.com> Sun, 18 Sep 2011 12:59:28 -0500
git (1:1.7.2.5-2) stable; urgency=low
* debian/git-daemon-run.postrm purge: terminate the git-daemon/log
service before removing the gitlog user (closes: #610099).
-- Jonathan Nieder <jrnieder@gmail.com> Wed, 20 Apr 2011 17:17:27 -0500
git (1:1.7.2.5-1) stable; urgency=low
* new upstream point release.
* support "add.ignoreErrors" synonym for the existing
"add.ignore-errors" configuration variable.
* bash completion: match lightweight tags in prompt.
* gitweb: use esc_url to quote a few more URLs.
* diff: always trim trailing space from --show-c-function lines.
* some minor test suite and documentation updates.
* debian/diff/0010-cache_tree_free-Fix-small-memory-leak.diff,
debian/diff/0011-diff.c-call-regfree....diff,
debian/diff/0034-gitweb-Introduce-esc_attr...diff: remove; applied
upstream.
* add myself as uploader.
-- Jonathan Nieder <jrnieder@gmail.com> Fri, 18 Feb 2011 14:05:10 -0600
git (1:1.7.2.3-2.2) unstable; urgency=medium
* Non-maintainer upload.
* debian/diff/0034-gitweb-Introduce-esc_attr...diff: new from
upstream: gitweb: do not parrot filenames or other arguments given
in a request without proper quoting (closes: #607248,
CVE-2010-3906).
-- Jonathan Nieder <jrnieder@gmail.com> Thu, 16 Dec 2010 01:00:30 -0600
git (1:1.7.2.3-2.1) unstable; urgency=low
* Non-maintainer upload.
* debian/diff/0010...0033: new from the upstream 'maint' branch:
* cache_tree_free: Fix small memory leak.
* diff.c: call regfree to free memory allocated by regcomp.
* gitweb: allow configurations that change with each request
(fixes a regression from v1.7.2-rc2 in some gitolite setups).
* Documentation: 19 formatting fixes (thx Frédéric Brière,
closes: #540001, #600422).
* setup: make sure git dir path is in a permanent buffer.
* do not depend on signed integer overflow.
* debian/control: gitweb: weaken dependencies to allow configurations
using mod_perl or fastcgi rather than CGI; explain dependencies in
the package description (thx Servilio Afre Puentes,
closes: #600413).
-- Jonathan Nieder <jrnieder@gmail.com> Thu, 18 Nov 2010 19:04:09 -0600
git (1:1.7.2.3-2) unstable; urgency=low
* merge branch debian-experimental.
* debian/gitweb.NEWS.Debian: typo (thx Jonathan Nieder).
-- Gerrit Pape <pape@smarden.org> Sun, 17 Oct 2010 20:07:22 +0000
git (1:1.7.2.3-1) experimental; urgency=low
* new upstream release.
* post-receive-email: document command-line mode (closes: #428413).
* add-interactive: Clarify “remaining hunks in the file”
(closes: #526014).
* rebase -i -p: document shortcomings (closes: #532775).
* GIT-VERSION-GEN: restrict tags used (closes: #473604).
* git svn: avoid unnecessary '/' in paths for SVN (thx Jon Dowland,
closes: #546733, #572847).
* git svn: avoid uninitialized var in 'reset' (thx Jens Seidel,
closes: #578908).
* debian/diff/0003-git-submodule.sh-properly-initialize-shell-...diff,
debian/diff/0004-Check-size-of-path-buffer-before-...diff: remove;
applied upstream.
* debian/diff/0001-Revert-gitweb-Use-diff_opts-while...diff: new;
prevent gitweb from serving rename patches that GNU patch 2.6.1
cannot apply.
* debian/diff/0002-Revert-Merge-branch-jn-gitweb-plackup.diff: new;
install gitweb.css et al in /usr/share/gitweb, not a new static/
subdirectory.
* debian/diff/0003-Do-not-unquote-into-in-URLs.diff: new from
upstream; do not unquote + into space character in URLs.
* debian/diff/0001-bug-448655-check-etc-mailname-...diff: rename to
debian/diff/0004-bug-448655-check-etc-mailname-if-author...diff.
* debian/diff/0002-bug-506445-hooks-post-receive-...diff: rename to
debian/diff/0005-bug-506445-hooks-post-receive-...diff; adapt.
* debian/diff/0006-instaweb-ignore-GITWEB_CONFIG_SYSTEM.diff: new;
instaweb: ignore /etc/gitweb.conf;
debian/diff/0007-gitweb-skip-logo-in-atom-feed-when...diff, ...,
debian/diff/0009-instaweb-disable-logo-and-favicon...diff: new;
instaweb: avoid 404 errors due to nonexistent image files (thx Uwe
Kleine-König, closes: #592733).
* update debian/copyright.
* debian/rules, debian/git.README.Debian, debian/gitweb.conf:
install gitweb.js, add an Alias for it to the VirtualHost example,
and configure gitweb to look for it in the right place (closes:
#555047).
* debian/gitweb.NEWS.Debian: mention the new gitweb.js file.
* debian/control: gitweb: Depends: apache2 | httpd-cgi (closes:
#559890).
* debian/gitweb.conf: use relative links for gitweb.css et al
(thx Alban Browaeys, closes: #568343).
* debian/control: package git: no longer Conflicts: git
(<< 4.3.20-11).
* debian/control: package git: Breaks: packages from Debian 5.0
(lenny) relying on removed features such as dashed-form commands in
$PATH (thx Adrian Bunk, closes: #561701); no longer Conflicts: but
Breaks: ancient qgit for the same reason.
* debian/gitweb.README.Debian: copy-edit.
* debian/git.README.Debian: retitle to "Git for Debian" (thx
Christoph Anton Mitterer, closes: #590129).
* debian/control: Homepage: http://git-scm.com/ (closes: #553220).
* debian/control: package git no longer Depends: libdigest-sha1-perl
(thx Ansgar Burchardt, closes: #591039).
* debian/control: Build-Depends: libio-pty-perl for better test
coverage.
-- Jonathan Nieder <jrnieder@gmail.com> Fri, 03 Sep 2010 22:34:30 -0500
git (1:1.7.1-1.1) unstable; urgency=high
* Non-maintainer upload.
* debian/diff/0004-Check-size-of-path-buffer-before-writing-...diff:
new, cherry-picked from 3c9d041: setup: Check size of path buffer
before writing into it (closes: #590026, CVE-2010-2542).
-- Jonathan Nieder <jrnieder@gmail.com> Sun, 25 Jul 2010 18:01:15 -0500
git (1:1.7.1-1) unstable; urgency=low
* debian/diff/0003-t-t7400-submodule-basic.sh-debug-output-...diff:
remove; obsolete.
* debian/diff/0003-git-submodule.sh-properly-initialize-shell-...diff:
new; git-submodule.sh: properly initialize shell variables (closes:
#569594).
* debian/rules: no longer set ARCH='$(ARCH)' in environment for make
test.
* new upstream release.
* merge branch debian-experimental.
-- Gerrit Pape <pape@smarden.org> Sun, 25 Apr 2010 23:35:50 +0000
git (1:1.7.0.5-2~dbg0) unstable; urgency=low
* debian/diff/0003-t7400-submodule-basic.sh-alpha-s390-skip-...diff:
remove; more archs are affected (additionally hppa, armel).
* debian/diff/0003-t-t7400-submodule-basic.sh-debug-output-...diff:
new; t/t7400-submodule-basic.sh: debug output for t7400.24 'update
--init'.
-- Gerrit Pape <pape@smarden.org> Fri, 23 Apr 2010 12:15:18 +0000
git (1:1.7.0.5-1) unstable; urgency=low
* debian/git-core.postinst: new; replace /usr/share/doc/git-core with
symlink /usr/share/doc/git-core -> git on upgrade from <= 1.7.0.4-2
(closes: #578298).
* debian/diff/0003-t7400-submodule-basic.sh-alpha-s390-skip-...diff:
new; t7400-submodule-basic.sh: alpha, s390: skip 'update --init'
test (workaround: #569594).
* debian/control: no longer Replaces, Conflicts: git-completion (thx
Jonathan Nieder, closes: #577730).
* new upstream point release.
* debian/rules: set ARCH='$(ARCH)' in environment for make test.
-- Gerrit Pape <pape@smarden.org> Tue, 20 Apr 2010 23:41:04 +0000
git (1:1.7.1~rc1-1.1) experimental; urgency=low
* debian/control: typo (thx Jonathan Nieder).
* debian/git-daemon-run.postinst: remove fixup for #522348.
-- Gerrit Pape <pape@smarden.org> Sun, 11 Apr 2010 23:22:46 +0000
git (1:1.7.1~rc1-1) experimental; urgency=low
* new upstream release candidate.
* merge branch debian-sid.
-- Gerrit Pape <pape@smarden.org> Sun, 11 Apr 2010 15:28:28 +0000
git (1:1.7.0.4-2) unstable; urgency=low
* debian/rules: package git: no longer install /usr/share/doc/git-core
-> git symlink; git-core: no longer install /usr/lib/git-core -> git
symlink (closes: #576906).
* debian/control: package git: Replaces:, Conflicts: git-core (<=
1:1.7.0.4-1).
* debian/rules: make /usr/share/gitweb/index.cgi ->
../../lib/cgi-bin/gitweb.cgi symlink relative (lintian).
* debian/control: package git-core: minor update to the long
description.
* debian/git.README.source: add note about the <debian-package-git>
mailing list.
* debian/rules: target binary-indep: add missing dependency to
git-core.deb-DEBIAN.
* debian/implicit: no longer create DEBIAN/md5sums.
* debian/rules: revert the /usr/lib/git-core -> /usr/lib/git rename
(keeping upstream's default).
-- Gerrit Pape <pape@smarden.org> Sat, 10 Apr 2010 23:16:54 +0000
git (1:1.7.0.4-2~exp0) experimental; urgency=low
[ Gerrit Pape ]
* debian/control, debian/rules, debian/git-core.*: change source and
binary package name from git-core to git; keep now obsolete empty
git-core package that depends on git for upgrade (see
http://lists.debian.org/debian-devel/2009/09/thrd2.html#00661).
* debian/control: package git: Replaces: git-core, Conflicts: git-core
(<= 1:1.7.0.3-1), Provides: git-core.
* debian/git.NEWS.Debian: talk about the package name change, and the
possible hazzle when upgrading with GNU Interactive Tools installed
since etch and no git-core installed.
* debian/control, debian/rules: new package git-all: dummy package
which brings in all subpackages (following upstream's RPMs).
[ Jonathan Nieder ]
* debian/git.README.source: adjust for the package name change.
* debian/rules: install symbolic link git -> git-core in /usr/lib
to simplify upgrades.
* debian/git-daemon/run: use $(git --exec-path) instead of hard-coding
the path to the git-daemon binary.
-- Gerrit Pape <pape@smarden.org> Sat, 03 Apr 2010 15:07:19 -0500
git-core (1:1.7.0.4-1) unstable; urgency=low
* debian/git-daemon-run.postrm: purge: don't warn if the git-daemon
service is already removed; use -f option to userdel, on fast-purge
the log service daemon might still run for a short time (closes:
#575434).
* new upstream point release.
-- Gerrit Pape <pape@smarden.org> Thu, 01 Apr 2010 20:42:19 +0000
git-core (1:1.7.0.3-1) unstable; urgency=low
* debian/control: Standards-Version: 3.8.4.0.
* debian/changelog: note fixes from Jonathan Nieder in 1.7.0.2-1.
* new upstream point release.
-- Gerrit Pape <pape@smarden.org> Mon, 22 Mar 2010 09:19:06 +0000
git-core (1:1.7.0.2-1) unstable; urgency=low
* new upstream point release.
[ Jonathan Nieder ]
* am: remove rebase-apply directory before gc (thx Mark Brown,
closes: #570966).
* git-imap-send: Convert LF to CRLF before storing patch to draft box
(closes: #572598).
* sha1_file: be paranoid when creating loose objects (closes:
#569505).
-- Gerrit Pape <pape@smarden.org> Thu, 18 Mar 2010 20:44:12 +0000
git-core (1:1.7.0-1) unstable; urgency=low
* debian/git-core.README.source: typos.
* new upstream release.
* Documentation: Update git core tutorial clarifying reference to
scripts (closes: ##560795).
* merge branch debian-experimental.
-- Gerrit Pape <pape@smarden.org> Tue, 16 Feb 2010 08:51:32 +0000
git-core (1:1.7.0~rc2-1) experimental; urgency=low
* new upstream release candidate.
-- Gerrit Pape <pape@smarden.org> Fri, 12 Feb 2010 14:30:12 +0000
git-core (1:1.7.0~rc1-1) experimental; urgency=low
* new upstream release candidate.
* debian/diff/0003-git-cvsserver-allow-regex-metacharacters...diff:
remove; applied upstream.
* debian/rules: NO_PYTHON=1. Packaging the git_remote_helpers
Python module will require more work.
* update debian/copyright (closes: #557065).
* debian/rules: set prefix=/usr when building man pages (closes:
#567404).
-- Jonathan Nieder <jrnieder@gmail.com> Sat, 30 Jan 2010 17:46:04 -0600
git-core (1:1.6.6.2-1) unstable; urgency=medium
* new upstream point release.
* debian/diff/0003-git-cvsserver-allow-regex-metacharacters...diff:
remove; applied upstream.
* debian/rules: stop ignoring test suite failures on ia64, since
#563882 has been fixed. Build-Depends: and Depends:
libc6.1 (>= 2.10.2-6) [ia64] for the fix (closes: #568915).
* update debian/copyright (closes: #557065).
* debian/rules: set prefix=/usr when building man pages (closes:
#567404).
-- Jonathan Nieder <jrnieder@gmail.com> Thu, 11 Feb 2010 21:48:55 -0600
git-core (1:1.6.6.1-1) unstable; urgency=low
[ Gerrit Pape ]
* new upstream point release.
* Document git-blame triple -C option (thx Ramkumar Ramachandra,
closes: #476604).
* debian/diff/0003-git-cvsserver-allow-regex-metacharacters...diff:
new; git-cvsserver: allow regex metacharacters in CVSROOT (fixes
build/selftest failure if the build directory pathname contains a +).
* debian/gitweb.apache2.conf, debian/gitweb.postinst: new; make gitweb
work out of the box with Apache (thx Charles Plessy).
* debian/gitweb.README.Debian, debian/gitweb.conf, debian/rules: make
gitweb work out of the box with Apache (thx Charles Plessy, closes:
#497809).
* debian/gitweb.conffiles: add /etc/apache2/conf.d/gitweb.
[ Jonathan Nieder ]
* debian/rules: ignore test suite failures on ia64 (workaround:
#563882).
-- Gerrit Pape <pape@smarden.org> Wed, 27 Jan 2010 13:30:29 +0000
git-core (1:1.6.6-1) unstable; urgency=low
* new upstream release.
-- Gerrit Pape <pape@smarden.org> Mon, 04 Jan 2010 16:01:36 +0000
git-core (1:1.6.6~rc2-1) experimental; urgency=low
* new upstream release candidate.
* merge branch debian-sid.
-- Gerrit Pape <pape@smarden.org> Thu, 17 Dec 2009 10:13:09 +0000
git-core (1:1.6.5.7-1) unstable; urgency=low
* new upstream point release.
-- Gerrit Pape <pape@smarden.org> Thu, 17 Dec 2009 09:39:55 +0000
git-core (1:1.6.6~rc1-1) experimental; urgency=low
* merge branch debian-sid.
* new upstream release candidate.
-- Gerrit Pape <pape@smarden.org> Fri, 04 Dec 2009 00:17:27 +0000
git-core (1:1.6.5.4-1) unstable; urgency=low
* new upstream point release.
-- Gerrit Pape <pape@smarden.org> Thu, 03 Dec 2009 22:48:57 +0000
git-core (1:1.6.6~rc0-1) experimental; urgency=low
* new upstream release candidate.
* debian/diff/0001-bug-369742-pager.c-fallback-to-pager-...diff,
debian/diff/0002-bug-438793-494505-fallback-to-editor-...diff,
debian/diff/0004-bug-477337-git-svn.perl-fallback-to...diff:
remove; obsolete.
* debian/rules: add DEFAULT_PAGER=pager, DEFAULT_EDITOR=editor to
OPTS.
-- Gerrit Pape <pape@smarden.org> Thu, 26 Nov 2009 00:17:59 +0000
git-core (1:1.6.5.3-1) unstable; urgency=low
[ Tanguy Ortolo ]
* debian/git-core.README.Debian, debian/control: git-daemon-run:
document that git-daemon is not provided by this package; add hint
on how to enable git-daemon through inetd(8) (closes: #554215).
[ Jonathan Nieder ]
* debian/rules: drop misleading PPC_SHA1, ARM_SHA1 settings (closes:
#555039).
* debian/rules: log $(CC) version, not gcc (closes: #555040).
* debian/rules: allow clean as non-root (closes: #555041).
* debian/rules: drop obsolete WITH_P4IMPORT setting (closes:
#555051).
* debian/rules: TCLTK_PATH=wish (closes: #555027).
[ Gerrit Pape ]
* new upstream point release.
* ls-files: unbreak "ls-files -i" (closes: #553296).
* Require a struct remote in transport_get(); Allow curl helper to
work without a local repository (closes: #553507).
* help -a: do not unnecessarily look for a repository (closes:
#539273).
* thx Jonathan Nieder.
-- Gerrit Pape <pape@smarden.org> Tue, 17 Nov 2009 21:01:46 +0000
git-core (1:1.6.5.2-1) unstable; urgency=low
* restore temporary lost changes from version 1:1.6.3.3-2 (closes:
#530693).
* new upstream point release.
* grep: do not segfault when -f is used (closes: 551071).
-- Gerrit Pape <pape@smarden.org> Mon, 26 Oct 2009 12:05:18 +0000
git-core (1:1.6.5-1) unstable; urgency=low
* new upstream release.
* git-doc: html no longer uses "{plus}" where it should be "+"
(closes: #529255).
* debian/git-core.README.source: new; document how to use the
Debian package source.
* debian/implicit: update to revision 60d9070.
-- Gerrit Pape <pape@smarden.org> Tue, 13 Oct 2009 00:23:00 +0000
git-core (1:1.6.4.3-1) unstable; urgency=low
* new upstream release (closes: #546709).
* git-cvsserver: no longer use deprecated 'git-subcommand' commands
(closes: #536067).
* branch debian-sid: git cherry-pick 098082f, 318b847, 1f9b620 (thx
Anders Kaseorg; closes: #546499).
-- Gerrit Pape <pape@smarden.org> Wed, 16 Sep 2009 11:03:45 +0000
git-core (1:1.6.3.3-2) unstable; urgency=low
[ Anders Kaseorg ]
* Fix manpage formatting: set ASCIIDOC_NO_ROFF instead of
DOCBOOK_XSL_173 (based on the instructions in Documentation/Makefile)
and don’t override the internal Makefile variable ASCIIDOC_EXTRA
(closes: #530693, #521954, #533320).
[ Gerrit Pape ]
* debian/control: Standards-Version: 3.8.2.0.
-- Gerrit Pape <pape@smarden.org> Mon, 29 Jun 2009 00:06:59 +0000
git-core (1:1.6.3.3-1) unstable; urgency=high
* new upstream point release.
* daemon: Strictly parse the "extra arg" part of the command
(closes: #532935; CVE-2009-2108).
* debian/rules: add NO_CROSS_DIRECTORY_HARDLINKS=1 to OPTS.
* debian/diff/0006-bug-520116-Makefile-do-not-install-cross...diff:
remove; obsolete.
-- Gerrit Pape <pape@smarden.org> Tue, 23 Jun 2009 08:49:17 +0000
git-core (1:1.6.3.1-1) unstable; urgency=low
* new upstream point release.
-- Gerrit Pape <pape@smarden.org> Thu, 14 May 2009 21:35:01 +0000
git-core (1:1.6.3-1) unstable; urgency=low
* new upstream release.
* merge branch debian-experimental.
-- Gerrit Pape <pape@smarden.org> Fri, 08 May 2009 07:57:39 +0000
git-core (1:1.6.3~rc3-1) experimental; urgency=low
* new upstream release candidate.
-- Gerrit Pape <pape@smarden.org> Wed, 29 Apr 2009 21:58:10 +0000
git-core (1:1.6.3~rc1-1) experimental; urgency=low
* new upstream release candidate.
* merge branch debian-sid.
-- Gerrit Pape <pape@smarden.org> Mon, 20 Apr 2009 21:44:09 +0000
git-core (1:1.6.2.4-1) unstable; urgency=low
* new upstream point release.
-- Gerrit Pape <pape@smarden.org> Mon, 20 Apr 2009 20:22:02 +0000
git-core (1:1.6.3~rc0-1) experimental; urgency=low
* new upstream release candidate.
* merge branch debian-sid.
-- Gerrit Pape <pape@smarden.org> Tue, 14 Apr 2009 23:06:38 +0000
git-core (1:1.6.2.3-1) unstable; urgency=low
* new upstream point release.
* debian/control: Standards-Version: 3.8.1.0.
* debian/control: change subversion to Subversion in description.
* debian/control: Section: vcs (except for git-doc).
-- Gerrit Pape <pape@smarden.org> Tue, 14 Apr 2009 22:46:43 +0000
git-core (1:1.6.2.2-1) unstable; urgency=low
* new upstream point release.
* debian/diff/0006-bug-520116-Makefile-do-not-install-cross...diff:
new; Makefile: do not install cross-directory hardlink (thx Jonathan
Nieder, closes: #520116).
* debian/git-daemon/run: run /usr/lib/git-core/git-daemon instead of
'git daemon' (closes: #522348).
* debian/git-daemon-run.postinst: on upgrade from >> 1:1.6.0, fixup
#522348.
* debian/git-core.emacsen-startup: remove the line
'(add-to-list 'vc-handled-backends 'git)' (closes: #519728).
-- Gerrit Pape <pape@smarden.org> Sun, 05 Apr 2009 20:49:25 +0000
git-core (1:1.6.2.1-1) unstable; urgency=low
* new upstream point release.
* debian/git-core.emacsen-startup: no longer refer to vc-git.el
(closes: #519728).
-- Gerrit Pape <pape@smarden.org> Mon, 16 Mar 2009 22:18:05 +0000
git-core (1:1.6.2-1) unstable; urgency=medium
* new upstream release.
* merge branch debian-experimental.
* debian/diff/0006-Install-builtins-with-the-user-and-group-of...diff,
debian/diff/0007-git-quiltimport-preserve-standard-input-to...diff:
remove; applied upstream.
-- Gerrit Pape <pape@smarden.org> Wed, 04 Mar 2009 22:44:43 +0000
git-core (1:1.6.2~rc2-1) experimental; urgency=low
* merge branch debian-sid.
* new upstream release candidate.
-- Gerrit Pape <pape@smarden.org> Thu, 26 Feb 2009 22:15:13 +0000
git-core (1:1.6.1.3-2) unstable; urgency=high
* debian/diff/0006-Install-builtins-with-the-user-and-group-of...diff:
new from upstream git: Install builtins with the user and group of
the installing personality.
* debian/diff/0007-git-quiltimport-preserve-standard-input-to...diff:
new from upstream git: git-quiltimport: preserve standard input to
be able to read user input (closes: #515910).
-- Gerrit Pape <pape@smarden.org> Thu, 26 Feb 2009 22:01:37 +0000
git-core (1:1.6.2~rc1-1) experimental; urgency=low
* new upstream release candidate.
* debian/git-core.docs, debian/git-doc.docs, debian/rules: move
Documentation/RelNotes* from git-doc to the git-core package
(closes: #514866).
-- Gerrit Pape <pape@smarden.org> Tue, 17 Feb 2009 20:20:03 +0000
git-core (1:1.6.2~rc0-1) experimental; urgency=low
* new upstream release candidate.
* merge branch debian-sid.
-- Gerrit Pape <pape@smarden.org> Tue, 10 Feb 2009 00:06:02 +0000
git-core (1:1.6.1.3-1) unstable; urgency=low
* new upstream point release.
-- Gerrit Pape <pape@smarden.org> Mon, 09 Feb 2009 21:31:39 +0000
git-core (1:1.6.1.2-1) experimental; urgency=low
* new upstream release.
* don't fail to clone over http if connection is rate limited
(closes: #512795).
* git svn info no longer fails (closes: #499243).
* debian/rules: ASCIIDOC_EXTRA='-a asciidoc7compatible -a docbook-xsl-172'
and DOCBOOK_XSL_173=Yes when building documentation (thx Niko Tyni
for the patch, closes: #497883).
* merge branch debian-lenny.
* debian/diff/0005-gitweb-do-not-run-git-diff-that-is-Porcelain.diff:
remove; fixed upstream.
-- Gerrit Pape <pape@smarden.org> Mon, 02 Feb 2009 23:26:45 +0000
git-core (1:1.5.6.5-3) unstable; urgency=high
* debian/rules: no longer install symlink /etc/init.d/git-daemon ->
/usr/bin/sv (closes: #511687).
* debian/git-daemon-run.README.Debian: document how to create the
symlink manually to have an LSB compatible /etc/init.d/git-daemon
interface to control the service.
-- Gerrit Pape <pape@smarden.org> Mon, 02 Feb 2009 20:56:15 +0000
git-core (1:1.6.0.6-1) experimental; urgency=low
* debian/control: git-email: Recommends: libnet-smtp-ssl-perl,
libauthen-sasl-perl (thx Kees Cook, closes: #505636).
* debian/diff/0005-bug-506445-hooks-post-receive-email-set-...diff:
new; hooks/post-receive-email: set encoding to utf-8 (thx Alexander
Gerasiov, closes: #506445).
* new upstream point release (closes: #504641).
* gitweb: do not run "git diff" that is Porcelain.
-- Gerrit Pape <pape@smarden.org> Sat, 20 Dec 2008 11:03:49 +0000
git-core (1:1.5.6.5-2) unstable; urgency=high
* debian/diff/0005-gitweb-do-not-run-git-diff-that-is-Porcelain.diff:
new; fix possible gitweb vulnerability: calling "git diff": Jakub
says that legacy-style URI to view two blob differences are never
generated since 1.4.3. This codepath runs "git diff" Porcelain from
the gitweb, which is a no-no. It can trigger diff.external command
that is specified in the configuration file of the repository being
viewed.
-- Gerrit Pape <pape@smarden.org> Wed, 17 Dec 2008 09:27:01 +0000
git-core (1:1.6.0.4-1) experimental; urgency=low
* new upstream point release.
* debian/control: git-email: minor update to the long description
(thx Gerfried Fuchs, closes: #501559).
* debian/rules: TCLTK_PATH=/usr/bin/wish instead of wish8.5 in OPTS.
* debian/control: git-gui, gitk: Depends: tk (>= 8.4) instead of
tk8.5 (thx Adeodato Simó, closes: #503113).
* debian/rules: move the /usr/bin/git-cvsserver program into the
git-cvs package.
-- Gerrit Pape <pape@smarden.org> Tue, 11 Nov 2008 22:36:05 +0000
git-core (1:1.6.0.3-1) experimental; urgency=low
* debian/control: minor update to long descriptions (thx Reuben
Thomas, closes: #499065).
* debian/git-core.emacsen-startup: new; emacsen-startup configuration
file (thx Jari Aalto, closes: #472197).
* debian/rules: install emacsen-startup configuration file into the
git-core package (thx Eddy Mulyono, closes: #446027).
* new upstream point release.
* debian/git-core.conffiles: add /etc/emacs/site-start.d/50git-core.el
-- Gerrit Pape <pape@smarden.org> Tue, 04 Nov 2008 20:26:56 +0000
git-core (1:1.6.0.2-1) experimental; urgency=low
* new upstream point release.
* debian/git-core.NEWS.Debian: new; mention that most of the programs
now are installed outside the default $PATH; the "git-xyzzy" form
in scripts and on the command line is no longer supported in 1.6.0.
* debian/git-core.README.Debian: fix paths in config example (thx
Michael Biebl for the patch, closes: #498741).
* debian/git-core.README.Debian: typo (thx Vincent Bernat for the
patch, closes: #496834).
-- Gerrit Pape <pape@smarden.org> Wed, 24 Sep 2008 20:55:26 +0000
git-core (1:1.6.0.1-1) experimental; urgency=low
* new upstream point release (closes: #496155).
* merge branch debian-sid.
-- Gerrit Pape <pape@smarden.org> Wed, 27 Aug 2008 07:53:36 +0000
git-core (1:1.6.0-1) experimental; urgency=low
* new upstream release.
* svnimport: newer libsvn wants us to ask for the root with "",
not "/" (closes: #492522, #490400).
* Keep some git-* programs in $(bindir); Move all dashed-form
commands to libexecdir (closes: #461212).
* bash: Add more option completions for 'git log' (closes:
#490220).
* Fix buffer overflow in prepare_attr_stack; Fix buffer overflow
in git diff; Fix buffer overflow in git-grep (closes: #494097).
* 0002-bug-438793-git-sh-setup.sh-builtin-tag.c-fallback.diff: redo
as 0002-bug-438793-494505-fallback-to-editor-not-vi.diff (thx
Jonathan Nieder for the patch, closes: #494505).
* debian/rules: add gitexecdir=/usr/lib/git-core to OPTS; adapt
several paths (thx Jonathan Nieder for a patch, closes: #480396).
* debian/gitweb.NEWS.Debian: new; talk about files moved from
/var/www/ to /usr/share/gitweb/ (see #479479; closes: #494467).
* debian/git-daemon/run: run git daemon instead of git-daemon
(dash-less form).
* debian/git-daemon-run.postinst: add gitdaemon system user.
* debian/git-daemon/run: utilize chpst to run git daemon as user
gitdaemon (thx Daniel Kahn Gillmor, closes: #494991).
-- Gerrit Pape <pape@smarden.org> Sun, 24 Aug 2008 22:31:44 +0000
git-core (1:1.5.6.5-1) unstable; urgency=high
* new upstream point release.
* Fix buffer overflow in prepare_attr_stack; Fix buffer overflow
in git diff; Fix buffer overflow in git-grep (CVE-2008-3546;
closes: #494097).
* debian/diff/0005-bug-494097-CVE-2008-3546.diff: remove; obsolete.
-- Gerrit Pape <pape@smarden.org> Sun, 24 Aug 2008 19:22:02 +0000
git-core (1:1.5.6.3-1.1) unstable; urgency=high
* Non-maintainer upload by the Security Team.
* Fix various stack-based buffer overflows when processing overly long
repository pathnames which can be exploited to execute arbitrary code if
a victim is tricked into using git-grep or git-diff on a crafted
repository (CVE-2008-3546; Closes: #494097).
-- Nico Golde <nion@debian.org> Sat, 09 Aug 2008 13:53:13 +0200
git-core (1:1.5.6.3-1) unstable; urgency=low
* new upstream point release.
* debian/diff/0005-git-svn.perl-workaround-assertions-in-svn...diff:
remove; applied upstream (opens: #490400).
* debian/control: Standards-Version: 3.8.0.1.
-- Gerrit Pape <pape@smarden.org> Thu, 17 Jul 2008 07:40:08 +0000
git-core (1:1.5.6.2-1) unstable; urgency=low
* new upstream point release (closes: #489431).
* debian/copyright: apply patch from Ansgar Burchardt: adopt proposed
machine-readable format; clarify some license information (thx,
closes: #488351).
* debian/rules: package gitweb: install gitweb.css, git-favicon.png,
git-logo.png into /usr/share/gitweb/ instead of /var/www/ (closes:
#479479).
* debian/control: package git-arch: no longer Suggests: bazaar
(closes: #486726).
* debian/diff/0005-git-svn.perl-workaround-assertions-in-svn...diff:
new; git-svn.perl: workaround assertions in svn library 1.5.0
(closes: #489108).
-- Gerrit Pape <pape@smarden.org> Sun, 06 Jul 2008 18:35:27 +0000
git-core (1:1.5.6-1) unstable; urgency=low
* new upstream release.
* merge branch debian-experimental.
-- Gerrit Pape <pape@smarden.org> Thu, 19 Jun 2008 07:38:31 +0000
git-core (1:1.5.6~rc3-1) experimental; urgency=low
* debian/git-daemon-run.postrm: remove log files on purge.
* new upstream release candidate.
* debian/control: package git-core: no longer Depends: cpio, no
longer Recommends: curl.
-- Gerrit Pape <pape@smarden.org> Sun, 15 Jun 2008 11:14:49 +0000
git-core (1:1.5.6~rc2-1) experimental; urgency=low
* new upstream release candidate.
* merge branch debian-sid.
* debian/rules: do not build manpages twice (thx Jonathan Nieder).
-- Gerrit Pape <pape@smarden.org> Mon, 09 Jun 2008 12:02:43 +0000
git-core (1:1.5.5.4-1) unstable; urgency=low
* new upstream point release.
* debian/rules: enable DOCBOOK_XSL_172 build variable, fixing man page
breakage (thx Jonathan Nieder, closes: #476634).
* debian/control: Build-Depends: docbook-xsl (>> 1.72) (thx Jonathan
Nieder).
-- Gerrit Pape <pape@smarden.org> Mon, 09 Jun 2008 11:51:19 +0000
git-core (1:1.5.6~rc1-1) experimental; urgency=low
* new upstream release candidate.
* git-svn fails in prop_walk if $self->{path} is not empty (closes:
477393).
* gitweb: Fix "next" link on bottom of page (closes: #481902).
* merge branch debian-sid.
* debian/rules: add THREADED_DELTA_SEARCH=1 to OPTS (closes: #483534).
-- Gerrit Pape <pape@smarden.org> Thu, 05 Jun 2008 10:14:14 +0000
git-core (1:1.5.5.3-1) unstable; urgency=low
* new upstream point release.
* commit --interactive: properly update the index before commiting
(closes: #480429).
* debian/diff/0005-git-bisect.sh-don-t-accidentally-override...diff:
remove; applied upstream.
* debian/diff/0005-bug-477337-git-svn.perl-fallback-to-pager...diff:
new; git-svn.perl: fallback to 'pager' not 'less' if PAGER is unset
(closes: #477337).
-- Gerrit Pape <pape@smarden.org> Wed, 28 May 2008 19:32:57 +0000
git-core (1:1.5.6~rc0-1) experimental; urgency=low
* merge branch debian-sid.
* new upstream release candidate.
* debian/diff/0004-gitweb-fallback-to-system-wide-config-file...diff:
remove; fixed upstream.
* debian/diff/0005-git-bisect.sh-don-t-accidentally-override...diff:
remove; applied upstream.
-- Gerrit Pape <pape@smarden.org> Mon, 26 May 2008 16:53:38 +0000
git-core (1:1.5.5.2-1) unstable; urgency=low
* new upstream point release.
* diff-options.txt: document the new "--dirstat" option (closes:
#476437).
* debian/diff/0005-git-bisect.sh-don-t-accidentally-override...diff:
new: git-bisect.sh: don't accidentally override existing branch
"bisect" (closes: #478647).
-- Gerrit Pape <pape@smarden.org> Mon, 26 May 2008 16:41:45 +0000
git-core (1:1.5.5.1-1) unstable; urgency=low
* new upstream point release.
-- Gerrit Pape <pape@smarden.org> Mon, 21 Apr 2008 18:24:34 +0000
git-core (1:1.5.5-1) unstable; urgency=low
* new upstream release.
* gitk: Fix changing colors through Edit->Preferences (closes: #472615).
* Revert "gitweb: Add 'status_str' to parse_difftree_raw_line output"
(closes: #469083).
* merge branch debian/experimental.
-- Gerrit Pape <pape@smarden.org> Tue, 08 Apr 2008 20:26:25 +0000
git-core (1:1.5.5~rc3-2) experimental; urgency=low
* debian/diff/0004-gitweb-fallback-to-system-wide-config-file-if-defaul.diff:
amend: properly apply GITWEB_CONFIG_SYSTEM to gitweb.cgi.
-- Gerrit Pape <pape@smarden.org> Fri, 04 Apr 2008 20:40:48 +0000
git-core (1:1.5.5~rc3-1) experimental; urgency=low
* new upstream release candidate.
* debian/diff/0004-gitweb-fallback-to-system-wide-config-file-if-defaul.diff:
new: gitweb: fallback to system-wide config file if default config does
not exist (closes: #450592).
* debian/rules: remove GITWEB_CONFIG=/etc/gitweb.conf from OPTS.
-- Gerrit Pape <pape@smarden.org> Thu, 03 Apr 2008 19:43:33 +0000
git-core (1:1.5.5~rc2-1) experimental; urgency=low
* new upstream release candidate.
* t9600-cvsimport.sh: set HOME before checking for cvsps availability
(closes: #471969).
* imap-send: properly error out if imap.host is not set in config
(closes: #472632).
* merge branch debian-sid.
-- Gerrit Pape <pape@smarden.org> Fri, 28 Mar 2008 08:53:30 +0000
git-core (1:1.5.4.5-1) unstable; urgency=low
* new upstream point release (closes: #473071).
-- Gerrit Pape <pape@smarden.org> Fri, 28 Mar 2008 08:26:39 +0000
git-core (1:1.5.5~rc1-1) experimental; urgency=low
* new upstream release candidate.
-- Gerrit Pape <pape@smarden.org> Sun, 23 Mar 2008 11:55:21 +0000
git-core (1:1.5.5~rc0-1) experimental; urgency=low
* new upstream release candidate.
* git-pull documentation: warn about the option order (closes: #463853).
* hash-object: cleanup handling of command line options (closes:
#464432).
* debian/diff/0004-gitk-properly-deal-with-tag-names-containing-sl.diff:
remove; applied upstream.
-- Gerrit Pape <pape@smarden.org> Wed, 19 Mar 2008 07:45:01 +0000
git-core (1:1.5.4.4-1) unstable; urgency=low
* new upstream point release.
* templates/Makefile: don't depend on local umask setting (closes:
#467518).
* Fix random crashes in http_cleanup() (closes: #468836).
* send-email: fix In-Reply-To regression (closes: #468153).
* git-merge.sh: better handling of combined --squash,--no-ff,--no-commit
options (closes: #468568).
-- Gerrit Pape <pape@smarden.org> Mon, 10 Mar 2008 10:38:51 +0000
git-core (1:1.5.4.3-1) unstable; urgency=low
* new upstream point release.
* git-clone.sh: properly configure remote even if remote's head is
dangling (closes: #466581).
* debian/diff/0004-gitk-properly-deal-with-tag-names-containing-sl.diff:
new: from upstream master: gitk: properly deal with tag names containing /
(slash) (closes: #464104).
* debian/git-daemon-run.postrm: adapt paths in /var/.
-- Gerrit Pape <pape@smarden.org> Sun, 24 Feb 2008 16:19:02 +0000
git-core (1:1.5.4.2-2) unstable; urgency=low
* debian/rules: git-daemon-run: no longer include symlinks for ./supervise/
subdirectories, update-service now takes care of this.
* debian/git-daemon-run.postinst: remove ad re-add git-daemon service on
upgrade from <= 1.5.4.2-1.
-- Gerrit Pape <pape@smarden.org> Mon, 18 Feb 2008 22:22:14 +0000
git-core (1:1.5.4.2-1) unstable; urgency=low
* new upstream point release.
* cvsimport: have default merge regex also match beginning of commit
message (thx Frédéric Brière, closes: #463468).
* builtin-commit: remove .git/SQUASH_MSG upon successful commit (closes:
#464656).
* debian/rules: change TCLTK_PATH to /usr/bin/wish8.5 in OPTS.
* debian/control: Build-Depends: tcl8.5; git-gui, gitk: Depends: tk8.5
(closes: #456423).
* debian/git-daemon-run.postinst, debian/git-daemon-run.postrm,
debian/git-daemon-run.prerm: use runit's update-service program to
add/remove the git daemon service, instead of dealing with symlinks in
/var/service/ directly.
* debian/control: package git-daemon: Depends: runit (>= 1.8.0-2) (1st
version that provides the update-service program).
-- Gerrit Pape <pape@smarden.org> Sun, 17 Feb 2008 18:48:00 +0000
git-core (1:1.5.4.1-1) unstable; urgency=medium
* debian/control: Build-Depends: cvsps (for selftests, thx Marco Rodrigues,
closes: #463896).
* new upstream point release.
-- Gerrit Pape <pape@smarden.org> Mon, 11 Feb 2008 12:00:03 +0000
git-core (1:1.5.4-1) unstable; urgency=low
* merge branch debian-experimental.
* new upstream release.
* debian/git-core.README.Debian: add Alias'es for git-favicon.png and
git-logo.png to the VirtualHost example (thx Frederic Briere, closes:
#463732).
* debian/rules: target build-arch-stamp: re-run selftests with --verbose
on test failures.
-- Gerrit Pape <pape@smarden.org> Sun, 03 Feb 2008 05:01:16 +0000
git-core (1:1.5.4~rc5-1) experimental; urgency=low
* new upstream release candidate.
-- Gerrit Pape <pape@smarden.org> Mon, 28 Jan 2008 11:01:08 +0000
git-core (1:1.5.4~rc4-1) experimental; urgency=low
* new upstream release candidate.
* debian/diff/0003-bug-448655-check-etc-mailname-if-author-email-is-un.diff:
adapt; don't warn if /etc/mailname does not exist (closes: #461844).
* debian/rules: install /usr/share/gitk/ into the gitk package, not
git-core.
-- Gerrit Pape <pape@smarden.org> Mon, 21 Jan 2008 21:15:21 +0000
git-core (1:1.5.4~rc3-1) experimental; urgency=low
* merge branch debian-sid.
* new upstream release candidate.
* "git pull --tags": error out with a better message (closes: #456035).
* gitk: use user-configured background in view definition dialog
(closes: #457124).
* debian/control: Build-Depends: cvs, libdbd-sqlite3-perl (for selftests).
-- Gerrit Pape <pape@smarden.org> Sat, 12 Jan 2008 15:09:23 +0000
git-core (1:1.5.3.8-1) unstable; urgency=low
* debian/control: for all packages: Suggests: git-doc instead of
Recommends: (thx Andrew Moise, closes: #455369).
* debian/control: add Vcs-Git: http://smarden.org/git/git.git/.
* new upstream point release.
-- Gerrit Pape <pape@smarden.org> Tue, 08 Jan 2008 21:01:35 +0000
git-core (1:1.5.4~rc2-1) experimental; urgency=low
* new upstream release candidate.
* shortlog manpage documentation: work around asciidoc markup issues
(closes: #447911).
* Fix $EDITOR regression introduced by rewrite in C (closes: #446845).
-- Gerrit Pape <pape@smarden.org> Thu, 27 Dec 2007 08:45:01 +0000
git-core (1:1.5.4~rc1-1) experimental; urgency=low
* new upstream release candidate.
* gitweb: Teach "a=blob" action to be more lenient about blob/file mime
type (closes: #435610).
-- Gerrit Pape <pape@smarden.org> Thu, 20 Dec 2007 09:07:10 +0000
git-core (1:1.5.4~rc0-1) experimental; urgency=low
* new upstream release candidate.
* build with correct version information (on amd64, closes: #454935,
#454408).
* git-reset: add -q option to operate quietly (closes: #444933).
* gitk: disable colours when calling git log (closes: #454420).
* "git svnimport" was removed in favor of "git svn" (closes: #436930,
#447325, #447965, #451037).
* git-commit: allow grouping of short options (closes: #407241).
* debian/diff/0004-contrib-hooks-post-receive-email-make-subject-prefix.diff,
debian/diff/0005-Don-t-cache-DESTDIR-in-perl-perl.mak.diff: remove;
applied upstream.
* debian/rules: install git-gui's lib/ directory plus subdirectory
properly.
* debian/control: Build-Depends: gettext.
-- Gerrit Pape <pape@smarden.org> Thu, 13 Dec 2007 14:08:45 +0000
git-core (1:1.5.3.7-1) unstable; urgency=low
* new upstream point release.
* debian/diff/0005-Don-t-cache-DESTDIR-in-perl-perl.mak.diff: new; don't
cache DESTDIR in perl/perl.mak (#452077).
* debian/rules: remove $(MAKE) -C perl clean to remove the perl/perl.mak
again, this is now handled through debian/diff/0005 (thx Pierre
Habouzit, #452077).
-- Gerrit Pape <pape@smarden.org> Mon, 3 Dec 2007 10:17:11 +0000
git-core (1:1.5.3.6-1.1) unstable; urgency=low
* Non-maintainer upload: Gerrit is currently changing home, and this bug is
preventing people from installing git, I took the initiative to fix it
before his return.
* debian/rules: force a $(MAKE) -C perl clean to remove the perl/perl.mak
that remembers our DESTDIR and makes perl modules be installed in
debian/git-core/ in the install-indep target again
(closes: #452077, #452078, #452080, #452111, #452324).
-- Pierre Habouzit <madcoder@debian.org> Thu, 22 Nov 2007 00:40:08 +0100
git-core (1:1.5.3.6-1) unstable; urgency=low
* debian/implicit: add proper dependencies to support 'parallel build'
through make -j (thx Daniel Schepler for the patch).
* debian/rules: support 'nocheck' in DEB_BUILD_OPTIONS to skip running
the selftests.
* debian/diff/0003-bug-448655-check-etc-mailname-if-author-email-is-un.diff:
new; check /etc/mailname if author email is unknown (closes: #448655).
* debian/gitweb.docs: new; install gitweb/README.
* new upstream point release.
* git-cvsimport: really convert underscores in branch names to dots with
-u (closes: #446495).
* git-mailsplit: with maildirs not only process cur/, but also new/
(closes: #447396).
* debian/diff/0004-contrib-hooks-post-receive-email-make-subject-prefix.diff:
new; cherry-pick'ed from master: contrib/hooks/post-receive-email: make
subject prefix configurable (closes: #428418).
-- Gerrit Pape <pape@smarden.org> Mon, 19 Nov 2007 12:32:11 +0000
git-core (1:1.5.3.5-1) unstable; urgency=low
* new upstream point release.
* git-config: handle --file option with relative pathname properly;
git-config: print error message if the config file cannot be read;
git-config: don't silently ignore options after --list (closes:
#445208).
-- Gerrit Pape <pape@smarden.org> Thu, 01 Nov 2007 08:35:46 +0000
git-core (1:1.5.3.4-1) unstable; urgency=low
* new upstream point release (closes: #445188).
-- Gerrit Pape <pape@smarden.org> Thu, 04 Oct 2007 08:27:01 +0000
git-core (1:1.5.3.3-1) unstable; urgency=low
* new upstream point release.
-- Gerrit Pape <pape@smarden.org> Sun, 30 Sep 2007 09:25:06 +0000
git-core (1:1.5.3.2-1) unstable; urgency=low
* new upstream point release.
* git-svn: fix "Malformed network data" with svn:// servers (closes:
#430091, #436142).
* git-commit: Allow partial commit of file removal (closes: #437817).
* git-gui: lib/index.tcl: handle files with % in the filename properly
(closes: #441167).
* git-clone: improve error message if curl program is missing or not
executable (closes: #440976).
* debian/git-daemon-run.postinst: use 'sv -v term git-daemon' instead of
'sv restart git-daemon' to restart git-daemon service if it was running.
* debian/control: git-core: no longer Suggests: cogito, which was removed.
* debian/diff/genindex.diff: apply and remove.
* debian/gitweb.conf: comment out $home_link, and set to gitweb.cgi's
default (thx Ansgar Burchardt for the patch, closes: 441694).
-- Gerrit Pape <pape@smarden.org> Thu, 20 Sep 2007 07:28:41 +0000
git-core (1:1.5.3.1-1) unstable; urgency=low
* new upstream point release.
* debian/control: git-daemon-run: improve long description (closes:
#440699).
* debian/git-daemon-run.README.Debian: improve.
* debian/control: git-svn: improve long description.
* debian/control: git-cvs: improve long description.
* debian/control: git-core: improve long description (closes: #412560).
-- Gerrit Pape <pape@smarden.org> Tue, 04 Sep 2007 18:18:33 +0000
git-core (1:1.5.3-1) unstable; urgency=low
* merge branch debian-experimental.
* new upstream release.
* debian/control: git-email: move libemail-valid-perl from Depends: to
Recommends: (thx Uwe Kleine-Koenig, closes: #439902).
* debian/control: git-email: no longer Depends: libmail-sendmail-perl (thx
Uwe Kleine-Koenig).
-- Gerrit Pape <pape@smarden.org> Sun, 02 Sep 2007 16:41:54 +0000
git-core (1:1.5.3~rc7-1) experimental; urgency=low
* new upstream release candidate.
* debian/diff/0002-git-merge-do-up-to-date-check-also-for-all-strategie.diff:
remove; included upstream.
-- Gerrit Pape <pape@smarden.org> Wed, 29 Aug 2007 12:22:16 +0000
git-core (1:1.5.3~rc6-1) experimental; urgency=low
* new upstream release candidate.
* git-am: initialize variable $resume on startup (closes: #435807).
* debian/diff/0002-git-merge-do-up-to-date-check-also-for-all-strategie.diff:
new; http://article.gmane.org/gmane.comp.version-control.git/55981.
* debian/diff/0003-git-sh-setup.sh-fallback-to-editor-not-vi-if-VI.diff:
new; git-sh-setup.sh: fallback to 'editor' not 'vi' if $VISUAL and $EDITOR
are unset (thx Mike Hommey, closes: #438793).
* merge branch debian-sid.
-- Gerrit Pape <pape@smarden.org> Sun, 26 Aug 2007 09:54:16 +0000
git-core (1:1.5.2.5-2) unstable; urgency=low
* debian/git-core.conffiles: new; add /etc/bash_completion.d/git.
-- Gerrit Pape <pape@smarden.org> Sun, 26 Aug 2007 09:49:39 +0000
git-core (1:1.5.2.5-1) unstable; urgency=low
* debian/control: fix typo in Build-Depends: libcurl4-gnutls-dev |
libcurl3-gnutls-dev (thx Mikael Eriksson, closes: #433196).
* new upstream point release.
* debian/rules: add TCLTK_PATH=/usr/bin/wish8.4 to OPTS (closes: #438662).
* dbian/control: git-core: Depends: cpio (closes: #438057).
* debian/git-core.README.Debian: fix typos (closes: #438932).
* debian/versions.upstream, debian/changelog.upstream: adapt.
* debian/rules, debian/control: install git-completion.bash from contrib as
/etc/bash_completion.d/git; git-core: Conflicts:, Provides:, Replaces:
git-completion (closes: #437532, thx Sebastian Harl).
-- Gerrit Pape <pape@smarden.org> Sat, 25 Aug 2007 17:56:20 +0000
git-core (1:1.5.3~rc4-1) experimental; urgency=low
* new upstream release candidate.
-- Gerrit Pape <pape@smarden.org> Sat, 04 Aug 2007 13:02:05 +0000
git-core (1:1.5.3~rc3-1) experimental; urgency=low
* new upstream release candidate.
* debian/versions.upstream, debian/changelog.upstream: adapt.
-- Gerrit Pape <pape@smarden.org> Fri, 27 Jul 2007 11:13:52 +0000
git-core (1:1.5.3~rc2-1) experimental; urgency=low
* new upstream release candidate.
* debian/diff/????-Pack-objects-properly-initialize-the-depth-value.diff:
remove; obsolete.
* debian/control, debian/rules: remove git-p4 package again, moved into
contrib/ upstream; see /usr/share/doc/git-core/contrib/p4import/.
* debian/versions.upstream, debian/changelog.upstream: adapt.
-- Gerrit Pape <pape@smarden.org> Fri, 20 Jul 2007 08:47:45 +0000
git-core (1:1.5.3~rc1-1) experimental; urgency=low
* new upstream release candidate.
* git-commit: don't add multiple Signed-off-by: from the same identity
(closes: #430851).
* Fix core.sharedRepository = 2 (closes: #432698).
* merge branch debian-sid.
* debian/versions.upstream, debian/changelog.upstream: adapt.
* debian/diff/0002-gitk-properly-resolve-ambiguity-if-argument-is-both.diff:
remove; doesn't apply anymore.
* debian/diff/0002-Pack-objects-properly-initialize-the-depth-value.diff:
new; on upstream advice.
-- Gerrit Pape <pape@smarden.org> Sat, 14 Jul 2007 11:45:27 +0000
git-core (1:1.5.2.4-1) unstable; urgency=low
* new upstream point release.
* debian/rules: build documentation with ASCIIDOC8=YesPlease (closes:
#432560).
* debian/control: Build-Depends: asciidoc (>> 8.0.0).
* debian/diff/????-git-gui-properly-popup-error-if-gitk-should-be-start.diff:
remove; merged upstream.
* debian/control: Build-Depends: libcurl4-gnutls-dev | libcurl3-gnutsl-dev
(closes: #432812).
* debian/versions.upstream, debian/changelog.upstream: adapt.
-- Gerrit Pape <pape@smarden.org> Fri, 13 Jul 2007 19:13:38 +0000
git-core (1:1.5.3~rc0-1) experimental; urgency=low
* new upstream release candidate.
* debian/changelog.upstream.sh: run git shortlog with option --no-merges.
* debian/versions.upstream, debian/changelog.upstream: update.
* debian/diff/0003-git-svn-trailing-slash-in-prefix-is-mandatory-with.diff,
debian/diff/0004-git-cvsimport-force-checkout-of-working-tree-after-i.diff:
remove; applied upstream.
* debian/diff/00*.diff: adapt.
* debian/rules: put git-gui, git-citool man pages into package git-gui.
-- Gerrit Pape <pape@smarden.org> Tue, 03 Jul 2007 10:01:12 +0000
git-core (1:1.5.2.3-1) unstable; urgency=low
* new upstream point release.
* debian/control: package git-gui: Replaces: git-core (<< 1:1.5.2.2-3)
(thx Frank Lichtenheld, closes: #431481).
* debian/versions.upstream, debian/changelog.upstream: update.
-- Gerrit Pape <pape@smarden.org> Tue, 03 Jul 2007 08:26:11 +0000
git-core (1:1.5.2.2-3) unstable; urgency=low
* debian/rules: move /usr/share/git-gui/ from git-core package into
git-gui package (thx Ansgar Burchardt, closes: #430530).
* debian/diff/0004-git-cvsimport-force-checkout-of-working-tree-after-i.diff:
new; git-cvsimport: force checkout of working tree after initial import
(closes: #430903).
* debian/diff/0005-git-gui-properly-popup-error-if-gitk-should-be-start.diff:
new; git-gui: properly popup error if gitk should be started but is not
installed (#429810).
* debian/control: git-gui: Recommends: gitk (closes: #429810).
* debian/rules: workaround #427907: compile with -O0 instead of -O2 on hppa
(#429389).
-- Gerrit Pape <pape@smarden.org> Fri, 29 Jun 2007 12:54:39 +0000
git-core (1:1.5.2.2-2) unstable; urgency=low
* debian/control: all Architecture: all packages: Depends: git-core (>>
${source:Upstream-Version}, git-core (<< ${source:Upstream-Version}-.)
instead of (= ${source:Version}) to support binNMUs (closes: #423041,
#430128).
-- Gerrit Pape <pape@smarden.org> Sat, 23 Jun 2007 14:02:36 +0000
git-core (1:1.5.2.2-1) unstable; urgency=low
* new upstream point release.
* Fix typo in remote branch example in git user manual (closes: #427502).
* debian/diff/0003-git-branch-track-fix-tracking-branch-computation.diff:
remove; applied upstream.
* debian/versions.upstream: new; ordered list of upstream versions,
starting with 1.0.0.
* debian/changelog.upstream.sh: new; create changelog.upstream from git
shortlog using debian/versions.upstream.
* debian/changelog.upstream: re-created through changelog.upstream.sh.
* debian/diff/0003-git-svn-trailing-slash-in-prefix-is-mandatory-with.diff:
new; git-svn: trailing slash in prefix is mandatory with --branches/-b
(closes: #429443).
-- Gerrit Pape <pape@smarden.org> Tue, 19 Jun 2007 17:32:30 +0000
git-core (1:1.5.2.1-2) unstable; urgency=low
* debian/diff/0003-git-branch-track-fix-tracking-branch-computation.diff:
new; from upstream master: git-branch --track: fix tracking branch
computation.
-- Gerrit Pape <pape@smarden.org> Fri, 8 Jun 2007 09:04:47 +0000
git-core (1:1.5.2.1-1) unstable; urgency=low
* new upstream point release.
* Create a new manpage for the gitignore format, and reference it
elsewhere (thx Josh Triplett, closes: #427078).
* debian/diff/0002-gitk-properly-resolve-ambiguity-if-argument-is-both.diff:
new; properly resolve ambiguity if argument is both, revision and
filename (closes: #425491).
* debian/control: git-core: Conflicts: git (<< 4.3.20-11) (/usr/bin/git
transition).
* debian/git-daemon-run.README.Debian: new (#422139).
* debian/control: all Architecture: all packages: Depends: git-core
(= ${source:Version}) instead of (>= ...); this makes it no longer
support binNMUs (closes: #425494, reopens: #423041).
-- Gerrit Pape <pape@smarden.org> Sun, 03 Jun 2007 10:09:53 +0000
git-core (1:1.5.2-1) unstable; urgency=low
* merge branch debian-experimental.
* new upstream release.
* gitweb: choose appropriate view for file type if a= parameter missing
(closes: #410465).
* git fetch -q is supported (closes: #423165).
* /usr/bin/git transition (thx Ian Beckwith!).
* debian/git-core.preinst: new; remove /usr/bin/git alternative if
upgrading from versions older than 1:1.5.2~rc3-2.
* debian/git-core.prerm, debian/git-core.postinst: remove; no longer
handle /usr/bin/git alternative through update-alternatives.
* debian/rules: no longer install git program as git-scm.
-- Gerrit Pape <pape@smarden.org> Wed, 30 May 2007 12:38:45 +0000
git-core (1:1.5.2~rc3-2) experimental; urgency=low
* debian/diff/0000-maint-branch-from-20070514.diff: remove; obsolete.
* debian/control: package git-p4: Section: contrib/devel (closes:
#422755).
* debian/control: package git-p4: Depends: git-core (>= ${source:Version})
instead of (= ${Source-Version}) (to support binNMUs).
-- Gerrit Pape <pape@smarden.org> Tue, 15 May 2007 21:33:06 +0000
git-core (1:1.5.1.4-2) unstable; urgency=low
* debian/diff/0000-maint-branch-from-20070514.diff: new; snapshot upstream
maint branch 20070514:
* includes git-svn fixes (closes: #423599, #423226).
* deian/rules: reverse order when applying diffs (fix typo).
* debian/control: all Architecture: all packages: Depends: git-core (>=
${source:Version}) instead of (= ${Source-Version}) (to support binNMUs,
closes: #423041).
-- Gerrit Pape <pape@smarden.org> Mon, 14 May 2007 13:15:50 +0000
git-core (1:1.5.2~rc3-1) experimental; urgency=low
* new upstream release candidate.
* debian/diff/0002-Optimize-directory-listing-with-pathspec-limiter.diff:
remove; included upstream.
* debian/control: Build-Depends: tcl8.4 (for gitgui).
* debian/rules: add symlink /etc/init.d/git-daemon -> /usr/bin/sv to
git-daemon-run package (#422139).
-- Gerrit Pape <pape@smarden.org> Mon, 14 May 2007 10:10:02 +0000
git-core (1:1.5.1.4-1) unstable; urgency=medium
* new upstream point release.
* debian/diff/pager-vs-less.diff: rename to
0001-pager.c-fallback-to-pager-not-less-if-PAGER-is.diff; adapt.
* debian/diff/0002-Optimize-directory-listing-with-pathspec-limiter.diff:
new: Optimize directory listing with pathspec limiter (closes: #420671).
* debian/git-daemon-run.postinst: restart git-daemon service if it was
running.
-- Gerrit Pape <pape@smarden.org> Wed, 09 May 2007 08:48:50 +0000
git-core (1:1.5.2~rc2-1) experimental; urgency=low
* new upstream release candidate.
-- Gerrit Pape <pape@smarden.org> Mon, 07 May 2007 18:02:53 +0000
git-core (1:1.5.2~rc1-1) experimental; urgency=low
* new upstream release candidate.
* debian/control, debian/rules: new package git-p4: tools for importing
development history from perforce repositories.
* debian/rules: add WITH_P4IMPORT=1 to OPTS; no longer install
git-p4import.py into /usr/share/doc/git-core/contrib/; add OPTS to
make clean in target clean:; add PYTHON_PATH=/usr/bin/python to OPTS.
-- Gerrit Pape <pape@smarden.org> Tue, 01 May 2007 12:28:15 +0000
git-core (1:1.5.1.3-1) unstable; urgency=low
* new upstream point release.
* git-add tried to optimize by finding common leading directories
across its arguments but botched, causing very confused behaviour
(closes: #420671).
* Documentation/git-reset.txt: suggest git commit --amend in example
(closes: #420112).
* unofficial rpm.spec file shipped with git was letting ETC_GITCONFIG
set to /usr/etc/gitconfig. Tweak the official Makefile to make it
harder for distro people to make the same mistake, by setting the
variable to /etc/gitconfig if prefix is set to /usr (closes:
#420675).
* debian/changelog.upstream: upstream changes taken from mailing list
announcement.
-- Gerrit Pape <pape@smarden.org> Tue, 01 May 2007 08:59:06 +0000
git-core (1:1.5.1.2-1) unstable; urgency=low
* new upstream point release.
* debian/changelog.upstream: upstream changes taken from mailing list
announcement.
-- Gerrit Pape <pape@smarden.org> Sun, 22 Apr 2007 13:31:05 +0000
git-core (1:1.5.1.1-1) unstable; urgency=low
* new upstream point release.
* debian/changelog.upstream: upstream changes taken from mailing list
announcement.
* debian/diff/0010-rename-contrib-hooks-post-receieve-email-to-contrib.diff:
remove; applied upstream.
-- Gerrit Pape <pape@smarden.org> Thu, 12 Apr 2007 09:05:44 +0000
git-core (1:1.5.1-1) unstable; urgency=low
* new upstream release.
* git-svn got almost a rewrite (closes: #416372).
* debian/diff/git-cvsserver-update-hook.diff: remove; included upstream.
* debian/diff/Documentation-git-svnimport.txt-fix-typo.diff,
debian/diff/http-fetch-don-t-use-double-slash-as-directory-sepa.diff,
debian/diff/Documentation-git-rev-parse.txt-fix-example-in-SPEC.diff:
remove; applied upstream.
* debian/diff/GNU-Hurd.diff: remove; obsolete.
* debian/git-daemon-run.postrm: check for deluser being available, if
not, print warning and don't remove system user (closes: #416755).
* debian/changelog.upstream: upstream changes taken from mailing list
announcement, and git shortlog.
* debian/diff/0010-rename-contrib-hooks-post-receieve-email-to-contrib.diff:
new; rename contrib/hooks/post-receieve-email to contrib/hooks/post-
receive-email.
-- Gerrit Pape <pape@smarden.org> Wed, 4 Apr 2007 11:56:18 +0000
git-core (1:1.5.0.6-1) unstable; urgency=low
* new upstream point release.
* debian/diff/http-fetch-don-t-use-double-slash-as-directory-sepa.diff:
new, cherry-pick'ed from upstream master: http-fetch: don't use
double-slash as directory separator in URLs (closes: #409887).
* debian/diff/Documentation-git-svnimport.txt-fix-typo.diff: new:
Documentation/git-svnimport.txt: fix typo.
* debian/diff/Documentation-git-rev-parse.txt-fix-example-in-SPEC.diff:
new Documentation/git-rev-parse.txt: fix example in SPECIFYING RANGES
(closes: #404795).
* debian/changelog.upstream: upstream changes taken from mailing list
announcements.
-- Gerrit Pape <pape@smarden.org> Thu, 29 Mar 2007 10:51:00 +0000
git-core (1:1.5.0.5-1) unstable; urgency=low
* new upstream point release.
* debian/rules: make sure subdirectories of /usr/share/doc/git-core/ are
mode 0755 (closes: #415328); remove .gitignore file(s) from
/usr/share/doc/git-core/ (closes: #413913).
* debian/control: git-svn: Depends: libterm-readkey-perl (thx Pierre
Habouzit, closes: #415475).
* debian/changelog.upstream: upstream changes taken from mailing list
announcements.
-- Gerrit Pape <pape@smarden.org> Wed, 21 Mar 2007 17:02:27 +0000
git-core (1:1.5.0.3-1) unstable; urgency=low
* new upstream point release.
* debian/diff/cvsexportcommit-.msg.diff: remove; applied upstream.
* debian/git-core.docs, debian/git-doc.docs: add RelNotes.
* debian/changelog.upstream: upstream changes taken from mailing list
announcements.
-- Gerrit Pape <pape@smarden.org> Mon, 5 Mar 2007 19:44:05 +0000
git-core (1:1.5.0.2-1) unstable; urgency=low
* new upstream point release.
* debian/control: git-core: Conflicts: qgit (<< 1.5.5) (closes: #412452).
* debian/changelog.upstream: upstream changes taken from mailing list
announcements.
* debian/diff/cvsexportcommit-.msg.diff: new; don't cleanup .msg if not
yet committed to cvs (closes: #412732).
-- Gerrit Pape <pape@smarden.org> Wed, 28 Feb 2007 15:50:53 +0000
git-core (1:1.5.0.1-1) unstable; urgency=low
* new upstream point release.
* debian/diff/git-cvsserver-update-hook.diff: new from upstream pu branch:
Have git-cvsserver call hooks/update before really altering the ref.
* debian/control: git-cvs: Depends: libdbd-sqlite3-perl (git-cvsserver).
-- Gerrit Pape <pape@smarden.org> Sun, 25 Feb 2007 11:38:34 +0000
git-core (1:1.5.0-1) experimental; urgency=low
* new upstream release.
* debian/diff/archimport-empty-dir.diff: remove; applied upstream.
* debian/diff/pager-vs-less.diff, debian/diff/Add-install-lib-target.diff:
adapt.
* debian/control: new package git-gui, the git graphical user interface;
git-core: no longer Depends:, Build-Depends: rcs; git-core: Suggests:
git-gui.
* debian/rules: new package git-gui.
* debian/changelog.upstream: upstream changes taken from mailing list
announcements and git shortlog.
* debian/git-daemon/run: don't limit git-daemon's memory resources.
* debian/control, debian/rules: remove git-core-dev package again,
libgit.a is not a publically usable/useful library at this moment, as
its internal API is not cast in stone yet.
* debian/diff/Add-install-lib-target.diff: remove; there's no git-core-dev
package.
-- Gerrit Pape <pape@smarden.org> Fri, 16 Feb 2007 07:18:44 +0000
git-core (1:1.5.0~rc3-1) experimental; urgency=low
* new upstream release candidate.
* debian/diff/Add-install-lib-target.diff: new; add install-lib target to
install libgit.a library plus header files (thx Luca Falavigna).
* debian/rules: new package git-core-dev; remove obsolete
WITH_SEND_EMAIL=1, OPTIMIZE="..." from $(OPTS); remove
WITH_OWN_SUBPROCESS_PY=1 from $(OPTS), it's no longer necessary (thx
Luca Falavigna; closes: #403731); make git-p4import.pl available through
/usr/share/doc/git-core/contrib/ (closes: #403387); minor cleanup.
* debian/control: new package git-core-dev (thx Luca Falavigna; closes:
#407722); no longer Build-Depends: python; git-core: no longer Recommends:
python, Suggests: git-core-dev; update short and long descriptions
(closes: #406323); git-arch: Depends: tla, instead of Suggests:.
* debian/diff/GNU-Hurd.diff: adapt.
* debian/diff/archimport-empty-dir.diff: new; git-archimport: initial import
needs empty directory (closes: #400508).
* debian/gitweb.README.Debian: typo.
-- Gerrit Pape <pape@smarden.org> Sat, 3 Feb 2007 09:32:48 +0000
git-core (1:1.4.4.4-1) unstable; urgency=low
* new upstream release, important fixes:
* pack-check.c::verify_packfile(): don't run SHA-1 update on huge data.
* Fix infinite loop when deleting multiple packed refs.
* diff --check: fix off by one error.
* debian/diff/0001-spurious-.sp-in-manpages.diff: remove; included in
upstream version.
* debian/changelog.upstream: upstream changes taken from mailing list
announcement.
-- Gerrit Pape <pape@smarden.org> Tue, 9 Jan 2007 19:43:56 +0000
git-core (1:1.4.4.3-1) unstable; urgency=medium
* new upstream release (closes: #404796); important fixes:
* Make sure the empty tree exists when needed in merge-recursive; the
error message may make the user think that their database is corrupt
when its actually not.
* Don't use memcpy when source and dest. buffers may overlap.
* cvsserver: Avoid miscounting bytes in Perl v5.8.x; this breaks the
counting of bytes for the CVS protocol, resulting in the client
expecting less data than we actually send, and storing truncated files.
* debian/diff/0001-spurious-.sp-in-manpages.diff: new from upstream git;
work around spurious .sp in manpages (closes: #388370).
* debian/changelog.upstream: upstream changes taken from mailing list
announcement.
-- Gerrit Pape <pape@smarden.org> Fri, 29 Dec 2006 07:38:15 +0000
git-core (1:1.4.4.2-1) unstable; urgency=low
* new upstream release.
* fixes FTBFS on m68k (thx Roman Zippel, closes: #402022).
* 0001-archive-zip-don-t-use-sizeof-struct.diff,
0002-git-svn-error-out-from-dcommit-on-a-parent-less-commit.diff,
0003-git-svn-correctly-handle-revision-0-in-SVN-repositories.diff,
0004-git-svn-preserve-uncommitted-changes-after-dcommit.diff,
0005-Increase-length-of-function-name-buffer.diff: remove; obsolete.
* debian/changelog.upstream: upstream changes taken from mailing list
announcements and git log | git shortlog.
-- Gerrit Pape <pape@smarden.org> Fri, 8 Dec 2006 19:13:49 +0000
git-core (1:1.4.4.1-1) unstable; urgency=low
* new upstream release (closes: #400191).
* 0001-archive-zip-don-t-use-sizeof-struct.diff: new from upstream git;
replaces debian/diff/not-packed-structs.diff.
* 0002-git-svn-error-out-from-dcommit-on-a-parent-less-commit.diff,
0003-git-svn-correctly-handle-revision-0-in-SVN-repositories.diff,
0004-git-svn-preserve-uncommitted-changes-after-dcommit.diff,
0005-Increase-length-of-function-name-buffer.diff: new from upstream
git.
* debian/diff/genindex.diff: new; support subdirs in gitweb example index
generator (thx David Nusinow; closes: #400284).
* debian/diff/GNU-Hurd.diff, debian/diff/pager-vs-less.diff: adapt.
-- Gerrit Pape <pape@smarden.org> Sun, 26 Nov 2006 14:31:39 +0000
git-core (1:1.4.4-2) unstable; urgency=low
* debian/diff/not-packed-structs.diff: new; don't use sizeof(struct ...),
size doesn't match on arm (fixes selftests failure on arm).
-- Gerrit Pape <pape@smarden.org> Wed, 22 Nov 2006 23:31:11 +0000
git-core (1:1.4.4-1) unstable; urgency=low
* new upstream release (closes: #399575).
* debian/changelog.upstream: upstream changes taken from mailing list
announcements.
* debian/control: Build-Depends: unzip (for selftests).
-- Gerrit Pape <pape@smarden.org> Tue, 21 Nov 2006 09:43:37 +0000
git-core (1:1.4.3.5-1) unstable; urgency=low
* new upstream release.
* debian/changelog.upstream: upstream changes taken from mailing list
announcements.
-- Gerrit Pape <pape@smarden.org> Mon, 13 Nov 2006 17:46:50 +0000
git-core (1:1.4.3.3-2) unstable; urgency=medium
* debian/git-daemon-run.postinst: don't make the log service system user
gitlog member of group adm, but nogroup; gitlog's home directory is
/nonexistent (thx Florian Weimer, closes: #396687).
* debian/git-daemon/log/run: make /var/log/git-daemon log directory mode
2750, owner gitlog:adm.
* debian/changelog.upstream: upstream changes taken from mailing list
announcements.
-- Gerrit Pape <pape@smarden.org> Mon, 6 Nov 2006 20:12:08 +0000
git-core (1:1.4.3.3-1) unstable; urgency=low
* new upstream release.
* debian/diff/0001-Set-HOME-for-selftests.diff: remove; applied upstream.
* debian/control: git-core: Depends: libdigest-sha1-perl (closes: #395304,
thx Ichthyostega).
-- Gerrit Pape <pape@smarden.org> Tue, 31 Oct 2006 07:31:21 +0000
git-core (1:1.4.3.2-1) unstable; urgency=low
* new upstream release.
* debian/diff/gitweb.conf.diff: remove; obsolete.
* debian/changelog.upstream: upstream changes taken from mailing list
announcements.
* debian/rules: add 'GITWEB_CONFIG=/etc/gitweb.conf mandir=/usr/share/man
OPTIMIZE="-O2 -g -Wall" INSTALLDIRS=vendor' to build OPTS, adapt paths;
git-arch: don't include git-archive, git-upload-archive; gitweb: install
git-logo.png, git-favicon.png; git-core: properly install new Git.pm
plus man page.
* debian/diff/0001-Set-HOME-for-selftests.diff: new; set $HOME for
selftests (fixes build/selftest failures).
* debian/control: git-core: Depends: liberror-perl.
-- Gerrit Pape <pape@smarden.org> Tue, 24 Oct 2006 16:32:35 +0000
git-core (1:1.4.2.3-2) unstable; urgency=low
* debian/control: new package git-daemon-run: provide a git-daemon
service; git-core: no longer Suggests: runit, Depends: adduser, the
git-daemon-run package now Depends: runit, adduser.
* debian/debian/git-core.postinst, debian/git-daemon-run.postrm,
debian/git-daemon-run.prerm: new; manage gitlog user and git-daemon
service (closes: #388144).
* debian/git-core.postinst: no longer adduser gitlog, git-daemon-run
package does now.
* debian/git-core.postrm: remove; obsolete.
* debian/rules: install git-daemon service directory in the new
git-daemon-run package instead of the git-core package.
* debian/git-core.conffiles: rename to debian/git-daemon-run.conffiles.
* debian/git-core.README.Debian: adapt.
* debian/control: git-core: Suggests: git-daemon-run.
-- Gerrit Pape <pape@smarden.org> Sun, 8 Oct 2006 09:29:50 +0000
git-core (1:1.4.2.3-1) unstable; urgency=medium
* new upstream release.
* debian/changelog.upstream: upstream changes taken from mailing list
announcements.
* debian/diff/t3403-skip-3-7.diff: remove; git-am is fixed upstream.
* debian/gitweb.conf: add $stylesheet = "/gitweb.css" (thx Christian
Kujau, closes: #383065).
-- Gerrit Pape <pape@smarden.org> Sun, 8 Oct 2006 07:31:03 +0000
git-core (1:1.4.2.1-1) unstable; urgency=low
* new upstream release (closes: #386820, #387405).
* debian/changelog.upstream: upstream changes taken from mailing list
announcements.
* debian/diff/GNU-Hurd.diff: new; make the build process detect and
support the Debian GNU/Hurd architecture (thx Cyril Brulebois, closes:
#379841).
* debian/diff/GNU-kFreeBSD.diff: remove; applied upstream.
* debian/rules: gitweb: install gitweb.css into /var/www/ instead of
/usr/share/doc/gitweb/ (thx Matthijs Melchior, closes: #383065).
* debian/gitweb.docs: remove; obsolete.
* debian/examples/index.aux-generation: example script to generate an
optional index.aux file for the use with gitweb (thx Matthew Wilcox,
#383219).
* debian/gitweb.examples: new; install debian/examples/index.aux-generation
(#383219).
* debian/git-core.README.Debian: new; hints on how to set up a
git.example.org server providing git://, rsync://, http:// access to
repositories from Matthew Wilcox (thx!, closes: #383219).
* debian/gitweb.README.Debian: cleanup; refer to git-core.README.Debian.
* debian/control: git-svn: Depends: libsvn-perl | libsvn-core-perl (thx
Peter Samuelson); git-core, git-doc: Suggests: gitweb; gitweb:
Recommends: git-doc.
* debian/diff/pager-vs-less.diff, debian/diff/gitweb.conf.diff: adapt.
* debian/git-daemon/: new; git-daemon service directory for the use with
runit.
* debian/control: Build-Depends: subversion, libsvn-perl | libsvn-core-perl
(for git-svn selftests); git-core: Suggests: runit, Depends: adduser.
* debian/diff/t3403-skip-3-7.diff: new; skip selftests 3,7 in t3403 as
they fail without a terminal connected.
* debian/git-core.conffiles: new; add /etc/sv/git-daemon/run,
/etc/sv/git-daemon/log/run.
-- Gerrit Pape <pape@smarden.org> Fri, 15 Sep 2006 12:46:58 +0000
git-core (1:1.4.1.1-1) unstable; urgency=low
* new upstream release.
* debian/diff/GNU-kFreeBSD.diff: new; make the build process detect and
support the Debian GNU/kFreeBSD architecture (thx Petr Salinger, closes:
#380209).
-- Gerrit Pape <pape@smarden.org> Sat, 29 Jul 2006 15:31:04 +0000
git-core (1:1.4.1-2) unstable; urgency=low
* adopt package gitweb, now included in git-core upstream source (thx
Andres Salomon):
* debian/control, debian/rules: build gitweb package.
* debian/copyright: adapt.
* debian/gitweb.README.Debian, debian/gitweb.conf, debian/gitweb.docs:
new; taken from Andres' gitweb package.
* debian/diff/gitweb.conf.diff: new; adapt Andres' gitweb.conf.patch.
* debian/gitweb.conffiles: new; /etc/gitweb.conf.
* debian/changelog: use epoch 1 to supersede gitweb-264 package version.
* debian/rules: set DESTDIR in environment, not build flags.
-- Gerrit Pape <pape@smarden.org> Thu, 27 Jul 2006 21:44:06 +0000
git-core (1.4.1-1) unstable; urgency=low
* new upstream release.
* debian/changelog.upstream: upstream changes taken from mailing list
announcement.
* debian/rules: user same build flags and prefix to $(MAKE) in build
and install target to prevent rebuild in install target.
-- Gerrit Pape <pape@smarden.org> Tue, 11 Jul 2006 21:38:33 +0000
git-core (1.4.0-1) unstable; urgency=low
* new upstream release.
* debian/changelog.upstream: new; upstream changes taken from mailing
list announcement.
* debian/rules: install debian/changelog.upstream as upstream changelog.
* debian/diff/pager-vs-less.diff: adapt.
* debian/control: Standards-Version: 3.7.2.0.
-- Gerrit Pape <pape@smarden.org> Wed, 14 Jun 2006 17:04:56 +0000
git-core (1.3.3-2) unstable; urgency=medium
* debian/control: git-core: Depends: perl-modules (closes: #369737).
* debian/diff/pager-vs-less.diff: new; fallback to `pager` not `less`
if $PAGER is unset (closes: #369742).
-- Gerrit Pape <pape@smarden.org> Sat, 10 Jun 2006 11:18:48 +0000
git-core (1.3.3-1) unstable; urgency=low
* new upstream release.
-- Gerrit Pape <pape@smarden.org> Thu, 25 May 2006 10:46:00 +0000
git-core (1.3.2-1) unstable; urgency=low
* new upstream release.
-- Gerrit Pape <pape@smarden.org> Wed, 10 May 2006 20:41:39 +0000
git-core (1.3.1-1) unstable; urgency=low
* new upstream release (closes: #364678).
* debian/rules: install contrib/ directory into /usr/share/doc/git-core/.
-- Gerrit Pape <pape@smarden.org> Mon, 1 May 2006 13:01:42 +0000
git-core (1.2.6-1) unstable; urgency=low
* new upstream release.
* debian/control: git-cvs: Depends: cvsps (>> 2.1-0).
-- Gerrit Pape <pape@smarden.org> Sun, 16 Apr 2006 14:37:53 +0000
git-core (1.2.4-1) unstable; urgency=low
* new upstream release (closes: #354563).
-- Gerrit Pape <pape@smarden.org> Fri, 3 Mar 2006 21:33:58 +0000
git-core (1.2.1-1) unstable; urgency=low
* new upstream release (closes: #353041).
* debian/control: git-core: Recommends: ssh-client instead of
openssh-client (closes: #350708).
-- Gerrit Pape <pape@smarden.org> Thu, 16 Feb 2006 09:33:42 +0000
git-core (1.1.5-1) unstable; urgency=high
* new upstream release.
* checkout: do not make a temporary copy of symlink target.
If the index records an insanely long symbolic link, copying
into the temporary would overflow the buffer (noticed by Mark
Wooding). (closes: #350274).
-- Gerrit Pape <pape@smarden.org> Sat, 28 Jan 2006 20:16:44 +0000
git-core (1.1.3-1) unstable; urgency=low
* new upstream release.
-- Gerrit Pape <pape@smarden.org> Mon, 16 Jan 2006 10:19:37 +0000
git-core (1.0.8-1) unstable; urgency=low
* new upstream point release.
* debian/diff/t6001-rev-lisge-order.sh.diff: remove; applied upstream.
* debian/control: Build-Depends: libcurl3-gnutls-dev | libcurl3-dev,
python, asciidoc (>> 7.0.2-3) (ease backport to sarge, thx Norbert
Tretkowski, closes: #344929).
-- Gerrit Pape <pape@smarden.org> Mon, 9 Jan 2006 19:19:36 +0000
git-core (1.0.6-1) unstable; urgency=low
* new upstream point release.
* debian/diff/t6001-rev-list-merge-order.sh.diff: new: fix skipping
merge-order test with NO_OPENSSL=1.
* debian/rules: re-enable git-rev-list --merge-order selftests.
* debian/control: git-svn: Depends: libwww-perl (closes: #345045).
-- Gerrit Pape <pape@smarden.org> Mon, 2 Jan 2006 20:25:57 +0000
git-core (1.0.5-1) unstable; urgency=low
* new upstream point release.
* debian/rules: don't take upstream changelog from upstream
debian/changelog.
* debian/changelog.upstream: remove again.
-- Gerrit Pape <pape@smarden.org> Tue, 27 Dec 2005 13:25:53 +0000
git-core (1.0.3-1) unstable; urgency=low
* new upstream point release.
* debian/changelog.upstream: new: upstream changelog taken from upstream
debian/changelog.
* debian/rules: install debian/changelog.upstream as upstream changelog;
remove obsolete VERSION variable.
-- Gerrit Pape <pape@smarden.org> Fri, 23 Dec 2005 14:58:14 +0000
git-core (1.0.0-1) unstable; urgency=medium
* new upstream release: GIT 1.0.0.
-- Gerrit Pape <pape@smarden.org> Wed, 21 Dec 2005 16:17:18 +0000
git-core (0.99.9n-1) unstable; urgency=low
* new upstream version: GIT 0.99.9n aka 1.0rc6.
* debian/rules: rename git program in git-core package to git-scm,
handle /usr/bin/git program through update-alternatives (as suggested
by Ian Beckwith, see #342363).
* debian/control: git-core: Conflicts: git (<< 4.3.20-8) (closes:
#342363).
* debian/git-core.postinst, debian/git-core.prerm: new: run
update-alternatives --install /usr/bin/git git /usr/bin/git-scm with
priority 70 on configure, and --remove on remove respectively.
-- Gerrit Pape <pape@smarden.org> Thu, 15 Dec 2005 11:24:51 +0000
git-core (0.99.9m-1) unstable; urgency=low
* new upstream version: GIT 0.99.9m aka 1.0rc5.
* sets PYTHONPATH for selftests (fixes autobuild test failures).
* switch from tarball-in-tarball approach to original upstream tarball.
* debian/changelog: add changelog history, Junio C Hamano, Ryan Anderson,
Eric Biederman previously were maintaining this package unofficially.
* debian/control: Build-Depends: rcs (for selftests); git-core:
Recommends: patch, less, Suggests: cogito; git-arch: Suggests: tla,
bazzar; git-cvs: Depends: cvsps, Suggests: cvs; git-svn: Depends:
libsvn-core-perl (closes:#342617), Suggests: subversion; git-email:
Depends: libmail-sendmail-perl, libemail-valod-perl; update short
description (lots taken from upstream unofficial package, thx).
* debian/git-core.docs, debian/git-doc.docs: adapt.
* debian/rules: adapt; remove target unpack; add target patch; adapt
target clean.
-- Gerrit Pape <pape@smarden.org> Wed, 14 Dec 2005 19:48:41 +0000
git-core (0.99.9l-1) unstable; urgency=low
* new upstream version.
* debian/rules: apply diffs with patch -p1.
* debian/control, debian/rules: split off git-arch, git-cvs, git-svn,
git-email packages, as suggested by upstream:
http://article.gmane.org/gmane.comp.version-control.git/13185
* debian/git-doc.docs: get docs from temporary install directory;
include *.txt docs.
* debian/control: git-doc: Section: doc; Suggests: git-core, git-arch,
git-cvs, git-svn, git-email, gitk; git-core: Suggests: git-arch,
git-cvs, git-svn, git-email, gitk.
-- Gerrit Pape <pape@smarden.org> Mon, 5 Dec 2005 18:04:37 +0000
git-core (0.99.9k-1) unstable; urgency=low
* new upstream version.
* debian/implicit: update to revision 1.11.
* debian/git-doc.docs: add git/Documentation/howto,
git/Documentation/technical (closes: #341178).
-- Gerrit Pape <pape@smarden.org> Tue, 29 Nov 2005 21:45:53 +0000
git-core (0.99.9j-1) unstable; urgency=low
* initial version.
* debian/control: git-core: Replaces: cogito (<< 0.16rc2-0); cogito >=
0.16rc2-0 no longer includes the git core components, but depends on
the git-core package (see #338789).
-- Gerrit Pape <pape@smarden.org> Fri, 18 Nov 2005 22:26:36 +0000
git-core (0.99.9j-0) unstable; urgency=low
* GIT 0.99.9j aka 1.0rc3
-- Junio C Hamano <junkio@cox.net> Wed, 16 Nov 2005 20:39:55 -0800
git-core (0.99.9i-0) unstable; urgency=low
* GIT 0.99.9i aka 1.0rc2
-- Junio C Hamano <junkio@cox.net> Mon, 14 Nov 2005 18:38:27 -0800
git-core (0.99.9h-0) unstable; urgency=low
* GIT 0.99.9h
-- Junio C Hamano <junkio@cox.net> Fri, 11 Nov 2005 22:33:18 -0800
git-core (0.99.9g-0) unstable; urgency=low
* GIT 0.99.9g
-- Junio C Hamano <junkio@cox.net> Wed, 9 Nov 2005 21:01:55 -0800
git-core (0.99.9f-0) unstable; urgency=low
* GIT 0.99.9f
-- Junio C Hamano <junkio@cox.net> Tue, 8 Nov 2005 01:21:52 -0800
git-core (0.99.9e-0) unstable; urgency=low
* GIT 0.99.9e
-- Junio C Hamano <junkio@cox.net> Sun, 6 Nov 2005 18:37:18 -0800
git-core (0.99.9d-0) unstable; urgency=low
* GIT 0.99.9d
-- Junio C Hamano <junkio@cox.net> Sat, 5 Nov 2005 11:46:37 -0800
git-core (0.99.9c-0) unstable; urgency=low
* GIT 0.99.9c
-- Junio C Hamano <junkio@cox.net> Thu, 3 Nov 2005 15:44:54 -0800
git-core (0.99.9b-0) unstable; urgency=low
* GIT 0.99.9b
-- Junio C Hamano <junkio@cox.net> Tue, 1 Nov 2005 21:39:39 -0800
git-core (0.99.9a-0) unstable; urgency=low
* GIT 0.99.9a
-- Junio C Hamano <junkio@cox.net> Sun, 30 Oct 2005 15:03:32 -0800
git-core (0.99.9.GIT-2) unstable; urgency=low
* Build Dependency did not include libexpat-dev.
-- Junio C Hamano <junkio@cox.net> Sun, 13 Nov 2005 01:55:34 -0800
git-core (0.99.9.GIT-1) unstable; urgency=low
* Do not scatter txt and html documentation into feature
subpackages. Do place man pages into them.
* Capture more cvs stuff into git-cvs package.
-- Junio C Hamano <junkio@cox.net> Tue, 8 Nov 2005 01:19:06 -0800
git-core (0.99.9.GIT-0) unstable; urgency=low
* Test Build.
-- Junio C Hamano <junkio@cox.net> Sat, 5 Nov 2005 11:18:13 -0800
git-core (0.99.9-1) unstable; urgency=low
* Split the git-core binary package into core, doc, and foreign SCM
interoperability modules.
-- Junio C Hamano <junkio@cox.net> Sat, 5 Nov 2005 11:18:13 -0800
git-core (0.99.9-0) unstable; urgency=low
* GIT 0.99.9
-- Junio C Hamano <junkio@cox.net> Sat, 29 Oct 2005 14:34:30 -0700
git-core (0.99.8-0) unstable; urgency=low
* GIT 0.99.8
-- Junio C Hamano <junkio@cox.net> Sun, 2 Oct 2005 12:54:26 -0700
git-core (0.99.7-0) unstable; urgency=low
* GIT 0.99.7
-- Junio C Hamano <junkio@cox.net> Sat, 10 Sep 2005 18:36:39 -0700
git-core (0.99.6-0) unstable; urgency=low
* GIT 0.99.6
-- Junio C Hamano <junkio@cox.net> Wed, 24 Aug 2005 23:09:35 -0700
git-core (0.99.5-1) unstable; urgency=low
* Enable git-send-email on Debian. There is no reason to shy
away from it, since we have the necessary Perl modules available.
-- Junio C Hamano <junkio@cox.net> Thu, 25 Aug 2005 14:16:59 -0700
git-core (0.99.5-0) unstable; urgency=low
* GIT 0.99.5
-- Junio C Hamano <junkio@cox.net> Wed, 10 Aug 2005 22:05:00 -0700
git-core (0.99.4-4) unstable; urgency=low
* Mark git-tk as architecture neutral.
-- Junio C Hamano <junkio@cox.net> Fri, 12 Aug 2005 13:25:00 -0700
git-core (0.99.4-3) unstable; urgency=low
* Split off gitk.
* Do not depend on diff which is an essential package.
* Use dh_movefiles, not dh_install, to stage two subpackages.
-- Matthias Urlichs <smurf@debian.org> Thu, 11 Aug 2005 01:43:24 +0200
git-core (0.99.4-2) unstable; urgency=low
* Git 0.99.4 official release.
-- Junio C Hamano <junkio@cox.net> Wed, 10 Aug 2005 15:00:00 -0700
git-core (0.99.4-1) unstable; urgency=low
* Pass prefix down to the submake when building.
-- Junio C Hamano <junkio@cox.net> Sat, 6 Aug 2005 13:00:00 -0700
git-core (0.99-2) unstable; urgency=low
* Conflict with the GNU Interactive Tools package, which also installs
/usr/bin/git.
* Use the Mozilla SHA1 code and/or the PPC assembly in preference to
OpenSSL. This is only a partial fix for the license issues with OpenSSL.
* Minor tweaks to the Depends.
-- Ryan Anderson <ryan@michonline.com> Sat, 23 Jul 2005 14:15:00 -0400
git-core (0.99-1) unstable; urgency=low
* Update deb package support to build correctly.
-- Ryan Anderson <ryan@michonline.com> Thu, 21 Jul 2005 02:03:32 -0400
git-core (0.99-0) unstable; urgency=low
* Initial deb package support
-- Eric Biederman <ebiederm@xmission.com> Tue, 12 Jul 2005 10:57:51 -0600
|