summaryrefslogtreecommitdiff
path: root/apt-pkg/aptconfiguration.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix typos reported by codespell & spellintianDavid Kalnischkies2018-08-291-5/+5
| | | | | | | | No user-visible change as it effects mostly code comments and not a single error message, manpage or similar. Reported-By: codespell & spellintian Gbp-Dch: Ignore
* Reformat and sort all includes with clang-formatJulian Andres Klode2017-07-121-1/+1
| | | | | | | | | | | | | This makes it easier to see which headers includes what. The changes were done by running git grep -l '#\s*include' \ | grep -E '.(cc|h)$' \ | xargs sed -i -E 's/(^\s*)#(\s*)include/\1#\2 include/' To modify all include lines by adding a space, and then running ./git-clang-format.sh.
* some CXXFLAGS housekeepingDavid Kalnischkies2015-08-101-1/+1
| | | | | | More warnings are always better. Git-Dch: Ignore
* add d-pointer, virtual destructors and de-inline de/constructorsDavid Kalnischkies2015-06-161-11/+10
| | | | | | | | To have a chance to keep the ABI for a while we need all three to team up. One of them missing and we might loose, so ensuring that they are available is a very tedious but needed task once in a while. Git-Dch: Ignore
* mark private methods as hiddenDavid Kalnischkies2014-09-301-3/+0
| | | | | | | | | | We are the only possible users of private methods, so we are also the only users who can potentially export them via using them in inline methods. The point is: We don't need these symbols exported if we don't do this, so marking them as hidden removes some methods from the API without breaking anything as nobody could have used them. Git-Dch: Ignore
* warning: type qualifiers ignored on function return type [-Wignored-qualifiers]David Kalnischkies2014-03-131-2/+2
| | | | | Reported-By: gcc -Wignored-qualifiers Git-Dch: Ignore
* support DEB_BUILD_PROFILES and -P for build profilesDavid Kalnischkies2014-03-131-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.
* Fix typos in documentation (codespell)Michael Vogt2014-02-221-5/+5
|
* apt-pkg/aptconfiguration.h: fix compiler errorMichael Vogt2012-09-041-1/+1
|
* * apt-pkg/cdrom.cc:David Kalnischkies2012-09-031-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")
* fix some cppcheck: (warning) Member variable is not initialized in the ↵David Kalnischkies2011-08-111-1/+2
| | | | constructor.
* apt-pkg/aptconfiguration.h: fix copy/paste error in getCompressionTypes() ↵Michael Vogt2011-07-131-1/+1
| | | | description
* support every compression we have a compressor configuredDavid Kalnischkies2011-02-271-0/+3
|
* - load the supported compressors from configurationDavid Kalnischkies2011-02-271-0/+26
| | | - support adding new compressors by configuration
* Add support for the LANGUAGE environment variableDavid Kalnischkies2010-02-141-1/+1
|
* merge Goswin Brederlow "support download of index files for different archs"David Kalnischkies2009-12-231-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).
* [BREAK] add possibility to download and use multiplyDavid Kalnischkies2009-11-261-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.
* "backport" the APT::Configuration class to apt-sidDavid Kalnischkies2009-08-251-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.