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
|
devscripts (2.9.26etch5) oldstable-security; urgency=low
* uscan: Fix regressions introduced by the previous release:
+ Track position in global matches to avoid infinite loops and handle
zero-width matches. Thanks, Raphael Geissert and MartÃn Ferrari.
+ Make download scripts which pass parameters to the called script
work again. Thanks, Ryan Niebur.
-- Adam D. Barratt <adam@adam-barratt.org.uk> Wed, 09 Sep 2009 19:42:32 +0100
devscripts (2.9.26etch4) oldstable-security; urgency=low
* uscan: Make download scripts using uupdate work correctly again.
(Accidentally broken in etch3).
-- Adam D. Barratt <adam@adam-barratt.org.uk> Mon, 25 May 2009 23:22:42 +0100
devscripts (2.9.26etch3) oldstable-security; urgency=low
* uscan: Modify the handling of mangle rules in watch files to apply the
rules without executing them as Perl code.
-- Adam D. Barratt <adam@adam-barratt.org.uk> Tue, 24 Mar 2009 20:10:47 +0000
devscripts (2.9.26etch2) stable; urgency=low
* debsign: Use mktemp rather than creating a temporary directory named
after the process ID. (Closes: #507482)
-- Adam D. Barratt <adam@adam-barratt.org.uk> Sat, 10 Jan 2009 17:41:14 +0000
devscripts (2.9.26etch1) stable; urgency=low
* debsign:
+ Add support for the new Checksums-Sha* .changes file fields
introduced by dpkg 1.14.17 (Closes: #474949)
+ Abort if any unknown Checksums-* fields are found in the .changes
file
+ Abort if the Format field of the .changes file is unsupported
(greater than 1.8, less than 1.7 or non-numeric)
+ Use a case-insensitive search for field names
-- Adam D. Barratt <adam@adam-barratt.org.uk> Mon, 08 Dec 2008 18:12:05 +0000
devscripts (2.9.26) unstable; urgency=low
* deb-reversion: update to new upstream version (Closes: #329374)
* debc/debi: handle specifying changes file on command line again
(Closes: #398152)
* debc/debi: handle arch all packages correctly (oops!) (Closes:
#398597)
* dget: new upstream version, supports looking in other places for
files, new binnmu version scheme, --no-cache, file:// and copy:// and
fixed bug that --help/--version required other arguments (Closes:
#385954, #356208)
* nmudiff: allow configuration of whether to send report to existing
bugs or create a new bug (Closes: #397912)
* uscan: avoid spurious undefined warning if --package is used
-- Julian Gilbey <jdg@debian.org> Fri, 17 Nov 2006 13:03:03 +0000
devscripts (2.9.25) unstable; urgency=low
* nmudiff: reinstall mutt as mailer of choice, but now provide the
option to use it or not (Closes: #397641)
-- Julian Gilbey <jdg@debian.org> Wed, 8 Nov 2006 20:39:24 +0000
devscripts (2.9.24) unstable; urgency=low
* debc/debi: handle multi-arch .changes files (Closes: #385673)
* debchange: allow non-official distributions (Closes: #397546)
* debdiff: handle files moving between multiple packages correctly
(Closes: #392977)
* debuild: make -B -b work sensibly (Closes: #396232)
* debuild: don't check for .orig.tar.gz if we're doing a binary-only
build (Closes: #394627)
* dget: improve manpage (Closes: #376237)
* dget: warn and exit with error if URL cannot be downloaded (Closes:
#376932)
* mass-bug: don't wrap signatures (Closes: #386123)
* nmudiff: clean up properly, and abort on editor error
* tagpending: make -v mean verbose; add long option names (Closes:
#387293)
* uscan: set HTTP user agent name (Closes: #397354)
* wnpp-alert: check return status of wget calls (Closes: #364479)
* [I18N] Include new versions of French manpages (Closes: #379614)
-- Julian Gilbey <jdg@debian.org> Wed, 8 Nov 2006 19:16:22 +0000
devscripts (2.9.23) unstable; urgency=low
* bts: automatically create cache directory when bts show is used
(Closes: #370205)
* debchange: can change urgency and distro using -D and -u flags
(Closes: #373271)
* debuild: check for either .orig.tar.gz or a .orig directory, as
dpkg-source does (Closes: #366286)
* dget: introduce --insecure option for allowing downloading from site
with self-signed certificate (Closes: #393942)
* nmudiff: much improved behaviour:
- remove dependency on mutt (use /usr/sbin/sendmail instead)
- automatically mail the relevant bugs rather than submit a new bug
report; this can be changed using the --new command line option
- allow for aborting, changing the bug number submitted to and editing
the whole message
- checking for errors rather than making a mess of things
- cleaning up the manpage
(Closes: #378264, #386147, #370056)
* uscan: fix handling of ftp directory listings with number-only
directory names (Closes: #372609)
* uscan: warn if no parentheses in one-term version 2/3 watchfile
(Closes: #375557)
* uupdate: handle ~ in version numbers (Closes: #397100)
* who-uploads: add GPG key ID to "unrecognised key" message (Closes:
#397293)
-- Julian Gilbey <jdg@debian.org> Mon, 6 Nov 2006 18:11:46 +0000
devscripts (2.9.22) unstable; urgency=low
[ Julian Gilbey ]
* Makefile: remove -ldl flag in libvfork linker line (from checklib
output, see http://rerun.lefant.net/checklib)
* control: make list render nicely with new aptitude list-handling
facility (Closes: #388856)
* bts: documentation for show usertag=...: s/user=/users=/
* checkbashisms: make reasons for concern explicit, and show whole line
of original script, not just matched fragment
* dget: support ~ in package version numbers (Closes: #389482)
* rmadison: make curl quiet (important when piping the output of
rmadison)
* who-uploads: don't bother with iconv -t option; it's the default
behaviour anyway (see Bug#384835)
[ Joshua Kwan ]
* Remove myself from Uploaders. -ENOTIME :(
-- Julian Gilbey <jdg@debian.org> Wed, 11 Oct 2006 20:16:02 +0100
devscripts (2.9.21) unstable; urgency=low
* bts: reportspam/spamreport can now take multiple bug numbers
* bts: add support for forcemerge (Closes: #369050, #380041)
* bts: always include "# Automatically generated email" message (thanks
to Justin Pryzby for spotting this)
* bts: chdir back to original directory after downloading files (Closes:
#372546)
* bts: don't automatically use a -t option unless we are using
/usr/sbin/sendmail or /usr/sbin/exim* (Closes: #373664)
* bts: allow mailreader setting to contain spaces (Closes: #370208)
* checkbashisms: check for $((cnt+1)), echo -n/-e, exec -c/-l/-a, let
and $RANDOM (Closes: #369851, #377195, #378406, #383613)
* dd-list: treat lists.alioth.debian.org like lists.debian.org (Closes:
#373809)
* debchange: clarified name of changelog file in more error/warning
messages (see bug#368961)
* debchange: can specify a NEWS file to edit (still defaults to
debian/NEWS) (Closes: #384676)
* debdiff: fixed --move(-regex) options (broken by #203781 and #230702
fix in 2.9.17) (Closes: #370388)
* dpkg-genbuilddeps: clean up if statement (Closes: #365372)
* nmudiff: stop using dpkg-parsechangelog to avoid barfing over broken
changelogs (Closes: #374773)
* rc-alert: now pick up all installed packages (Closes: #370463)
* uscan: fix handling of recursive http URLs (Closes: #377518)
* who-depends: convert output into locale charset (Closes: #384835)
-- Julian Gilbey <jdg@debian.org> Tue, 29 Aug 2006 11:35:00 +0100
devscripts (2.9.20) unstable; urgency=low
* debuild: set DEB_{BUILD,HOST}_* variables as dpkg-buildpackage does
(Closes: #364256)
* debuild: improve missing .orig.tar.gz warning
* uscan: mention upgrading points in the manpage.
* uupdate: allow upstream version numbers to use A-Z (Closes:#367055)
-- Julian Gilbey <jdg@debian.org> Wed, 17 May 2006 07:27:17 +0100
devscripts (2.9.19) unstable; urgency=low
* debuild: fix -I and -i option handling (Closes: #363368)
-- Julian Gilbey <jdg@debian.org> Thu, 20 Apr 2006 21:41:51 +0100
devscripts (2.9.18) unstable; urgency=low
* uscan: fix parsing howler: uscan would never work like this - oops!
(Closes: #363338)
-- Julian Gilbey <jdg@debian.org> Tue, 18 Apr 2006 17:58:20 +0100
devscripts (2.9.17) unstable; urgency=low
[ Julian Gilbey ]
* several Perl scripts: make sure we set the SIGPIPE handler before
doing an open '-|'
* bts: actually support the --sendmail option rather than just say we
do! (Closes: #293715)
* bts: fix URI in manpage (Closes: #360783)
* bts: fix unblock NNNNN by|with NNNNN handling (Closes: #361029)
* bts: fix uninitialized value bugs (Closes: #362187)
* debchange: add --qa option (Closes: #358278)
* debdiff: check file permissions and new/deleted control files (Closes:
#203781, #230702)
* debdiff: option --controlfiles to allow comparing postinst
etc. (Closes: #218222)
* debrelease, debc, debi: support searching for .changes and .debs in a
directory other than the parent of the currnent source directory with
--debs-dir command line and DEBRELEASE_DEBS_DIR configuration file
options (Closes: #309362)
* debuild: emulate dpkg-buildpackage rather than call it (unless
dpkg-cross is installed); this provides a hook facility (Closes:
#226947)
* debuild: complains if debian revision in native version (Closes:
#262525)
* dget: fix manpage type (Closes: #361877)
* mass-bug: new script (Closes: #355505)
* pts-subscribe: fix config boilerplate to actually set default timeout
(Closes: #360857)
* pts-subscribe.1: improve the wording of the manpage (Closes: #360027)
* svnpath: fix svk info error (Closes: #361979)
* uscan: *really* fix the uninitialized value bug (Closes: #356959,
#361319)
* uscan: provide downloadurlmangle and filenamemangle options to mangle
the URL and filename before attempting to perform and save the
download respectively (Closes: #327404)
* uscan: fix manpage typo (dversionmangle) (Closes: #362202)
* uscan: provide "versionmangle" option which does both
{u,d}versionmangle (Closes: #350455)
* uupdate: correct syntax error (Closes: #360995)
* who-uploads: new script to determine most recent uploaders of a
package to the Debian archive (Closes: #347809)
[ Joey Hess ]
* dd-list: actually support white-space separate pages names from stdin,
as documented on man page.
* rmadison: escape "+" in package names in http query string
-- Julian Gilbey <jdg@debian.org> Sun, 16 Apr 2006 19:43:15 +0100
devscripts (2.9.16) unstable; urgency=low
[ Julian Gilbey ]
* Fix 2.9.15 changelog to refer to pts-subscribe, not pkg-subscribe
(Closes: #353413)
* bts: be stricter about bug number cruft (Closes: #356318)
* bts: add spamreport as a synonym for reportspam
* debcommit: add --help, --version
* debdiff: fix unnecessary chdir (Closes: #354862)
* debdiff: compare control files in multi-deb binary packages - this was
just a coding problem, and could have been done for ages (Closes: #354868)
* pts-subscribe: Depends on the "at" package (Closes: #353502)
* uupdate: handle already-unpacked source code archives (Closes: #286253)
* uscan: avoid warnings on one-word actions (Closes: #356959)
* uscan: clarify manpage regarding spaces in URLs (Closes: #359190)
* debian/rules: remove mention of DH_ALWAYS_EXCLUDE (see Bug#352626)
[ Joey Hess ]
* debcommit: Add program name to all error messages.
-- Julian Gilbey <jdg@debian.org> Wed, 29 Mar 2006 16:20:17 +0100
devscripts (2.9.15) unstable; urgency=low
* bts: handle bts show pkg archive=yes more gracefully
* bts: require mailx | mailutils (mailutils provides mailx anyhow)
* bts: always allow Bug#NNNNNN: or #NNNNN etc. in commands (Closes:
#353049)
* bts: support caching RC bug pages (Closes: #236312)
* bts: support subscribe/unsubscribe commands (Closes: #339661)
* bts: support alternative sendmail command (Closes: #343752)
* debdiff: handle multi-binary packages and allow comparison of control
files from each corresponding pair of binary packages - thanks to
Robert Luberda <robert@debian.org> for the patch (Closes: #174858)
* general: improve getopt handling
* pts-subscribe: new script to subscribe to the PTS for a limited time
period (Closes: #202866)
-- Julian Gilbey <jdg@debian.org> Thu, 16 Feb 2006 16:17:15 +0000
devscripts (2.9.14) unstable; urgency=low
* deb-reversion: correctly handle multiword hooks (Closes: #351250)
* deb-reversion: die if not being run as root or using fakeroot
* deb-reversion: major improvements to manpage
* debchange: fall back on NAME envvar if DEBFULLNAME is not defined
(Closes: #340292)
* debrelease: allow it to run in normal situations again (broken when
fixing #322926, #217546)
* uscan: always pass --no-symlink to uupdate as uscan does the
symlinking itself (Closes: #345874)
* uscan: handle multi-word actions
-- Julian Gilbey <jdg@debian.org> Mon, 13 Feb 2006 11:33:47 +0000
devscripts (2.9.13) unstable; urgency=low
* Don't include .svn directory in md5sums (Closes: #352273)
* bts: fix new caching code (thanks to Frank Lichtenheld for this one)
(Closes: #352476)
* bts: correctly handle DEBEMAIL='Name <email>' (Closes: #342883)
* debcommit: handle commit messages for git-based setups (Closes:
#352004)
* uscan: check sanity of downloaded files (Closes: #303958)
-- Julian Gilbey <jdg@debian.org> Sun, 12 Feb 2006 12:46:22 +0000
devscripts (2.9.12) unstable; urgency=low
[ Julian Gilbey ]
* bts: show/bugs: update to recognise new URL formats in BTS pages
(based on bug #349259)
* bts: show/bugs: allow options with from:<submitter> etc. to work
correctly (Closes: #345464)
* bts: accept "submitter nnnnn !" format (Closes: #348349)
* debchange: update to recognise new URL formats in BTS pages (Closes:
#349259)
* debchange: quitting the editor with -e option and no changes no longer
modifies the changelog (Closes: #349091)
* debuild: dpkg-buildpackage -> dpkg-buildpackage(1) in EXAMPLES section
of manpage (Closes: #351363)
* nmudiff: include in package (Closes: #349337)
* nmudiff: improved old version code from Steinar using supplied patch
(Closes: #351791)
[ Joey Hess ]
* Add rmadison program by Christoph Berg. Closes: #350335
[ Nicolas François ]
* Makefile
build the man pages in the `all' rule
remove the translated manpages and update the POT/POs in `clean'
* po4a/add_fr/translator_french.add moved to po4a/fr/translator_man.add
The addendum is moved to the language directory.
It was renamed because a pod and dbk addendum will be added latter
* po4a/devscripts.fr.po moved to po4a/po/fr.po, and updated
This is important for the l10n robot used to find the POs that need to
be updated
* po4a/devscripts.pot moved to po4a/po/devscripts.pot
* po4a/devscripts-po4a.conf
update due to the new file hierarchy
* po4a/fr/*.[15]
The translated man pages were removed. They are generated at build
time.
(Closes: #347671)
[ Joey Hess ]
* Add build dep on po4a to support above changes.
* Add dget program by Christoph Berg. Closes: #332286
* Patch from Matt Kraai to add --exclude support to debdiff. Closes: #328382
* debsign: don't abort or complain if stty fails, as might happen
if run w/o a controlling terminal. Closes: #345636
-- Joey Hess <joeyh@debian.org> Thu, 9 Feb 2006 13:47:03 -0500
devscripts (2.9.11) unstable; urgency=low
[ Julian Gilbey ]
* bts: allow found to take only one argument (Closes: #342515)
* svnpath: fix .SH NAME line in manpage (Closes: #342059)
* manpage typos: thanks to A Costa and Niko Tyni for these (Closes:
#342295, #342296, #342297, #342298, #342299, #342300, #342301,
#342302, #342770); I have not changed "manpage" to "man page", though,
as the former is standard UN*X terminology
* debchange, debuild, debrelease, debsign, debrsign: handle multiarch
changes files (Closes: #322926, #217546)
[ Joey Hess ]
* debcommit: add support for git, thanks to Panagiotis Issaris.
Closes: #343694
* nmudiff: new program by Steinar H. Gunderson.
* nmudiff: use sensible-editor to better comply with policy
* nmudiff: wrote a man page
* nmudiff: improve old version finding code
-- Joey Hess <joeyh@debian.org> Fri, 20 Jan 2006 14:36:27 -0500
devscripts (2.9.10) unstable; urgency=low
* bts: handle 8-bit encodings in DEBFULLNAME for "From:" field of emails
sent (Closes: #339657)
* bts: submitter and reassign accept multiple bug numbers (Closes:
#237726)
* bts: document "it" for referring to previous bug number
* debchange: provide -m/--maintmaint switch to use the maintainer name
from the most recent changelog entry rather than using the environment
variables (Closes: #232000)
* debcommit: add support for bzr (Closes: #340301)
* debuild: improve examples in manpage (Closes: #326881)
* dpkg-depcheck: completely rewrite symlink handling code to fix bug
where /usr was a symlink (Closes: #246006)
-- Julian Gilbey <jdg@debian.org> Sat, 3 Dec 2005 20:24:38 +0000
devscripts (2.9.9) unstable; urgency=low
[ Filippo Giunchedi ]
* uscan: add option to set LWP timeout, patch by Stephen Quinney
(Closes: #335181)
[ Julian Gilbey ]
* bts: fix handling of arguments to show command; translate "tag:..."
into "include=..." when given as a second argument (Closes: #338171)
* bts: don't treat something like "bts close #123456" as a comment
(Closes: #337737)
* debchange: reapply --edit patch from bug#234434 (Closes: #336632)
* debcommit: fix version grepping in changelog parsing (Closes: #336025)
* debdiff: add --quiet switch and set exit status according to diff
status (Closes: #337829)
* debuild: improve grammar of usage message
[ Joey Hess ]
* bts: sleep a default of 5 seconds between bts cache downloads
to avoid hammering the underprovisioned debian BTS/master archive server.
* bts: add --cache-delay parameter to tune this
-- Joey Hess <joeyh@debian.org> Mon, 21 Nov 2005 10:46:49 -0500
devscripts (2.9.8) unstable; urgency=low
[ Julian Gilbey ]
* bts: don't require user for usertags (Closes: #326560)
* bts: fix manpage typos (Closes: #328972, #328974, #328477)
* bts: fix bug in getting timestamps
* debdiff: handle filenames with spaces (Closes: #334145)
* debdiff: compare symlinks more carefully (Closes: #327090)
* dd-list: support displaying uploaders with new --uploaders/-u option
(Closes: #328459)
* uscan: correctly handle version 2 watchfiles with multiple groups
(Closes: #327258)
* uupdate: handle csae of debian/ directory in upstream sources (Closes:
#320836)
* uupdate: fix --no-symlink option (Closes: #333390)
* don't allow non-bash scripts in the package (Closes: #331223)
[ Joey Hess ]
* debchange: -r needs to enable multi-maintainer markers when releasing a
package if the releaser is not the same as the only person who made any
changes.
[ Joshua Kwan ]
* Clarify annotate-output sub-description in control file.
-- Julian Gilbey <jdg@debian.org> Sun, 16 Oct 2005 13:07:30 +0100
devscripts (2.9.7) unstable; urgency=low
* bts: oops, left out a space in usertags command
-- Julian Gilbey <jdg@polya.uklinux.net> Sun, 4 Sep 2005 01:51:24 +0100
devscripts (2.9.6) unstable; urgency=low
[ Julian Gilbey ]
* bts: tags: revert change in 2.9: reinstate "fixed-in-experimental" (it
still appears to be in use) and don't need "help" twice (Closes: #325480)
* bts: show/cache: lots of changes to make compatible with new BTS HTML
pages (Closes: #325966)
Also store devscripts version with cached files, so that such changes
can be handled more smoothly in future.
* bts: small cleanups for output messages, minor bugfixes etc.
* bts: introduce spam command to report spam in bug reports
* bts: support new user/usertags commands (Closes: #326265)
* checkbashisms: correctly detect "function" keyword (Closes: #324599)
* uscan: report on package being scanned when --report is used (Closes:
#324102)
* uscan: provide --report-status option to distinguish from --report,
which is now quieter (Closes: #325097, #325980)
[ Filippo Giunchedi ]
* uscan: fixed some repeated tags when used with --dehs
* uscan: expand some entities in dehs_output
* bts: download bugs.css and use it (Closes: #323781)
* bts: remove some old cache handling cruft since sarge is released
[ Joey Hess ]
* dd-list: add --dctrl option for quick reading from grep-dctrl.
* grep-excuses: remove special case for running locally on ftp-master,
which breaks every time ftp-master moves (or directories are reorganised),
and only saved some loopback traffic anyway.
* grep-excuses: fix non-robust html parsing that caused ugly messages
when it failed to find </ul> at the end of the excuses file due
to reformatting.
-- Julian Gilbey <jdg@polya.uklinux.net> Sun, 4 Sep 2005 01:08:47 +0100
devscripts (2.9.5) unstable; urgency=low
[ Joey Hess ]
* bts: Make block command accept "by" or "with" after the blocked bug,
but do not make either mandatory.
* debcommit: try to add support for svk
[ Julian Gilbey ]
* bts: fix clone command (Closes: #321798)
* debchange: add comment to manpage about building sponsored uploads
(Closes: #321960)
* debchange: introduce --create option: allows creation of changelogs /
NEWS files (Closes: #220755, #322716), and inform user about this
option if changelog / NEWS file is not found (Closes: #316661)
* debchange: allow option (--nomultimaint) to not use this
multi-maintainer changelog format
* debsign: fix noecho behaviour for interrupted gpg call (Closes:
#321684)
* uscan: --report actually reports useful information (Closes: #313323)
* wnpp-alert: RFA -> RFH (Closes: #321707)
[ Joey Hess ]
* bts: Deal with recent bts changes in html munging code.
-- Joey Hess <joeyh@debian.org> Wed, 17 Aug 2005 12:08:09 -0400
devscripts (2.9.4) unstable; urgency=low
[ Julian Gilbey ]
* bts: fix forwarded command (Closes: #320703)
* debchange: un-html-ise bug titles when using --closes
[ Joey Hess ]
* bts: Support new block and unblock commands.
-- Joey Hess <joeyh@debian.org> Wed, 3 Aug 2005 22:13:47 -0400
devscripts (2.9.3) unstable; urgency=low
[ Filippo Giunchedi ]
* added deb-reversion by martin f krafft (Closes: #284642)
* modified Makefile to handle docbook-generated manpages and build-depend on
xsltproc + docbook-xsl
[ Joey Hess ]
* Fix suggests on subversion.
* Other cleanups to references to revision control programs.
[ Joshua Kwan ]
* debchange: Fix dch -D behavior by adding some parentheses. closes: #319687
* Add French manual pages, thanks to the French l10n team. closes: #292780
[ Julian Gilbey ]
* bts: support for notfound command (Closes: #320569)
* debchange: change --closes command output format to place "(Closes:
#nnnnn)" at end of changelog entry
* debchange: don't require changelog to be modified when -e or -r option
used
-- Julian Gilbey <jdg@debian.org> Sun, 31 Jul 2005 14:50:10 +0100
devscripts (2.9.2) unstable; urgency=low
[ Julian Gilbey ]
* debcommit: fix recognition of cvs trees
[ Joey Hess ]
* bts: Fix over-broad cgi url mangling to avoid mangling urls that are part
of bug reports.
* bts: fix retitle command, broken by extra param change in 2.9.
Closes: #319367
-- Joey Hess <joeyh@debian.org> Thu, 21 Jul 2005 12:57:47 -0400
devscripts (2.9.1) unstable; urgency=low
[ Julian Gilbey ]
* annotate -> annotate-output renaming, removing package conflict
(closes: #319271, #319289)
* debcommit: Apply Colin Watson's arch patch (see #319072)
[ Joey Hess ]
* debchange: Fix parsing of --release-heuristic switch.
-- Julian Gilbey <jdg@debian.org> Thu, 21 Jul 2005 09:51:17 +0100
devscripts (2.9) unstable; urgency=low
[ Julian Gilbey ]
* bts: fix bts --mbox show nnnn after bts show nnnn
* bts: add etch and etch-ignore tags (closes: #312493)
* bts: tags: remove "fixed-in-experimental" and add "help"
* debchange: use word "file" in manpage for --changelog option (closes:
#301917)
* debchange: debian/NEWS.Debian should have been debian/NEWS (closes:
#303886)
* debuild: correct manpage typo (closes: #309825)
* debdiff: handle debdiff on two identically-named native .dsc files
(closes: #307318)
* grep-excuses: no longer cache web page, as per bug#309802 (closes:
#225955)
* rc-alert: no longer automatically create cache directory, as per
bug#309802
* uscan: handle annoying error message (closes: #303607)
* uscan: mangle http://sf.net/ to use Filippo's sf.php script and work
(closes: #242884)
* uscan: handle tar.bz2 packages (related to #317331)
* uupdate: handle dpkg 1.13 source format allowing bz2-compressed files
and .debian.tar.gz files (closes: #317331)
* wnpp-alert: accept -h and -v short options (closes: #304240)
* wnpp-alert: don't cache such small files (closes: #309802)
* wnpp-alert: check help_requested file and handle packages with no
descriptions (closes: #318737)
[ Joshua Kwan ]
* Add a new script whodepends, written by Moshe Zadka, to check
which maintainers' packages depend on a particular package.
closes: #175832 (longstanding, huh?)
* checkbashims: show usage if 0 arguments provided.
[ Filippo Giunchedi ]
* debdiff: handle .udeb files if found in .changes (closes: #215477)
* debchange: add support for forcing a lower version
(-b/--force-bad-version) (closes: #251436, #183424)
* debsign: support for signing .commands files (Closes: #224523)
* added annotate.sh and annotate.1
* added archpath.sh and archpath.1, patch by Colin Watson (Closes: #319072)
* export DH_ALWAYS_EXCLUDE in debian/rules as we are not interested in
.svn/CVS directories
[ Joey Hess ]
* debchange: support generating multi-developer changelogs, currently only
supporting the format used in this changelog entry. If multiple developers
are detected it will automatically add [ Full Name ] lines to disambiguate
who did what.
* debdiff: fix debdiff of dsc files to work with new dpkg-dev.
Closes: #313293, #314811
* Add debcommit, a script to commit to svn (or cvs) based on the contents of
the changelog, and svnpath, which it uses to generate svn tags.
Closes: #316577
* debchange: Don't allow --closes in --news mode.
* debchange: In --news mode, don't include "* Non-maintainer upload."
entries
* debchange: In --news mode, separate each new entry with a blank line
and do not add bullets, to encourage not writing NEWS files like changelog
files. Closes: #316660
* debchange: Add --release-heuristic and DEBCHANGE_RELEASE_HEURISTIC
options to control how it tells if a package was released.
* debchange: Add new "changelog" release heuristic, which looks
for a distribution of "UNRELEASED" in a changelog (and adds such a
distribution by default when making new entries). Useful for packages
maintained/released by multiple people.
* debchange: Patch from David B Harris to implement --edit option.
Closes: #234434
* Add dd-list, originally by Lars Wirzenius, rewritten in perl.
Closes: #316102
* Ignore whitespace around package names in dd-list --stdin.
* debchange: Add --release option.
* bts: update and apply Filippo's patch to add a progress display while
caching bugs. Closes: #237842
* tagpending.1: Remove obsolete note about it using LDAP.
* bts: add support for new version tracking extensions in the Debian BTS
control interface.
* bts: add support for "bts show package dist=stable" and the like.
* bts: check for additional options and die
* tagpending: add missing space after package limit when calling bts
-- Filippo Giunchedi <filippo@debian.org> Wed, 20 Jul 2005 14:33:05 +0200
devscripts (2.8.14) unstable; urgency=low
* uscan: fix second showstopper (broken URL parsing) (closes: #301169)
-- Julian Gilbey <jdg@debian.org> Thu, 24 Mar 2005 14:33:05 +0000
devscripts (2.8.13) unstable; urgency=low
* bts: provide --quiet option (closes: #299344)
* dpkg-depcheck: improve sgml catalog regexp (closes: #295845)
* uupdate: improve error message (closes: #267317)
* uscan: fix showstopper (closes: #301177)
-- Julian Gilbey <jdg@debian.org> Thu, 24 Mar 2005 09:13:15 +0000
devscripts (2.8.12) unstable; urgency=low
* bts: allow --mbox etc. options to appear after the show/bugs keyword
as well as before, and similarly with the "cache" command
* bts: allow bug numbers to end with a ":" (closes: #300965)
* debchange: use access rather than stat for checking file permissions
(closes: #298659); also do same to debi and debuild
* debdiff: don't hardcode wdiff path
* debsign: correct obsolete head syntax (closes: #300844)
* uscan: watch files are now version=3 (should have done this with
2.8.11, oops)
* uscan: now support DEHS-style output and --watchfile etc options
* uscan: also state upstream URL for newer versions (closes: #230813)
* uscan: handle funny upstream version numbers using multiple groups
(closes: #282255) and version-number mangling, both for upstream
version numbers (closes: #266095) and Debian version numbers (closes:
#261385)
* uscan: support --rename option to rename file instead of symlinking it
(closes: #227952)
* uscan: call find with -follow option: this should not cause any
problems (if it does, we can make it optional) (closes: #243758)
-- Julian Gilbey <jdg@debian.org> Tue, 15 Mar 2005 18:41:25 +0000
devscripts (2.8.11) unstable; urgency=low
* Julian Gilbey
- Added a dependency on sed (>= 2.95) as wnpp uses the T command (thanks
to Olafur Jens Sig for alerting me to this one)
- bts: fix --cache-mode=mbox after --cache-mode=min bug (closes: #290487)
- bts: quieten (hopefully) unnecessary warning from HTML::Parse for
funny characters (closes: #292671)
- debchange: support --changelog and --news options for specifying
changelog (closes: #219135, #261878)
- debchange: remove emacs backup file (closes: #297489)
- debchange: document --nmu in manpage (closes: #299234)
- debsign: check for gpg version for no-show-policy-url option
(closes: #293792)
- uscan: change behaviour with respect to directory name checking: now
only checks directories with matching names, rather than downloading
newer versions regardless (closes: #260538)
- uscan: handle metacharacters in directory components (closes: #262489)
- uscan: allow directory name patterns (not quite recursive, but it's
pretty much what was requested) (closes: #143284)
* Joshua Kwan
- dscverify: Don't use --emulate-md-encode-bug in dscverify anymore,
it's been obsoleted with gnupg 1.4.0. (closes: #293791)
-- Julian Gilbey <jdg@debian.org> Sun, 13 Mar 2005 13:51:29 +0000
devscripts (2.8.10) unstable; urgency=low
* bts: better fix for option handling bug. Options must all appear
before first action name (closes: #290253 again, and prevents other
similar problems with tag - tagname)
-- Julian Gilbey <jdg@debian.org> Thu, 13 Jan 2005 10:57:15 +0000
devscripts (2.8.9) unstable; urgency=medium
* bts: fix option handling to allow '+' to go through again.
closes: #290253
-- Joshua Kwan <joshk@triplehelix.org> Thu, 13 Jan 2005 01:17:39 -0800
devscripts (2.8.8) unstable; urgency=low
* bts: fix mbox handling in 2.8.7; this also obviates the need for
cleaning out the cache if upgrading from 2.8.6.
-- Julian Gilbey <jdg@debian.org> Tue, 11 Jan 2005 09:58:38 +0000
devscripts (2.8.7) unstable; urgency=low
* bts: fix option handling, thanks to Tristan Seligmann (closes:
#289672)
* bts: support reading downloaded mbox versions of bugs with mutt or
alternative mail readers; also provide finer grained control over what
gets cached in general. NOTE that this has changed some incompatible
changes from those introduced in version 2.8.6 (closes: #251099)
* debclean: remove obsolete French translation of manpage
-- Julian Gilbey <jdg@debian.org> Mon, 10 Jan 2005 18:42:20 +0000
devscripts (2.8.6) unstable; urgency=low
* Julian Gilbey
- bts: download attachments when caching bug reports (closes: #254102)
- debian/control: add Suggests: libwww-perl (closes: #277388)
- debchange: switch from ldap to wget for searching BTS (for
efficiency) (closes: #284650)
- tagpending: switch from ldap to wget for searching BTS (for
efficiency)
- uupdate: apply patch from Matthew Palmer to fix overwriting upstream
files (closes: #230090)
-- Joshua Kwan <joshk@triplehelix.org> Tue, 28 Dec 2004 11:51:38 -0800
devscripts (2.8.5) unstable; urgency=medium
* Julian Gilbey
- bts: fix "bts bugs :" error
- bts: accept "bts tags nnnnnn +tag" syntax
- bts: rejuvenate the close command (closes: #245956)
- bts: fix typo (closes: #268608)
- debchange: fixed pipe error (closes: #228749)
- debchange: requires perl >= 5.8, so make this a Depends: in the
control file (will be standard in sarge anyway, so it's not a
particularly big deal) (closes: #241138)
- debuild: correctly count the saved envvars (closes: #268985)
- debsign: correctly handle DEBSIGN_SIGNLIKE config option (closes:
#270262)
- tagpending: make ldap optional (closes: #269124)
- tagpending: fix -n output message (closes: #269125)
- tagpending: give progress output; introduce silent option
- uscan: support version numbers with ~ (change Devscripts::Versort to
simply call dpkg --compare-versions to do the work) (closes: #232286)
- wnpp-alert: now correctly reports on orphaned packages as well
(tweaked some sed scripts; don't know what was actually wrong :-/ )
(closes: #268948)
* Joshua Kwan
- debrsign: Warn if you passed a changes file but omitted the remote
address.
- Update debchange and tagpending for new bts2ldap gateway.
- Remove ${perl:Depends} from control file, dh_perl is not guessing that
we do actually need 5.8, and so we end up with a perl (>= 5.8), perl
dependency, which is wrong.
-- Joshua Kwan <joshk@triplehelix.org> Sun, 26 Sep 2004 13:41:37 -0700
devscripts (2.8.4) unstable; urgency=medium
* The Barbrady release ("Move along people, there's NOTHING TO SEE here..")
* Add build-depends on the perl packages that perl -c needs to do its thing.
Thanks Anibal Monsalve Salazar for pointing this out. Closes: #266847
-- Joshua Kwan <joshk@triplehelix.org> Thu, 19 Aug 2004 09:13:14 -0700
devscripts (2.8.3) unstable; urgency=medium
* The "timely bug report" release.
* uupdate.sh: [ $# ne 0 ] -> [ $# -ne 0 ]. Thanks Fumitoshi UKAI.
(Closes: #266221)
* Run perl -c on all the Perl scripts and sh -n on all of the shell
scripts, in foresight of future syntax errors.
* tagpending.sh: Add a space after the source package name. Thanks Guillem
Jover for pointing this out.
* Remove the last remnants of the abandoned debpanic script from debi.pl.
* bts.pl: Fix gooood crack in 'it' usage. ($it eq undef -> not defined $it.)
(Closes: #266717)
-- Joshua Kwan <joshk@triplehelix.org> Wed, 18 Aug 2004 01:28:37 -0700
devscripts (2.8.2) unstable; urgency=low
* tagpending.sh:
- s/help/usage/. Another buglet found by Steve Kowalik. Sigh!
(Closes: #265412)
- Include the source package name in the 'package' portion of
the generated message. (Closes: #265445)
-- Joshua Kwan <joshk@triplehelix.org> Mon, 16 Aug 2004 13:23:10 -0700
devscripts (2.8.1) unstable; urgency=medium
* debchange.pl: Don't check for -w 'debian/changelog', check whether
we're in debian/ first, to avoid false positives. (Closes: #264310)
* tagpending.sh: Steve Kowalik's personal email is s3kr1t, so don't use
mail(1) to send the control email, but toss it all to bts.pl which will
handle all the $DEBEMAIL and $EMAIL and such. (Closes: #264767)
-- Joshua Kwan <joshk@triplehelix.org> Tue, 10 Aug 2004 09:41:14 -0700
devscripts (2.8) unstable; urgency=low
* Now comaintained by Joshua Kwan and Julian Gilbey.
* Build system:
- `pwd` -> $(CURDIR) in debian/rules.
- Remove $(CWRAPPERS) in Makefile's clean target.
* archive/cvs-buildpackage: Remove.
* debchange:
- Add -n / --nmu option for NMUs. (Closes: #184944)
- Our BTS web parser is broken. Move to Net::LDAP and the
more machine-friendly bts2ldap gateway. Change the Suggests:
on libwww-perl to libnet-ldap-perl.
- Do not proceed with parsing versions and contacting the BTS if
debian/changelog is not writable. (Closes: #235485, #178080)
* debsign:
- Don't prompt to overwrite the dsc file (ie. may be owned by root,
parent dir owned by yourself) - force it and hope it works.
(Closes: #249950)
- Change nonstandard head -1 to head -n 1. (Closes: #231130)
- Add a versioned dependency on gnupg (>= 1.0.7), when
--no-show-policy-url was added. (Closes: #228938)
* debrsign:
- Add --path option to specify full path to gnupg/pgp. (Closes: #243013)
* debuild:
- Preserve GPG_TTY so that gpg-agent is recognized. (Closes: #254112)
* bts:
- Recognize the 'l10n' tag for bts. (Closes: #227735)
- bts.1: Fix extraneous indentation. (Closes: #236309)
- Allow 'it' as an alias to the previous bug referenced.
(Closes: #256051)
- cache: Fix uninitialized value warning by checking how many arguments
were passed. (Closes: #225317)
* Devscripts::Versort:
- Apply Roderick Schertler's patch to fix an infinite loop comparing
identical non-Debian revisions. (Closes: #236344)
* rc-alert:
- rc-alert.1: Add SEE ALSO for popbugs(1). (Closes: #227078)
* uscan:
- uscan.pl, uscan.1: Add brief mention for --debug. (Closes: #238655)
- uscan.pl: remove HTTP GET data from downloaded file. (Closes: #247175)
* New scripts by me:
- tagpending: Within a source directory, tags all bugs not already
'pending' to be as such. (associated: tagpending.1)
-- Joshua Kwan <joshk@triplehelix.org> Fri, 6 Aug 2004 14:06:00 -0700
devscripts (2.7.95.1) unstable; urgency=low
* bts: fixed some major blunders in bts show command: now shows
something in offline mode, and multiple instances of bts show work
concurrently
-- Julian Gilbey <jdg@debian.org> Thu, 11 Dec 2003 18:47:25 +0000
devscripts (2.7.95) unstable; urgency=low
* New script:
- cvs-debrelease: to complete the cvs-* scripts bundle, this one
replicates the debrelease behaviour
* bts: remove special tag:<tag> processing, as the BTS understands
tag:<tag> requests (thanks Colin!)
* cvs-deb{c,i}: call deb{c,i} directly
* debchange: don't give unnecessary UTF-8 warning notice (closes:
#222110)
* dscverify: fix ENOENT bug (closes: #222890)
* uscan: some minor cleanups
-- Julian Gilbey <jdg@debian.org> Mon, 8 Dec 2003 23:14:49 +0000
devscripts (2.7.94.3) unstable; urgency=low
* debi/debc: fix typo in determining .changes filename (closes: #221842)
-- Julian Gilbey <jdg@debian.org> Thu, 20 Nov 2003 21:50:54 +0000
devscripts (2.7.94.2) unstable; urgency=low
* Fix bts email From: line bug (closes: #221848)
-- Julian Gilbey <jdg@debian.org> Thu, 20 Nov 2003 14:31:36 +0000
devscripts (2.7.94.1) unstable; urgency=low
* And get rc-alert to work (closes: #221767)
-- Julian Gilbey <jdg@debian.org> Thu, 20 Nov 2003 00:43:31 +0000
devscripts (2.7.94) unstable; urgency=low
* Really include rc-alert (closes: #221550)
* debchange: fix UTF-8 problems (closes: #218785)
-- Julian Gilbey <jdg@debian.org> Wed, 19 Nov 2003 15:26:25 +0000
devscripts (2.7.93) unstable; urgency=low
* New scripts:
- cvs-debuild: wrapper for debuild to use cvs-buildpackage, or for
cvs-buildpackage to use debuild (closes: #36344 at last!)
- cvs-debi, cvs-debc: wrapper for debi, debc to use in conjunction
with cvs-debuild or cvs-buildpackage; function like
debi and debc, but are run from the CVS working
directory instead (also in #36344)
- rc-alert: list all installed packages which appear in the
list of packages with RC bugs
- wnpp-alert: list all installed packages which appear in the WNPP
orphaned or up-for-adoption lists (closes: #188246)
* lots of scripts: remove --ignore-dirname option and provide
--check-dirname-level and --check-dirname-regex along with
configuration file options to set the default directory name-checking
behaviour (closes: #218153)
* lots of scripts: provide --no-conf/--noconf option for all scripts
which read the devscripts configuration files, and provide useful
information when the --help option is used (closes: #218224)
* bts: identify itself in its automatic emails (closes: #199312)
* bts: dangerous "no-option" behaviour to cleancache changed
* bts: completely rewrite the caching system using LWP, based on an idea
gleaned from the original rc-alert together with knowledge of the BTS
internals ;-); this does give a couple of minor disadvantages, but
lots of major advantages too (the code is *much* cleaner now, and we
only need to store each page once!); there is still a slightly messy
converter to convert the old cache to the new format, but that shall
go away soonish (probably after 2-3 months or sarge release, whichever
is sooner), to be replaced with a simple warning
* bts: support "bts bugs tag:<tag>" (closes: #218494)
* bts: deprecate "bts close" command, following the lead of debbugs
* accept EMAIL as well as DEBEMAIL (closes: #219127)
* debi, debc: rewrote in Perl (there was so much Perl embedded, it
didn't make sense to leave it in shell script)
* debi, debc: provide --no-conf option
* debc/debi: support only listing/installing specified packages (closes:
#200372)
* debchange: improve regex to recognise more successful uploads (closes:
#218242)
* debchange: perform various UTF-8 checks (closes: #218785)
* debpkg: remove /usr/local components from PATH
* debsign: improve gpg/pgp selection heuristics (closes: #158614,
#211031)
* debsign: improve manpage
* debuild: fix command line parsing (uploaded this one as 2.7.92.1)
(closed #218108, #218234)
* debuild: more command-line parsing stuff (closes: #218379, #220900)
* debuild: pass -e<maint> option to debsign (oops!)
* debuild: deprecate -E option (dpkg-buildpackage now uses it); so only
-e and -r short options are left
* debuild: deprecate -L/--lintian option for indicating lintian options,
replace with --lintian-opts
* debuild: support linda (closes: #178456)
* debuild: now always recognises -d/-D options to skip/force use of
dpkg-checkbuilddeps (closes: #188216)
* grep-excuses: converted to use wget and caching instead of libwww-perl
(faster)
* plotchangelog: provided --cumulative option
* devscripts.conf.5: new manpage (closes: #217858)
* removed the dummy build, release and signchanges scripts (they were
renamed over four years ago)
* updated the devscripts.conf default file to add new programs to the
list
* note that it's really sourced by /bin/bash. not generic /bin/sh (and
modify the rest of the package accordingly); this cleans up a minor
inconsistency
* place symlink to the default config file in doc directory
* improved tempfile security in plotchangelogs, debdiff, grep-excuses
-- Julian Gilbey <jdg@debian.org> Mon, 17 Nov 2003 22:40:29 +0000
devscripts (2.7.92.1) unstable; urgency=low
* debuild: fix command line parsing (backported from 2.7.93pre2)
(closes: #218108, #218234)
-- Julian Gilbey <jdg@debian.org> Fri, 31 Oct 2003 10:33:07 +0000
devscripts (2.7.92) unstable; urgency=low
* Security fix: be a lot more careful when traversing directory trees
looking for debian/changelog files; only perform potentially harmful
actions if the directory name matches the package name (i.e., package
or package-<anything>). Affects the following programs: debc,
debchange/dch, debclean, debuild, debi, debrelease, uscan, uupdate
(closes: #205471)
* bts: update tags list again (closes: #207260)
* bts: update BROWSER URL (closes: #207052)
* bts: handle '+' in package names when caching (closes: #215830)
* bts: provide online links instead of/as well as local ones
* bts: provide new commands package, owner, noowner
* bts: provide cleancache command
* bts: expire old automatically downloaded bugs from the cache
* bts: fix tag command for multiple tags (closes: #215986)
* debchange: fix off-by-one editor line error (closes: #204512)
* debchange: apply Matt Zimmerman's patch to support --distribution and
--urgency options (closes: #197106)
* debdiff: allow "--move-regex from to" to use $1, ... in "to" part
(closes: #204114)
* debdiff: fix syntax error (closes: #217715)
* debi: fix typo so only install .debs and not .udebs (closes: #207955)
* debsign: fix policy-url inclusion with gnupg (closes: #204685)
* dpkg-depcheck: check for build-essential being installed (closes:
#216809)
* dpkg-genbuilddeps: remove comment about strace bug (closes: #212277)
* grep-excuses: quote package name (closes: #212476)
* uupdate: correct syntax error when hunting reject files (closes: #206768)
* uupdate: *really* accept symlink options (closes: #212253)
* uupdate: correct symlink comment (closes: #213590)
-- Julian Gilbey <jdg@debian.org> Mon, 27 Oct 2003 22:12:03 +0000
devscripts (2.7.91) unstable; urgency=low
* debdiff: fix regex error with --move option (closes: #204113)
* debuild: close build log file before exiting (closes: #204076)
* mergechanges: use correct default filename when epochs are present
(closes: #195761)
* uupdate: fix Devscripts::Versort to not do infinite loops (closes:
#204192)
* uupdate: make -v work (closes: #204232)
* uupdate: handle new files introduced upstream better (closes: #197478)
-- Julian Gilbey <jdg@debian.org> Wed, 6 Aug 2003 15:27:53 +0100
devscripts (2.7.90) unstable; urgency=low
* Version number: this is heading towards 2.8.0; there are several more
contributed scripts to add first, though.
* bts: add comment on from:<submitter> and src:<package> options for bts
bugs (closes: #155658)
* bts: fix clone command (closes: #185524, #201088, #201090)
* bts: use sensible-browser instead of trying to parse BROWSER ourselves
(closes: #185827)
* bts: add caching capabilities (closes: #188229)
* bts: update list of valid tags (closes: #196751, #201149)
* bts: fix "sumitter" typo (closes: #203162)
* debchange: use new upstream version number found from changelog
(closes: #154144, #181974)
* debchange: provide --closes capability (closes: #153910)
* debclean: added French manpage (closes: #180224)
* debdiff: the --move <from> <to> should not regard the <from> as a
regex (closes: #183930); add --move-regex which accepts regexps
* debit: remove script, as debian-test has been removed from unstable
* debuild: fix --rootcmd bug (closes: #180862)
* debuild: add GPG_AGENT_INFO and remove PGPPASS to default preservation
list (closes: #186659)
* debuild: log build to log file (closes: #164585)
* dpkg-depcheck: give -a more functionality when used in combination
with -b, -d or -m (closes: #143306)
* dpkg-depcheck: add discard-sgml-catalogs feature (closes: #147369)
* plotchangelog: applied Joey's patch to add -d/--dump option (closes:
#182878)
* uupdate: added some more sanity and success checks (closes: #188711)
* uupdate: improved option handling (closes: #145711)
* uupdate: provided symlink/copy option (closes: #150845)
* uscan: sort directories into a sensible order before we begin and add
some intelligence to save some work in certain cases (closes: #156434)
* uscan: add some variation to the exit status (closes: #192786)
* uscan: clarify manpage (closes: #201278)
* README: added dependency information (closes: #183299)
* NEW SCRIPT: checkbashisms (closes: #163316)
-- Julian Gilbey <jdg@debian.org> Fri, 1 Aug 2003 11:50:16 +0100
devscripts (2.7.2) unstable; urgency=low
* bts: add sarge and experimental tags (closes: #170389)
* bts: add submitter command (closes: #172161)
* bts: reopen submitter name is optional (closes: #171046)
* debchange: handle upstream version numbers with : or - correctly
(closes: #174818)
* debpkg: Created a compiled debpkg wrapper so that suidperl is no
longer needed for debpkg to be suid root
* debdiff: Quieten interdiff check when interdiff not installed and
sh=dash (from #168862, now reassigned to dash)
* debdiff: mention interdiff in control file
* grep_excuses: drop email grepping, as this no longer appears in
update_excuses output (closes: #174300)
-- Julian Gilbey <jdg@debian.org> Wed, 1 Jan 2003 10:34:25 +0000
devscripts (2.7.1) unstable; urgency=low
* The "bugfix time" release
* bts: support new "clone" command (closes: #141995)
* bts: shouldn't be noisy if no arguments received (closes: #147181)
* bts: browser selection code improvement (closes: #150751)
* debdiff: fix config file typo (closes: #149712)
* debpkg: untaint @ARGV to quieten perl
* debuild: add dpkg-checkbuilddeps command when given binary* option
(closes: #141159)
* debuild: "fakeroot :" test replaced with "fakeroot true" to work on
Hurd
* debuild: pass DEBSIGN_* environment variables (closes: #159848)
* debrelease: no longer collapse when a -t <host> option is given for
dupload
* debsign: remove PATH-cleaning code etc., as it actually provides no
security and is annoying (closes: #161509)
* dpkg-depcheck: Fix typo in help message (closes: #140923)
* dpkg-depcheck: Fix regexp (quote filename properly) (closes: #143298)
* uupdate: correct .orig.tar.gz handling (closes: #147657)
* uscan: fix to support weird dpkg version number handling
(closes: #159052)
* several perl scripts "use 5.6.0" -> "use 5.006_000" (closes: #154770)
* upgrade standards version (support new DEB_BUILD_OPTIONS)
-- Julian Gilbey <jdg@debian.org> Tue, 1 Oct 2002 16:46:02 +0100
devscripts (2.7.0) unstable; urgency=low
* debclean: don't remove .upload files (closes: #140161)
* I think it's ready enough to bump the version number!
-- Julian Gilbey <jdg@debian.org> Sun, 31 Mar 2002 10:02:49 +0100
devscripts (2.6.99) unstable; urgency=low
* debdiff: fix dsc handling on native packages (closes: #139776)
-- Julian Gilbey <jdg@debian.org> Mon, 25 Mar 2002 08:52:34 +0000
devscripts (2.6.98) unstable; urgency=low
* uscan: fix handling of HTTP-proxied FTP requests (closes: #138882)
* uscan: add --debug features
-- Julian Gilbey <jdg@debian.org> Sun, 24 Mar 2002 22:51:03 +0000
devscripts (2.6.97) unstable; urgency=low
* debdiff: add support for comparing source packages (closes: #94908)
-- Julian Gilbey <jdg@debian.org> Sun, 17 Mar 2002 23:46:17 +0000
devscripts (2.6.96) unstable; urgency=low
* uscan: typo in manpage (closes: #138486)
* uscan: allow per-site PASV/active selection (closes: #127646)
* add devscripts.1 manpage (closes: #138485)
-- Julian Gilbey <jdg@debian.org> Sun, 17 Mar 2002 12:28:53 +0000
devscripts (2.6.95) unstable; urgency=low
* debuild: don't die with -tc option (closes: #138478)
-- Julian Gilbey <jdg@debian.org> Fri, 15 Mar 2002 17:14:53 +0000
devscripts (2.6.94) unstable; urgency=low
* James' comment means that the procmail script can be even more
economical.
* Also correct the regexp (which would have failed in the past)
-- Julian Gilbey <jdg@debian.org> Fri, 15 Mar 2002 16:58:53 +0000
devscripts (2.6.93) unstable; urgency=low
* debuild: use lintian according to DEBUILD_LINTIAN ;-) (closes: #138445)
* procmail examples: update for ACCEPTED messages (closes: #138460)
-- Julian Gilbey <jdg@debian.org> Fri, 15 Mar 2002 16:01:31 +0000
devscripts (2.6.92) unstable; urgency=low
* debdiff: fixed syntax error (closes: #138381)
* debdiff: and use proper logic for wdiff exit status (closes: #138383)
-- Julian Gilbey <jdg@debian.org> Fri, 15 Mar 2002 11:17:07 +0000
devscripts (2.6.91) unstable; urgency=low
* grep-excuses: fixed parsing problem (closes: #138227)
* uscan: fixed FTP regex
* uscan: chdir back to where we started between directories
(closes: #138232)
* uupdate: add (and document) bzip2 support (closes: #138247)
-- Julian Gilbey <jdg@debian.org> Thu, 14 Mar 2002 10:06:35 +0000
devscripts (2.6.90) unstable; urgency=low
* Simplified whole build process.
* Removed broken i18n support -- if it's wanted, we can reintroduce it
when Perl supports a --dump-po-strings type function (or we can write
it manually)
* devscripts now has a config file! Yeah! (closes: #40729)
* New scripts:
- dpkg-depcheck (from Bill Allombert <ballombe@debian.org>)
- grep-excuses (closes: #129444)
- mergechanges (closes: #130849)
* bts: document BROWSER in ENVIRONMENT VARIABLES section (closes:
#116417)
* bts: accepts 'tags' as a synonym for 'tag' (closes: #113262)
* bts: accepts --help and --version arguments
* debchange: allow it to understand both dupload and dput .upload
formats
* debchange: handle EMAIL='Full Name <email@address>' (closes: #133632)
* debchange: now uses config variable for --preserve option
* debchange: introduce -d/--fromdirname option (closes: #116352)
* debchange: clarify --newversion explanation in manpage (closes: #137392)
* debclean: introduced --cleandebs option and config variable: now only
removes .deb etc. files if specifically requested to
* debdiff: fixed dirs moving around among multiple packages (closes:
#113151)
* debdiff: use configuration file
* debrelease: can use dput or dupload (closes: #118071)
* debrelease: can now handle source-only uploads
* debrelease: use configuration file
* deb[r]sign: teach it about source-only .changes files
* debsign: don't delete signed files if the scp to transfer them back
failed (thanks to Joey Hess for patch) (closes: #126395)
* debsign: use configuration file
* debuild: teach it about source-only builds (closes: #114699) and
binary-only builds (closes: #115168)
* debuild: correct -E description in usage info (closes: #126171)
* debuild: correct -p option handling (closes: #122870)
* debuild: now uses configuration file (closes: #36793)
* debuild: check for existence of fakeroot (closes: #137605)
* dpkg-genbuilddeps: now a wrapper around dpkg-depcheck. This latter
program can be used instead if there is a problem with strace hanging
on dpkg --build; simply only trace the build target.
* dscverify: now uses the same gpg command as katie for signature
verification, which has simplified the code significantly
* dscverify: now also check signature on .dsc file included in .changes
file
* dscverify: now uses configuration file
* uscan: rewrote in Perl to make handling other bugs simpler
* uscan: new, simpler, watch file format available, ironically also
allows handling of more complex http:// searches (closes: #126789)
* uscan: correct handling of absolute filenames (closes: #120416, #126768)
* uscan: verbose and non-verbose modes available (closes: #126705)
* uscan: report-only mode available (closes: #126705)
* uscan: allows choosing PASV or non-PASV (default) mode (closes: #127646)
* uscan: symlinks (by default) pkg_version.orig.tar.gz to downloaded
file (closes: #127580)
* uscan: now uses configuration file
* uupdate: correct match regexp (closes: #114798)
* uupdate: now uses pristine source by default (closes: #131448)
* debian.procmail: remove old quake list reference (closes: #136058)
-- Julian Gilbey <jdg@debian.org> Mon, 4 Feb 2002 13:00:36 +0000
devscripts (2.6.4) unstable; urgency=low
* Fix postscript typo (closes: #112437)
* bts: add missing tags (closes: #113240)
* bts: fix comment handling in bts control commands (closes: #113890)
* plotchangelog: add -b/--bugcount option to --help output (closes:
#112585)
-- Julian Gilbey <jdg@debian.org> Mon, 1 Oct 2001 08:49:59 +0100
devscripts (2.6.3) unstable; urgency=low
* bts: Fix typos (closes: #110519)
* bts: Implement esr's BROWSER spec (closes: #111061)
* bts: Multiple command caching, thanks to Colin Watson (closes:
#111066)
* bts: Recognise DEBEMAIL and fake From: line if it's set (closes:
#111148)
-- Julian Gilbey <jdg@debian.org> Tue, 4 Sep 2001 15:24:53 +0100
devscripts (2.6.2) unstable; urgency=low
* Get the build-indep -> build-arch change correct as well - D'Oh!
(closes: #110042)
-- Julian Gilbey <jdg@debian.org> Sat, 25 Aug 2001 22:30:17 +0100
devscripts (2.6.1) unstable; urgency=low
* Build-Depends-Indep -> Build-Depends (closes: #109746)
* bts doesn't automatically default to w3m (closes: #109699)
-- Julian Gilbey <jdg@debian.org> Fri, 24 Aug 2001 01:53:37 +0100
devscripts (2.6.0) unstable; urgency=low
* Added new "bts" script (closes: #104407)
* Added Ben Collins' dpkg-genbuilddeps program (note that this makes
this package "Architecture: any" rather than the previous
"Architecture: all"); unfortunately, it is currently disabled due to a
bug in strace (or perhaps it's in dpkg)
* Fix dscverify MD5 -> Digest::MD5 (required the old libmd5-perl package
to work correctly) (closes: #105814)
* Change "OK then, aborting." message in debsign (closes: #100654)
* Correct spelling priviledge -> privilege (closes: #101774)
* Improvement in uupdate tmp dir handling (thanks to Decklin Foster)
(closes: #106057)
* dscverify now accepts local keyrings (closes: #98431)
* Fixed plotchangelog bugs (closes: #102416, #102417)
-- Julian Gilbey <jdg@debian.org> Tue, 21 Aug 2001 20:27:53 +0100
devscripts (2.5.30) unstable; urgency=low
* Remove /etc/upload.sites if it still exists.
* Correct use of $! in perl scripts (closes: #97185)
* Add wdiff recommendation in control file for debdiff (closes: #94907)
-- Julian Gilbey <jdg@debian.org> Wed, 6 Jun 2001 16:02:08 +0100
devscripts (2.5.29) unstable; urgency=medium
* And do all of the other debian.procmail security regex's while we're
at it.
-- Julian Gilbey <jdg@debian.org> Sat, 5 May 2001 22:51:04 +0100
devscripts (2.5.28) unstable; urgency=medium
* Fix security hole in debian.procmail example: replace [^@] regex by
something more restrictive (reported by Shane Wegner <shane@debian.org>)
-- Julian Gilbey <jdg@debian.org> Sat, 5 May 2001 22:28:20 +0100
devscripts (2.5.27) unstable; urgency=low
* debdiff: compares control files in more situations (closes: #94562)
-- Julian Gilbey <jdg@debian.org> Fri, 20 Apr 2001 17:30:43 +0100
devscripts (2.5.26) unstable; urgency=low
* Fixed debdiff; added wdiff formatting options
-- Julian Gilbey <jdg@debian.org> Tue, 17 Apr 2001 11:04:23 +0100
devscripts (2.5.25) unstable; urgency=low
* Fixed plotchangelog bugs (closes: #93204, #93205)
* Enhanced debdiff (closes: #58459, #59827, #79952): can now diff
control files and see which files have moved between packages (not
perfect, but pretty good)
* dch aborts if the temporary changelog is not modified (mtime check) --
patch by Colin Watson <cjw44@flatline.org.uk> (closes: #72237)
* Improve forward.exim (master.procmail was already done) (closes: #78474)
-- Julian Gilbey <jdg@debian.org> Tue, 17 Apr 2001 09:42:55 +0100
devscripts (2.5.24) unstable; urgency=low
* Improve debpkg error handling with no options given
* debsign should exit with status 0 if signed file is not resigned
(closes: #92833)
-- Julian Gilbey <jdg@debian.org> Wed, 4 Apr 2001 18:24:39 +0100
devscripts (2.5.23) unstable; urgency=low
* Fix uscan to handle funny HTML hrefs (closes: #89749)
-- Julian Gilbey <jdg@debian.org> Mon, 2 Apr 2001 01:01:26 +0100
devscripts (2.5.22) unstable; urgency=low
* Remove dependency on gettext; there are no translations for this
package to date, and no easy ways of generating the needed message
files (closes: #92167)
-- Julian Gilbey <jdg@debian.org> Fri, 30 Mar 2001 15:45:31 +0100
devscripts (2.5.21) unstable; urgency=low
* Introduced --set-envvar option to debuild (might close #88586)
-- Julian Gilbey <jdg@debian.org> Mon, 5 Mar 2001 15:58:59 +0000
devscripts (2.5.20) unstable; urgency=low
* Modified README to refer to dpkg-statoverride instead of suidmanager
* debsign: Add -e option (closes: #85847)
* debsign: lots of improvements to bring it into line with current
dpkg-buildpackage
* Modified package description to list dependencies of each script
* Removed dependency on ftp (and ftp-ssl should Provide: ftp)
(closes: #86765)
* Updated for new Perl setup; changed source dependencies to cope
* Standards version 3.5.2
-- Julian Gilbey <jdg@debian.org> Sun, 25 Feb 2001 14:21:01 +0000
devscripts (2.5.19) unstable; urgency=low
* Quote package name in regexps (closes: #85566)
-- Julian Gilbey <jdg@debian.org> Sun, 11 Feb 2001 22:49:28 +0000
devscripts (2.5.18) unstable; urgency=low
* Correct /bin/sh -> /bin/bash in shell scripts; broke due to my
configure script using the shell variable BASH, which was /bin/sh when
/bin/sh was linked to bash. Oops. (closes: #85089)
* Correct debchange directory renaming behaviour (closes: #78468)
* Correct ~ -> $HOME in debrsign (closes: #81147)
* Changed tar I -> tar --bzip2 in uupdate (closes: #81507)
* Corrected uscan.1 (thanks to Jim Van Zandt) (closes: #83095)
* debchange: sets urgency to low automatically (closes: #83584)
* debclean: Correct directory changing (closes: #84309)
* Conflict with old suidmanager
* debchange: --help should never fail! (closes: #78383)
-- Julian Gilbey <jdg@debian.org> Wed, 7 Feb 2001 10:47:28 +0000
devscripts (2.5.17) unstable; urgency=low
* debuild: Allow through DEB_* and GNUPGHOME environment
variables. (Closes: #77822)
-- Julian Gilbey <jdg@debian.org> Thu, 14 Dec 2000 12:03:56 +0000
devscripts (2.5.16) unstable; urgency=low
* debdiff: Set locale to C before doing parsed dpkg-deb call
(closes: #68325 again)
-- Julian Gilbey <jdg@debian.org> Mon, 11 Dec 2000 23:07:07 +0000
devscripts (2.5.15) unstable; urgency=low
* Correct debsign typo -- oops! (closes: #79366)
-- Julian Gilbey <jdg@debian.org> Mon, 11 Dec 2000 22:17:55 +0000
devscripts (2.5.14) unstable; urgency=low
* master.procmail: add -oi option to sendmail invocation
* debdiff: attempt to fix hardlinks problem (closes: #68325)
-- Julian Gilbey <jdg@debian.org> Sun, 10 Dec 2000 23:50:35 +0000
devscripts (2.5.13) unstable; urgency=low
* debsign: Fix manpage (line beginning with dot disappeared)
(closes: #76984)
* debsign: Give explanatory warning message about RSA(REF) extensions if
gpg fails, due to silly/paranoid gpg exit values (closes: #75677)
* debsign: use new Changed-By field if it exists (closes: #77226)
* deb(r)sign: now allows signing of just a .dsc file (closes: #77822)
* dch: Use more intelligent way of determining name and email address
(thanks to Roderick Schertler, roderick@argon.org; closes: #63764)
* uscan: Use binary mode for ftp (closes: #67336)
* uscan: Use passive mode for ftp (closes: #68539)
* parsechangelog: put in check for libtimedate-perl package and issue
meaningful error message if not found (closes: #67710)
* master.procmail: prevent looping (closes: #65256)
-- Julian Gilbey <jdg@debian.org> Sat, 9 Dec 2000 23:53:23 +0000
devscripts (2.5.12) unstable; urgency=low
* dscverify: Correct test for --help, --version to be *after* test for
no arguments
* uupdate: allow .tar.bz2 archive files (but not yet for pristine
source; will do soon, once I've upgraded to woody and dpkg is ready
for it) (closes: #64113)
-- Julian Gilbey <jdg@debian.org> Mon, 22 May 2000 13:55:38 +0100
devscripts (2.5.11) unstable; urgency=low
* Fix checkgettext.pm so it actually works when liblocale-gettext-perl
is not installed (conflict with POSIX module)
* Modify dscverify to see the keyrings on ftp-master as well as on
master.
-- Julian Gilbey <jdg@debian.org> Mon, 22 May 2000 10:27:26 +0100
devscripts (2.5.10) unstable; urgency=low
* Fix debsign to check for $GNUPGHOME as well as ~/.gnupg (closes bug
reported by Gerfried Fuchs <alfie@innocent.com>)
* Fix debian-test script to work with new version of debian-test
(closes: #51527)
-- Julian Gilbey <jdg@debian.org> Thu, 11 May 2000 12:04:29 +0100
devscripts (2.5.9) unstable; urgency=low
* Change Getopt::Long::config back to Getopt::Long::Configure in dch as
this is a woody package, and I am not going to worry about slink
compliance any longer.
* debsign checks to see whether the .dsc file has already been signed
(closes: #54963)
* Fixed scp bug when changes file name is given relative to remote home
directory (closes: #61504)
* Corrected help message in debc (closes: #61541)
* Changed dupload recommends to suggests; all package maintainers will
have dupload installed anyone, one would presume (closes: #57847)
* Removed recommendations etc on netstd and perl(-suid) from the control
file as their replacements are already standard in potato.
-- Julian Gilbey <jdg@debian.org> Tue, 4 Apr 2000 17:45:18 +0100
devscripts (2.5.8) frozen unstable; urgency=low
* Correct debdiff to allow 2 *.changes files (closes: #58458)
(RM: this is an important bug)
-- Julian Gilbey <jdg@debian.org> Mon, 13 Mar 2000 23:37:05 +0000
devscripts (2.5.7) unstable; urgency=low
* Remove install-stamp from debian/rules
* Change Getopt::Long::Configure to Getopt::Long::config in dch to allow
the package to still work in slink (closes: #51442)
-- Julian Gilbey <jdg@debian.org> Wed, 1 Dec 1999 00:50:44 +0000
devscripts (2.5.6) unstable; urgency=low
* Correct debuild bug. Again. This regexp is getting silly ;)
-- Julian Gilbey <jdg@debian.org> Wed, 24 Nov 1999 09:28:44 +0000
devscripts (2.5.5) unstable; urgency=low
* Correct debuild to only pass -spgp and -sgpg options to debsign, not
-sa and suchlike (closes: #51065)
-- Julian Gilbey <jdg@debian.org> Tue, 23 Nov 1999 12:18:47 +0000
devscripts (2.5.4) unstable; urgency=low
* Added perl shebang test to debian-test suite
* Recompile to correct perl shebang line (closes: #51039 and all other
reports about the same thing!)
* Preserve DEB_BUILD_OPTIONS (request from Joseph Carter)
-- Julian Gilbey <jdg@debian.org> Tue, 23 Nov 1999 11:19:12 +0000
devscripts (2.5.3) unstable; urgency=low
* Correct uupdate syntax error (closes: #50881)
* Correct debsign regexp error again! (closes: #50877)
-- Julian Gilbey <jdg@debian.org> Mon, 22 Nov 1999 18:24:00 +0000
devscripts (2.5.2) unstable; urgency=low
* Fixed debrelease back in version 2.5.0 to pass on options to dupload,
but forgot to say so.
* All of the programs which look for a .changes file now accept the
dpkg-buildpackage/dpkg-architecture -a and -t options (again, done in
2.5.0)
* Correct 'eq' -> '-eq' in test command (and it's the third time I've
made that mistake in as many days...) (closes: #50549)
* Added a simple debian-test script to check that I get the version
numbering right....
* Added build dependecies (which wasn't really that hard...)
* Correct debdiff problem: forgot to chdir back after looking at first
changes file
* debit now runs debian-test *without* su nobody; I believe that it is
the responsibility of the test programs themselves to handle choosing
their userid
* Correct handling of .changes file entries when package is in
non-US/main/libs or suchlike (really closes: #50281)
-- Julian Gilbey <jdg@debian.org> Fri, 19 Nov 1999 01:50:32 +0000
devscripts (2.5.1) unstable; urgency=low
* Cleaned up Makefile.am
* Small correction to mustsetvar logic in uscan
-- Julian Gilbey <jdg@debian.org> Tue, 16 Nov 1999 21:44:26 +0000
devscripts (2.5.0) unstable; urgency=low
* Add -m option to deb(r)sign to parallel the behaviour of
dpkg-buildpackage; this is obviously desirable, and necessary to
* make sure that debuild pays attention to any -m, -k, -p or -s options
given to dpkg-buildpackage when calling debsign (should close #50281),
and
* make debsign sign the right .changes file! (closes: #50134)
* Teach debdiff to fully handle potato version of dpkg -c output
* Make debdiff able to handle .changes files as well as just single .deb
files
* Make debdiff Perl more idiomatic
* Allow deb[ic] to handle multiple binary packages by parsing .changes
file (closes: #33699)
* Merged deb[ic] into one file, as their functionality is almost
identical
* Corrected a few more occurrences of manually parsing changelogs (which
I should have done when correcting bug #43082)
* Add Joey's plotchangelog program (closes: #50150)
* Added a README.i18n file
* Added James R. Van Zandt's debit script, merged into a single script
with debi.
-- Julian Gilbey <jdg@debian.org> Tue, 16 Nov 1999 02:41:57 +0000
devscripts (2.4.6) unstable; urgency=low
* Rebuild with correct Perl paths
-- Julian Gilbey <jdg@debian.org> Fri, 12 Nov 1999 02:26:42 +0000
devscripts (2.4.5) unstable; urgency=low
* Remove references to libtricks package from descriptions (close:
#49937, even though I made the correction the day before the bug
report arrived!)
* Only suggest gnupg rather that recommend (closes: #49882)
* s/sprint/sprintf/ in dscverify (closes: #49721)
* Add --version and --help options to all programs (and this effectively
closes: #49554)
* Add long options to all programs except for deb(r)sign, as the options
there match those in dpkg-buildpackage (closes: #41850)
* No longer suggest PGP, as GNU Privacy Guard with the requisite
extensions should be sufficient
* Correct debdiff to take account of new format of dpkg-deb -c output
(and why did it change?)
* Make sure debian/rules clean really does that (error in Makefile.am)
* Rewrite of internals of debuild in several places, especially with
regard to -r handling. Much nicer logic now.
-- Julian Gilbey <jdg@debian.org> Fri, 12 Nov 1999 01:49:40 +0000
devscripts (2.4.4) unstable; urgency=low
* Correct spurious debian/changelog.dch error message (closes: #49435)
-- Julian Gilbey <jdg@debian.org> Sun, 7 Nov 1999 18:02:07 +0000
devscripts (2.4.3) unstable; urgency=low
* Add ssh | ssh-nonfree suggest (forgot when adding remote signing
capabilities to deb(r)sign in 2.4.[01])
-- Julian Gilbey <jdg@debian.org> Sun, 7 Nov 1999 02:37:17 +0000
devscripts (2.4.2) unstable; urgency=low
* Change netstd dependency to netstd (<<3.07-8) | ftp dependency
(closes: #49322, #49331)
-- Julian Gilbey <jdg@debian.org> Sun, 7 Nov 1999 02:24:43 +0000
devscripts (2.4.1) unstable; urgency=low
* Added remote changes file functionality to debsign
-- Julian Gilbey <jdg@debian.org> Thu, 4 Nov 1999 01:09:13 +0000
devscripts (2.4.0) unstable; urgency=low
* Use Edward Betts' procmailrc examples files
* Suggest perl5-suid | perl-suid instead of perl-suid (closes: #42873)
* Corrected debchange to handle all sorts of version numbers, and to
use dpkg-parsechangelog for correctness (closes: #43082)
* Corrected dscverify: use POSIX and don't have barewords (closes: #45858)
* Renamed signchanges to debsign
* Allowed .changes name to be determined automatically by debsign
* Added debrsign program (closes: #44051)
* Cleaned up shebang lines
* Corrected uscan to allow absolute links (closes: #45672)
* Make ftp connections passive (closes: #46193)
* Corrected extraneous directory changing (closes: #46645)
* Use dpkg-parsechangelog to determine package name and version in
uupdate (closes: #47402)
* Make pgp/gpg choice of debsign behave in the same way as
dpkg-buildpackage.
* dscverify now uses GPG and will need an RSA extension to check PGP
signatures
-- Julian Gilbey <jdg@debian.org> Thu, 28 Oct 1999 16:39:42 +0100
devscripts (2.3.9) unstable; urgency=low
* Correct gpg signchanges patch (closes: #42188, thanks to Adam Heath)
-- Julian Gilbey <jdg@debian.org> Sun, 8 Aug 1999 10:05:34 +0100
devscripts (2.3.8) unstable; urgency=low
* Changed perl5 dependency to perl5 | perl (closes: #42329)
-- Julian Gilbey <jdg@debian.org> Wed, 4 Aug 1999 10:32:39 +0100
devscripts (2.3.7) unstable; urgency=low
* Correct html patch (closes: #41986)
-- Julian Gilbey <jdg@debian.org> Wed, 28 Jul 1999 00:37:59 +0100
devscripts (2.3.6) unstable; urgency=low
* Corrected Makefile.am bug which makes all Perl scripts begin #! @PERL@
-- ouch!! (closes: #41846, part of #41850)
-- Julian Gilbey <jdg@debian.org> Sun, 25 Jul 1999 02:12:37 +0100
devscripts (2.3.5) unstable; urgency=low
* Change Suggests: libmd5-perl to libdigest-md5-perl
* Incorporated Joseph Carter's gpg patch to signchanges (closes: #40727)
* Incorporated Raphael Hertzog's patch to not depend on
liblocale-gettext-perl (closes: #40596)
* Applied Piotr Roszatycki's patch to allow uscan to use http://
prefixed locations (closes: #41272)
-- Julian Gilbey <jdg@debian.org> Fri, 23 Jul 1999 09:24:53 +0100
devscripts (2.3.4) unstable; urgency=low
* Change perl dependency to perl5 dependency
-- Julian Gilbey <jdg@debian.org> Thu, 1 Jul 1999 23:02:33 +0100
devscripts (2.3.3) unstable; urgency=low
* Corrected debpkg manpage (closes: #40279)
* Remove dependency on dupload (closes: #40382)
* Add -p (preserve directory name) option to dch (closes: #39385)
-- Julian Gilbey <jdg@debian.org> Thu, 1 Jul 1999 02:54:24 +0100
devscripts (2.3.2) unstable; urgency=low
* More corrections to uscan, with thanks to Thomas Quinot. Closes:
#40227
* Added -e/-E options to debuild (closes: #40071)
-- Julian Gilbey <jdg@debian.org> Sun, 27 Jun 1999 03:00:22 +0100
devscripts (2.3.1) unstable; urgency=low
* Really fix bug#38798 this time: versort and uscan now work correctly
together
-- Julian Gilbey <jdg@debian.org> Tue, 22 Jun 1999 00:45:52 +0100
devscripts (2.3.0) unstable; urgency=low
* Reinstated the release script (renamed as debrelease) (closes #34122)
* dch can now determine (in conjunction with dupload 2.1) whether or not
to increment the version number without needing an explicit option
(closes #34130)
* Internationalisation of the package
* Correct the (internal) versort library file description (closes:
#38798)
-- Julian Gilbey <jdg@debian.org> Tue, 22 Jun 1999 00:45:39 +0100
devscripts (2.2.7) unstable; urgency=low
* signchanges now correctly handles signing binary-only changes files
-- Julian Gilbey <jdg@debian.org> Mon, 31 May 1999 22:35:20 +0100
devscripts (2.2.6) unstable; urgency=low
* Corrected silly dscverify bug so it now works with filenames with no
directory components -- duh! (closes: #38065)
* Corrected perl regexp in signchanges so it now finds the dsc file
(closes: #38049)
-- Julian Gilbey <jdg@debian.org> Sun, 23 May 1999 16:44:32 +0100
devscripts (2.2.5) unstable; urgency=high
* Now only recommend fakeroot (and not libtricks) to alleviate grave
bug #37592 against dpkg
-- Julian Gilbey <jdg@debian.org> Thu, 13 May 1999 01:45:02 +0100
devscripts (2.2.4) unstable; urgency=low
* debchange/dch now looks for environment variable DEBEMAIL before
EMAIL (closes: #37199)
-- Julian Gilbey <jdg@debian.org> Wed, 5 May 1999 23:55:15 +0100
devscripts (2.2.3) unstable; urgency=low
* Correct debdiff Perl error and inconsistency
-- Julian Gilbey <jdg@debian.org> Tue, 4 May 1999 05:01:17 +0100
devscripts (2.2.2) unstable; urgency=low
* Fixed signchanges to die if PGP fails, rather than to wipe the
unsigned .changes file (closes: #36625)
-- Julian Gilbey <jdg@debian.org> Tue, 27 Apr 1999 01:57:57 +0100
devscripts (2.2.1) unstable; urgency=low
* Correct copyright notice in debdiff.1
-- Julian Gilbey <jdg@debian.org> Wed, 21 Apr 1999 02:10:59 +0100
devscripts (2.2.0) unstable; urgency=low
* Merged Yann's debdiff manpage with my attempt; bumping up the minor
number because of the new program
* Simplified debdiff's exit values
* debdiff is now licensed under version 2 of the GPL, rather than
version 2 or later
* Modified debchange/dch to always use the current date at the end of
the changelog section, even when adding an entry
-- Julian Gilbey <jdg@debian.org> Mon, 19 Apr 1999 20:00:34 +0100
devscripts (2.1.6) unstable; urgency=low
* Modify debdiff to ignore the destinations of symlinks
-- Julian Gilbey <jdg@debian.org> Tue, 13 Apr 1999 23:44:47 +0100
devscripts (2.1.5) unstable; urgency=low
* Now only Suggests: rather than Recommend: perl-suid (closes: #35635)
* Added Roderick's patch to dscverify, and added a change directory
feature of my own: a .changes file may be in any directory, and the
program will cd to that directory before trying to read any files
(closes: #34255)
* Added a rewritten, Perl version, of Yann Dirson's debdiff script
(closes: #34781)
-- Julian Gilbey <jdg@debian.org> Mon, 12 Apr 1999 22:50:44 +0100
devscripts (2.1.4) unstable; urgency=low
* Modify versort to be locale-independent, matching the corresponding
expected change in dpkg
-- Julian Gilbey <jdg@debian.org> Wed, 3 Mar 1999 01:10:37 +0000
devscripts (2.1.3) unstable; urgency=low
* Removed CVS files from .orig.tar.gz file!
-- Julian Gilbey <jdg@debian.org> Thu, 25 Feb 1999 19:57:50 +0000
devscripts (2.1.2) unstable; urgency=low
* Made debpkg pick up gid root as well as uid root
-- Julian Gilbey <jdg@debian.org> Tue, 23 Feb 1999 18:08:23 +0000
devscripts (2.1.1) unstable; urgency=low
* Moved package from utils to devel (closes: #33410)
-- Julian Gilbey <jdg@debian.org> Sun, 21 Feb 1999 00:52:26 +0000
devscripts (2.1.0) unstable; urgency=low
* Correct README to refer to libtricks package rather than fakeroot
package (closes: #32736)
* Modify uupdate to accept a -u argument to keep an Upstream pristine
source (closes: #32680, #12443); bump up the minor version number for
this
* A few other miscellaneous bug fixes to uupdate to be stricter about
seeming problems
* Added a new program: signchanges for signing a .changes/.dsc pair
without needing any of the rest of the source or binary files to be
present; this is useful for when a developer must build a package on
a machine other than the one on which he is signing
-- Julian Gilbey <jdg@debian.org> Wed, 3 Feb 1999 02:31:15 +0000
devscripts (2.0.6) unstable; urgency=low
* Updated man page for uupdate to reflect change in 2.0.5
-- Julian Gilbey <jdg@debian.org> Wed, 20 Jan 1999 12:44:11 +0000
devscripts (2.0.5) unstable; urgency=low
* Made test invocations POSIX compliant by removing -a connectives
* Uupdate now also accepts an absolute filename (closes: #31884)
* Allowed debuild to accept a space after the -r option
* More checks in uupdate to make it more robust
-- Julian Gilbey <jdg@debian.org> Mon, 18 Jan 1999 16:51:16 +0000
devscripts (2.0.4) unstable; urgency=low
* Changed control file to refer to package libtricks rather than old
name fakeroot (spotted by Edward Betts)
-- Julian Gilbey <jdg@debian.org> Mon, 11 Jan 1999 00:24:02 +0000
devscripts (2.0.3) unstable; urgency=medium
* Second attempt at correcting critical /tmp security bug (thanks to
Joey Hess!)
-- Julian Gilbey <jdg@debian.org> Thu, 7 Jan 1999 22:46:01 +0000
devscripts (2.0.2) unstable; urgency=low
* Disallow debchange and uupdate from being run by root or setuid; this
prevents possible /tmp exploits (Spotted by Joey Hess)
* Use the TMPDIR environment variable instead of /tmp if it is set
(requested by Zephaniah E, Hull)
-- Julian Gilbey <jdg@debian.org> Thu, 7 Jan 1999 21:56:11 +0000
devscripts (2.0.1) unstable; urgency=low
* Corrected silly LIBDIR bug in uscan
* Corrected missing newline characted in debchange
-- Julian Gilbey <jdg@debian.org> Thu, 7 Jan 1999 18:24:58 +0000
devscripts (2.0.0) unstable; urgency=low
* New maintainer
* Standards: 2.5.0.0
* New version numbering scheme: major.minor.patchlevel
* Changed the name of build to debuild. build now just prints an error
message and will disappear completely in the near future.
* Correct handling of epochs in debc, debi and release (closes: #29855)
* Use environment variables EDITOR, then VISUAL, and failing that,
/usr/bin/editor in accordance with policy 5.3 (except that VISUAL is
not mentioned there) (closes: #28605)
* Many modifications to uscan: it now compares version numbers
correctly, using a Perl script which works in a similar way to
dpkg --compare-versions, and it no longer has the extra 0 bug
(closes: #19235, #19467); it no longer uses ncftp but only ftp
(closes: #20968)
* uscan now expects the watch file to explicitly indicate how to deduce
the version number from the filename, by writing the filename as a
Perl regular expression and enclosing the version number part in (...)
* uupdate now allows a version number as an argument after the archive
filename, allowing it to work in harmony with uscan (closes: #20278)
* uupdate no longer tries to remove *.orig files, as the only ones which
are created by GNU patch are those where the patch failed, and we
probably _want_ to keep those (closes: #25774)
* build rewritten in Perl (now called debuild); has a nicer handling of
command line options (can accept a -r option with one of binary etc.,
and doesn't need an explicit -r option if there are other
dpkg-buildpackage options) (closes: #27752)
* debpkg rewritten in Perl as well
* This package is now an Architecture: all package as there are no
binaries left
* debchange now uses the last distributions mentioned in the changelog
as the default for the new version (closes: #30204)
* debchange now uses the environment variables DEBFULLNAME and EMAIL as
the uploader's details if these are set
* release has been deprecated in favour of dupload, and now just prints
a message suggesting the use of dupload instead (Closes: #29826,
#29978)
* The debchange command line options have been changed. debchange no
longer pays attention to the presence of a RELEASED file. The -i
option is for Increasing the Debian release number; the -a option is
for Appending to the current version, and the -v option specifies a
specific version number. One of these is mandatory
* Debchange now adds new changelog entries to the END of the current
section, rather than the beginning
* Improved logic of upgrading the Debian release number in debchange
* Debchange does not supply a release number if there is an explicit
version number provided
* Now debchange works on a version of the changelog in /tmp and only
overwrites the current changelog if everything is OK; this is much
safer than the original version. Also, all system calls have their
return status checked
* release and build now print error messages suggesting their
replacements
* debuild now runs lintian by default if it is installed; there is an
override facility etc., as described in the manpage (Closes: #18254)
* Added Roderick Schertler's dscverify program to devscripts
* Rewrote many bits of many man pages
* debian/rules and Makefile modified to use debhelper
-- Julian Gilbey <jdg@debian.org> Thu, 7 Jan 1999 02:46:04 +0000
devscripts (1.7.1) frozen unstable; urgency=medium
* Corrected file permissions (Closes: #31447)
-- Julian Gilbey <jdg@debian.org> Mon, 4 Jan 1999 10:29:19 +0000
devscripts (1.7) frozen unstable; urgency=low
* Changed uupdate to be more choosy about the version numbers
automatically recognised (Closes: #30838)
* New maintainer
-- Julian Gilbey <jdg@debian.org> Thu, 24 Dec 1998 13:07:13 +0000
devscripts (1.6) unstable; urgency=low
* #23098 build manpage update
* #23097 build: Preserve FAKEROOTKEY
* #19172 remove description for deblint
* #18564 depend on mailx
* #14314 release: epochs work now.
* #18498 conffiles are now absolute
* #24455 #24074 release: new scp requires -q option
-- Christoph Lameter <clameter@debian.org> Sat, 11 Jul 1998 21:45:47 -0700
devscripts (1.5) unstable; urgency=low
* #18235: build checks for executable bit on debian/rules and sets it if
not set before building package. build fails when debian/rules is not
present.
-- Christoph Lameter <clameter@debian.org> Sun, 15 Feb 1998 20:01:09 -0800
devscripts (1.4) unstable; urgency=low
* Upgrade to 2.4.0.0
* remove deblint from the package since there is now lintian which is much
better.
-- Christoph Lameter <clameter@debian.org> Sat, 14 Feb 1998 14:37:42 -0800
devscripts (1.3) unstable; urgency=low
* build: change default path. Remove sbin dirs add /usr/local/bin
-- Christoph Lameter <clameter@debian.org> Wed, 4 Feb 1998 13:07:04 -0800
devscripts (1.2) unstable; urgency=low
* Fix a problem with anonymous ftp upload of larger lists of files.
* Remove ftp.fuller.edu and lalug.org upload queue since they no longer exist.
* Add anonymous ftp type upload capability.
* Add third party site upload capability.
* Add debs.fuller.edu site information
-- Christoph Lameter <clameter@debian.org> Tue, 2 Dec 1997 12:53:18 -0800
devscripts (1.1) unstable; urgency=low
* Remove release fix for epochs introduced in 1.0 since it breaks lots of
things until I figure out what is wrong.
* Drop dependency on fileutils.
-- Christoph Lameter <clameter@debian.org> Wed, 29 Oct 1997 17:14:26 -0800
devscripts (1.0) unstable; urgency=low
* release: Make scp not ask anything so release does not hang when scp
wants a password.
* #13908 Try to fix release so that it handles epochs.
* #13681 Fix manpage for release to indicate that no annoucements will be
generated when dupload is used.
* #13777 no longer use printf in debchange (dch)
* #13846 Output Format of release changed
* Suggest fakeroot
* Split off from debmake
* Update documentation
-- Christoph Lameter <clameter@debian.org> Mon, 20 Oct 1997 21:02:27 -0700
|