summaryrefslogtreecommitdiff
path: root/doc/examples
Commit message (Collapse)AuthorAgeFilesLines
...
* | merge with lp:~mvo/apt/debian-sid : move all my ABI break changesDavid Kalnischkies2009-12-101-0/+2
|\| | | | | | | to the "new" 0.7.26 version
| * * merge lp:~mvo/apt/netrc branch, this adds support for aMichael Vogt2009-12-101-0/+2
| |\ | | | | | | | | | | | | | | | | | | /etc/apt/auth.conf that can be used to store username/passwords in a "netrc" style file (with the extension that it supports "/" in a machine definition). Based on the maemo git branch. * apt-pkg/deb/dpkgpm.cc: - add "purge" to list of known actions
| | * add ftp support, basic debuggingMichael Vogt2009-10-161-0/+1
| | |
| | * port netrc support from maemonMichael Vogt2009-10-161-0/+1
| | |
* | | [BREAK] add possibility to download and use multiplyDavid Kalnischkies2009-11-261-0/+9
| | | | | | | | | | | | | | | | | | | | | 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.
* | | add https options which default to the ones from http for the httpsDavid Kalnischkies2009-11-251-9/+24
| | | | | | | | | | | | | | | method as this is more sane than using only the http options without a possibility to override these for https.
* | | add config setting for User-Agent in http and https to the Acquire group,David Kalnischkies2009-11-251-0/+3
|/ / | | | | | | thanks Timothy J. Miller! (Closes: #355782)
* | add and document experimental options to make aggressiveDavid Kalnischkies2009-09-131-4/+11
| | | | | | | | | | | | | | | | | | | | | | 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.
* | Rework the CompressionTypes system by adding an Order subgroup toDavid Kalnischkies2009-09-081-0/+9
|/ | | | | simplify customisation of the order and improve the documentation about this setting group.
* The 'not dead yet' releaseMichael Vogt2009-07-211-0/+1
|\ | | | | | | | | | | | | | | | | | | | | * add hook for MarkInstall and MarkDelete (closes: #470035) * add the various foldmarkers in apt-pkg & cmdline (no code change) * versions with a pin of -1 shouldn't be a candidate (Closes: #355237) * prefer mmap as memory allocator in MMap instead of a static char array which can (at least in theory) grow dynamic * eliminate (hopefully all) segfaults in pkgcachegen.cc and mmap.cc which can arise if cache doesn't fit into the mmap (Closes: #535218) * display warnings instead of errors if the parts dirs doesn't exist * honor the dpkg hold state in new Marker hooks (closes: #64141)
| * merge with lp:~mvo/apt/debian-sidDavid Kalnischkies2009-07-151-2/+6
| |\
| * | [apt-get] add possibility to hide the user simulation noteDavid Kalnischkies2009-07-071-0/+1
| | |
* | | * apt-pkg/acquire.cc:Michael Vogt2009-07-211-0/+52
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - make the max pipeline depth of the acquire queue configurable via Acquire::Max-Pipeline-Depth * apt-pkg/deb/dpkgpm.cc: - add Dpkg::UseIoNice boolean option to run dpkg with ionice -c3 (off by default) - send "dpkg-exec" message on the status fd when dpkg is run - provide DPkg::Chroot-Directory config option (useful for testing) - fix potential hang when in a backgroud process group * apt-pkg/algorithms.cc: - consider recommends when making the scores for the problem resolver * apt-pkg/acquire-worker.cc: - show error details of failed methods * apt-pkg/contrib/fileutl.cc: - if a process aborts with signal, show signal number * methods/http.cc: - ignore SIGPIPE, we deal with EPIPE from write in HttpMethod::ServerDie() (LP: #385144) * apt-pkg/indexcopy.cc: - support having CDs with no Packages file (just a Packages.gz) by not forcing a verification on non-existing files (LP: #255545) - remove the gettext from a string that consists entirely of variables (LP: #56792) * apt-pkg/cacheiterators.h: - add missing checks for Owner == 0 in end() * apt-pkg/indexrecords.cc: - fix some i18n issues * apt-pkg/contrib/strutl.h: - add new strprintf() function to make i18n strings easier - fix compiler warning * apt-pkg/deb/debsystem.cc: - make strings i18n able * fix problematic use of tolower() when calculating the version hash by using locale independant tolower_ascii() function. Thanks to M. Vefa Bicakci (LP: #80248) * build fixes for g++-4.4 * cmdline/apt-mark: - add "showauto" option to show automatically installed packages * document --install-recommends and --no-install-recommends (thanks to Dereck Wonnacott, LP: #126180) * Updated cron script to support backups by hardlinks and verbose levels. All features turned off by default. * Added more error handlings. Closes: #438803, #462734, #454989, * Refactored condition structure to make download and upgrade performed if only previous steps succeeded. Closes: #341970 * Documented all cron script related configuration items in configure-index. * apt-ftparchive might write corrupt Release files (LP: #46439) * Apply --important option to apt-cache depends (LP: #16947)
| * | * methods/https.cc:Michael Vogt2009-02-031-2/+4
| | | | | | | | | - add Acquire::https::AllowRedirect support
| * | merged from the debian-sid branchMichael Vogt2008-12-092-4/+4
| |\ \
| * | | make "apt-get build-dep" installed packages marked automaticMichael Vogt2008-08-061-0/+1
| | | | | | | | | | | | | | | | | | | | by default. This can be changed by setting the value of APT::Get::Build-Dep-Automatic to false (thanks to Aaron Haviland, closes: #44874, LP: #248268)
| * | | * add doc/examples/apt-https-method-example.cofMichael Vogt2008-07-251-0/+165
| | | | | | | | | | | | (thanks to Arnaud Ebalard, closes: #485964)
| * | | replaced cron.daily with new version and updated document accordinglyOsamu Aoki2008-05-051-0/+52
| | | |
* | | | Support /etc/apt/preferences.d, by adding ReadPinDir() (Closes: #535512)Julian Andres Klode2009-07-061-1/+2
|\ \ \ \ | | |_|/ | |/| |
* / | | configure-index: document Dir::Etc::SourceParts and some other optionsJulian Andres Klode2009-07-061-2/+5
|/ / / | | | | | | (Closes: #459605)
* | | * add Debug::pkgDepCache::Marker with more detailed debug output Michael Vogt2009-06-291-0/+1
| | | | | | | | | | | | * add Debug::pkgProblemResolver::ShowScores and make the scores adjustable
* | | * add depth information to the debug output and show what dependsMichael Vogt2009-06-291-0/+1
| | | | | | | | | | | | | | | type triggers a autoinst (closes: #458389) * add debug::pkgDepCache::Marker with more detailed debug output (closes: #87520)
* | | * apt-pkg/contrib/strutl.cc:Michael Vogt2009-04-091-2/+4
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - fix TimeToStr i18n (LP: #289807) * [ABI break] merge support for http redirects, thanks to Jeff Licquia and Anthony Towns * [ABI break] use int for the package IDs (thanks to Steve Cotton) * apt-pkg/pkgcache.cc: - do not run "dpkg --configure pkg" if pkg is in trigger-awaited state (LP: #322955) * methods/https.cc: - add Acquire::https::AllowRedirect support * Clarify the --help for 'purge' (LP: #243948) * cmdline/apt-get.cc - fix "apt-get source pkg" if there is a binary package and a source package of the same name but from different packages (LP: #330103) * cmdline/acqprogress.cc: - Call pkgAcquireStatus::Pulse even if quiet, so that we still get dlstatus messages on the status-fd (LP: #290234).
* | make "apt-get build-dep" installed packages marked automaticMichael Vogt2008-12-021-0/+1
| | | | | | | | | | by default. This can be changed by setting the value of APT::Get::Build-Dep-Automatic to false (thanks to Aaron Haviland, closes: #44874, LP: #248268)
* | Removed obsolete commented non-us deb-src entry, replaced with ↵Eugene V. Lyubimkin2008-11-261-1/+1
| | | | | | | | 'security.debian.org' one.
* | doc/examples/configure-index: 'linux-kernel' -> 'linux-image'.Eugene V. Lyubimkin2008-11-061-1/+1
| |
* | Removed obsolete header line from configure-index.Eugene V. Lyubimkin2008-11-061-1/+0
| |
* | Added APT::Get::AllowUnauthenticated to configure-index.Eugene V. Lyubimkin2008-11-021-0/+1
| |
* | Changed 'Install-Recommends' to 'true' in configure-index.Eugene V. Lyubimkin2008-11-021-1/+1
| |
* | * merge patch that enforces stricter https server certificateMichael Vogt2008-07-251-0/+165
|/ | | | | | | checking (thanks to Arnaud Ebalard, closes: #485960) * allow per-mirror specific https settings (thanks to Arnaud Ebalard, closes: #485965) * add doc/examples/apt-https-method-example.cof (thanks to Arnaud Ebalard, closes: #485964)
* Fix typos in manpagesbubulle@debian.org2008-02-191-3/+3
|
* * merged the apt--DoListUpdate branch, this provides a common interfaceMichael Vogt2008-01-041-0/+6
|\ | | | | | | for apt-get update like operations for the frontends and also provides hooks to run stuff in APT::Update::{Pre,Post}-Invoke
| * * doc/examples/configure-index:Michael Vogt2006-06-071-0/+6
| | | | | | | | | | | | - document the new features * apt-pkg/init.h, apt-pkg/makefile, methods/makefile: - we break the ABI, record this
* | * merged from dpkg-log branchMichael Vogt2007-08-031-1/+1
|\ \
| * | * doc/examples/configure-index:Michael Vogt2007-08-031-1/+1
| | | | | | | | | | | | | | | | | | | | | - updated Dir::Log::Terminal * apt-pkg/deb/dpkgpm.cc: - make the terminal log optional - rename Dir::Log::Name to Dir::Log::Terminal
* | | * apt-pkg/deb/dpkgpm.{cc,h}:Michael Vogt2007-08-031-0/+5
|\| | | | | | | | | | | | | | - merged dpkg-log branch, this lets you specify a Dir::Log::Terminal file to log dpkg output to ABI break
| * | apt-pkg/deb/dpkgpm.{cc,h}Michael Vogt2007-07-191-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - a bit cleanup - move the log date to the right place - write log to dir::log::name apt-pkg/init.cc: - init dir::log::name "/var/log/apt/term.log" debian/apt.dirs: - create /var/log/apt/ doc/examples/configure-index: - add new dir::log::name to the index
* | | * apt-pkg/depcache.cc:Michael Vogt2007-07-261-1/+1
| | | | | | | | | | | | | | | - support a list of sections for: APT::Install-Recommends-Sections APT::Never-MarkAuto-Sections
* | | * Fix example for Install-{Recommends,Suggests} options onOtavio Salvador2007-07-121-2/+2
|/ / | | | | | | configure-index example file. Thanks to Peter Eisentraut <peter_e@gmx.net> by the patch (closes: #432223)
* | * updated from http://people.ubuntu.com/~mvo/bzr/apt/auto-mark/Michael Vogt2007-05-021-0/+4
|\ \
| * | * cmdline/apt-get.cc:Michael Vogt2007-03-141-0/+1
| | | | | | | | | | | | - applied patch from Frode M. Døving to have APT::Get::HideAutoRemove
| * | * apt-pkg/depcache.cc:Michael Vogt2007-03-141-0/+2
| | | | | | | | | | | | - added APT::Never-MarkAuto-Section variable - that will consider dependencies of packages in this section manual
| * | * merged with the apt--mvo branchMichael Vogt2006-09-061-0/+1
| |\ \
* | \ \ * merged apt--curl-https branchMichael Vogt2006-12-191-0/+13
|\ \ \ \
| * | | | * methods/https.cc:Michael Vogt2006-12-191-0/+13
| | | | | | | | | | | | | | | | | | | | - implemented various cert verification options
* | | | | * merged with apt--debian-sidMichael Vogt2006-12-141-0/+4
|\ \ \ \ \
| * | | | | * merged from mainMichael Vogt2006-12-011-0/+4
| |\| | | |
| | * | | | * apt-pkg/deb/dpkgpm.cc: Michael Vogt2006-11-271-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - added "Dpkg::StopOnError" variable that controls if apt will abort on errors from dpkg
| | | | | |
| \ \ \ \ \
*-. \ \ \ \ \ * merged with unstable, prepared uploadMichael Vogt2006-10-022-2/+1
|\ \ \ \ \ \ \ | | |/ / / / / | |/| / / / / | | |/ / / /
| * | | | | * merged from mainlineMichael Vogt2006-09-301-0/+1
| |\| | | |