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
|
2005-02-02 graham <graham@athene>
* changelog:
Drop the Debian version from the version number, making this a Native package.
* changelog, compat, control, copyright, files, postrm, rules:
Update to new setup with Graham as maintainer
2005-01-03 graham <graham@athene>
* configure.in: Prepare for 2.0.19
* src/wajig.py, NEWS: Complete only the first word in CLI.
2005-01-01 graham <graham@athene>
* src/commands.py, NEWS:
Fix a bug where a bunch of blank lines were being generated.
* NEWS: Add command completion in interactive mode.
* TODO: Note that code needs rewriting :-)
* src/wajig.py: Tidy up globals.
Tidy up arg testers.
* src/wajig.py:
Change handling of argument checking of commands so that we don;t just
exit if in interactive mode.
* src/wajig.py: Add command completion in interactive mode.
* src/wajig.py:
Add a command line interpreter, and run if no args are given.
2004-12-30 graham <graham@athene>
* configure.in: Begin version 2.0.18
* NEWS: Begin version 2.0.18 - simple doc fixes.
* src/documentation.py: Be consistent in wording.
* src/documentation.py: Add command line flags to --help documentation.
* configure.in: Update version number
* NEWS, src/commands.py: CHANGELOG tries harder to get latest version.
2004-12-30 graham <graham@athene>
* configure.in: Update version number
* NEWS, src/commands.py: CHANGELOG tries harder to get latest version.
2004-12-19 graham <graham@athene>
* NEWS, src/wajig.py: Note that DETAILS allows .deb files
* src/commands.py: Allow .deb files in do_describe
2004-11-29 graham <graham@athene>
* src/wajig.py:
Don't print Exiting on system exit - looks ugly - why was this necessary?
2004-11-28 graham <graham@athene>
* src/changes.py, src/commands.py, src/perform.py: Remove tabs
* TODO: Remove docs suggestions (done)
Note changes to snapshot idea.
* src/wajig.py: Add a blank line!
* src/commands.py: Add snapshot command to status
* NEWS: Add version 2.0.16
* src/wajig.py: Untabify.
Update README to report missing
* src/documentation.py: Add snapshot
* src/documentation.py: Add extra doc pointer
* NEWS, configure.in, gjig.1, src/bash_completion.py, src/documentation.py, wajig.1:
Provide argument 2 copmletion.
Update docs.
Prepare for Version 2.0.15
2004-11-26 graham <graham@athene>
* src/wajig.py, NEWS: Improve README to show more files.
2004-11-17 graham <graham@athene>
* NEWS, TODO, configure.in, src/perform.py:
Fix bug when a pipe is in command executed by sudo
2004-11-16 graham <graham@athene>
* src/documentation.py: Update doco on using SUDO
2004-11-14 graham <graham@athene>
* TODO: Add suggestion about snapshot to TODO
* NEWS, src/commands.py, src/perform.py, src/wajig.py:
Fix Bug#280305 - HOLD/UNHOLD using su wrongly
2004-11-13 graham <graham@athene>
* src/documentation.py:
Detabify Patch supplied by Gintautas Miliauskas Bug#280486
* src/documentation.py:
Patch supplied by Gintautas Miliauskas Bug#280486
* NEWS: LARGE now sorts on size, not package name.
* src/commands.py: Add commify.
LARGE now sorts on size, not package name.
* NEWS, src/documentation.py, src/wajig.py:
Add AUTO-ALTS as suggested bu Gintautas Miliauskas
* configure.in: Bump version
* debian/control: Remove dependence on sudo
* NEWS: Add README as suggested bu Gintautas Miliauskas
* src/wajig.py: Fix handling of compressed files for README
* src/documentation.py, src/wajig.py:
Add README as suggested bu Gintautas Miliauskas
2004-11-11 graham <graham@athene>
* NEWS, src/documentation.py:
Update documentation of DEPENDENTS as suggested by Calum Mackay in
Bug#280163.
2004-11-06 graham <graham@athene>
* src/wajig.py, src/documentation.py: Change depnedees to dependents
* src/commands.py: Host to get changelog information from has changed.
* src/perform.py: Update sudo comments
2004-10-18 graham <graham@athene>
* NEWS, debian/changelog, debian/control, debian/copyright, debian/dirs, debian/rules:
Dirk's patch
* src/Makefile.in: Dirk's patch: Use ${DESTDIR}
* gjig.sh.in, wajig.sh.in, NEWS, Makefile.in: Dirk's patch
* debian/control: Update architecture to all
* configure.in: Bump version to 2.0.12
* NEWS, src/wajig.py: Change /etc/init.d to invoke-rc.d
2004-10-06 graham <graham@athene>
* TODO: Add upgrade-version suggestion
* src/wajig.py: replace pkg apt-setup with base-config
* src/gjig.glade: Speeling correction
2004-08-09 graham <graham@athene>
* TODO: Add some more items
2004-08-08 graham <graham@athene>
* src/gjig.glade, src/gjig.py:
Arguments text box becomes Packages text box
2004-06-05 graham <graham@athene>
* NEWS, src/wajig.py: Note that NEWS requires lynx.
* NEWS, src/commands.py: Fix news bug similar to the changelog bug
* src/commands.py, NEWS: Fix changlelog Bug#248549
2004-06-04 graham <graham@athene>
* NEWS, src/commands.py, src/documentation.py:
Fix bug #252600 in FORCE command
2004-05-22 graham <graham@athene>
* NEWS, configure.in: Start version 2.0.11
* NEWS, TODO, src/documentation.py, src/wajig.py:
Add list-status, list-wide, and fileremove commands.
* configure.in: Update to version 2.0.10
2004-05-19 graham <graham@athene>
* Makefile.in: Updates
2004-05-05 graham <graham@athene>
* src/documentation.py: Add pointer to Sarovar
2004-05-04 graham <graham@athene>
* src/wajig.py: Allow policy to have no arguments
* NEWS, src/documentation.py, src/wajig.py: Add Search-Apt
2004-04-04 graham <graham@athene>
* Makefile.in, debian/control: Cleanup
* debian/changelog, debian/control, debian/copyright, debian/dirs, debian/docs, debian/postrm, debian/rules:
Add Debian files
2004-04-03 graham <graham@athene>
* www/Makefile, www/gjig-screenshot.jpg, www/index.html:
These have been moved to togaware
2004-03-27 graham <graham@athene>
* NEWS: Document recent changes
* src/commands.py: Add pipe option to do_listnames
Return something from do_listnames
* src/changes.py: Use booleans in update_available
Add count of new packages
* src/wajig.py: Re-implement status-match.
Add update-available for testing purposes.
2004-03-21 graham <graham@athene>
* Makefile.in: Remove tar files when cleaning.
* Makefile.in, NEWS, src/Makefile.in:
Refine bash_completion stuff and fix the install
* src/bash_completion.py: Generate bash completion code
* src/gjig, src/wajig: Simple scripts for local execuation
* Makefile.in, wajig.completion:
Support automatic generation of bash competion file.
* Makefile.in: Support bash completion
2004-03-19 graham <graham@athene>
* Makefile.in, py-compile, src/Makefile.in, src/documentation.py, src/jigsaw-logo.png, wajig.completion:
Add missing files to Sarovar repository.
Add in a bash copmletion file - needs to go to /etc/bash_completion.d.
* NEWS: Note changes leading to 2.0.9
* NEWS: Finished testing
* NEWS: Test
2004-03-13 graham <graham@athene>
* COPYING, ChangeLog, INSTALL, Makefile.in, NEWS, README, TODO, configure.in, gjig.1, gjig.sh.in, install-sh, src/Makefile.in, src/changes.py, src/commands.py, src/const.py.in, src/documentation.py, src/gjig.glade, src/gjig.py, src/glutil.py, src/jigsaw.png, src/perform.py, src/pieces.png, src/wajig.py, wajig.1, wajig.sh.in:
Initial Import to Sarovar
* www/index.html: Add pointers to Sarovar
* www/Makefile: Add togaware upload
2004-03-12 graham <graham@athene>
* www/Makefile, www/index.html: Initial Import to Sarovar
* www/Makefile, www/index.html: New file.
* www/gjig-screenshot.jpg: Initial Import to Sarovar
* www/gjig-screenshot.jpg: New file.
2004-02-08 Graham Williams <gjw@act.cmis.csiro.au>
* src/gjig.py, src/pixmaps/jigsaw.png, src/pixmaps/pieces.png, src/wajig.py, NEWS, configure.in, src/documentation.py, src/gjig.glade:
Final touches to get ready for 2.0.0 release.
* src/gjig.py, src/wajig.py, NEWS, src/documentation.py, src/gjig.glade:
Update gjig.
Cleanup
2004-02-06 Graham Williams <gjw@act.cmis.csiro.au>
* src/gjig.glade, src/gjig.py, src/wajig.py: Add List Button
2004-02-05 Graham Williams <gjw@act.cmis.csiro.au>
* src/gjig.py, src/wajig.py: Add PAUSE option.
Use Gnome Terminal with Pause option
* NEWS, src/documentation.py, src/gjig.glade, src/gjig.py, src/wajig.py:
Add AUTO-INSTALL to wajig
Add Force Install to gjig
2004-02-03 Graham Williams <gjw@act.cmis.csiro.au>
* src/gjig.glade, src/gjig.py, src/changes.py, src/commands.py: Updates
2004-02-02 Graham Williams <gjw@act.cmis.csiro.au>
* src/gjig.py: Simple format change
* NEWS, src/commands.py:
Check /etc/apt/source.list for access in LISTNAMES and if
no access run apt-cache as sudo.
2004-01-23 Graham Williams <gjw@act.cmis.csiro.au>
* src/gjig.glade, src/gjig.py, src/wajig.py, src/documentation.py:
Add rec download
2004-01-22 Graham Williams <gjw@act.cmis.csiro.au>
* src/gjig.glade, src/gjig.py: Add Settings->Warnings
2004-01-21 uid1000 <uid1000@festiva.act.cmis.csiro.au>
* NEWS: Remove the ping problem
2004-01-21 Graham Williams <gjw@act.cmis.csiro.au>
* src/gjig.glade, src/gjig.py: Remove Describe New button - same as New
* src/commands.py:
Add ping back - seems like only from certain machines it fails
* src/gjig.glade: fix location of pixmaps
* src/gjig.py, src/TODO, src/gjig.glade: Add News and ChangeLog
* NEWS, src/commands.py:
Do not fping since the DEbian machines no longer respond to fping.
* src/gjig.glade, src/gjig.py: Add Help->Contents
* src/pixmaps/jigsaw.png, src/gjig.glade, src/pixmaps/jigsaw-logo.png:
Add some pixmaps
* src/TODO, src/gjig.glade, src/gjig.py: Add Edit Sources
* src/gjig.glade: Add more tooltips
* src/TODO, src/gjig.glade, src/gjig.py: Tidy up and add ListNames
* src/TODO, src/gjig.py: Spawn rather than system
* src/documentation.py: wa is japanese
* src/gjig.py, src/TODO: Add some arg checks
2004-01-20 Graham Williams <gjw@act.cmis.csiro.au>
* src/documentation.py, src/TODO:
Update documentation to JIG and wajig/gjig
* src/gjig.glade, src/gjig.py: Add fix and install buttons
* NEWS, src/wajig.py: FIX-MISSING was misspelt as FIX-MISING
* src/gjig.py: Fix xterm scrollbar
* src/gjig.glade, src/gjig.py: Add Install
* src/TODO: Initial import
* src/gjig.glade, src/gjig.py: Update xterm title
* src/gjig.glade, src/gjig.py: Add Fix Install
* src/gjig.glade, src/gjig.py: Add lots of buttons.
2004-01-19 Graham Williams <gjw@act.cmis.csiro.au>
* src/glutil.py, src/gjig.gladep, src/gjig.py, src/gjig.sh, src/gjig, src/gjig.glade:
Start on gjig
2004-01-01 Graham Williams <gjw@act.cmis.csiro.au>
* src/wajig.py, NEWS, src/documentation.py: Add NON-FREE
2003-11-10 Graham Williams <gjw@act.cmis.csiro.au>
* src/commands.py: apt-cache does not require sudo any more.
2003-10-26 Graham Williams <gjw@act.cmis.csiro.au>
* ChangeLog, configure.in: Release 1.0.2
* src/changes.py, src/commands.py, src/wajig.py: Improve removedepend
2003-10-25 Graham Williams <gjw@act.cmis.csiro.au>
* NEWS: Add attributions
* src/documentation.py: Fix bad http address
* src/changes.py: Handle <name> output from apt-cache
* NEWS: Update two bug fixes
* src/changes.py: Add get_dependencies and get_dependees
* src/commands.py: Add do_removedepend
* src/wajig.py: Add -d for debug.
Fix REMOVEDEPEND and PURGE DEPEND
2003-10-26 Graham Williams <gjw@act.cmis.csiro.au>
* configure.in: Release 1.0.2
* src/changes.py, src/commands.py, src/wajig.py: Improve removedepend
2003-10-25 Graham Williams <gjw@act.cmis.csiro.au>
* NEWS: Add attributions
* src/documentation.py: Fix bad http address
* src/changes.py: Handle <name> output from apt-cache
* NEWS: Update two bug fixes
* src/changes.py: Add get_dependencies and get_dependees
* src/commands.py: Add do_removedepend
* src/wajig.py: Add -d for debug.
Fix REMOVEDEPEND and PURGE DEPEND
2003-10-23 Graham Williams <gjw@act.cmis.csiro.au>
* ChangeLog: Ready for 1.0.1 release
* NEWS, src/documentation.py, src/wajig.py: Add unofficial
2003-10-23 Graham Williams <gjw@act.cmis.csiro.au>
* NEWS, src/documentation.py, src/wajig.py: Add unofficial
2003-10-16 Graham Williams <gjw@act.cmis.csiro.au>
* src/documentation.py, src/wajig.py, NEWS, src/commands.py:
Add FIND-PKG command
2003-10-09 Graham Williams <gjw@act.cmis.csiro.au>
* NEWS, configure.in, src/commands.py, src/documentation.py, src/wajig.py:
Add changelog command
2003-10-08 Graham Williams <gjw@act.cmis.csiro.au>
* src/documentation.py: Add alien to sudo for wajig
2003-09-30 Graham Williams <gjw@act.cmis.csiro.au>
* NEWS: Ready for version 1.0.0
2003-09-23 Graham Williams <gjw@act.cmis.csiro.au>
* src/documentation.py, src/wajig.py: Add UPGRADE/SECURITY
2003-09-22 Graham Williams <gjw@act.cmis.csiro.au>
* NEWS, configure.in: Get ready for 1.0.0
* src/wajig.py: Allow / as a meta character
* NEWS, src/commands.py, src/documentation.py, src/wajig.py:
Add new INSTALL/dist command
2003-09-17 Graham Williams <gjw@act.cmis.csiro.au>
* src/testit, src/wajig: Rename testit to wajig
* src/documentation.py, src/commands.py:
Add support for "/+" in first package name.
2003-09-16 Graham Williams <gjw@act.cmis.csiro.au>
* src/commands.py, NEWS, configure.in: Fixe NEWS to check for Source:
2003-09-13 Graham Williams <gjw@act.cmis.csiro.au>
* ChangeLog, NEWS, configure.in: Release 0.3.30
2003-09-13 Graham Williams <Graham.Williams@csiro.au>
* ChangeLog, NEWS, configure.in: Release 0.3.30
2003-09-11 Graham Williams <Graham.Williams@csiro.au>
* NEWS, src/commands.py: Fix handling of diversions in WHICHPKG
Reported by Chris Stork
Fixes bug Bug#210499
2003-09-10 Graham Williams <Graham.Williams@csiro.au>
* ChangeLog, NEWS: Fix up NEWS
* src/commands.py: Remove errant empty string
* ChangeLog: Release 0.3.29
* configure.in: *** empty log message ***
* NEWS: Release 0.3.29
* src/commands.py: Pipe HTML output through lynx for NEWS.
* src/commands.py: Add " to HTML tags mapped.
* src/documentation.py, src/wajig.py, NEWS: Add PURGE-DEPEND
* NEWS: Fix misspelt name
2003-09-10 Graham Williams <Graham.Williams@csiro.au>
* ChangeLog: Release 0.3.29
* NEWS: Release 0.3.29
* src/commands.py: Pipe HTML output through lynx for NEWS.
* src/commands.py: Add " to HTML tags mapped.
* src/documentation.py, src/wajig.py, NEWS: Add PURGE-DEPEND
* NEWS: Fix misspelt name
2003-09-09 Graham Williams <Graham.Williams@csiro.au>
* NEWS, src/wajig.py: Update DEPENDEES to not use grep-dctrl
2003-09-04 Graham Williams <Graham.Williams@csiro.au>
* NEWS, configure.in, src/changes.py, src/commands.py, src/documentation.py, src/perform.py, src/wajig.py:
Add UNHOLD command.
Translate < > for NEWS.
* configure.in: Update version
2003-08-23 Graham Williams <Graham.Williams@csiro.au>
* src/changes.py, src/commands.py:
get_installed changes to gen_installed
* NEWS, configure.in, src/changes.py, src/commands.py, src/documentation.py, src/perform.py, src/wajig.py:
Remove use of Installed file.
Replace do_command with direct call to perform.execute
2003-08-21 Graham Williams <Graham.Williams@csiro.au>
* NEWS, configure.in: Update version number
2003-08-20 Graham Williams <Graham.Williams@csiro.au>
* src/documentation.py: UPdate RECDOWNLOAD docs
* src/commands.py, src/documentation.py, src/wajig.py: Add RECDOWNLOAD
2003-07-10 Graham Williams <Graham.Williams@csiro.au>
* src/changes.py, src/commands.py:
Add some comments re Packages problem
* NEWS, src/changes.py, src/commands.py:
Fix problem with /var/lib/dpkg/available not being updated.
2003-06-07 Graham Williams <Graham.Williams@csiro.au>
* NEWS, src/commands.py, src/documentation.py, src/wajig.py:
Add LARGE command.
Update SIZE to also print current install/config-only status.
* NEWS, configure.in, src/commands.py, src/documentation.py, src/wajig.py:
Add SIZE command
2003-05-17 Graham Williams <Graham.Williams@csiro.au>
* ChangeLog, configure.in: Release 0.3.23
* NEWS, src/documentation.py, src/wajig.py:
Add REMOVE-DEPEND to remove dependent (and othersie unused) packages
* NEWS, src/wajig.py:
Fix LAST-UPDATE bug when Available does not exist yet.
* src/changes.py: Strip blank from end of each line in Available.
* NEWS, src/commands.py, src/documentation.py, src/wajig.py:
add NEWS command
* src/documentation.py: Add doc about LOCAL-UPGRADE
2003-05-17 Graham Williams <Graham.Williams@csiro.au>
* NEWS, src/documentation.py, src/wajig.py:
Add REMOVE-DEPEND to remove dependent (and othersie unused) packages
* NEWS, src/wajig.py:
Fix LAST-UPDATE bug when Available does not exist yet.
* src/changes.py: Strip blank from end of each line in Available.
* NEWS, src/commands.py, src/documentation.py, src/wajig.py:
add NEWS command
* src/documentation.py: Add doc about LOCAL-UPGRADE
2003-05-06 Graham Williams <Graham.Williams@csiro.au>
* NEWS, src/documentation.py, src/wajig.py:
Add AVAIL as synonym for AVAILABLE
* ChangeLog: Release version 0.3.22
* src/wajig.py: Remove iupgrade - it is better done with localupgrade.
* src/wajig.py: Move download message
* NEWS, configure.in, src/documentation.py, src/wajig.py:
Fix DOWNLOAD bug for already installed packages.
Add LOCALUPGRADE commands.
* ChangeLog, NEWS, configure.in: Release version 0.3.21
2003-05-06 Graham Williams <Graham.Williams@csiro.au>
* src/wajig.py: Remove iupgrade - it is better done with localupgrade.
* src/wajig.py: Move download message
* NEWS, configure.in, src/documentation.py, src/wajig.py:
Fix DOWNLOAD bug for already installed packages.
Add LOCALUPGRADE commands.
* ChangeLog, NEWS, configure.in: Release version 0.3.21
2003-05-04 Graham Williams <Graham.Williams@csiro.au>
* NEWS: Update
* src/documentation.py:
Add LIST-ORPHANS as synonym to ORPHANS.
Add NEW-UPGRADE as synonym of NEW-UPGRADES.
* src/wajig.py: Add PURGE-ORPHANS.
Fix REMOVE-ORPHANS to not return error when no orphans found.
Add LIST-ORPHANS as synonym to ORPHANS.
Add NEW-UPGRADE as synonym of NEW-UPGRADES.
2003-05-04 Graham Williams <Graham.Williams@csiro.au>
* NEWS: Update
* src/documentation.py:
Add LIST-ORPHANS as synonym to ORPHANS.
Add NEW-UPGRADE as synonym of NEW-UPGRADES.
* src/wajig.py: Add PURGE-ORPHANS.
Fix REMOVE-ORPHANS to not return error when no orphans found.
Add LIST-ORPHANS as synonym to ORPHANS.
Add NEW-UPGRADE as synonym of NEW-UPGRADES.
2003-04-24 Graham Williams <Graham.Williams@csiro.au>
* configure.in, src/commands.py, src/documentation.py, src/perform.py, src/wajig.py, NEWS:
Update NEWS
Add SHOW-UPGRADE and SHOW-DIST-UPGRADE commands.
Accept a -s command line option (simulate)
2003-04-17 Graham Williams <Graham.Williams@csiro.au>
* ChangeLog, NEWS: Change to PURGE
* src/wajig.py: Use dpkg instead of apt-get to purge
2003-04-03 Graham Williams <Graham.Williams@csiro.au>
* ChangeLog: Release version 0.3.19
* NEWS, configure.in, src/commands.py, src/documentation.py, src/wajig.py:
Add FIX-MISSING
Catch exceptions to catch keyboard Ctrl-C to avoid Python trace.
2003-04-03 Graham Williams <Graham.Williams@csiro.au>
* ChangeLog: Release version 0.3.19
* NEWS, configure.in, src/commands.py, src/documentation.py, src/wajig.py:
Add FIX-MISSING
Catch exceptions to catch keyboard Ctrl-C to avoid Python trace.
2003-04-03 Graham Williams <Graham.Williams@csiro.au>
* NEWS, configure.in, src/commands.py, src/documentation.py, src/wajig.py:
Add FIX-MISSING
Catch exceptions to catch keyboard Ctrl-C to avoid Python trace.
2003-03-21 Graham Williams <Graham.Williams@csiro.au>
* ChangeLog: Ready for Version 0.3.18
* configure.in, src/documentation.py, src/wajig.py, NEWS:
Update package command
* README, src/changes.py, src/commands.py, src/documentation.py, src/perform.py, src/wajig.py, wajig.1:
Update email address. Do a clean after a move.
2003-03-21 Graham Williams <Graham.Williams@togaware.com>
* configure.in, src/documentation.py, src/wajig.py, NEWS:
Update package command
* README, src/changes.py, src/commands.py, src/documentation.py, src/perform.py, src/wajig.py, wajig.1:
Update email address. Do a clean after a move.
2003-02-11 Graham Williams <Graham.Williams@togaware.com>
* ChangeLog: Update to version 0.3.17
* configure.in: Bump to version 0.3.17
* NEWS, src/commands.py, src/wajig.py: auto-download now quieter
* NEWS: Update dates
* configure.in: Bump up version to 0.3.16
* src/documentation.py, src/wajig.py, NEWS: Add FIX-CONFIGURE
2003-02-11 Graham Williams <Graham.Williams@togaware.com>
* NEWS, src/commands.py, src/wajig.py: auto-download now quieter
* NEWS: Update dates
* configure.in: Bump up version to 0.3.16
* src/documentation.py, src/wajig.py, NEWS: Add FIX-CONFIGURE
2003-02-11 Graham Williams <Graham.Williams@togaware.com>
* NEWS: Update dates
* configure.in: Bump up version to 0.3.16
* src/documentation.py, src/wajig.py, NEWS: Add FIX-CONFIGURE
2003-02-01 Graham Williams <Graham.Williams@togaware.com>
* NEWS, src/documentation.py, src/wajig.py:
Add list-cache, list-daemons, fix-install
2003-01-27 Graham Williams <Graham.Williams@togaware.com>
* ChangeLog, NEWS: Prepare version 0.3.15
* src/commands.py:
For WHICHPKG update strings to exclude from returned HTML page
Seems like debian server has changed.
* src/documentation.py:
Update documentation relating to LIST and LIST-ALL
* src/wajig.py: For LIST don't show packages with no description
2003-01-27 Graham Williams <Graham.Williams@togaware.com>
* NEWS: Prepare version 0.3.15
* src/commands.py:
For WHICHPKG update strings to exclude from returned HTML page
Seems like debian server has changed.
* src/documentation.py:
Update documentation relating to LIST and LIST-ALL
* src/wajig.py: For LIST don't show packages with no description
2003-01-27 Graham Williams <Graham.Williams@togaware.com>
* src/commands.py:
For WHICHPKG update strings to exclude from returned HTML page
Seems like debian server has changed.
* src/documentation.py:
Update documentation relating to LIST and LIST-ALL
* src/wajig.py: For LIST don't show packages with no description
2003-01-07 Graham Williams <Graham.Williams@togaware.com>
* configure.in: Update version
* NEWS, src/documentation.py, src/wajig.py: Add list-all
2003-01-07 Graham Williams <Graham.Williams@togaware.com>
* configure.in: Update version
* NEWS, src/documentation.py, src/wajig.py: Add list-all
2002-11-08 Graham Williams <Graham.Williams@togaware.com>
* ChangeLog, NEWS: Update change log
* NEWS, src/documentation.py: Document auto-download
* src/wajig.py: Add assume-yes to autodownload
* src/wajig.py, src/documentation.py: Fine tune autodownload
* NEWS, TODO, configure.in, src/commands.py, src/documentation.py, src/wajig.py:
Add FORCE and AUTODOWNLOAD
2002-11-08 Graham Williams <Graham.Williams@togaware.com>
* NEWS, src/documentation.py: Document auto-download
* src/wajig.py: Add assume-yes to autodownload
* src/wajig.py, src/documentation.py: Fine tune autodownload
* NEWS, TODO, configure.in, src/commands.py, src/documentation.py, src/wajig.py:
Add FORCE and AUTODOWNLOAD
2002-07-24 Graham Williams <Graham.Williams@togaware.com>
* src/commands.py, src/documentation.py, src/wajig.py:
New command ADDCDROM.
Update documentation.
Note possible use of grep-dctrl
* src/wajig.py, src/documentation.py: Add DEPENDEES
2002-06-30 Graham Williams <Graham.Williams@togaware.com>
* src/wajig.py: Allow "-" and "-f" for download.
2002-06-29 Graham Williams <Graham.Williams@togaware.com>
* configure.in: Update for Version 0.3.13
* NEWS: Correct attributions
* NEWS: Update for next release
* src/documentation.py: Update documentation
* src/commands.py:
Use --show-upgrade for INSTALL-R, INSTALL-S and INSTALL-RS
Allow INSTALL-R, INSTALL-S and INSTALL-RS to accept packages from standard in
Allow INSTALL to accept packages from standard input
Add -f option to INSTALL
* src/wajig.py: Add new synonyms for the alts commands
Add which-package as sysnonym for whichpkg
Add new STATUS-MATCH and STATUS-SEARCH
Add DOCS and DOCUMENTATION as sysnoms for DOC
For FILE-INSTALL expand list of packages in python, not using cat
2002-06-21 Graham Williams <Graham.Williams@togaware.com>
* src/perform.py: Only display sudo message if not root.
2002-06-06 Graham Williams <Graham.Williams@togaware.com>
* ChangeLog, NEWS, configure.in: Release 0.3.12
* src/commands.py, src/documentation.py, src/wajig.py:
INSTALLR and INSTALLS synonyms for RECOMMENDED and SUGGESTED
New command INSTALLRS to install package plus recommeded and suggested.
* ChangeLog, NEWS, configure.in: Release 0.3.11
* src/commands.py, src/documentation.py, src/wajig.py:
Add SUGGESTED and RECOMMENDED.
These install the associated Suggests or Recommends list of packages
in addition to the specified package. From an idea suggested by
Stephen van Egmond although his suggestions are more amitious and
need more work.
* src/commands.py, src/documentation.py, src/wajig.py:
Being INSTALLSUGGEST
2002-06-06 Graham Williams <Graham.Williams@togaware.com>
* src/commands.py, src/documentation.py, src/wajig.py:
INSTALLR and INSTALLS synonyms for RECOMMENDED and SUGGESTED
New command INSTALLRS to install package plus recommeded and suggested.
* ChangeLog, NEWS, configure.in: Release 0.3.11
* src/commands.py, src/documentation.py, src/wajig.py:
Add SUGGESTED and RECOMMENDED.
These install the associated Suggests or Recommends list of packages
in addition to the specified package. From an idea suggested by
Stephen van Egmond although his suggestions are more amitious and
need more work.
* src/commands.py, src/documentation.py, src/wajig.py:
Being INSTALLSUGGEST
2002-06-06 Graham Williams <Graham.Williams@togaware.com>
* src/commands.py, src/documentation.py, src/wajig.py:
Add SUGGESTED and RECOMMENDED.
These install the associated Suggests or Recommends list of packages
in addition to the specified package. From an idea suggested by
Stephen van Egmond although his suggestions are more amitious and
need more work.
* src/commands.py, src/documentation.py, src/wajig.py:
Being INSTALLSUGGEST
2002-06-01 Graham Williams <Graham.Williams@togaware.com>
* ChangeLog, NEWS, configure.in: Release 0.3.10
* src/commands.py: Reduce wget timeout for WHICHPKG to 60 seconds
* src/commands.py: Rework WHICHPKG to continue if fping is not found.
If fping is not found, say so, and give solution.
Also check local packages with dpkg -S since
some won't be on the Debian server.
Suggested by Chris Stork.
2002-06-01 Graham Williams <Graham.Williams@togaware.com>
* src/commands.py: Reduce wget timeout for WHICHPKG to 60 seconds
* src/commands.py: Rework WHICHPKG to continue if fping is not found.
If fping is not found, say so, and give solution.
Also check local packages with dpkg -S since
some won't be on the Debian server.
Suggested by Chris Stork.
2002-05-31 Graham Williams <Graham.Williams@togaware.com>
* src/documentation.py: Add description of removeorphans
* NEWS, configure.in: Prepare for 0.3.9
* src/wajig.py: Better RemoveOrphans command
2002-05-30 Graham Williams <Graham.Williams@togaware.com>
* src/wajig.py: RemoveOrphans needs to be root
* src/wajig.py: Add REMOVEORPHANS
* src/documentation.py, src/wajig.py:
Add new AVAILABLE as synonym for POLICY
2002-05-31 Graham Williams <Graham.Williams@togaware.com>
* NEWS, configure.in: Prepare for 0.3.9
* src/wajig.py: Better RemoveOrphans command
2002-05-30 Graham Williams <Graham.Williams@togaware.com>
* src/wajig.py: RemoveOrphans needs to be root
* src/wajig.py: Add REMOVEORPHANS
* src/documentation.py, src/wajig.py:
Add new AVAILABLE as synonym for POLICY
2002-05-29 Graham Williams <Graham.Williams@togaware.com>
* ChangeLog, NEWS: Update to version 0.3.8
* configure.in: Update version to 0.3.8
* src/documentation.py:
Add example to show installing particular version
* src/wajig.py: RECONFIGURE without argument runs gkdebconf
2002-05-29 Graham Williams <Graham.Williams@togaware.com>
* configure.in: Update version to 0.3.8
* src/documentation.py:
Add example to show installing particular version
* src/wajig.py: RECONFIGURE without argument runs gkdebconf
2002-04-28 Graham Williams <Graham.Williams@togaware.com>
* configure.in, ChangeLog, NEWS: Ready for release 0.3.7
* src/commands.py, src/documentation.py, src/wajig.py:
Add SHOW. Fix apt-cach show - need not be root
2002-04-28 Graham Williams <Graham.Williams@togaware.com>
* NEWS: Ready for release 0.3.7
* src/commands.py, src/documentation.py, src/wajig.py:
Add SHOW. Fix apt-cach show - need not be root
2002-04-26 Graham Williams <Graham.Williams@togaware.com>
* ChangeLog, NEWS: Prepare for release 0.3.6
* src/wajig.py: Show original command if error.
2002-04-25 Graham Williams <Graham.Williams@togaware.com>
* src/documentation.py: Add LISTCOMMANDS.
* src/wajig.py: Add LISTCOMMANDS.
SEARCH does not need to be root.
* src/commands.py: Add comment about using apt-cache show
2002-04-26 Graham Williams <Graham.Williams@togaware.com>
* NEWS: Prepare for release 0.3.6
* src/wajig.py: Show original command if error.
2002-04-25 Graham Williams <Graham.Williams@togaware.com>
* src/documentation.py: Add LISTCOMMANDS.
* src/wajig.py: Add LISTCOMMANDS.
SEARCH does not need to be root.
* src/commands.py: Add comment about using apt-cache show
2002-04-26 Graham Williams <Graham.Williams@togaware.com>
* src/wajig.py: Show original command if error.
2002-04-25 Graham Williams <Graham.Williams@togaware.com>
* src/documentation.py: Add LISTCOMMANDS.
* src/wajig.py: Add LISTCOMMANDS.
SEARCH does not need to be root.
* src/commands.py: Add comment about using apt-cache show
* src/wajig.py: build-dep needs to be done as root.
* src/documentation.py: Add build-depend
* src/wajig.py: Add build-depend
apt-get source need not be root.
Use fakeroot for apt-get source -b
2002-04-01 Graham Williams <Graham.Williams@togaware.com>
* ChangeLog, NEWS: Correct credit for spelling corrections
* src/documentation.py: Add new commands rpm2deb, rpminstall, and move
* ChangeLog, configure.in: Release version 0.3.5
* NEWS, src/changes.py, src/commands.py, src/perform.py, src/wajig.py:
Bookkeeping cleanup
2002-04-01 Graham Williams <Graham.Williams@togaware.com>
* configure.in: Release version 0.3.5
* NEWS, src/changes.py, src/commands.py, src/perform.py, src/wajig.py:
Bookkeeping cleanup
2002-03-29 Graham Williams <Graham.Williams@togaware.com>
* src/wajig.py:
Show both interpreted command and original command if not recognised
* src/commands.py: Add note about how gnome-tesksel handles update
2002-03-28 Graham Williams <Graham.Williams@togaware.com>
* configure.in, NEWS, ChangeLog: Update in readiness for 0.3.4
* src/documentation.py: Update various sections
* src/wajig.py:
Transform supplied command to lowercase and remove _ and -.
Thus dist-upgrade is now distupgrade internally
New commands RPMINSTALL, RPM2DEB and RPM2DEB.
2002-03-28 Graham Williams <Graham.Williams@togaware.com>
* src/documentation.py: Update various sections
* src/wajig.py:
Transform supplied command to lowercase and remove _ and -.
Thus dist-upgrade is now distupgrade internally
New commands RPMINSTALL, RPM2DEB and RPM2DEB.
2002-03-26 Graham Williams <Graham.Williams@togaware.com>
* src/commands.py:
newupgrades and new print message if there is nothing new.
* src/commands.py:
Don't print headings if no packages are to be described
* configure.in: Update to version 0.3.3
* ChangeLog: Update to Version 0.3.3
* src/changes.py, src/commands.py: apt-cache needs to run as root.
* ChangeLog: Update to Version 0.3.3
* NEWS: *** empty log message ***
* NEWS: Update in readiness for release of 0.3.3
* src/commands.py:
UPDATE use dselect and DESCRIBE use dpkg available file.
* NEWS: NEW is synonym
* src/wajig.py: Add MOVE
2002-03-26 Graham Williams <Graham.Williams@togaware.com>
* changes.py, commands.py: apt-cache needs to run as root.
* commands.py: UPDATE use dselect and DESCRIBE use dpkg available file.
* wajig.py: Add MOVE
2002-03-26 Graham Williams <Graham.Williams@togaware.com>
* NEWS: Update in readiness for release of 0.3.3
* src/commands.py:
UPDATE use dselect and DESCRIBE use dpkg available file.
* NEWS: NEW is synonym
* src/wajig.py: Add MOVE
2002-03-25 Graham Williams <Graham.Williams@togaware.com>
* src/documentation.py, src/changes.py, src/commands.py:
Spelling corrections from Christian T. Steigies and James MacKinnon
* src/commands.py: Fix bug in misspelt doNWload-only.
2002-03-13 Graham Williams <Graham.Williams@togaware.com>
* src/wajig.py: NEW is now a synonym for DESCRIBENEW
2002-03-12 Graham Williams <Graham.Williams@togaware.com>
* src/documentation.py: Update to datamining. in place of edm.act.cmis
2002-03-11 Graham Williams <Graham.Williams@togaware.com>
* ChangeLog, NEWS, configure.in: Update version to 0.3.2
2002-03-11 Graham Williams <Graham.Williams@togaware.com>
* configure.in: Update version to 0.3.2
2002-03-10 Graham Williams <Graham.Williams@togaware.com>
* src/commands.py:
Revert to using apt-get update for UPDATE and move to
/var/cache/apt/available for DESCRIBE, using only apt-get's
idea of what's available, not worrying about dpkg's idea
2002-03-05 Graham Williams <Graham.Williams@togaware.com>
* src/wajig.py: Add DETAILNEW.
Make NEWDETAIL and NEWDESCRIBE synonyms for DETAILNEW and DESCRIBENEW
* src/documentation.py: Add detailnew to list.
2002-03-03 Graham Williams <Graham.Williams@togaware.com>
* src/commands.py: Use fping rather than ping (suggested by Dirk)
* README: Note about RESET if there are problems
* src/perform.py:
Add LC_ALL export to executed commands for Debian Bug#119899.
* src/wajig.py: Add VERSION and update unknown command message.
* NEWS: Update for Version 0.3.1
* src/changes.py: Use apt_pkg.VersionCompare to compare version numbers
Add get_to_upgrade().
* src/commands.py:
Add a line to capture SIGPIPE error signals and ignore.
Fixes Debian Bug#136439.
Update the TOUPGRADE command to use apt_pkg and dictionaries.
* src/Makefile.in: Make wajig.py executable to keep lintian happy.
* ChangeLog: Release version 0.3.0
* configure.in: Update for Version 0.3.0
* src/commands.py: Reduce number of = in heading for describenew
* src/documentation.py:
Add DESCRIBENEW, DOWNLOAD, FILEDOWNLOAD to list of commands.
* src/commands.py: Update DESCRIBE to use apt-pkg.
NEW and NEWUPGRADES now using dictionaries from changes.
WHATIS is now redundant.
* src/changes.py:
Introduce dictionaries to store the three Wajig status files.
Support methods to replace previous need for external joins etc.
* README, NEWS: Updates for Version 0.3.0
* src/wajig.py: Added DOWNLOAD and FILEDOWNLOAD.
WHATIS is now a synonym for DESCRIBE.
2002-03-03 Graham Williams <Graham.Williams@togaware.com>
* configure.in: Update for Version 0.3.0
* src/commands.py: Reduce number of = in heading for describenew
* src/documentation.py:
Add DESCRIBENEW, DOWNLOAD, FILEDOWNLOAD to list of commands.
* src/commands.py: Update DESCRIBE to use apt-pkg.
NEW and NEWUPGRADES now using dictionaries from changes.
WHATIS is now redundant.
* src/changes.py:
Introduce dictionaries to store the three Wajig status files.
Support methods to replace previous need for external joins etc.
* README, NEWS: Updates for Version 0.3.0
* src/wajig.py: Added DOWNLOAD and FILEDOWNLOAD.
WHATIS is now a synonym for DESCRIBE.
2002-03-02 Graham Williams <Graham.Williams@togaware.com>
* src/wajig.py, src/commands.py: Begin move to using apt_pkg in Python.
* ChangeLog: Update for Version 0.2.13
* NEWS: Updates in readiness for release of 0.2.13
* src/commands.py: Remove a temporary trace in FORCE
* configure.in: Update version number to 0.2.13
* NEWS: Prepare for release of 0.2.13
* src/wajig.py: Add DESCRIBENEW as suggested by Dirk.
* src/commands.py:
Add DESCRIBENEW. Note that WHATIS needs fixing to retrieve just the
package specified, not those beginning with this string.
* src/wajig.py: Allow force to have multiple arguments
* src/commands.py:
Fix FORCE to accept multiple package names and remove a bug.
2002-03-02 Graham Williams <Graham.Williams@togaware.com>
* NEWS: Updates in readiness for release of 0.2.13
* src/commands.py: Remove a temporary trace in FORCE
* configure.in: Update version number to 0.2.13
* NEWS: Prepare for release of 0.2.13
* src/wajig.py: Add DESCRIBENEW as suggested by Dirk.
* src/commands.py:
Add DESCRIBENEW. Note that WHATIS needs fixing to retrieve just the
package specified, not those beginning with this string.
* src/wajig.py: Allow force to have multiple arguments
* src/commands.py:
Fix FORCE to accept multiple package names and remove a bug.
2002-01-23 Graham Williams <Graham.Williams@togaware.com>
* src/commands.py: Support multipage results for whichpkg
* src/commands.py:
Add sys.stdout.flush() after python printing to ensure correct order
in output.
2002-01-13 Graham Williams <Graham.Williams@togaware.com>
* wajig.sh.in:
Remove PYTHONPATH export. It was wrong, and not required anyhow.
2002-01-11 Graham Williams <Graham.Williams@togaware.com>
* ChangeLog, NEWS: Update for 0.2.12
* ChangeLog: Update for Version 0.2.12
* configure.in: Release Version 0.2.12
* src/testit: Change $* to "$#" to handle quoting properly
* src/wajig.py:
Use concat to quote join strings rather than string.join
* src/perform.py:
Define concat to join quoted args and return as one string
* src/commands.py: Add a quote around shell command line arguments
* wajig.sh.in: Change $* to "$#" to handle quoting properly
2002-01-11 Graham Williams <Graham.Williams@togaware.com>
* configure.in: Release Version 0.2.12
* src/testit: Change $* to "$#" to handle quoting properly
* src/wajig.py:
Use concat to quote join strings rather than string.join
* src/perform.py:
Define concat to join quoted args and return as one string
* src/commands.py: Add a quote around shell command line arguments
* wajig.sh.in: Change $* to "$#" to handle quoting properly
2002-01-09 Graham Williams <Graham.Williams@togaware.com>
* src/testit: Initial import
* src/documentation.py, src/wajig.py:
Add "policy" as suggested by Christian T. Steigies <cts@debian.org>
* src/wajig.py: Clarify that BUG requires a single arg
* src/perform.py:
Prepend "set -o noglob;" to commands being executed to avoid any
further globbing by the external shell created to execute the command.
* wajig.sh.in: Add -f to turn filename globbing off.
Rely on the shell for any globbing.
* src/changes.py: dumpavail does not need to be run sudo - thanks Dirk
2002-01-08 Graham Williams <Graham.Williams@togaware.com>
* src/documentation.py:
Correct errors in start and daily-upgrade one liners.
2002-01-07 Graham Williams <Graham.Williams@togaware.com>
* ChangeLog: Release 0.2.11
* src/wajig.py: urlinstall implemented as part of install
* src/documentation.py: Remove note about geturl
* src/commands.py: Handle URL in the install command
* src/documentation.py: Update install information
2002-01-08 Graham Williams <Graham.Williams@togaware.com>
* Release 0.2.11
2002-01-07 Graham Williams <Graham.Williams@togaware.com>
* wajig.py: urlinstall implemented as part of install
* documentation.py: Remove note about geturl
* commands.py: Handle URL in the install command
* documentation.py: Update install information
2002-01-06 Graham Williams <Graham.Williams@togaware.com>
* documentation.py: Note that force allows multiple packages
* commands.py: Fix status to handle package names >16 chars
* wajig.py: Fix force to pass list of packages to install
Change dpkg -l to dpkg --list
2001-12-19 Graham Williams <Graham.Williams@togaware.com>
* commands.py:
Allow force to have multiple .deb and the .deb need not be in archive.
* wajig.py: Add beginnings of urlinstall
2001-12-18 Graham Williams <Graham.Williams@togaware.com>
* documentation.py, wajig.py: Add new command: daily-upgrade
* commands.py, documentation.py, wajig.py:
listinstalled can have an argument
* documentation.py: Release 0.2.10
* wajig.py:
Change editor to sensible-editor (suggested by Chris via Dirk)
2001-11-14 Graham Williams <Graham.Williams@togaware.com>
* configure.in: Release Version 0.2.9
2001-11-08 Graham Williams <Graham.Williams@togaware.com>
* src/commands.py (do_install): Allow a list of .deb files to be
installed. Suggested by Dirk Eddelbuettel <edd@debian.org>
* src/wajig.py (main): Add detail command - same as describe
-vv. Suggested by Dirk Eddelbuettel <edd@debian.org>
(main): Add listinstalled command as dpkg --get-selections.
(main): Add fileinstall command to install packages listed in a
file.
2001-11-03 Graham Williams <Graham.Williams@togaware.com>
* Release version 0.2.8
* Update email addresses
* src/perform.py (setroot): Add PATH in again.
2001-10-23 Graham Williams <Graham.Williams@togaware.com>
* src/perform.py (setroot): Remove path addition just in case of
some unseen security problem.
2001-10-19 Graham Williams <Graham.Williams@togaware.com>
* src/perform.py (setroot): Also set the PATH to include
/sbin and /usr/sbin.
2001-10-15 Graham Williams <Graham.Williams@togaware.com>
* src/wajig.py: Add edit command
2001-10-13 Graham Williams <Graham.Williams@togaware.com>
* Release version 0.2.7
* src/documentation.py: Discuss ~/.wajig and limitations.
2001-10-06 Graham Williams <Graham.Williams@togaware.com>
* src/changes.py (init_dir): Bug fix: create ~/.wajig before
~/.wajig/hostname!!!
2001-10-05 Graham Williams <Graham.Williams@togaware.com>
* src/commands.py (do_install): Look for the .deb file in
/var/cache/apt/archives after not finding it in the current
directory.
* Use dselect update rather than apt-get update.
* Allow upgrade to take a list of packages to upgrade
2001-10-03 Graham Williams <Graham.Williams@togaware.com>
* src/changes.py: Append the hostname as a suffix on the init_dir
so that wajig can run in an environment where /home is mounted.
2001-10-02 Graham Williams <Graham.Williams@togaware.com>
* src/commands.py (do_hold): Make sure dpkg run as su.
2001-09-26 Graham Williams <Graham.Williams@togaware.com>
* src/wajig.py (progname): Added reload command
2001-09-21 Graham Williams <Graham.Williams@togaware.com>
* src/commands.py: Check for file existence before removing.
2001-09-20 Graham Williams <Graham.Williams@togaware.com>
* src/commands.py: Remove the temp file after finished with it in
whicpkg and whatis.
* src/changes.py: All temp files to be created in init_dir. Within
Python there was a problem with os.rename(src,dest) when src and
dest were on different drives?
2001-09-19 Graham Williams <Graham.Williams@togaware.com>
* src/wajig.py (progname): Add lastupdate command.
2001-09-19 Graham Williams <gjw@act.togaware.com>
* configure.in: Remove dependency on CC!
2001-09-18 Graham Williams <gjw@act.togaware.com>
* Release version 0.2.0 for both i386 and sparc.
2001-09-17 Graham Williams <Graham.Williams@togaware.com>
* Getting ready for Version 0.2.0 release. Update documentation.
2001-09-14 Graham Williams <Graham.Williams@togaware.com>
* src/changes.py Include held packages in Installed list. They
were previously being missed.
* src/commands.py Improve the status command to include
non-installed packages and also to list the Desired and Status
flags.
2001-09-13 Graham Williams <Graham.Williams@togaware.com>
* Release Version 0.9.0
* src/commands.py New do_command that makes a lot of the simpler
do_ methods unnecessary.
* Add in more commands from the old version.
2001-09-12 Graham Williams <Graham.Williams@togaware.com>
* Add in many new commands from the old version.
2001-09-11 Graham Williams <Graham.Williams@togaware.com>
* src/commands.py Bug fix for status - not listing newly installed
packages which did not appear in Available.
* src/commands.py Bug fix for whatis - still using init_dir
* src/wajig.py Remove initial #! since it won't be executed
directly but through a shell script and so keep to the Debian
guidelines.
* src/Makefile.in Install .py and .pyo files as 644, not
executable.
* wajig.1 Create basic man page to conform to Debian requirements
* wajig.py Revert to python1 getopt.error rather than python2
getopt.GetoptError.
* wajig.py Fixed bug with temporary files.
|