summaryrefslogtreecommitdiff
path: root/apt-pkg/aptconfiguration.h
AgeCommit message (Collapse)AuthorFilesLines
2014-03-13warning: type qualifiers ignored on function return type [-Wignored-qualifiers]David Kalnischkies1-2/+2
Reported-By: gcc -Wignored-qualifiers Git-Dch: Ignore
2014-03-13support DEB_BUILD_PROFILES and -P for build profilesDavid Kalnischkies1-0/+5
Inspired by the rest of the patch in 661537, but abstract the parsing of various ways of setting the build profiles more so it can potentially be reused and all apt parts have the same behaviour. Especially config options, cmdline options and environment will not be combined as proposed as this isn't APTs usual behaviour and dpkg doesn't do it either, so one overrides the other as it normally does.
2014-02-22Fix typos in documentation (codespell)Michael Vogt1-5/+5
2012-09-04apt-pkg/aptconfiguration.h: fix compiler errorMichael Vogt1-1/+1
2012-09-03* apt-pkg/cdrom.cc:David Kalnischkies1-0/+8
- copy only configured translation files from a CD-ROM and not all available translation files preventing new installs with d-i from being initialized with all translations (Closes: #678227) - handle Components in the reduction for the source.list as multi-arch CDs otherwise create duplicated source entries (e.g. "wheezy main main")
2011-08-11fix some cppcheck: (warning) Member variable is not initialized in the ↵David Kalnischkies1-1/+2
constructor.
2011-07-13apt-pkg/aptconfiguration.h: fix copy/paste error in getCompressionTypes() ↵Michael Vogt1-1/+1
description
2011-02-27support every compression we have a compressor configuredDavid Kalnischkies1-0/+3
2011-02-27 - load the supported compressors from configurationDavid Kalnischkies1-0/+26
- support adding new compressors by configuration
2010-02-14Add support for the LANGUAGE environment variableDavid Kalnischkies1-1/+1
2009-12-23merge Goswin Brederlow "support download of index files for different archs"David Kalnischkies1-0/+16
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).
2009-11-26[BREAK] add possibility to download and use multiplyDavid Kalnischkies1-0/+27
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.
2009-08-25"backport" the APT::Configuration class to apt-sidDavid Kalnischkies1-0/+46
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.