summaryrefslogtreecommitdiff
path: root/apt-pkg/aptconfiguration.cc
Commit message (Collapse)AuthorAgeFilesLines
* * apt-pkg/aptconfiguration.cc:David Kalnischkies2010-06-261-0/+4
| | | - show a deprecation notice for APT::Acquire::Translation
* * apt-pkg/aptconfiguration.cc:David Kalnischkies2010-05-281-1/+14
| | | - remove duplicate architectures in getArchitectures()
* rename ExplodeString to VectorizeStringDavid Kalnischkies2010-03-301-1/+1
|
* merge MultiArch-ABI. We don't support MultiArch yet (as most other tools),David Kalnischkies2010-03-181-0/+24
|\ | | | | | | | | but we support the usage of the new ABI so libapt users can start to prepare for MultiArch (Closes: #536029)
| * * aptconfiguration.cc:David Kalnischkies2010-02-151-6/+72
| | | | | | | | | | | | | | | | | | | | - include all existing Translation files in the Cache (Closes: 564137) Previously if APT was executed with a different LC_* all these invocations needed to rebuild the Cache as too many files were included or missing: Now the lists-directory is checked for Translation-files and all these included in getLanguages() regardless of the environment setting (after a "none" so APT will not use them for displaying information).
| * Add support for the LANGUAGE environment variableDavid Kalnischkies2010-02-141-32/+59
| |
| * [BREAK] merge MultiArch-ABI. We don't support MultiArch,David Kalnischkies2010-02-131-0/+25
| |\ | | | | | | | | | | | | | | | | | | | | | | | | but we support the usage of the new ABI so libapt users can start to prepare for MultiArch (Closes: #536029) MultiArch isn't ready for Primetime usage for now, but the branch has managed to be a NOP if used in SingleArch-mode so we can start to promote the use of the new MultiArchable API-extensions.
| | * merge Goswin Brederlow "support download of index files for different archs"David Kalnischkies2009-12-231-0/+25
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | patch which includes the following big changes: - Declare the unused [vendor] field in sources.list as option field, e.g. deb [arch=amd64,i386 lang=en_GB have=fun] http://example.org - When fetching index files download them for all APT::Architectures (overrideable with the options field above) - Allow all architectures of APT::Architectures to be in the Cache - Add the architecture to status and progress informations - Add b= (Binary architecture) to policy This commit doesn't incude the "pin-hack" as the Group structure will take care of this (and does it already to some extend).
* | fix memory leak in getLanguages() by closing the directory after checkingDavid Kalnischkies2010-03-031-0/+1
| |
* | fix crash when LANGUAGE is not setMichael Vogt2010-02-181-1/+2
| |
* | * aptconfiguration.cc:David Kalnischkies2010-02-181-6/+72
| | | | | | | | | | | | | | | | | | | | - include all existing Translation files in the Cache (Closes: 564137) Previously if APT was executed with a different LC_* all these invocations needed to rebuild the Cache as too many files were included or missing: Now the lists-directory is checked for Translation-files and all these will be included in getLanguages() regardless of the environment setting (after a "none" so APT will not use them for displaying information).
* | dd support for the LANGUAGE environment variableDavid Kalnischkies2010-02-181-32/+60
|/
* [BREAK] add possibility to download and use multiplyDavid Kalnischkies2009-11-261-0/+136
| | | | | | | Translation files, configurable with Acquire::Languages accessable with APT::Configuration::getLanguages() and as always with documentation in apt.conf. The commit also includes a very very simple testapp.
* Rework the CompressionTypes system by adding an Order subgroup toDavid Kalnischkies2009-09-081-22/+34
| | | | | simplify customisation of the order and improve the documentation about this setting group.
* "backport" the APT::Configuration class to apt-sidDavid Kalnischkies2009-08-251-0/+78
We can use it to simplify the internal code to operate with Acquire::CompressionTypes group. This also made it possible to set this setting with the -o flag.