summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update Japanese documentation translationvictory2014-07-161-370/+502
| | | | Closes: #754817
* StringToBool: only act if the entire string is consumed by strtol()Michael Vogt2014-07-162-3/+35
| | | | | | | | | StringToBool uses strtol() internally to check if the argument is a number. This function stops when it does not find any more numbers. So a string like "0ad" (which is a valid packagename) is interpreted as a "0". The code now checks that the entire string is consumed not just a part of it. Thanks to Johannes Schauer for raising this issue.
* Merge remote-tracking branch 'mvo/feature/README' into debian/sidMichael Vogt2014-07-101-0/+37
|\
| * add REAMDE.mdMichael Vogt2014-07-101-0/+37
| |
* | releasing package apt version 1.0.6Michael Vogt2014-07-101-1/+1
| |
* | prepare 1.0.6Michael Vogt2014-07-1055-57665/+58004
| |
* | Only show packages as upgradable if the have a CandidateVer != 0Michael Vogt2014-07-082-3/+4
| | | | | | | | Closes: #753297
* | doc: Unfuzzy DocBook translationsGuillem Jover2014-07-089-5128/+5573
| |
* | doc: Convert from DebianDoc SGML to DocBook XMLGuillem Jover2014-07-0811-2317/+3157
| |
* | build: Convert from DebianDoc SGML to DocBook XMLGuillem Jover2014-07-0818-122/+244
| |
* | build: Set the XSL parameter through the command line instead of sedGuillem Jover2014-07-082-4/+4
| | | | | | | | | | Use the xsltproc --stringparam option instead of replacing it inside the file.
* | po: Fix format specifier order in translationGuillem Jover2014-07-082-10/+10
| |
* | po: Fix encoding issuesGuillem Jover2014-07-081-9/+9
| | | | | | | | | | Remove trailing CR characters, and fix Content-Transfer-Encoding field value.
* | po: Fix or add missing email addressesGuillem Jover2014-07-084-5/+4
| | | | | | | | | | Fill Report-Msgid-Bugs-To field, remove spurious email line junk and make Last-Translator and Language-Team fields contain valid emails.
* | po: Fix Plural-Forms fieldsGuillem Jover2014-07-0811-5/+12
| |
* | po: Fill Project-Id-Version with correct project id and versionGuillem Jover2014-07-082-2/+2
| |
* | po: Remove fuzzy from file msgid headerGuillem Jover2014-07-081-1/+0
| |
* | po: Fill or add missing Language fieldGuillem Jover2014-07-0812-11/+12
| |
* | Do not clean "/" in pkgAcquire::Clean/pkgArchiveCleanerMichael Vogt2014-07-082-1/+7
| | | | | | | | | | | | | | Having "/" here is most likely a user configuration error and may cause removal of import symlinks like /vmlinuz Closes: #753531
* | Improve description how to turn off the cachesCédric Barboiron2014-07-081-4/+5
| | | | | | | | Closes: #753531
* | use printf instead of echo in testing frameworkMichele Orrù2014-07-072-31/+31
| | | | | | | | | | | | | | | | | | The behaviour of echo "\tA\t" differs between dash/zsh which interprets the \t as tab and bash which prints it literally. Similar things happen for other escape sequences – without the -e flag. Switching to printf makes this more painless^Wportable, so that the tests are also working correctly with bash as sh. (commit message by committer, patch otherwise unmodified)
* | properly handle (currently unused) dpkg pass-throughDavid Kalnischkies2014-07-071-13/+16
| | | | | | | | Git-Dch: ignore
* | use exit instead of incorrect return in test wrapperMichele Orrù2014-07-071-4/+5
| | | | | | | | | | | | bash as sh doesn't like it, too. Git-Dch: Ignore
* | handle moved mmap after UniqFindTagWrite callDavid Kalnischkies2014-07-071-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | A call to UniqFindTagWrite can trigger the need for a bigger mmap, which is usually done by moving it, but with this move all pointers into it become invalid (and have to be remapped). The compiler calculates the pointer before the execution of the call though, so it tries to store the returned value at the old location, resulting in a segfault. We solve this by use of a temprorary variable as we did in the other instances of this problem before. Closes: #753941
* | Danish program translation updateJoe Hansen2014-07-071-50/+67
| | | | | | | | Closes: 753979
* | Try not to parse invalid translation files (LP: #756317)Michael Vogt2014-07-032-34/+19
| |
* | redo two typo fixes lost in German update collisionDavid Kalnischkies2014-06-251-2/+2
| | | | | | | | | | | | | | | | | | In 037fada40db175e95f44c0cb039474c6dc518963 two typos were fixed which collided with an update ongoing for German po which was committed in 48388911a734ed9ce10ab05043fadba3eed09a1f, so this commit just merges the first commit again. Git-Dch: Ignore
* | l10n: vi.po: Update 3 new messagesTrần Ngọc Quân2014-06-241-4/+4
| | | | | | | | Signed-off-by: Trần Ngọc Quân <vnwildman@gmail.com>
* | methods/http.cc: use Req.str() in debug outputMichael Vogt2014-06-241-1/+1
| |
* | German translation reviewed by Erik PfannensteinChris Leick2014-06-191-72/+54
| |
* | releasing package apt version 1.0.5Michael Vogt2014-06-1855-3912/+4074
| |
* | EDSP doc: some typo and wording fixesDavid Kalnischkies2014-06-181-8/+8
| | | | | | | | Git-Dch: Ignore
* | EDSP doc: (minor) consistently use 2 blank lines before headingsStefano Zacchiroli2014-06-181-0/+2
| | | | | | | | Git-Dch: Ignore
* | EDSP doc: clarify that Install/Remove packages are arch-qualifiedStefano Zacchiroli2014-06-181-4/+12
| |
* | do not call resolver twice on (dist-)upgradeDavid Kalnischkies2014-06-185-18/+32
| |
* | show our broken packages message in 'apt' solverDavid Kalnischkies2014-06-184-117/+134
| |
* | fix SubstVar to be usable as a replace_all methodDavid Kalnischkies2014-06-182-7/+49
| | | | | | | | | | | | | | The name suggests that it is supposed to substitute a variable with a value, but we tend to use it in a more liberal replace_all() fashion, but this breaks if either of the parameters is empty or more importantly if two "variable" occurrences follow each other directly.
* | don't send pkg from an unknown architecture via EDSPDavid Kalnischkies2014-06-181-0/+7
| | | | | | | | | | | | | | | | APT's cache can include packages from architectures dpkg has no knowledge about and can therefore not be installed for e.g. to allow easy lookups. There is no point in telling external solvers about them though and some of them might even be really talkative about ignoring them if we do.
* | use P_ instead of ngettext to compiling with --disable-nlsFredrik Fornwall2014-06-181-1/+1
| | | | | | | | Closes: 751857
* | add missing comma in SEE ALSO of apt-secure manpageKonstantin Manna2014-06-1810-17/+17
| | | | | | | | Closes: 748506
* | fix two german manpage spelling mistakesKonstantin Manna2014-06-181-2/+2
| | | | | | | | Closes: 751635
* | Merge remote-tracking branch 'mvo/debian/sid' into debian/sidMichael Vogt2014-06-181-1/+4
|\|
| * Tell the user if no updates are available after apt updateMichael Vogt2014-06-181-1/+4
| | | | | | | | | | | | Thanks to Jakub Wilk for the suggestion. Closes: #751388
* | Merge remote-tracking branch 'mvo/debian/sid' into debian/sidMichael Vogt2014-06-181-1/+1
|\|
| * test/integration/test-essential-force-loopbreak: fix on non-amd64 systemsMichael Vogt2014-06-121-1/+1
| |
* | Updated translation of german documentationChris Leick2014-06-171-60/+61
| |
* | Check for gtest's header before building.Michele Orrù2014-06-171-4/+11
| | | | | | | | | | Add AC_CHECK_HEADER directive for gtest, and report a fatal error message if not found.
* | fix test-apt-ftparchive-cachedb-lp1274466 and apt-internal-solver testsMichael Vogt2014-06-113-3/+5
| |
* | fix autopkgtest testsMichael Vogt2014-06-114-2/+5
|/
* really release 1.0.4Michael Vogt2014-06-1046-47/+47
|