summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2014-01-22releasing package apt version 0.9.14.3~exp4Michael Vogt10-415/+460
2014-01-21Merge remote-tracking branch 'upstream/debian/experimental-no-abi-break' ↵Michael Vogt10-593/+1058
into feature/source-deb822 Conflicts: test/integration/test-apt-sources-deb822
2014-01-20add support for multipl types in one lineMichael Vogt1-4/+4
2014-01-20add support for multiple URIs in deb822 style sources.listMichael Vogt1-2/+2
2014-01-20add support for Enabled: no in deb822 sources.listMichael Vogt1-2/+3
2014-01-20add Description tag for deb822 sourcesMichael Vogt1-0/+4
2014-01-18releasing package apt version 0.9.14.3~exp30.9.14.3.exp3Michael Vogt10-593/+1058
2014-01-18Merge remote-tracking branch 'mvo/feature/source-deb822' into ↵Michael Vogt1-5/+5
debian/experimental-no-abi-break
2014-01-18rename "Suite/Section" to pluralMichael Vogt1-5/+5
2014-01-18Merge remote-tracking branch 'mvo/feature/source-deb822' into ↵Michael Vogt1-2/+2
debian/experimental-no-abi-break
2014-01-17implement suggestion by donkult (thanks!)Michael Vogt1-2/+2
2014-01-16merged mvo/feature/deb822Michael Vogt1-17/+34
2014-01-16rename URL to Uri in deb822-sourcesMichael Vogt1-2/+2
2014-01-16rename "distribution" in sources.list to "suite"Michael Vogt1-18/+20
2014-01-06document deb822 style sources.listMichael Vogt1-1/+16
2014-01-05prepare 0.9.14.3~exp10.9.14.3.exp1Michael Vogt2-2/+2
2013-12-29prepare release0.9.14.2Michael Vogt10-20/+74
2013-12-21vendor/getinfo:Michael Vogt1-1/+1
* vendor/getinfo: - fix ubuntu-codename
2013-12-12releasing package apt version 0.9.14.1Michael Vogt2-3/+3
2013-12-07really release 0.9.140.9.14Michael Vogt10-5977/+6909
2013-12-06fix build failure with the new apt-vendors stuffMichael Vogt1-1/+1
2013-12-05* document Dpkg::Progress-Fancy (closes: 726169), thanks to James McCoyMichael Vogt1-1/+1
2013-11-30add a vendor specific file to have configurable entitiesDavid Kalnischkies24-164/+194
manpages sometimes refer to distro-specific things like the name of the package providing the achive-keyring. Having a central place to configure this helps in having it consistent in the manpages and allows to load this info from other places in the buildsystem as well later.
2013-11-30introduce a vendor system to change sources.listDavid Kalnischkies3-14/+10
Many derivatives make quiet a few simple changes to apt introducing silly diffs just to change examples and co making it harder for them to update apt and harder for us to merge real changes back. First stop: doc/examples/sources.list
2013-10-25improve documentation for Acquire::http::Proxy-Auto-Detect (thanks to ↵Michael Vogt1-4/+10
Francesco Poli)
2013-10-22add Acquire::http::Proxy-Auto-Detect to the apt.conf.5 manpage (closes: 726597)Michael Vogt2-0/+14
2013-10-08Merge remote-tracking branch 'mvo/feature/upgrade-with-new' into debian/sidMichael Vogt1-0/+12
2013-10-01rename "--dpkg-progress" to "--show-progress" and document it in apt-get.8Michael Vogt1-1/+9
2013-08-28add man-page, improve option, use --with-new-pkgs as the flagMichael Vogt1-0/+12
2013-08-16allow Pre-Install-Pkgs hooks to get info over an FD != stdinDavid Kalnischkies1-2/+11
This adds ::InfoFD option alongside the ::Version one to request sending the information to the specified FD, by default it is STDIN as it was the case before. The environment variable APT_HOOK_INFO_FD contains the FD the data is on as a confirmation that the APT version used understood the request. Allowing the hook to choose the FD is needed/helpful e.g. for shellscripts which have a hard time accessing FDs above 9 (as >= 10 are usually used internally by them) Closes: #671728
2013-08-15merge patch from Daniel Hartwig to Clarify units of Acquire::http::Dl-Limit ↵Michael Vogt1-4/+6
(closes: #705445) Conflicts: debian/changelog
2013-07-27run "doxygen -u" to update doxygen configDavid Kalnischkies1-146/+522
Git-Dch: Ignore
2013-07-11implement arch+= and arch-= for sources.listDavid Kalnischkies1-1/+5
Default is to acquire all architectures from APT::Architectures which can be changed by arch=, but this isn't very flexible if you want "mostly" the default as you have to hardcode the architectures then, so arch-= and arch+= can be used to add/remove architectures from the default set. On a machine with 'amd64' and 'i386' configured the lines: deb [arch+=armel] http://example.org/debian wheezy rocks deb [arch-=amd64] http://example.org/debian jessie rocks will result in the download of: wheezy Packages for 'amd64', 'i386' and 'armel' jessie Packages for 'i386'
2013-07-11Version 3 for DPkg::Pre-Install-Pkgs with MultiArch infoDavid Kalnischkies1-4/+10
Adds on top of Version 2 to all displayed version numbers the architecture as well as the MultiArch flag for consumption by the hooks. Most of the time the architecture will be the same for both versions displayed, but packages might change from "all" to "any" (or back) between versions so we can't display the architecture for packages. Pseudo-Format for Version 3: <name> <version> <arch> <m-a-flag> <compare> <version> <arch> <m-a-flag> Examples: stuff - - none < 1 amd64 none **CONFIGURE** libsame 1 i386 same < 2 i386 same **CONFIGURE** stuff 2 i386 none > 1 i386 none **CONFIGURE** libsame 2 i386 same > - - none **REMOVE** toolkit 1 all foreign > - - none **REMOVE** Closes: #712116
2013-07-11* Fix up two things in debian/apt.auto-removal.sh:Adam Conrad1-1/+1
- Use exact matches with $-terminated regexes, so we don't get confusion between similarly-named kernel flavours. - Keep linux-backports-modules in sync with installed kernels. Conflicts: configure.in debian/changelog doc/apt-verbatim.ent
2013-07-02Merge remote-tracking branch 'mvo/bugfix/bts-712433' into debian/sidMichael Vogt1-0/+8
2013-06-22Improve the apt-cdrom output when no CD-ROM can be auto-detectedMichael Vogt1-0/+8
(closes: #712433)
2013-06-20fix syntax error in the configure-indexDavid Kalnischkies1-1/+1
The file isn't supposed to be a valid config file, but it should show valid syntax non-the-less. Git-Dch: Ignore
2013-06-13fix file location for configure-index.gz in apt.conf(5)David Kalnischkies10-1465/+1488
Closes: #711921
2013-06-09stop building l10n if strings are unchangedDavid Kalnischkies1-1/+1
The buildsystem tried to build l10n for test applications which never produced the output it expected causing it to try building it all the time.
2013-06-09build the en manpages in subdirectory doc/enDavid Kalnischkies2-53/+57
Building manpages becames more consistent this way and it is simpler to ignore build artefacts, too.
2013-05-08refresh translationsMichael Vogt3-196/+97
2013-04-09Complete translationbubulle@debian.org1-97/+196
2013-04-09Reformat PO filebubulle@debian.org1-1/+1
2013-04-09Fix typobubulle@debian.org1-1/+1
2013-04-08releasing version 0.9.7.9~exp3Michael Vogt2-2/+2
2013-04-03releasing version 0.9.7.9~exp2Michael Vogt2-3/+3
2013-04-02merged lp:~mvo/apt/fix-inrelease5Michael Vogt10-1669/+2044
2013-03-25* doc/apt.conf.5.xml:Michael Vogt1-0/+12
- document Acquire::ForceIPv{4,6}
2013-03-22releasing version 0.9.7.9~exp1Michael Vogt1-1/+1