summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* discard impossible candidates in MarkInstallDavid Kalnischkies2014-02-062-2/+93
| | | | | | | | | If a (Pre-)Depends can't be satisfied there is no point in keeping the candidate as is as it is impossible to find a solution for it, so we can just as well reset the candidate to the currently installed version. We avoid trying to install this impossible candidate later on this way. Closes: #735967
* Merge remote-tracking branch 'donkult/debian/sid' into debian/sidMichael Vogt2014-01-317-51/+65
|\
| * fix various style/performance warnings in rredDavid Kalnischkies2014-01-303-45/+24
| | | | | | | | | | Reported-By: cppcheck Git-Dch: Ignore
| * restart debSrcRecordParsers only if neededDavid Kalnischkies2014-01-302-5/+6
| | | | | | | | | | | | | | | | | | | | The offset variable in DebSrcRecordParser was not initialized which we now do and based on it do not trigger a restart if the parser was not used yet avoiding a needless rescan of the section. Detected while working on the previous commit e62aa1dd. Both commits act as a "fix" for the bug shown in the testcase of the commit – this one here would only hide it through.
| * pkgTagFile: if we have seen the end, do not try to see moreDavid Kalnischkies2014-01-302-1/+35
| | | | | | | | | | | | | | | | | | | | Asking for more via Step() will notice that we are done with the file already and will result in a fail, which means we can't find the last sections anymore (which is especially painful if we haven't moved at all as in the testcase we haven't even looked at one of the sources leading to a strange behaviour) Reported-By: Niall Walsh <niallwalsh@users.berlios.de>
* | do not crash if VF.File()/VF.File().Archive() is NULLMichael Vogt2014-01-301-2/+4
| |
* | fix apt-get download truncation (closes: #736962)Michael Vogt2014-01-292-3/+13
| |
* | add test for Suite with pathMichael Vogt2014-01-281-0/+11
|/
* enable deb822 sources for associated testcaseDavid Kalnischkies2014-01-261-2/+4
| | | | Git-Dch: Ignore
* fixup merge issues introduced in 796673cDavid Kalnischkies2014-01-261-2/+2
| | | | | | | Issues in doc/po/de.po (fixed by Chris already) and test/integration/framework Git-Dch: Ignore
* Trivian unfuzzies of the German po4a translationChris Leick2014-01-261-78/+49
|
* Merge remote-tracking branch 'donkult/debian/sid' into debian/sidMichael Vogt2014-01-2637-373/+454
|\ | | | | | | | | | | | | Conflicts: apt-private/private-list.cc doc/po/de.po test/integration/framework
| * use svg in doxygen and ensure dot is around for itDavid Kalnischkies2014-01-252-5/+5
| |
| * update german manpage translationChris Leick2014-01-241-69/+64
| |
| * get color/msglevel handling for tests in lineDavid Kalnischkies2014-01-172-24/+41
| | | | | | | | | | | | | | | | | | Without a PTY attached do not use color, but use the same MSGLEVEL with or without a PTY. The level is better adjust via flags – especially as it is likely that without a PTY you want fullblown logs instead of the reduced display you get with -q otherwise. Git-Dch: Ignore
| * ensure the right permissions as dpkg-deb ensistsDavid Kalnischkies2014-01-171-0/+2
| | | | | | | | | | | | | | | | | | otherwise you get with pickier umasks errors like: dpkg-deb: error: control directory has bad permissions 700 (must be >=0755 and <=0775) so we just force a 755 for the control directory and dpkg is happy. Git-Dch: Ignore
| * use our tmpdir instead of creating tmpfilesDavid Kalnischkies2014-01-171-20/+12
| | | | | | | | | | | | | | | | | | Maintaining (mainly the deletion of them) is a pain and they litter /tmp while the testcase is run for no good reason as we could just as well drop it into our tmpdir we have anyway and let them be deleted with the rest automatically Git-Dch: Ignore
| * correct some quoting offensesDavid Kalnischkies2014-01-171-31/+43
| | | | | | | | | | | | | | also avoids redirecting messages from dpkg-deb to /dev/null as it might fail (as it is quiet picky) and we should know why if it does. Git-Dch: Ignore
| * improve stdout/stderr usage correctness in test frameworkDavid Kalnischkies2014-01-173-21/+30
| | | | | | | | | | | | | | | | Also adds a friendly note about how many tests were run/passed so that the end of the testrun isn't all that negative by just showing fails. (It now tells us that we have 111 tests at the moment!) Git-Dch: Ignore
| * use our own homedir for gpg in testcasesDavid Kalnischkies2014-01-161-2/+23
| | | | | | | | Git-Dch: Ignore
| * use gpg --homedir instead of explicit file placementDavid Kalnischkies2014-01-161-13/+14
| | | | | | | | | | | | Avoids that gpg gets the idea it could use files from the user which weren't overridden specifically like secret keyring and trustdb as before.
| * correct some style/performance/warnings from cppcheckDavid Kalnischkies2014-01-1622-142/+133
| | | | | | | | | | | | | | | | The most "visible" change is from utime to utimensat/futimens as the first one isn't part of POSIX anymore. Reported-By: cppcheck Git-Dch: Ignore
| * rework some code to fix some scan-build warningsDavid Kalnischkies2014-01-167-38/+42
| | | | | | | | | | | | | | | | No visible functional changes, just code moved around and additional checks to eliminate impossible branches Reported-By: scan-build Git-Dch: Ignore
| * show the error message if the webserver start failedDavid Kalnischkies2014-01-161-2/+6
| | | | | | | | | | | | Can happen e.g. if port 8080 is already used by something else Git-Dch: Ignore
| * test apt-get source release selection with suite and codenameDavid Kalnischkies2014-01-151-1/+13
| | | | | | | | Git-Dch: Ignore
| * tests: default to 'sid' codename for 'unstable'David Kalnischkies2014-01-152-2/+7
| | | | | | | | Git-Dch: Ignore
| * use C.UTF-8 in testcases as localeDavid Kalnischkies2014-01-151-5/+5
| | | | | | | | Git-Dch: Ignore
* | releasing package apt version 0.9.15Michael Vogt2014-01-2555-829/+835
| |
* | Merge remote-tracking branch 'mvo/debian/sid' into debian/sidMichael Vogt2014-01-252-2/+8
|\ \
| * | support " " in deb822 source optionsMichael Vogt2014-01-252-2/+8
| | |
* | | Merge branch 'debian/experimental-no-abi-break' into debian/sidMichael Vogt2014-01-2589-5845/+8695
|\ \ \ | |_|/ |/| |
| * | releasing package apt version 0.9.14.3~exp5Michael Vogt2014-01-2455-201/+216
| | |
| * | fix testMichael Vogt2014-01-241-0/+2
| | |
| * | set APT::Sources::Use-Deb822 to default false for nowMichael Vogt2014-01-241-1/+1
| | |
| * | make update-poMichael Vogt2014-01-2452-631/+1424
| | |
| * | Merge remote-tracking branch 'mvo/feature/apt-show-nice' into ↵Michael Vogt2014-01-245-54/+117
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | debian/experimental-no-abi-break Conflicts: apt-private/private-cmndline.cc
| | * | hide more from apt showMichael Vogt2014-01-242-8/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Hide the Hashes,Filename,Multi-Arch,Architecture by default from "apt show". The information is still available via apt-cache show. Also improve the output of the Size-
| | * | show APT-Sources in apt showMichael Vogt2014-01-242-7/+14
| | | |
| | * | Show "Manual-Installed: {yes|no}" in apt showMichael Vogt2014-01-242-1/+16
| | | |
| | * | include "Archive-Origin" in the apt show outputMichael Vogt2014-01-233-1/+8
| | | |
| | * | Show only the candidate with "apt show"Michael Vogt2014-01-232-1/+13
| | | | | | | | | | | | | | | | | | | | Display only the candidate version with "apt show pkg" but show a notice that there is more to see.
| | * | "apt show" show user friendly size infoMichael Vogt2014-01-223-50/+65
| | | | | | | | | | | | | | | | | | | | | | | | The size/installed-size is displayed via SizeToStr() and Size is rewriten to "Download-Size" to make clear what size is refered to here.
| * | | Merge remote-tracking branch 'mvo/debian/sid' into ↵Michael Vogt2014-01-249-47/+87
| |\ \ \ | | | |/ | | |/| | | | | debian/experimental-no-abi-break
| | * | Merge remote-tracking branch 'ajt/better-pdiffs-dk' into debian/sidMichael Vogt2014-01-2471-4978/+6494
| | |\ \
| | | * | methods/rred: minor robustness improvementsAnthony Towns2014-01-211-19/+20
| | | | | | | | | | | | | | | | | | | | | | | | | Use retry_fwrite to better handle partial fwrite successes, and to keep the Hashes in sync with what's actually written.
| | * | | apt-mark help shows all commands nowMichael Vogt2014-01-241-0/+5
| | | | |
| | * | | add "apt full-upgrade" and tweak "apt upgrade"Michael Vogt2014-01-247-28/+62
| | | |/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | There is a new "apt full-upgrade" that performs a apt-get dist-upgrade. "apt dist-upgrade" is still supported as a alias. The "apt upgrade" code is changed so that it mirrors the behavior of "apt-get upgrade --with-new-pkgs" and also honors "apt uprade --no-new-pkgs".
| * | | releasing package apt version 0.9.14.3~exp4Michael Vogt2014-01-2255-1749/+1978
| | | |
| * | | Merge remote-tracking branch 'mvo/debian/sid' into ↵Michael Vogt2014-01-225-2/+74
| |\| | | | | | | | | | | | | | debian/experimental-no-abi-break
| | * | add test for apt showMichael Vogt2014-01-223-4/+31
| | | |