summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Avoid yielding blank lines with APT::Cmd::use-format=trueAndreas Oberritter2014-09-023-3/+7
|
* Make Proxy-Auto-Detect check for each hostMichael Vogt2014-09-027-85/+178
| | | | | | | | | When doing Acquire::http{,s}::Proxy-Auto-Detect, run the auto-detect command for each host instead of only once. This should make using "proxy" from libproxy-tools feasible which can then be used for PAC style or other proxy configurations. Closes: #759264
* initialize iPolicyBrokenCount in DepCache::UpdateWarren He2014-08-291-1/+2
| | | | | | | | All other counters are correctly initialized here, expect this one. The practical effect is low as in apt we usually just do "!= 0" checks, but only correct counters are good counters. Closes: 758397
* Portuguese manpages translation updateAmérico Monteiro2014-08-291-431/+3
| | | | Closes: 759608
* The following command otherwise yields many blank lines:Andreas Oberritter2014-08-281-2/+1
| | | | | | | | apt list -o APT::Cmd::use-format=true -o APT::Cmd::format=\${Package} And even worse when adding "-o APT::Cmd::All-Versions=true". Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
* German program translation updateHolger Wansing2014-08-281-536/+578
| | | | Closes: 758837
* releasing 1.0.7Michael Vogt2014-08-2854-74637/+74474
|
* prepare 1.0.7Michael Vogt2014-08-271-0/+33
|
* support versioned provides as implemented by dpkgDavid Kalnischkies2014-08-262-2/+139
| | | | | | | | | | | | | | | | | APT supported versioned provides for a long while in an attempt to get it working with rpm. While this support is old, we can be relatively sure that it works as versioned provides are used internally to make Multi-Arch:foreign work. Previous versions of apt will print a warning indicating that the versioned provides is ignored, so that something which "Provides: foo (= 2)" doesn't provide anything. Note that dpkg does allow only a equals-relation in the provides line as anything else is deemed too complex. apt doesn't support anything else either and such a support would require potentially big changes. Closes: 758153
* add dpkg::source-options for dpkg-source invocationDavid Kalnischkies2014-08-261-16/+17
| | | | | | | | | | | dpkg-source can be told to enforce signature checks with --require-valid-signature, but while this isn't feasible as default for Debian itself at the moment, a local admin should be able to use it. This commit also fixes the size limit on the construction of the command being called for dpkg-source and dpkg-buildpackage. Closes: 757534
* Czech program translation updateMiroslav Kure2014-08-261-121/+147
| | | | Closes: 758208
* Turkish program translation updateMert Dirik2014-08-261-70/+111
| | | | Closes: 756710
* rewrite and extend new README fileDavid Kalnischkies2014-08-261-31/+175
| | | | | | | Reuse description from the package descriptions and add various subsection describing useful debug options and general information. Git-Dch: Ignore
* remove obsolete documentation bitsDavid Kalnischkies2014-08-262-248/+0
| | | | Git-Dch: Ignore
* ensure that all docs use all entities filesDavid Kalnischkies2014-08-2623-133/+75
| | | | | | | | | Not all are needed for all files at the moment, but the new docbook building hadn't available some of the entities it used as the files weren't correctly copied around in all cases and having the same across the bord makes working with all of them a little easier. Git-Dch: Ignore
* parse debian/tests/control for test dependenciesDavid Kalnischkies2014-08-262-1/+1
| | | | | | | | Our integration tests need some additional dependencies to run and function correctly, but while multiple places run them, there is no need to also specify the these dependencies in multiple places. Git-Dch: Ignore
* Fix debListParser to accept "no" as a value for the Multi-Arch fieldJulian Andres Klode2014-08-241-1/+1
| | | | | | Seems this was missed somehow. Closes: #759099
* doc/po/pt.po: updated, thanks to Américo MonteirMichael Vogt2014-07-291-206/+371
| | | | Closes: #756200
* doc/apt.8.xml: fix typo, thanks to Jakub WilkMichael Vogt2014-07-291-2/+2
| | | | Closes: #756056
* Fix SmartConfigure to ignore ordering of packages that are already validMichael Vogt2014-07-294-1/+2446
| | | | | | | | | | With the change of SmartConfigure() in git commit 42d51f the ordering code was trying to re-order dependencies, even when at this point in time this was not needed. Now it will first check all targets of the given dependency and only if there is not a good one try to reorder and unpack/configure as needed. Closes: LP: #1347721
* l10n: vi.po (636t): Update one new stringTrần Ngọc Quân2014-07-241-4/+4
| | | | Signed-off-by: Trần Ngọc Quân <vnwildman@gmail.com>
* apt-pkg/acquire-item.cc: make pkgAcqDiffIndex more uniformMichael Vogt2014-07-171-2/+2
|
* Use @builddeps@ in the debian/tests/control fileMichael Vogt2014-07-171-1/+1
|
* 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