summaryrefslogtreecommitdiff
path: root/doc/apt.conf.5.xml
AgeCommit message (Collapse)Author
2010-10-14* doc/apt.ent:David Kalnischkies
- move some strings into apt-verbatim.ent to avoid showing them in apt-doc.pot as they are untranslatable anyway (e.g. manpage references)
2010-07-11[ Martin Pitt ]David Kalnischkies
* debian/rules: - Make DEB_BUILD_OPTIONS=noopt actually work by passing the right CXXFLAGS. * apt-pkg/contrib/fileutl.{h,cc}: - Add support for reading of gzipped files with the new "ReadOnlyGzip" OpenMode. (Closes: #188407) - Link against zlib (in apt-pkg/makefile) and add zlib build dependency. - [ABI BREAK] This adds a new private member to FileFd, but its initialization is in the public header file. * configure.in: - Check for zlib library and headers. * apt-pkg/acquire-item.cc, apt-pkg/deb/debindexfile.cc, apt-pkg/deb/debrecords.cc, apt-pkg/deb/debsrcrecords.h, cmdline/apt-cache.cc: - Open Packages, Sources, and Translations indexes in "ReadOnlyGzip" mode. * apt-pkg/deb/debindexfile.cc: - If we do not find uncompressed package/source/translation indexes, look for gzip compressed ones. * apt-pkg/acquire-item.cc: - If the Acquire::GzipIndexes option is true and we download a gzipped index file, keep it as it is (and rename to .gz) instead of uncompressing it. * doc/apt.conf.5.xml: - Document the new Acquire::GzipIndexes option. * doc/po/apt-doc.pot, doc/po/de.po: - German translation of new Acquire::GzipIndexes option. * Add test/test-indexes.sh: - Test behaviour of index retrieval and usage, in particular with uncompressed and gzip compressed indexes. * methods/gzip.cc: With FileFd now being able to read gzipped files, there is no need for the gzip method any more to spawn an external gzip process. Rewrite it to use FileFd directly, which makes the code a lot simpler, and also using less memory and overhead.
2010-07-09* doc/apt.conf.5.xml:David Kalnischkies
- add and document APT::Cache-{Start,Grow,Limit} options for mmap control
2010-06-26* apt-pkg/contrib/fileutl.cc:David Kalnischkies
- show notice about ignored file instead of being always silent - add a Dir::Ignore-Files-Silently list option to control the notice *
2010-06-11* doc/apt.conf.5.xml:martin@piware.de
- Document the new Acquire::GzipIndexes option.
2010-06-09rename the options, document them and reorder the changelog a bitDavid Kalnischkies
2010-05-13* doc/apt.entDavid Kalnischkies
- add entities for the current oldstable/stable/testing codenames * doc/sources.list.5.xml: - use stable-codename instead of stable in the examples (Closes: #531492) * doc/apt_preferences.5.xml: - adapt some examples here to use current codenames as well
2010-01-16Fix the newly introduced method GetListOfFilesInDir to not accept everyDavid Kalnischkies
file if no extension is enforced (= restore old behaviour). (Closes: #565213) This commit includes also: * apt-pkg/policy.cc: - accept also partfiles with "pref" file extension as valid * apt-pkg/contrib/configuration.cc: - accept also partfiles with "conf" file extension as valid * doc/apt.conf.5.xml: - reorder description and split out syntax - add partfile name convention (Closes: #558348) * doc/apt_preferences.conf.5.xml: - describe partfile name convention also here And a lovely test application of course.
2010-01-02fix a typo in the apt.conf manpage spotted by lintianDavid Kalnischkies
W: apt: spelling-error-in-manpage usr/share/man/man5/apt.conf.5.gz enviroment environment
2010-01-02add configuration PDiffs::Limit-options (FileLimit and SizeLimit) toDavid Kalnischkies
not download too many or too big patches (Closes: #554349)
2010-01-01Chris Leick spot & fix various typos in all manpagesDavid Kalnischkies
2009-11-26[BREAK] add possibility to download and use multiplyDavid Kalnischkies
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-11-25add https options which default to the ones from http for the httpsDavid Kalnischkies
method as this is more sane than using only the http options without a possibility to override these for https.
2009-11-25add config setting for User-Agent in http and https to the Acquire group,David Kalnischkies
thanks Timothy J. Miller! (Closes: #355782)
2009-10-29correct various errors, typos and oddities in the manpagesDavid Kalnischkies
Patch by Chris Leick which closes his on bug. Thanks! * doc/ various manpages: - correct various errors, typos and oddities (Closes: #552535) * doc/apt-secure.8.xml: - replace literal with emphasis tags in Archive configuration
2009-10-19add more description to the manpage for the Immediate-Configuration andDavid Kalnischkies
change another message to be also translatable.
2009-10-14merge Julians changes from lp:~mvo/apt/debian-sidDavid Kalnischkies
2009-10-01improve the documentation and errormessages regarding a failingDavid Kalnischkies
immediate configuration as the old message was quite a bit scare and uninformative.
2009-09-28doc/apt.conf.5.xml: Deprecate #include, we have apt.conf.d nowadays which ↵Julian Andres Klode
should be sufficient.
2009-09-26doc/apt.conf.5.xml: Restrict option names to alphanumerical characters and ↵Julian Andres Klode
"/-:._+".
2009-09-26doc/apt.conf.5.xml: Start deprecating stuff.Julian Andres Klode
- Deprecate unquoted values, string concatenation and explain what should not be written inside a value (quotes,backslash).
2009-09-25fix same typos in debian/changelog and doc/apt.conf.5.xmlDavid Kalnischkies
2009-09-24try to be cristal clear about the usage of :: and {} (Closes: #503481)David Kalnischkies
See the bugreport (and merged ones) for discussion details which lead to these additions to the introduction of the apt.conf manpage.
2009-09-24document the Acquire::http::Dl-Limit option in the manpageDavid Kalnischkies
2009-09-18cleanup commit for trigger processing:David Kalnischkies
- remove the DPkg::NoConfTriggers - absolutely useless as we need TriggersPending already so we can use --no-triggers. - remove the Immediate-option from the example, it doesn't help much. - UnpackCritical uses DepUnPackPre with a D (on simple letter...) - the "smart" optimisation to skip A was not so smart - revert.
2009-09-15Add even more config options and try to handle configuration problemsDavid Kalnischkies
arising if we upgrade essential or predependencies which need to be configured before even unpacking packages depending on them.
2009-09-13add and document experimental options to make aggressiveDavid Kalnischkies
use of dpkg's trigger and configuration handling (Closes: #473461) Add NoTriggers option to add --no-triggers to all dpkg calls, NoConfiguration to prevent apt from trying to configure packages - dpkg should handle this in the last ConfigurePending call. This options are for now deactivated as they require more testing in real world situations, but the plan is to enable them in the near future if anything works well.
2009-09-08doc/apt.ent: move the description of files to globally usable entitiesDavid Kalnischkies
2009-09-08Rework the CompressionTypes system by adding an Order subgroup toDavid Kalnischkies
simplify customisation of the order and improve the documentation about this setting group.
2009-08-28merge with my po4a branch & update both pot'sDavid Kalnischkies
Thanks again for the initial patch from KURASAWA Nozomu and for the improvements and cleanups done by Nicolas François to get po4a up and running for apt man page translations!
2009-08-27merged from lp:~donkult/apt/sidMichael Vogt
2009-08-26[ Nicolas François ]David Kalnischkies
* doc/*.?.xml (manpages): - add contrib to author tags and also add refmiscinfo to fix warnings
2009-08-25"backport" the APT::Configuration class to apt-sidDavid Kalnischkies
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.
2009-08-19merged from the jackyf-devel branchMichael Vogt
2009-08-12Add a Acquire::CompressionTypes config variable from there theDavid Kalnischkies
acquire-items choose which compression file they should (try first to) download to easily add new or change the order of the compression types. And because it is easy now we directly add builtin lzma support. The compression ratio is better than bzip2 but we prefer the later for now as no (official) mirror uses lzma, so this would only generate useless hits on the servers. Maybe sometime in the future lzma will be the default... [apt-pkg/acquire-item.cc] - use configsettings for dynamic compression type use and order. Based on a patch by Jyrki Muukkonen, thanks! (LP: #71746) [apt-pkg/init.cc] - add default configuration for compression types and add lzma support. Order is now bzip2, lzma, gzip, none (Closes: #510526) [ftparchive/writer.cc] - add lzma support also here, patch for this (and inspiration for the one above) by Robert Millan, thanks!
2009-08-08[doc/apt.conf.5.xml] mention the apt.conf.d dirDavid Kalnischkies
Patch from Vincent McIntyre, thanks! (Closes: #520831)
2009-07-22merged from the mvo branchMichael Vogt
2009-07-22* doc/apt.conf.5.xml:Michael Vogt
- merged patch from Aurélien Couderc to improve the text (thanks!)
2009-06-29* add Debug::pkgDepCache::Marker with more detailed debug output Michael Vogt
* add Debug::pkgProblemResolver::ShowScores and make the scores adjustable
2009-06-29* add depth information to the debug output and show what dependsMichael Vogt
type triggers a autoinst (closes: #458389) * add debug::pkgDepCache::Marker with more detailed debug output (closes: #87520)
2009-05-07[apt-pkg] allow also codenames for specifying a releaseDavid Kalnischkies
* MatchType::Release checks first for archive than for codename equality * new n= option in apt_preference to be able to pin based on a codeName
2008-12-15Make apt proxy options have the highest priority, unified proxy determining ↵Eugene V. Lyubimkin
code.
2008-12-10apt.conf: mentioned '/* ... */'-comments.Eugene V. Lyubimkin
2008-12-06Mentioned 'APT::Periodic' and 'APT::Archives' groups of options.Eugene V. Lyubimkin
2008-12-06Applied patch from Daniel Burrows to document 'Debug' group of options.Eugene V. Lyubimkin
2008-12-06Documented briefly 'APT::https' group of options.Eugene V. Lyubimkin
2008-11-05* Fix typos:Michael Vogt
- apt-pkg/depcache.cc * Fix compilation warnings: - apt-pkg/acquire.cc - apt-pkg/versionmatch.cc * Compilation fixes and portability improvement for compiling APT against non-GNU libc (thanks to Martin Koeppe, closes: #392063): - buildlib/apti18n.h.in: + textdomain() and bindtextdomain() must not be visible when --disable-nls - buildlib/inttypes.h.in: undefine standard int*_t types - Append INTLLIBS to SLIBS: + cmdline/makefile + ftparchive/makefile + methods/makefile * doc/apt.conf.5.xml: - clarify whether configuration items of apt.conf are case-sensitive (thanks to Vincent McIntyre, closes: #345901)
2008-11-02Documented 'Acquire::PDiffs' in apt.conf manpage.Eugene V. Lyubimkin
2008-11-02Documented 'APT::Default-Release' in apt.conf.Eugene V. Lyubimkin
2008-10-11Clarify whether configuration items of apt.conf are case-sensitiveLuca Bruno