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
|
1999-06-29 Ben Gertzfield <che@debian.org>
* debian/changelog, configure.in: Version 0.3.11
1999-06-28 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/algorithms.cc: Perl glitch in the problem resolver
1999-06-27 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/contrib/strutl.cc: Fixed a uri parser bug
* apt-pkg/cachefile.h: Cache operator
1999-06-25 Jason Gunthorpe <jgg@debian.org>
* doc/apt-get.8.yo: Spelling fix
1999-06-25 Ben Gertzfield <che@debian.org>
* debian/changelog, configure.in: Changes for 0.3.9
1999-06-24 Jason Gunthorpe <jgg@debian.org>
* debian/changelog, test/scratch.cc, apt-pkg/contrib/strutl.cc:
Url parsing fix
* debian/changelog, doc/apt-get.8.yo, dselect/install, cmdline/apt-get.cc, apt-pkg/cachefile.cc, apt-pkg/clean.cc:
Various minor bug fixes
1999-06-21 Jason Gunthorpe <jgg@debian.org>
* debian/control: Replaces hack
* configure.in: Fixed back pthread check
1999-06-21 Ben Gertzfield <che@debian.org>
* debian/changelog: so so dumb.
* configure.in: change version to 0.3.7
* debian/changelog: just an unfinished entry for 0.3.7 changelog
1999-06-13 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/acquire.cc, apt-pkg/acquire.h, cmdline/acqprogress.cc, cmdline/acqprogress.h, cmdline/apt-get.cc:
Havocs cancel patch
1999-06-12 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/cachefile.h: Added [] operators to cachefile
1999-06-09 Jason Gunthorpe <jgg@debian.org>
* configure.in, methods/cdrom.cc: Removed pthread check
1999-06-06 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/acquire-item.cc, apt-pkg/acquire.cc:
Fixed some bugs in the progress reporting
* doc/apt.conf.5.yo, cmdline/acqprogress.cc, cmdline/apt-config.cc, cmdline/apt-get.cc, debian/changelog, debian/postinst, doc/apt-config.8.yo:
Fixed list notation doc bug and 'b' vs 'B'
1999-06-05 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-get.cc, methods/http.cc:
Fixed a minor http bug and a bug in -d
* apt-pkg/acquire-item.cc, debian/changelog:
Fixed handling of MD5 failures
* apt-pkg/contrib/cdromutl.cc, apt-pkg/contrib/cdromutl.h, methods/cdrom.cc:
Changed CD ident rountine to not use inodes
1999-06-04 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/deb/deblistparser.cc, apt-pkg/pkgcache.cc, apt-pkg/pkgcachegen.cc:
Changed CRC algorithm
* apt-pkg/algorithms.cc, cmdline/apt-get.cc, debian/changelog:
Improved error messages
1999-06-02 Jason Gunthorpe <jgg@debian.org>
* doc/apt.conf.5.yo: Doc update
1999-05-29 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-cdrom.cc, debian/changelog, debian/control, doc/examples/sources.list:
Fixed apt-cdrom and the control file
* cmdline/apt-cdrom.cc: Added wrecked symlink recovery
* cmdline/apt-cdrom.cc, debian/changelog: More fixes
* methods/connect.cc, methods/connect.h, methods/ftp.cc, methods/http.cc, methods/makefile:
Multiprotocol connect
1999-05-28 Jason Gunthorpe <jgg@debian.org>
* methods/ftp.cc, methods/http.cc:
Updated error messages to reflect host/ip
1999-05-27 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/contrib/strutl.h: Fixed return result problem
* methods/ftp.cc, methods/makefile, methods/rfc2553emu.cc: More tweaks
1999-05-26 Jason Gunthorpe <jgg@debian.org>
* methods/http.cc, methods/rfc2553emu.cc, methods/rfc2553emu.h:
Final rfc2553 changes
1999-05-25 Jason Gunthorpe <jgg@debian.org>
* methods/ftp.cc, methods/http.cc, methods/makefile, methods/rfc2553emu.cc, methods/rfc2553emu.h:
Changed to using rfc2553 name resolution for http
1999-05-24 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/acquire-item.h, apt-pkg/acquire.cc, cmdline/apt-get.cc, debian/changelog, doc/apt-get.8.yo, doc/examples/apt.conf, apt-pkg/acquire-item.cc:
Added --no-download
1999-05-23 Jason Gunthorpe <jgg@debian.org>
* methods/ftp.cc: Fixed execv ftp problem
* apt-pkg/deb/deblistparser.h, debian/changelog, doc/cache.sgml, apt-pkg/contrib/crc-16.cc, apt-pkg/contrib/crc-16.h, apt-pkg/deb/deblistparser.cc, apt-pkg/makefile, apt-pkg/pkgcache.cc, apt-pkg/pkgcache.h, apt-pkg/pkgcachegen.cc, apt-pkg/pkgcachegen.h:
Multiple different versions support
* apt-pkg/acquire-worker.cc, apt-pkg/acquire-worker.h, apt-pkg/acquire.cc, debian/changelog:
Fixed the cps resume problem
* debian/changelog, doc/sources.list.5.yo, methods/ftp.cc:
http ftp proxy support
* dselect/install, methods/cdrom.cc, cmdline/apt-config.cc, cmdline/apt-get.cc, debian/changelog, doc/apt-config.8.yo:
Fixed cd stuff and some minor bugs
1999-05-20 Jason Gunthorpe <jgg@debian.org>
* debian/changelog, cmdline/apt-get.cc:
Fixed apt-get source, dpkg/dpkg-hurd case
1999-05-18 Jason Gunthorpe <jgg@debian.org>
* debian/changelog, apt-pkg/deb/debrecords.cc:
Fixed parsing of source: lines
1999-05-16 Jason Gunthorpe <jgg@debian.org>
* debian/changelog, doc/apt-config.8.yo: Fixed a typo
1999-05-14 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/contrib/cmndline.cc, debian/changelog:
Changed handling of the -q option
* debian/changelog, debian/rules, cmdline/apt-cache.cc:
Fixed more things
1999-05-13 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-get.cc, debian/changelog, doc/apt-get.8.yo: Two bugs..
1999-05-12 Ben Gertzfield <che@debian.org>
* debian/changelog: Update for 0.3.6
* configure.in: Bump configure number for 0.3.6
1999-05-12 Jason Gunthorpe <jgg@debian.org>
* debian/changelog: nother seg repeat bug
1999-05-11 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-cache.cc, debian/changelog, doc/apt-cache.8.yo:
Fixed some more bugs
1999-05-10 Jason Gunthorpe <jgg@debian.org>
* debian/changelog: More bug stuf
1999-05-04 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/cachefile.cc: Fixed a typo
1999-04-28 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/algorithms.cc, apt-pkg/depcache.cc, apt-pkg/pkgcachegen.h, apt-pkg/acquire-item.cc:
Fixed segfault in re-install/upgrade condition
1999-04-20 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/acquire-item.cc, cmdline/acqprogress.cc, cmdline/apt-get.cc, debian/changelog:
Change log updates
* cmdline/apt-get.cc, apt-pkg/contrib/cdromutl.cc:
Fixed sparc compile warning
* apt-pkg/acquire-worker.cc, apt-pkg/contrib/cdromutl.cc, apt-pkg/contrib/fileutl.cc, apt-pkg/contrib/fileutl.h, apt-pkg/deb/dpkgpm.cc, cmdline/apt-get.cc:
Working apt-get source build stuff
1999-04-19 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/version.cc, apt-pkg/version.h, cmdline/apt-get.cc, doc/apt-get.8.yo, doc/apt.conf.5.yo, doc/examples/apt.conf:
Added compile and unpack support to apt-get
* apt-pkg/cachefile.cc, apt-pkg/pkgcachegen.cc, cmdline/apt-cache.cc:
Made apt-cache regenerate its cache in memory
1999-04-18 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/pkgcachegen.cc: Fixed percent overflow bug
* debian/rules: Arch build dir support
* cmdline/apt-get.cc: Fixed update and message with -qq
* apt-pkg/makefile, apt-pkg/cachefile.cc, apt-pkg/cachefile.h, apt-pkg/contrib/mmap.cc, apt-pkg/contrib/mmap.h, apt-pkg/deb/dpkginit.cc, apt-pkg/pkgcachegen.cc, apt-pkg/pkgcachegen.h, cmdline/apt-get.cc:
Support for memory-only caching
1999-04-17 Jason Gunthorpe <jgg@debian.org>
* methods/ftp.cc: Little more robust timeout behavoir
1999-04-16 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/depcache.cc, apt-pkg/makefile, apt-pkg/templates.cc:
Do not count sizes of to be configured packages
1999-04-15 Jason Gunthorpe <jgg@debian.org>
* cmdline/acqprogress.cc, apt-pkg/acquire-method.cc, buildlib/defaults.mak:
Fixed sparc compile warnings and added -arch build dirs
1999-04-12 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/deb/deblistparser.cc: Fixed space parsing problem
* buildlib/program.mak, cmdline/makefile, gui/makefile, methods/makefile, test/makefile:
Fixed make system to rebuild binaries when shlib version changes
* apt-pkg/depcache.cc, apt-pkg/depcache.h, apt-pkg/makefile, apt-pkg/pkgcache.cc, apt-pkg/pkgcache.h, cmdline/apt-cache.cc:
Fixed espy's bug with experimental
* buildlib/library.mak: Fixed typo in the shared lib rule
* cmdline/apt-get.cc: Fixed held packages installing
1999-04-11 Jason Gunthorpe <jgg@debian.org>
* doc/examples/apt.conf, methods/ftp.cc, apt-pkg/acquire-item.h:
fixed ftp but, config file bug and md5 source fetch error
* doc/examples/apt.conf, dselect/install:
Fixed update and bad conf file
1999-04-10 Adam Heath <doogie@debian.org>
* debian/changelog, debian/rules: update for 0.3.4
1999-04-07 Jason Gunthorpe <jgg@debian.org>
* debian/rules: Fixed building without debiandoc sgml
* cmdline/apt-get.cc, doc/apt-get.8.yo:
Documented the apt-get source command
* apt-pkg/acquire.cc: Removed download size estimator
* cmdline/apt-cdrom.cc: Oops, bug
* cmdline/apt-cdrom.cc: Made it search for the .disk directory too
* apt-pkg/deb/debsrcrecords.h: Nother typo
* apt-pkg/contrib/fileutl.h: Fixed a typo
* apt-pkg/contrib/fileutl.h, apt-pkg/deb/debrecords.cc, apt-pkg/deb/debrecords.h, apt-pkg/deb/debsrcrecords.cc, apt-pkg/sourcelist.h, apt-pkg/srcrecords.cc, apt-pkg/srcrecords.h, cmdline/apt-get.cc, apt-pkg/acquire-item.cc, apt-pkg/acquire-item.h, apt-pkg/pkgrecords.h, apt-pkg/sourcelist.cc:
working apt-get source
1999-04-04 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/contrib/strutl.cc, apt-pkg/deb/debsrcrecords.cc, apt-pkg/deb/debsrcrecords.h, apt-pkg/srcrecords.h:
Source record file list parsing
* buildlib/library.mak: Made it erase the old libraries
* methods/http.cc: Fixed cisco cacheengine lameness
* apt-pkg/pkgcachegen.cc: Fixed deb-src handling again
* apt-pkg/deb/debsrcrecords.cc, apt-pkg/deb/debsrcrecords.h, apt-pkg/makefile, apt-pkg/srcrecords.cc, apt-pkg/srcrecords.h:
Source record parsing
1999-04-03 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-cdrom.cc, doc/apt.conf.5.yo, doc/examples/apt.conf, apt-pkg/contrib/cdromutl.cc:
CDrom fixes
* apt-pkg/contrib/configuration.h: Fixed initialization problem
1999-03-29 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/deb/debrecords.cc, apt-pkg/deb/debrecords.h, cmdline/apt-cache.cc, cmdline/apt-cdrom.cc, cmdline/apt-config.cc, cmdline/apt-get.cc, test/makefile:
Changed ie to eg
* debian/control: Fixed the users guide
1999-03-28 Jason Gunthorpe <jgg@debian.org>
* dselect/install: Changed to the default of prompt
* doc/apt-get.8.yo: Minor doc bug
* apt-pkg/contrib/cdromutl.cc, methods/cdrom.cc:
CDROM patches from bluehorn
1999-03-27 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/acquire.h, cmdline/apt-get.cc, apt-pkg/acquire-item.cc, apt-pkg/acquire-item.h, apt-pkg/acquire.cc:
Checked the size of partial files #33705
* cmdline/apt-cache.cc, cmdline/apt-cdrom.cc, cmdline/apt-get.cc:
Fixed bug#34944: apt-get should not print progress on non-tty
1999-03-26 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/depcache.cc: Fixed size mismatch
1999-03-23 Ben Gertzfield <che@debian.org>
* debian/rules: add rm ChangeLog to end of cvs-build target
* configure.in, debian/changelog: Updates for version 0.3.3
1999-03-21 Adam Heath <doogie@debian.org>
* debian/rules:
more tweaking to debian/rules. Added target 'cvs-mkul' which copies all
files for the current build into ../upload-<VER>, to allow for easier
uploading. Also, this version has an nmu in the changelog, and the fix
described therein works, but these debs are built against glibc 2.1, which
Jason doesn't what apt built against. I am not placing them up for
download.
* debian/changelog: *** empty log message ***
* debian/changelog, debian/rules:
modified debian/rules so now you can pass the pkg name to build just that
deb.
Bumped the version to 0.3.2.1, as this fixes a bug with file uri handling.
1999-03-21 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/contrib/fileutl.cc: Oops typo
1999-03-20 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/contrib/fileutl.cc: Made NFS locking bail out
1999-03-18 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-cache.cc, dselect/update: Fixed dumpavail some more
* apt-pkg/contrib/mmap.cc, doc/apt-get.8.yo, configure.in:
Fixes for mmap and yodl
1999-03-18 Adam Heath <doogie@debian.org>
* apt-pkg/contrib/mmap.cc:
Backed out previous apt-pkg/contrib/mmap.cc fix/kludge/change.
* debian/dirs, debian/examples, debian/libapt-pkg-dev.dirs, debian/libapt-pkg-doc.dirs:
debhelper files to match the debian/rules rewrite.
* debian/rules:
Add cvs-build to debian/rules. This does all steps now, except for editing
debian/changelog. It automagically updates configure.in, but only when it
needs too. Its temp dir is debian/cvs-build/apt-<ver>/, and all CVS/ dirs
are excluded. I have tested the debs made by doing 'debian/rules cvs-build'
locally, and they are fine. No lintian errors. You can do the above
cvs-build from a working tree, and not have to worry about where it places
things. Just upload the files from debian/cvs-build/.
* configure.in:
add --with{,out}-YODL to configure.in, so as to allow the debian/rules \
cvs-build target to make the yodl pages before making the debian source
package. This means yodl isn't needed to actually build the deb on
other archs.
* apt-pkg/contrib/mmap.cc:
modified apt-pkg/contrib/mmap.cc to not use the define PAGE_SIZE by removing
'#include <sys/user.h>' and adding 'static int PAGE_SIZE = getpagesize();'
to msync();
1999-03-17 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-get.cc, doc/apt-get.8.yo, doc/sources.list.5.yo:
Doc updates and -qq fix
* apt-pkg/contrib/fileutl.cc, cmdline/apt-cache.cc:
Wichert and Espys bugs
1999-03-16 Ben Gertzfield <che@debian.org>
* debian/rules:
Remove make startup; make mkdir build not cause the whole thing to croak on failure
1999-03-16 mblevin <mblevin@gilgamesh.cse.ucsc.edu>
* debian/control, debian/rules:
Added Depends: libapt-pkg2.2 to the libapt-pkg-dev
1999-03-16 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/acquire.cc: Included errno
* apt-pkg/contrib/strutl.cc: Fixed typo
1999-03-16 Ben Gertzfield <che@debian.org>
* debian/changelog: er, I had an extra space in there. derm.
* configure.in: Update for 0.3.2
* debian/changelog: Update changelog for 0.3.2 release
* debian/control: Make priorities of packages explicit
1999-03-16 Jason Gunthorpe <jgg@debian.org>
* debian/changelog: More bugs to close
* debian/changelog: Adde bug closes
* apt-pkg/acquire-worker.cc, apt-pkg/acquire.cc, apt-pkg/contrib/fileutl.cc, apt-pkg/contrib/strutl.cc, cmdline/acqprogress.cc:
Signal safety
1999-03-15 Jason Gunthorpe <jgg@debian.org>
* doc/apt.conf.5.yo, doc/examples/apt.conf: FTP man page updates
* methods/ftp.cc: Added one more status message
* methods/ftp.cc: Fixed stupid rebinding of the socket
* apt-pkg/acquire-method.cc, apt-pkg/acquire.cc, apt-pkg/contrib/configuration.h, apt-pkg/contrib/fileutl.cc, apt-pkg/contrib/fileutl.h, apt-pkg/contrib/strutl.cc, doc/apt-get.8.yo, doc/examples/apt.conf:
Minor fixes for FTP support
* methods/ftp.cc: Almost done ftp
* methods/ftp.cc, methods/ftp.h, methods/http.cc: Wow it works
* methods/ftp.h, methods/http.cc, methods/makefile, methods/ftp.cc:
First draft
1999-03-13 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/acquire.cc: Simplified time calculations
1999-03-12 mblevin <mblevin@gilgamesh.cse.ucsc.edu>
* debian/changelog, debian/control, debian/rules:
Changes to add virtual package libapt-pkg2.x
* configure.in: Updated revision to 0.3.1
1999-03-08 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/pkgcachegen.cc: Fixed handling of source deb types again
1999-03-06 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/pkgcachegen.cc, cmdline/apt-get.cc:
Added more insane prompting and fixed a source source list entry cache bug
1999-03-05 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/deb/dpkgpm.cc, apt-pkg/sourcelist.cc:
Better dpkg error reporting
1999-03-02 Jason Gunthorpe <jgg@debian.org>
* doc/examples/apt.conf: fixed speeling
* apt-pkg/pkgcachegen.cc, apt-pkg/sourcelist.cc, apt-pkg/sourcelist.h, doc/sources.list.5.yo:
Flag to fetch the source index
1999-02-27 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/acquire-item.cc, apt-pkg/contrib/strutl.cc, cmdline/acqprogress.cc, debian/libapt-pkg-doc.postinst, debian/libapt-pkg-doc.prerm, doc/examples/apt.conf, methods/http.cc, test/scratch.cc:
Http download fixes
1999-02-23 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/pkgcachegen.cc: Oops, removed debug code
* apt-pkg/makefile, apt-pkg/cacheiterators.h, apt-pkg/pkgcache.cc, apt-pkg/pkgcache.h, apt-pkg/pkgcachegen.cc, apt-pkg/pkgcachegen.h:
performance tuning
1999-02-22 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/deb/debrecords.cc, apt-pkg/deb/debrecords.h, apt-pkg/pkgrecords.cc, apt-pkg/tagfile.cc:
Fixed another parser glitch
1999-02-21 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/deb/deblistparser.cc, apt-pkg/packagemanager.cc, apt-pkg/pkgcache.h, apt-pkg/tagfile.cc, cmdline/apt-get.cc, debian/control:
Free space check, fixed parser jump bug, added importat
1999-02-19 Jason Gunthorpe <jgg@debian.org>
* doc/apt-cache.8.yo, cmdline/apt-cache.cc: apt-cache enhancments
* apt-pkg/packagemanager.cc, cmdline/apt-cache.cc, apt-pkg/acquire-item.cc:
Fixed weird to-configure inconsitency and added apt-cache search
1999-02-16 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/contrib/fileutl.cc, apt-pkg/contrib/fileutl.h: Fixed WaitFD
1999-02-15 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-get.cc, debian/dhelp, debian/rules: Offline users guide
* doc/files.sgml, doc/makefile, doc/offline.sgml: Offline document
* doc/files.sgml: Updated docs to reflect new file naming
* cmdline/apt-get.cc: Shuffled error checks to advoid strange warnings
* doc/apt-config.8.yo, doc/makefile: apt-config man page
* cmdline/apt-cache.cc: Fixed dumpavail bug with dup packageS
* methods/http.cc: Error handling fix
1999-02-12 Adam Heath <doogie@debian.org>
* apt-pkg/contrib/fileutl.cc, apt-pkg/contrib/fileutl.h:
modified WaitFd in fileutl to support passing a timeout
1999-02-11 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-cache.cc: Fixed glibc2.1 compile
1999-02-08 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-cache.cc: glibc fix
* apt-pkg/contrib/fileutl.cc, apt-pkg/deb/deblistparser.cc, cmdline/apt-get.cc, methods/http.cc, apt-pkg/acquire-method.cc, apt-pkg/pkgcachegen.cc:
Minor fixes
1999-02-07 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-get.cc: Fixed small virtual package install list glitch
1999-02-05 Jason Gunthorpe <jgg@debian.org>
* dselect/desc.apt: Better description
* apt-pkg/contrib/mmap.cc: Fix for hurd
* apt-pkg/algorithms.cc: Fixed protect bug
1999-02-03 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/contrib/fileutl.cc: File locking fix for hurd
* debian/libapt-pkg-doc.dhelp, debian/rules: Dhelp support
1999-02-02 Jason Gunthorpe <jgg@debian.org>
* doc/apt.conf.5.yo: fixed bracketing bug
* buildlib/mkChangeLog: Changelog fixup
* debian/dhelp, debian/libapt-pkg-doc.dhelp, debian/libapt-pkg-doc.postinst, debian/libapt-pkg-doc.prerm, debian/postinst, debian/rules:
dhelp support, sorta
1999-02-01 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/makefile, doc/apt-get.8.yo, dselect/install, apt-pkg/acquire-item.cc, apt-pkg/clean.cc, apt-pkg/clean.h, apt-pkg/contrib/strutl.cc, apt-pkg/contrib/strutl.h, cmdline/acqprogress.cc, cmdline/apt-get.cc:
Clean support
* apt-pkg/acquire-item.cc, apt-pkg/acquire-item.h, apt-pkg/cacheiterators.h, apt-pkg/deb/deblistparser.cc, apt-pkg/pkgcache.h, doc/cache.sgml:
Arranged to rename downloaded files to include all important info
1999-01-31 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/acquire-item.cc, apt-pkg/acquire-item.h, cmdline/acqprogress.cc:
Ignored missing release files
* apt-pkg/tagfile.cc: Fixed another oops
* apt-pkg/deb/dpkgpm.cc, doc/apt.conf.5.yo, doc/examples/apt.conf:
Fixed a few minor dpkg settings
* apt-pkg/deb/dpkgpm.cc, apt-pkg/deb/dpkgpm.h, doc/apt.conf.5.yo, doc/examples/apt.conf:
Added some control over how dpkg is invoked
* apt-pkg/tagfile.cc: Hopefully fixed the scan bug
* apt-pkg/packagemanager.cc, doc/apt.conf.5.yo, doc/examples/apt.conf:
Speeling
* apt-pkg/packagemanager.cc, doc/apt.conf.5.yo, doc/examples/apt.conf:
Added the ability to disable immediate configuration
1999-01-30 Jason Gunthorpe <jgg@debian.org>
* methods/http.cc: Retry http fixes
* apt-pkg/acquire-item.cc, apt-pkg/acquire-item.h, apt-pkg/acquire-worker.cc, apt-pkg/acquire.cc, doc/apt.conf.5.yo, doc/examples/apt.conf:
Retry support
* apt-pkg/acquire-item.h, apt-pkg/acquire.cc, apt-pkg/acquire.h, cmdline/apt-get.cc, doc/apt-get.8.yo:
Added --print-uris
* cmdline/apt-get.cc:
Made install try the users suggestiosn before bailing, fixes #32395
* apt-pkg/algorithms.cc, cmdline/apt-cache.cc, cmdline/apt-cdrom.cc, cmdline/apt-config.cc, cmdline/apt-get.cc, doc/apt-cache.8.yo, doc/apt-cdrom.8.yo, doc/apt-get.8.yo:
Added --version and fixed clogging for -s
1999-01-28 Jason Gunthorpe <jgg@debian.org>
* debian/rules: Fixed mkChangelog
* methods/http.cc: Fixed could not connect problem
1999-01-27 Jason Gunthorpe <jgg@debian.org>
* debian/rules: Packaging tweaks
* COPYING: Added copying
* cmdline/apt-get.cc: Fixed an internal error from joeyh
* debian/copyright: Copyright
* apt-pkg/contrib/strutl.h, apt-pkg/deb/deblistparser.cc, apt-pkg/deb/debrecords.cc, cmdline/acqprogress.cc, cmdline/apt-cache.cc, cmdline/apt-cdrom.cc, cmdline/apt-get.cc, methods/gzip.cc, apt-pkg/acquire-item.cc, apt-pkg/acquire-method.cc, apt-pkg/acquire-method.h, apt-pkg/acquire-worker.cc, apt-pkg/acquire.cc, apt-pkg/contrib/cmndline.cc, apt-pkg/contrib/configuration.cc, apt-pkg/contrib/strutl.cc, apt-pkg/makefile, apt-pkg/pkgcachegen.cc, apt-pkg/sourcelist.cc, apt-pkg/tagfile.cc:
Moved strutl.h
1999-01-25 Ben Gertzfield <che@debian.org>
* debian/postinst:
Add ldconfig to postinst script under configure argument
1999-01-24 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/acquire-item.cc, apt-pkg/acquire-method.cc:
Fixed md5 handling
1999-01-20 Jason Gunthorpe <jgg@debian.org>
* doc/sources.list.5.yo: copy uri doc
* apt-pkg/acquire-worker.cc, apt-pkg/acquire-worker.h:
Hide hit for local uris
* doc/apt.conf.5.yo, methods/copy.cc, methods/http.cc:
Doc fixes and copy method patch
1999-01-18 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/contrib/error.h, apt-pkg/contrib/fileutl.cc, apt-pkg/contrib/fileutl.h, apt-pkg/contrib/md5.h, apt-pkg/contrib/mmap.h, apt-pkg/contrib/progress.h, apt-pkg/contrib/strutl.cc, apt-pkg/contrib/system.h, methods/file.cc, apt-pkg/contrib/cmndline.cc, apt-pkg/contrib/cmndline.h, apt-pkg/contrib/configuration.cc, apt-pkg/contrib/configuration.h, apt-pkg/contrib/error.cc:
Dsync merge
1999-01-17 Jason Gunthorpe <jgg@debian.org>
* buildlib/environment.mak.in, buildlib/program.mak:
Small linker changes
1999-01-14 Jason Gunthorpe <jgg@debian.org>
* doc/apt-cache.8.yo, doc/apt-cdrom.8.yo, doc/apt-get.8.yo, doc/apt.conf.5.yo, doc/sources.list.5.yo:
Changed bug page reference
1999-01-11 Jason Gunthorpe <jgg@debian.org>
* dselect/update, dselect/install: Fixed bashisms
1999-01-09 Jason Gunthorpe <jgg@debian.org>
* dselect/setup: Fixed llug reference
1999-01-04 Jason Gunthorpe <jgg@debian.org>
* methods/http.cc: Removed extra printf
* methods/http.cc: Corrected call to getsockopt
1998-12-31 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/contrib/strutl.cc, doc/files.sgml, methods/http.cc:
Fixed quoting bug
* cmdline/apt-cache.cc, cmdline/apt-get.cc:
Fixed help text man page references
1998-12-30 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-cdrom.cc: Fixed oddness with missing Packages files
* methods/http.cc: Fixed lack of proxy auth
1998-12-22 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-cdrom.cc: More cleanup
* methods/cdrom.cc: Few more bugs
* apt-pkg/acquire-method.h: Woops
* apt-pkg/depcache.cc: Undid bad checkin
* apt-pkg/depcache.cc, apt-pkg/acquire-method.h: fixed casting bug
* methods/cdrom.cc: Fixes
1998-12-22 Ben Gertzfield <che@debian.org>
* debian/changelog, debian/control, debian/postinst, debian/postrm, debian/rules, debian/shlibs.local:
Added debian/ directory and changelog, control, postinst, postrm, rules, and shlibs.local files
1998-12-21 Jason Gunthorpe <jgg@debian.org>
* doc/apt.conf.5.yo: Fixed typo
1998-12-15 Jason Gunthorpe <jgg@debian.org>
* buildlib/mkChangeLog: Changelog generator
1998-12-14 Jason Gunthorpe <jgg@debian.org>
* doc/Bugs, doc/cache.sgml, methods/http.cc: More bug fixes
* apt-pkg/deb/deblistparser.cc, apt-pkg/depcache.cc, apt-pkg/pkgcache.cc, apt-pkg/pkgcache.h, apt-pkg/cacheiterators.h:
Supports no automatic
* apt-pkg/deb/dpkgpm.cc, apt-pkg/deb/deblistparser.cc, apt-pkg/acquire-worker.cc:
Havocs _exit
* doc/examples/apt.conf, doc/method.sgml, doc/files.sgml: Updated docs
* apt-pkg/pkgcache.cc, apt-pkg/pkgcache.h, apt-pkg/pkgcachegen.cc, cmdline/apt-cache.cc:
More cache usage counters
* apt-pkg/contrib/cmndline.cc, apt-pkg/contrib/cmndline.h, apt-pkg/deb/deblistparser.cc, apt-pkg/deb/deblistparser.h, apt-pkg/pkgcachegen.cc, apt-pkg/pkgcachegen.h, apt-pkg/tagfile.cc, apt-pkg/tagfile.h, cmdline/apt-cache.cc, cmdline/apt-get.cc, doc/Bugs, doc/cache.sgml, apt-pkg/cacheiterators.h, apt-pkg/pkgcache.h:
Release support
1998-12-11 Jason Gunthorpe <jgg@debian.org>
* methods/http.cc: Configuration fixes
* apt-pkg/acquire.h, apt-pkg/acquire.cc: More fixes
* apt-pkg/acquire.cc, apt-pkg/acquire-item.h, apt-pkg/acquire-item.cc:
Fail over
* apt-pkg/acquire.h, apt-pkg/acquire.cc, apt-pkg/acquire-item.h, apt-pkg/acquire-item.cc:
Test acquire failover
* apt-pkg/acquire-item.cc: Fixed 24000
* methods/http.cc: Fixed pipelining and failures
* methods/http.cc: HTTP tunage
1998-12-10 Jason Gunthorpe <jgg@debian.org>
* methods/http.h, methods/http.cc, doc/apt.conf.5.yo, cmdline/apt-cache.cc:
http pipelining control
* cmdline/apt-get.cc: oops
* methods/http.cc, doc/apt-cdrom.8.yo, cmdline/apt-get.cc, cmdline/apt-cache.cc, apt-pkg/sourcelist.cc, apt-pkg/packagemanager.cc, apt-pkg/depcache.cc:
More bugs fixes
1998-12-09 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-cdrom.cc: Minor fixes
* cmdline/apt-cdrom.cc: Spelling fix
* cmdline/apt-cdrom.cc: Another -a attempt
1998-12-08 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-get.cc, cmdline/apt-cdrom.cc: Thoruogh option
* dselect/install: Oops, sh script fixes
* apt-pkg/contrib/fileutl.h, apt-pkg/tagfile.cc: Fix for missing \n\r
* apt-pkg/pkgcache.h, apt-pkg/packagemanager.cc, apt-pkg/depcache.h, apt-pkg/depcache.cc, apt-pkg/algorithms.cc:
Simulator fix
1998-12-07 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/depcache.cc: Size calculation error
* methods/http.cc: Debug code
* methods/http.cc, buildlib/program.mak, buildlib/defaults.mak, apt-pkg/tagfile.h, apt-pkg/tagfile.cc, apt-pkg/pkgcachegen.cc, apt-pkg/pkgcache.h, apt-pkg/pkgcache.cc:
Optimizations
* cmdline/apt-get.cc, cmdline/apt-cache.cc: Few more stats
1998-12-06 Jason Gunthorpe <jgg@debian.org>
* doc/examples/apt.conf, doc/apt.conf.5.yo, doc/apt-get.8.yo, doc/Bugs:
More bug updates
* doc/Bugs: Bug updates
* cmdline/apt-get.cc, cmdline/apt-cache.cc: Stuff
* cmdline/apt-get.cc: Fix fix-missing
* buildlib/configure.mak: Fixed configure rules
* doc/makefile, configure.in, buildlib/yodl_manpage.mak, buildlib/environment.mak.in, buildlib/defaults.mak, buildlib/configure.mak:
YODL
* doc/examples/apt.conf, doc/apt.conf.5.yo, doc/apt-get.8.yo, doc/apt-cdrom.8.yo, doc/apt-cache.8.yo:
Final draft
* apt-pkg/depcache.cc, apt-pkg/algorithms.cc: Two little bug fixes
1998-12-05 Jason Gunthorpe <jgg@debian.org>
* doc/sources.list.5.yo, doc/sources.list.5, doc/apt-get.8.yo, doc/apt-cdrom.8.yo, doc/apt-get.8, doc/apt-cache.8.yo, doc/apt-cache.8:
Man pages in yodl
* doc/apt-get.8.yo: First draft
* cmdline/apt-get.cc: -qq fixes
* cmdline/apt-get.cc: Fixed --force-yes bug
* cmdline/apt-get.cc: Fixed download only
* methods/http.h, methods/http.cc, apt-pkg/acquire.cc, apt-pkg/acquire-method.h, apt-pkg/acquire-method.cc:
HTTP pipelining
* cmdline/apt-get.cc: CDROM placeholder
* test/versions.lst, test/scratch.cc: Version compare glitch
* methods/cdrom.cc, apt-pkg/acquire-worker.cc, apt-pkg/acquire-method.cc:
Fixed cdrom method problems
* apt-pkg/version.cc: Version compare glitch
1998-12-04 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-cdrom.cc, cmdline/acqprogress.cc: Small cosmetic fixes
* methods/cdrom.cc, cmdline/apt-cache.cc, apt-pkg/pkgcache.cc, apt-pkg/acquire-method.h, apt-pkg/acquire-method.cc:
CDROM and GlobOr fix
* doc/method.sgml, cmdline/acqprogress.h, cmdline/acqprogress.cc, apt-pkg/contrib/strutl.cc, apt-pkg/acquire.h, apt-pkg/acquire-worker.h, apt-pkg/acquire-worker.cc, apt-pkg/acquire-method.cc:
CDROM support
1998-12-03 Jason Gunthorpe <jgg@debian.org>
* test/versions.lst, test/scratch.cc, methods/cdrom.cc, methods/makefile, doc/Bugs, apt-pkg/contrib/strutl.cc, apt-pkg/acquire-method.h, apt-pkg/acquire-method.cc:
CDROM method
* buildlib/makefile.in, buildlib/defaults.mak: Fixed some clean rules
* dselect/makefile: Fixed script positions
1998-11-29 Jason Gunthorpe <jgg@debian.org>
* buildlib/program.mak: Glitch in the program rule
* apt-pkg/acquire.h, apt-pkg/acquire.cc, apt-pkg/acquire-worker.cc, apt-pkg/acquire-method.h, apt-pkg/acquire-method.cc, apt-pkg/acquire-item.cc:
Minor Acquire cleanup
* apt-pkg/makefile: Moved cdrom stuff to lib
* apt-pkg/contrib/cdromutl.cc, apt-pkg/contrib/cdromutl.h:
CDROM stuff from apt-cdrom
* cmdline/apt-cdrom.cc:
Fixed function return and moved cdrom stuff to lib
1998-11-28 Jason Gunthorpe <jgg@debian.org>
* cmdline/acqprogress.cc: Fixed extraneous showing of [working]
* apt-pkg/version.cc: Fixed versioning bug
* methods/http.cc: Fixed http segfault
* cmdline/apt-cdrom.cc: Tada
* cmdline/apt-cdrom.cc: Deeper probing
* apt-pkg/tagfile.h, apt-pkg/tagfile.cc: More tagfile accessors
* doc/examples/apt.conf, doc/Bugs: More bug notes
* cmdline/apt-cdrom.cc: Finished
1998-11-27 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-cdrom.cc: New changes
* apt-pkg/contrib/fileutl.cc: Fixes for file opening
* cmdline/makefile, cmdline/apt-get.cc, cmdline/apt-config.cc, cmdline/apt-cdrom.cc, cmdline/apt-cache.cc:
apt-cdrom
* apt-pkg/contrib/fileutl.h, apt-pkg/contrib/fileutl.cc, apt-pkg/tagfile.h, apt-pkg/tagfile.cc:
Patchs for apt-cdrom
* apt-pkg/pkgcache.cc, apt-pkg/cacheiterators.h: Version compare fixes
1998-11-26 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/version.cc: Fixed version compare glitch
* test/versions.lst, test/versiontest.cc, test/makefile:
Version checker
1998-11-25 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/contrib/md5.h, apt-pkg/contrib/cmndline.h, apt-pkg/contrib/cmndline.cc, apt-pkg/init.cc:
More CD support
1998-11-24 Jason Gunthorpe <jgg@debian.org>
* doc/Bugs: More bugs
* cmdline/apt-get.cc: Small tweaks to no install candidate warning
* Makefile: Fixed dselect
* buildlib/staticlibrary.mak, buildlib/library.mak, buildlib/defaults.mak:
Static lib support
1998-11-23 Jason Gunthorpe <jgg@debian.org>
* dselect/makefile, doc/examples/apt.conf, doc/makefile, buildlib/makefile.in, buildlib/copy.mak, buildlib/defaults.mak, Makefile:
Make improvements
* methods/http.cc: Made http_proxy override
* Makefile: Removed the GUI from deault compiling
* cmdline/acqprogress.cc, apt-pkg/deb/dpkgpm.cc, apt-pkg/acquire.h, apt-pkg/acquire.cc:
Item done counters
* cmdline/apt-get.cc, apt-pkg/deb/dpkgpm.h, apt-pkg/deb/dpkginit.h, apt-pkg/deb/dpkgpm.cc, apt-pkg/deb/dpkginit.cc, apt-pkg/contrib/mmap.cc, apt-pkg/contrib/fileutl.h, apt-pkg/contrib/fileutl.cc, apt-pkg/pkgcache.cc, apt-pkg/packagemanager.cc, apt-pkg/makefile, apt-pkg/depcache.cc, apt-pkg/algorithms.cc:
Needs Unpack fixes
* dselect/update, doc/examples/apt.conf, doc/Bugs, cmdline/apt-get.cc, apt-pkg/depcache.cc, doc/sources.list.5, doc/makefile, doc/guide.sgml, doc/ftp.conf.5, doc/apt.8, doc/apt-get.8:
Fixed up the docs a bit
1998-11-22 Jason Gunthorpe <jgg@debian.org>
* dselect/desc.apt, dselect/install, dselect/names, dselect/setup, dselect/update, doc/examples/apt.conf, cmdline/makefile, cmdline/apt-config.cc, cmdline/apt-get.cc, apt-pkg/packagemanager.h, apt-pkg/packagemanager.cc, apt-pkg/acquire.cc:
Dselect support
* doc/examples/apt.conf, doc/Bugs, cmdline/apt-get.cc, apt-pkg/deb/dpkgpm.cc, apt-pkg/packagemanager.h, apt-pkg/packagemanager.cc, apt-pkg/init.cc, apt-pkg/acquire-item.h, apt-pkg/acquire-item.cc:
By gosh, I think it works
1998-11-21 Jason Gunthorpe <jgg@debian.org>
* methods/http.cc: Fixed problem with not being able to open files
* README.make, AUTHORS: Fixed docs
1998-11-14 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-get.cc: No upgrade support
* cmdline/apt-get.cc, cmdline/apt-cache.cc: unmet
* apt-pkg/pkgcache.cc, apt-pkg/cacheiterators.h, apt-pkg/algorithms.cc:
New OR globbing mechanism
* apt-pkg/algorithms.cc: Slightly tweaked problem resolver
* cmdline/apt-get.cc: More informative essential warning
* methods/file.cc, cmdline/apt-get.cc, apt-pkg/depcache.h, apt-pkg/acquire.h, apt-pkg/acquire.cc, apt-pkg/acquire-worker.cc, apt-pkg/acquire-method.h, apt-pkg/acquire-method.cc:
Local file fixes
1998-11-13 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/depcache.cc: Fixed signed conversion
* cmdline/apt-get.cc, apt-pkg/depcache.h, apt-pkg/algorithms.cc, apt-pkg/acquire.h, apt-pkg/acquire.cc, apt-pkg/acquire-item.h, apt-pkg/acquire-item.cc:
Wow
* doc/Bugs: Bugs
* cmdline/apt-get.cc, cmdline/apt-cache.cc, apt-pkg/deb/dpkgpm.cc, apt-pkg/deb/dpkgpm.h, apt-pkg/deb/debrecords.h, apt-pkg/deb/debrecords.cc, apt-pkg/tagfile.cc, apt-pkg/pkgrecords.h, apt-pkg/pkgrecords.cc, apt-pkg/pkgcachegen.cc, apt-pkg/pkgcache.cc, apt-pkg/packagemanager.h, apt-pkg/packagemanager.cc, apt-pkg/makefile, apt-pkg/acquire-item.h, apt-pkg/acquire-item.cc:
Archive acquire code
1998-11-12 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-get.cc, cmdline/acqprogress.h, cmdline/acqprogress.cc:
winch support
* cmdline/apt-get.cc, apt-pkg/acquire.h, apt-pkg/acquire.cc, apt-pkg/acquire-item.cc:
apt-get update works now
* apt-pkg/pkgcachegen.cc, apt-pkg/pkgcache.h:
Changed size of offset type
* apt-pkg/contrib/mmap.h, apt-pkg/contrib/mmap.cc:
Widened the mmap size
1998-11-11 Jason Gunthorpe <jgg@debian.org>
* doc/Bugs, cmdline/makefile, cmdline/apt-get.cc, cmdline/acqprogress.h, cmdline/acqprogress.cc, apt-pkg/pkgcachegen.cc, apt-pkg/acquire.cc:
apt-get update works
* test/scratch.cc, apt-pkg/acquire.cc, apt-pkg/acquire-method.cc:
Minor fixes
* test/scratch.cc, methods/http.h, methods/http.cc, methods/gzip.cc, doc/examples/apt.conf, apt-pkg/acquire.h, apt-pkg/acquire.cc, apt-pkg/acquire-method.cc, apt-pkg/acquire-item.h, apt-pkg/acquire-item.cc:
Almost done now
* doc/examples/apt.conf, doc/Bugs: More fixed things
1998-11-09 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/acquire.h, apt-pkg/acquire.cc, apt-pkg/acquire-worker.h, apt-pkg/acquire-worker.cc, apt-pkg/acquire-method.cc, apt-pkg/acquire-item.h, apt-pkg/acquire-item.cc:
More or less working acquire system
1998-11-08 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/pkgcache.cc, apt-pkg/pkgcache.h: Enum fix
1998-11-06 Jason Gunthorpe <jgg@debian.org>
* buildlib/makefile.in, buildlib/configure.mak, Makefile:
Fixed make woops
* apt-pkg/pkgcache.cc, apt-pkg/init.cc, apt-pkg/acquire.cc:
Small bug fixes
* buildlib/configure.mak: Fixed typo preventing working make startup
1998-11-05 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/init.cc: Fixed config handling bug again
* test/scratch.cc, methods/http.cc, methods/gzip.cc, doc/examples/apt.conf, buildlib/configure.mak, apt-pkg/contrib/strutl.cc, apt-pkg/contrib/configuration.cc, apt-pkg/init.cc, apt-pkg/acquire.h, apt-pkg/acquire.cc, apt-pkg/acquire-worker.cc, apt-pkg/acquire-method.cc, apt-pkg/acquire-item.h, apt-pkg/acquire-item.cc:
Working acquire code
* Makefile, buildlib/defaults.mak, buildlib/configure.mak:
Configuration fragment
* Makefile: Few more fixes
* buildlib/makefile.in: Fixed doc reference
1998-11-04 Jason Gunthorpe <jgg@debian.org>
* Makefile: Fragment to properly start the build system
* doc/examples/apt.conf: Updated config file
* apt-pkg/contrib/strutl.h, apt-pkg/contrib/strutl.cc, apt-pkg/contrib/configuration.h, methods/http.h, methods/http.cc:
Http method
1998-11-03 Jason Gunthorpe <jgg@debian.org>
* test/mthdcat.cc, test/makefile: Method test program
1998-11-01 Jason Gunthorpe <jgg@debian.org>
* test/scratch.cc, methods/http.h, methods/http.cc, apt-pkg/contrib/strutl.cc, apt-pkg/acquire-method.cc:
HTTP bugs
* methods/http.cc, methods/http.h, methods/makefile, methods/gzip.cc, methods/file.cc, methods/copy.cc, doc/Bugs, apt-pkg/contrib/strutl.h, apt-pkg/contrib/strutl.cc, apt-pkg/contrib/md5.cc, apt-pkg/acquire.h, apt-pkg/acquire.cc, apt-pkg/acquire-worker.cc, apt-pkg/acquire-method.h, apt-pkg/acquire-method.cc, Makefile:
New http method
1998-10-31 Jason Gunthorpe <jgg@debian.org>
* Makefile, buildlib/makefile.in: Ftp method
* buildlib/config.h.in, apt-pkg/makefile, apt-pkg/contrib/md5.cc, apt-pkg/contrib/md5.h:
Md5 support
1998-10-30 Jason Gunthorpe <jgg@debian.org>
* test/scratch.cc, methods/gzip.cc, methods/file.cc, methods/copy.cc, doc/examples/apt.conf, doc/method.sgml, buildlib/makefile.in, buildlib/defaults.mak, apt-pkg/contrib/strutl.h, apt-pkg/contrib/strutl.cc, apt-pkg/contrib/configuration.h, apt-pkg/contrib/configuration.cc, apt-pkg/tagfile.cc, apt-pkg/makefile, apt-pkg/init.cc, apt-pkg/acquire.h, apt-pkg/acquire.cc, apt-pkg/acquire-worker.h, apt-pkg/acquire-method.cc, apt-pkg/acquire-method.h, apt-pkg/acquire-worker.cc, apt-pkg/acquire-item.cc, configure.in, README.make, Makefile, AUTHORS:
Sync
1998-10-29 Jason Gunthorpe <jgg@debian.org>
* configure.in: Fixed pthread test
1998-10-26 Jason Gunthorpe <jgg@debian.org>
* methods/gzip.cc, methods/copy.cc, doc/examples/apt.conf, apt-pkg/contrib/fileutl.h, apt-pkg/contrib/fileutl.cc, apt-pkg/acquire.h, apt-pkg/acquire.cc, apt-pkg/acquire-worker.h, apt-pkg/acquire-worker.cc, apt-pkg/acquire-item.h, apt-pkg/acquire-item.cc:
Stable acquire code
1998-10-25 Jason Gunthorpe <jgg@debian.org>
* methods/gzip.cc, methods/makefile, methods/copy.cc: gzip method
* deity/tree.cc, deity/anchor.h: Fixed render of tree string items
* methods/makefile, methods/copy.cc: Added copy method
1998-10-24 Jason Gunthorpe <jgg@debian.org>
* deity/widget.cc: Debug code removed
* deity/widget.cc, deity/gpmdev.cc, deity/event.h, deity/event.cc, deity/button.cc:
GPM bug fix
* apt-pkg/contrib/fileutl.cc: Fixed setclosexec
* apt-pkg/contrib/cmndline.h, apt-pkg/contrib/cmndline.cc:
Fixed long option parsing
* doc/examples/apt.conf, cmdline/makefile, cmdline/apt-get.cc, apt-pkg/contrib/strutl.cc, apt-pkg/tagfile.cc, apt-pkg/depcache.cc, apt-pkg/algorithms.cc, apt-pkg/acquire.h, apt-pkg/acquire.cc, apt-pkg/acquire-worker.h, apt-pkg/acquire-worker.cc, apt-pkg/acquire-item.h, apt-pkg/acquire-item.cc, configure.in:
Sync
1998-10-23 Jason Gunthorpe <jgg@debian.org>
* methods/file.cc, apt-pkg/contrib/strutl.h, apt-pkg/contrib/strutl.cc, apt-pkg/acquire-worker.cc:
Sync
1998-10-22 Jason Gunthorpe <jgg@debian.org>
* test/scratch.cc, methods/file.cc, doc/examples/apt.conf, apt-pkg/contrib/strutl.h, apt-pkg/contrib/strutl.cc, apt-pkg/contrib/fileutl.cc, apt-pkg/contrib/configuration.h, apt-pkg/contrib/configuration.cc, apt-pkg/acquire.h, apt-pkg/acquire.cc, apt-pkg/acquire-worker.h, apt-pkg/acquire-worker.cc, apt-pkg/acquire-item.h, apt-pkg/acquire-item.cc:
Sync
1998-10-20 Jason Gunthorpe <jgg@debian.org>
* deity/widget-thread.h, deity/slangdev.cc, deity/event.cc, cmdline/apt-get.cc, buildlib/defaults.mak, apt-pkg/contrib/fileutl.cc, apt-pkg/sourcelist.cc, apt-pkg/pkgcache.cc, apt-pkg/algorithms.cc, README.make, apt-pkg/acquire-worker.cc, Makefile:
Upgraded to eg++ 1.1 and libstdc++2.9
* methods/makefile, methods/file.cc: Early mehods
* test/makefile, test/scratch.cc, gui/extracache.cc, doc/examples/apt.conf, buildlib/makefile.in, Makefile:
Sync
* apt-pkg/contrib/strutl.h, apt-pkg/contrib/strutl.cc, apt-pkg/contrib/fileutl.h, apt-pkg/contrib/fileutl.cc, apt-pkg/contrib/configuration.h, apt-pkg/contrib/configuration.cc, apt-pkg/contrib/cmndline.cc, apt-pkg/sourcelist.cc, apt-pkg/pkgrecords.cc, apt-pkg/pkgcachegen.cc, apt-pkg/pkgcache.h, apt-pkg/init.cc, apt-pkg/algorithms.h, apt-pkg/algorithms.cc, apt-pkg/acquire.h, apt-pkg/acquire.cc, apt-pkg/acquire-worker.h, apt-pkg/acquire-worker.cc, apt-pkg/acquire-item.cc:
Start on acquire stuff
1998-10-19 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-get.cc, cmdline/apt-cache.cc: Added the remove command
1998-10-15 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/sourcelist.h, apt-pkg/sourcelist.cc, apt-pkg/pkgcachegen.cc, apt-pkg/acquire-item.cc, apt-pkg/acquire-item.h, apt-pkg/acquire-worker.cc, apt-pkg/acquire-worker.h, apt-pkg/acquire.cc, apt-pkg/acquire.h, apt-pkg/makefile:
Devel acquire module
1998-10-09 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/init.cc: Fixed default dirs
* buildlib/defaults.mak: More aliases for clean
1998-10-08 Jason Gunthorpe <jgg@debian.org>
* deity/slangdev.h, deity/slangdev.cc, deity/button.h: More egcs fixes
* apt-pkg/pkgcache.cc: Fixed for new egcs
* doc/examples/apt.conf, doc/method.sgml, cmdline/apt-get.cc, apt-pkg/deb/debrecords.h, apt-pkg/deb/debrecords.cc, apt-pkg/contrib/cmndline.cc, apt-pkg/pkgrecords.h, apt-pkg/algorithms.h, apt-pkg/algorithms.cc:
Sync
* doc/Bugs: Closed bugs
* doc/Bugs: First draft
1998-10-06 Jason Gunthorpe <jgg@debian.org>
* doc/method.sgml: Typo fixes
1998-10-04 Jason Gunthorpe <jgg@debian.org>
* doc/method.sgml, doc/makefile: Method doc created
1998-10-02 Jason Gunthorpe <jgg@debian.org>
* doc/examples/apt.conf, doc/examples/sources.list, doc/files.sgml, cmdline/apt-get.cc, cmdline/makefile, cmdline/apt-cache.cc, apt-pkg/contrib/progress.h, apt-pkg/contrib/progress.cc, apt-pkg/contrib/fileutl.h, apt-pkg/contrib/fileutl.cc, apt-pkg/contrib/configuration.cc, apt-pkg/tagfile.cc, apt-pkg/pkgcachegen.cc, apt-pkg/pkgcache.cc, apt-pkg/depcache.h, apt-pkg/cacheiterators.h, apt-pkg/algorithms.h, apt-pkg/algorithms.cc:
Sync
1998-09-26 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-cache.cc, buildlib/environment.mak.in, buildlib/config.h.in, apt-pkg/contrib/configuration.cc, apt-pkg/contrib/cmndline.h, apt-pkg/contrib/cmndline.cc, apt-pkg/pkgcachegen.cc, apt-pkg/orderlist.cc, apt-pkg/makefile, apt-pkg/init.cc, configure.in:
Sync
1998-09-22 Jason Gunthorpe <jgg@debian.org>
* cmdline/makefile, cmdline/apt-cache.cc, apt-pkg/contrib/strutl.h, apt-pkg/contrib/strutl.cc, apt-pkg/contrib/configuration.h, apt-pkg/contrib/cmndline.cc, apt-pkg/contrib/cmndline.h, apt-pkg/contrib/configuration.cc, apt-pkg/makefile, apt-pkg/init.cc:
Sync
1998-09-18 Jason Gunthorpe <jgg@debian.org>
* gui/progressmeter.cc, gui/errorshow.cc, gui/aptwidgets.h, gui/aptwidgets.cc, gui/apt.cc, deity/progress.cc, apt-pkg/contrib/error.h, apt-pkg/contrib/error.cc, apt-pkg/pkgcachegen.cc:
Sync
1998-09-15 Jason Gunthorpe <jgg@debian.org>
* gui/errorshow.cc, deity/x11dev.cc, deity/window.h, deity/window.cc, deity/widget.h, deity/widget.cc, deity/textwidg.h, deity/textwidg.cc, deity/graphics.h, deity/graphics.cc:
Sync
1998-09-12 Jason Gunthorpe <jgg@debian.org>
* gui/progressmeter.cc, gui/errorshow.cc, gui/errorshow.h, gui/makefile, gui/apt.cc, deity/x11dev.cc, deity/window.h, deity/window.cc, deity/widget.h, deity/widget-thread.cc, deity/widget-thread.h, deity/widget.cc, deity/utils.h, deity/thread.h, deity/thread.cc, deity/textwidg.h, deity/textwidg.cc, deity/slangdev.h, deity/slangdev.cc, deity/selectloop.cc, deity/progress.cc, deity/notify.h, deity/makefile, deity/graphics.h, deity/graphics.cc, deity/gpmdev.cc, deity/event.cc, deity/button.cc, buildlib/environment.mak.in, buildlib/defaults.mak, apt-pkg/contrib/error.h, apt-pkg/contrib/error.cc, apt-pkg/makefile:
Sync
1998-09-07 Jason Gunthorpe <jgg@debian.org>
* gui/progressmeter.cc, gui/extracache.h, gui/extracache.cc, gui/aptwidgets.cc, gui/apt.cc, deity/x11dev.cc, deity/slangdev.cc, deity/selectloop.cc, deity/basic.cc, apt-pkg/contrib/progress.cc, apt-pkg/pkgcachegen.cc, apt-pkg/depcache.h, apt-pkg/depcache.cc:
Sync
1998-08-27 Jason Gunthorpe <jgg@debian.org>
* deity/xpm.h, deity/xpm.cc, deity/x11dev.h, deity/x11dev.cc, deity/window.h, deity/window.cc, deity/widgetinit.h, deity/widgetinit.cc, deity/widget.h, deity/widget.cc, deity/utils.h, deity/utils.cc, deity/tree.h, deity/tree.cc, deity/thread.h, deity/thread.cc, deity/textwidg.h, deity/textwidg.cc, deity/tabdialog.h, deity/tabdialog.cc, deity/slangdev.h, deity/slangdev.cc, deity/selectloop.h, deity/selectloop.cc, deity/progress.h, deity/progress.cc, deity/notify.h, deity/notify.cc, deity/menubar.h, deity/menubar.cc, deity/makefile, deity/graphics.h, deity/graphics.cc, deity/gpmdev.h, deity/gpmdev.cc, deity/event.h, deity/event.cc, deity/columnbar.h, deity/columnbar.cc, deity/button.h, deity/button.cc, deity/basic.h, deity/basic.cc, deity/anchor.h, deity/anchor.cc:
interface/implementation
1998-08-26 Jason Gunthorpe <jgg@debian.org>
* gui/apt.cc, deity/slangdev.cc, deity/progress.cc, deity/basic.h, deity/basic.cc, apt-pkg/contrib/progress.h, apt-pkg/contrib/progress.cc, apt-pkg/contrib/fileutl.h, apt-pkg/contrib/fileutl.cc, apt-pkg/tagfile.h, apt-pkg/pkgcachegen.cc:
More progress updates
1998-08-23 Jason Gunthorpe <jgg@debian.org>
* deity/selectloop.cc: Signal handling fix
* gui/progressmeter.cc, gui/progressmeter.h, gui/makefile, gui/apt.cc, deity/x11dev.h, deity/x11dev.cc, deity/widgetinit.cc, deity/widget.h, deity/widget.cc, deity/thread.h, deity/textwidg.cc, deity/graphics.h, deity/graphics.cc, deity/basic.h, apt-pkg/contrib/progress.h, apt-pkg/contrib/progress.cc:
Big changes
1998-08-19 Jason Gunthorpe <jgg@debian.org>
* gui/makefile, gui/aptwidgets.h, gui/apt.cc, doc/makefile, deity/x11dev.cc, deity/window.h, deity/window.cc, deity/widget.h, deity/widget.cc, deity/utils.h, deity/utils.cc, deity/progress.cc, deity/progress.h, deity/slangdev.cc, deity/makefile, deity/graphics.cc, deity/basic.h, deity/basic.cc, cmdline/makefile, buildlib/makefile.in, buildlib/defaults.mak, apt-pkg/pkgrecords.cc, apt-pkg/makefile:
Progress meter
1998-08-09 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/deb/debrecords.cc, apt-pkg/deb/debrecords.h, apt-pkg/deb/deblistparser.cc, apt-pkg/pkgrecords.cc, apt-pkg/pkgrecords.h, apt-pkg/pkgcachegen.h, apt-pkg/makefile:
Package Record parser
1998-07-30 Jason Gunthorpe <jgg@debian.org>
* gui/apt.cc, deity/widgetinit.h, deity/widgetinit.cc, deity/makefile:
GUI loads again
* buildlib/program.mak:
Move libraries to the statr of the compile line
1998-07-27 Jason Gunthorpe <jgg@debian.org>
* deity/makefile, deity/widgetinit.cc, deity/widgetinit.h:
Added new initialization code
1998-07-26 Jason Gunthorpe <jgg@debian.org>
* gui/apt.cc, gui/aptwidgets.cc, gui/aptwidgets.h, gui/checkoff.xpm, gui/checkon.xpm, gui/conflicts.xpm, gui/depends.xpm, gui/downgrade.xpm, gui/extracache.cc, gui/extracache.h, gui/makefile, gui/minus.xpm, gui/package.xpm, gui/pkgtree.cc, gui/pkgtree.h, gui/pkgtreeitem.cc, gui/pkgtreeitem.h, gui/plus.xpm, gui/policy.cc, gui/policy.h, gui/radiooff.xpm, gui/radioon.xpm, gui/recommends.xpm, gui/section.xpm, gui/statuswidgets.cc, gui/statuswidgets.h, gui/suggests.xpm, gui/upgrade.xpm, deity/makefile, cmdline/apt-cache.cc, buildlib/library.mak, buildlib/environment.mak.in, configure.in, Makefile:
Brought in the GUI
* apt-pkg/contrib/progress.cc, apt-pkg/deb/deblistparser.cc, apt-pkg/contrib/mmap.cc, apt-pkg/sourcelist.cc, apt-pkg/pkgcachegen.h, apt-pkg/pkgcachegen.cc, apt-pkg/init.cc:
Progress and combined cache generator
1998-07-22 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/contrib/progress.cc: Fixed some display glitches
1998-07-21 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/contrib/progress.cc, apt-pkg/contrib/progress.h, cmdline/apt-cache.cc, apt-pkg/pkgcachegen.h, apt-pkg/pkgcachegen.cc, apt-pkg/makefile:
Generic progress meter
1998-07-19 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/version.h, apt-pkg/version.cc, apt-pkg/tagfile.h, apt-pkg/sourcelist.h, apt-pkg/pkgcachegen.h, apt-pkg/packagemanager.h, apt-pkg/algorithms.h:
Comment touch ups
* cmdline/apt-cache.cc, apt-pkg/deb/deblistparser.h, apt-pkg/deb/deblistparser.cc, apt-pkg/contrib/mmap.h, apt-pkg/contrib/mmap.cc, apt-pkg/contrib/fileutl.h, apt-pkg/contrib/fileutl.cc, apt-pkg/tagfile.h, apt-pkg/tagfile.cc:
Class File name change to FileFd
* doc/cache.sgml, cmdline/apt-cache.cc, apt-pkg/contrib/strutl.h, apt-pkg/contrib/strutl.cc, apt-pkg/tagfile.h, apt-pkg/tagfile.cc, apt-pkg/sourcelist.h, apt-pkg/sourcelist.cc, apt-pkg/pkgcachegen.h, apt-pkg/pkgcachegen.cc, apt-pkg/pkgcache.h, apt-pkg/pkgcache.cc:
DumpAvail works and apt-cache is complete
1998-07-16 Jason Gunthorpe <jgg@debian.org>
* cmdline/apt-cache.cc, apt-pkg/deb/deblistparser.cc, apt-pkg/contrib/strutl.cc, apt-pkg/tagfile.h, apt-pkg/tagfile.cc, apt-pkg/pkgcachegen.cc, apt-pkg/init.h, apt-pkg/init.cc:
Working cache generator
1998-07-15 Jason Gunthorpe <jgg@debian.org>
* buildlib/program.mak, cmdline/apt-cache.cc, cmdline/makefile, buildlib/defaults.mak, apt-pkg/contrib/mmap.h, apt-pkg/contrib/mmap.cc, apt-pkg/contrib/fileutl.cc, Makefile:
Compile of apt-cache
* buildlib/manpage.mak, buildlib/makefile.in, Makefile: Tuning
1998-07-14 Jason Gunthorpe <jgg@debian.org>
* deity/makefile, buildlib/makefile.in, Makefile, buildlib/defaults.mak:
Top level make files
* buildlib/makefile.in, configure.in: Better configure support
* deity/widget.cc, deity/utils.h, deity/utils.cc, deity/tabdialog.cc, deity/slangdev.cc, deity/selectloop.cc, deity/menubar.cc, deity/graphics.cc, deity/gpmdev.cc, buildlib/defaults.mak, buildlib/config.h.in, configure.in:
New make changes
1998-07-13 Jason Gunthorpe <jgg@debian.org>
* deity/utils.cc, deity/utils.h, deity/widget.cc, deity/widget.h, deity/window.cc, deity/window.h, deity/x11dev.cc, deity/x11dev.h, deity/x11xpm.cc, deity/xpm.cc, deity/xpm.h, deity/anchor.cc, deity/anchor.h, deity/basic.cc, deity/basic.h, deity/button.cc, deity/button.h, deity/columnbar.cc, deity/columnbar.h, deity/event.cc, deity/event.h, deity/gpmdev.cc, deity/gpmdev.h, deity/graphics.cc, deity/graphics.h, deity/menubar.cc, deity/menubar.h, deity/notify.cc, deity/notify.h, deity/selectloop.cc, deity/selectloop.h, deity/slangdev.cc, deity/slangdev.h, deity/tabdialog.cc, deity/tabdialog.h, deity/textwidg.cc, deity/textwidg.h, deity/thread.cc, deity/thread.h, deity/tree.cc, deity/tree.h:
Widget library
* buildlib/sizetable, buildlib/tl_canon.m4, buildlib/tools.m4, buildlib/archtable, buildlib/config.h.in, buildlib/config.sub, buildlib/environment.mak.in, buildlib/install-sh, configure.in, buildlib/config.guess:
Autoconf stuff
* buildlib/manpage.mak, doc/makefile, buildlib/debiandoc.mak, buildlib/defaults.mak:
Documentation support
1998-07-12 Jason Gunthorpe <jgg@debian.org>
* buildlib/defaults.mak, buildlib/library.mak, apt-pkg/deb/deblistparser.h, apt-pkg/deb/deblistparser.cc, apt-pkg/contrib/mmap.h, apt-pkg/contrib/mmap.cc, apt-pkg/contrib/fileutl.h, apt-pkg/contrib/fileutl.cc, apt-pkg/contrib/error.h, apt-pkg/contrib/error.cc, apt-pkg/contrib/configuration.h, apt-pkg/contrib/configuration.cc, apt-pkg/version.h, apt-pkg/version.cc, apt-pkg/templates.cc, apt-pkg/tagfile.h, apt-pkg/tagfile.cc, apt-pkg/sourcelist.h, apt-pkg/sourcelist.cc, apt-pkg/pkgcachegen.h, apt-pkg/pkgcachegen.cc, apt-pkg/pkgcache.h, apt-pkg/pkgcache.cc, apt-pkg/packagemanager.h, apt-pkg/packagemanager.cc, apt-pkg/orderlist.h, apt-pkg/makefile, apt-pkg/orderlist.cc, apt-pkg/init.h, apt-pkg/init.cc, apt-pkg/depcache.h, apt-pkg/depcache.cc, apt-pkg/cacheiterators.h, apt-pkg/algorithms.h, apt-pkg/algorithms.cc:
First draft of make system and name change to apt-pkg
* doc/files.sgml: Fixed some typos and outofdateness
* apt-pkg/pkgcache.cc, apt-pkg/packagemanager.cc, apt-pkg/depcache.h, apt-pkg/cacheiterators.h, apt-pkg/algorithms.cc:
Sync
1998-07-09 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/packagemanager.h, apt-pkg/packagemanager.cc: Package Manager
* apt-pkg/deb/deblistparser.cc, apt-pkg/contrib/strutl.h, apt-pkg/contrib/configuration.h, apt-pkg/contrib/configuration.cc, apt-pkg/templates.cc, apt-pkg/tagfile.cc, apt-pkg/sourcelist.h, apt-pkg/sourcelist.cc, apt-pkg/init.cc, apt-pkg/init.h, apt-pkg/pkgcachegen.cc:
Config class and source list
1998-07-07 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/contrib/strutl.cc, apt-pkg/contrib/strutl.h, apt-pkg/deb/deblistparser.cc, apt-pkg/contrib/mmap.h, apt-pkg/contrib/mmap.cc, apt-pkg/contrib/fileutl.h, apt-pkg/contrib/fileutl.cc, apt-pkg/contrib/error.h, apt-pkg/contrib/configuration.cc, apt-pkg/contrib/configuration.h, apt-pkg/contrib/error.cc, apt-pkg/version.h, apt-pkg/version.cc, apt-pkg/tagfile.h, apt-pkg/sourcelist.cc, apt-pkg/sourcelist.h, apt-pkg/tagfile.cc, apt-pkg/pkgcachegen.h, apt-pkg/pkgcachegen.cc, apt-pkg/pkgcache.h, apt-pkg/pkgcache.cc, apt-pkg/depcache.cc, apt-pkg/depcache.h, apt-pkg/orderlist.cc, apt-pkg/orderlist.h, apt-pkg/packagemanager.cc, apt-pkg/packagemanager.h, apt-pkg/algorithms.cc, apt-pkg/algorithms.h, apt-pkg/cacheiterators.h:
Sync
1998-07-05 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/pkgcachegen.cc: Res initialize glitch
* doc/cache.sgml: Sync with changes to code
* apt-pkg/pkgcachegen.cc: Fix for 2.7.2 compiler
* apt-pkg/deb/deblistparser.h, apt-pkg/deb/deblistparser.cc, apt-pkg/tagfile.h, apt-pkg/tagfile.cc, apt-pkg/pkgcachegen.h, apt-pkg/pkgcachegen.cc, apt-pkg/pkgcache.h, apt-pkg/pkgcache.cc, apt-pkg/cacheiterators.h:
Final testing
1998-07-04 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/deb/deblistparser.h, apt-pkg/deb/deblistparser.cc, apt-pkg/contrib/mmap.cc, apt-pkg/tagfile.cc, apt-pkg/pkgcachegen.cc, apt-pkg/pkgcache.h, apt-pkg/pkgcache.cc, apt-pkg/contrib/mmap.h, apt-pkg/contrib/fileutl.cc, apt-pkg/version.cc, apt-pkg/pkgcachegen.h, apt-pkg/cacheiterators.h:
Checkpoint
1998-07-02 Jason Gunthorpe <jgg@debian.org>
* apt-pkg/contrib/error.cc, apt-pkg/contrib/error.h, apt-pkg/contrib/fileutl.cc, apt-pkg/contrib/fileutl.h, apt-pkg/contrib/mmap.cc, apt-pkg/contrib/mmap.h, apt-pkg/contrib/system.h, apt-pkg/pkgcachegen.h, apt-pkg/tagfile.cc, apt-pkg/tagfile.h, apt-pkg/version.cc, apt-pkg/version.h, apt-pkg/cacheiterators.h, apt-pkg/pkgcache.cc, apt-pkg/pkgcache.h, apt-pkg/pkgcachegen.cc, doc/apt-cache.8, doc/apt-get.8, doc/apt.8, doc/cache.sgml, doc/design.sgml, doc/dpkg-tech.sgml, doc/files.sgml, doc/ftp.conf.5, doc/guide.sgml, doc/sources.list.5:
Base revisions
|