Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | prepare 0.9.14.3~exp1 | Michael Vogt | 2014-01-05 | 47 | -1381/+1814 |
| | |||||
* | prepare 0.9.14.3~exp1 | Michael Vogt | 2014-01-05 | 1 | -0/+13 |
| | |||||
* | Merge remote-tracking branch 'mvo/feature/source-deb822' into ↵ | Michael Vogt | 2014-01-05 | 6 | -13/+244 |
|\ | | | | | | | debian/experimental-no-abi-break | ||||
| * | improve error message | Michael Vogt | 2014-01-04 | 3 | -21/+45 |
| | | |||||
| * | improve tests | Michael Vogt | 2014-01-04 | 3 | -8/+29 |
| | | |||||
| * | Merge branch 'debian/sid' into feature/source-deb822 | Michael Vogt | 2014-01-04 | 57 | -932/+1045 |
| |\ | |||||
| * \ | Merge branch 'debian/sid' into feature/source-deb822 | Michael Vogt | 2014-01-04 | 80 | -3517/+4368 |
| |\ \ | |||||
| * \ \ | Merge remote-tracking branch 'origin/feature/source-deb822' into ↵ | Michael Vogt | 2013-12-10 | 0 | -0/+0 |
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | feature/source-deb822 Conflicts: apt-pkg/sourcelist.cc | ||||
| | * | | | fix section adding | Michael Vogt | 2013-12-02 | 2 | -1/+20 |
| | | | | | |||||
| | * | | | add unittest for new sourceslist parser as well | Michael Vogt | 2013-12-02 | 2 | -0/+58 |
| | | | | | |||||
| | * | | | first version with test | Michael Vogt | 2013-12-02 | 2 | -6/+85 |
| | | | | | |||||
| * | | | | Merge remote-tracking branch 'upstream/debian/sid' into feature/source-deb822 | Michael Vogt | 2013-12-10 | 65 | -44654/+48052 |
| |\ \ \ \ | |||||
| * \ \ \ \ | Merge remote-tracking branch 'origin/feature/deb-src-bts731102' into ↵ | Michael Vogt | 2013-12-09 | 1 | -0/+60 |
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | feature/source-deb822 | ||||
| * | | | | | | suppoer $(ARCH) in deb822 sources.list as well | Michael Vogt | 2013-12-09 | 1 | -2/+6 |
| | | | | | | | |||||
| * | | | | | | add APT::Sources::Use-Deb822 to allow disabling the deb822 parser | Michael Vogt | 2013-12-09 | 1 | -8/+13 |
| | | | | | | | |||||
| * | | | | | | more refactor | Michael Vogt | 2013-12-09 | 2 | -68/+69 |
| | | | | | | | |||||
| * | | | | | | refactor deb822 reading into its own function | Michael Vogt | 2013-12-09 | 2 | -17/+37 |
| | | | | | | | |||||
| * | | | | | | fix section adding | Michael Vogt | 2013-12-05 | 2 | -1/+20 |
| | | | | | | | |||||
| * | | | | | | add unittest for new sourceslist parser as well | Michael Vogt | 2013-12-05 | 2 | -0/+58 |
| | | | | | | | |||||
| * | | | | | | first version with test | Michael Vogt | 2013-12-05 | 2 | -6/+85 |
| | | | | | | | |||||
* | | | | | | | Merge remote-tracking branch 'donkult/feature/clientmergepdiffs' into ↵ | Michael Vogt | 2014-01-05 | 5 | -64/+480 |
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | | | | | | | | | | debian/experimental-no-abi-break | ||||
| * | | | | | | implement POC client-side merging of pdiffs via apt-file | David Kalnischkies | 2013-12-13 | 4 | -56/+470 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The idea of pdiffs is to avoid downloading the hole file by patching the existing index. This works very well, but becomes slow if a lot of patches needs to be applied to reconstruct an up-to-date index and in recent years more and more dinstall (or similar) runs are executed creating more and more pdiffs in the same amount of time, so pdiffs became less useful. The solution is simple: Reduce the amount of patches (which are very small) which need to be applied on top of the index we have available (which is usually pretty big). This can be done in two ways: Either merge the patches on the server-side so that the client has to download only one patch or the patches are all downloaded and merged on the client-side. The first needs a client who is doing one step at a time who can also skip patches if it needs (APT supports this for a long time now). The later is implemented by this commit, but depends on the server NOT merging the patches and the patches being in a strict order in which no patch is skipped. This is traditionally the case for dak, but other repository creators support merging – e.g. reprepro (which helpfully adds a flag indicating that the patches are merged). To support both or even mixes a client needs more information which isn't available for now. This POC uses the external diffindex-rred included in apt-file to do the heavy lifting of merging & applying all patches in one pass, hence to test this feature apt-file needs to be installed. | ||||
| * | | | | | | allow ':' in GetListOfFilesInDir | David Kalnischkies | 2013-12-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | run-parts doesn't allow this char in valid filenames, but we tend to have files with this character in e.g. /var/lib/apt/lists/ Git-Dch: Ignore | ||||
| * | | | | | | query an empty pkgAcqIndexDiffs if index is up-to-date | David Kalnischkies | 2013-12-13 | 1 | -7/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous code already did this, this is just being a hell of a lot more obvious, so that it isn't that easy to break in the future. Git-Dch: Ignore | ||||
* | | | | | | | l10n: vi.po (617t): Update translation up to v0.9.14.2 | Trần Ngọc Quân | 2014-01-01 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Michael Vogt <mvo@debian.org> | ||||
* | | | | | | | l10n: vi.po(617t): Update Vietnamese translation | Trần Ngọc Quân | 2014-01-01 | 1 | -126/+174 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Trần Ngọc Quân <vnwildman@gmail.com> | ||||
* | | | | | | | prepare release | Michael Vogt | 2013-12-29 | 55 | -800/+852 |
| | | | | | | | |||||
* | | | | | | | vendor/ubuntu/sources.list.in: whitespace fix | Michael Vogt | 2013-12-29 | 1 | -2/+2 |
| | | | | | | | |||||
* | | | | | | | update changelog | Michael Vogt | 2013-12-29 | 1 | -3/+18 |
| | | | | | | | |||||
* | | | | | | | Merge remote-tracking branch 'mvo/debian/sid' into debian/sid | Michael Vogt | 2013-12-29 | 23 | -162/+225 |
|\ \ \ \ \ \ \ | | |_|_|_|_|/ | |/| | | | | | |||||
| * | | | | | | add missing vector include | Michael Vogt | 2013-12-28 | 1 | -0/+1 |
| | | | | | | | |||||
| * | | | | | | Merge branch 'debian/sid' into bugfix/bts731738-fancy-progess | Michael Vogt | 2013-12-28 | 78 | -3497/+4164 |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: apt-pkg/install-progress.cc | ||||
| | * | | | | | | fix APTWEBSERVERBINDIR default | Michael Vogt | 2013-12-27 | 2 | -2/+2 |
| | | | | | | | | |||||
| | * | | | | | | add make -C test/interactive-helper/ to .travis.yml | Michael Vogt | 2013-12-27 | 1 | -1/+1 |
| | | | | | | | | |||||
| | * | | | | | | Merge branch 'feature/tests-on-installed' into debian/sid | Michael Vogt | 2013-12-27 | 2 | -7/+27 |
| | |\ \ \ \ \ \ | |||||
| | | * | | | | | | run autopkgtest against the installed apt | Michael Vogt | 2013-12-13 | 2 | -7/+27 |
| | | | | | | | | | |||||
| | * | | | | | | | Merge branch 'feature/test-apt-key-net-update' into debian/sid | Michael Vogt | 2013-12-27 | 8 | -103/+39 |
| | |\ \ \ \ \ \ \ | |||||
| | | * | | | | | | | fix apt-key net-update test to use the buildin webserver | Michael Vogt | 2013-12-19 | 8 | -110/+25 |
| | | | | | | | | | | |||||
| | | * | | | | | | | make apt-key net-update actually testable | Michael Vogt | 2013-12-13 | 2 | -6/+27 |
| | | |/ / / / / / | |||||
| | * | | | | | | | Merge branch 'feature/policy-parser-bts732746' into debian/sid | Michael Vogt | 2013-12-27 | 3 | -2/+45 |
| | |\ \ \ \ \ \ \ | |||||
| | | * | | | | | | | make /etc/apt/preferences parser deal with comment only sections | Michael Vogt | 2013-12-21 | 3 | -2/+45 |
| | | |/ / / / / / | |||||
| | * | | | | | | | add integration test | Michael Vogt | 2013-12-24 | 1 | -0/+18 |
| | | | | | | | | | |||||
| | * | | | | | | | add basic tests for GetTempDir() | Michael Vogt | 2013-12-23 | 2 | -1/+14 |
| | | | | | | | | | |||||
| | * | | | | | | | factor GetTempDir out | Michael Vogt | 2013-12-22 | 5 | -27/+28 |
| | | | | | | | | | |||||
| * | | | | | | | | Merge remote-tracking branch 'origin/bugfix/bts731738-fancy-progess' into ↵ | Michael Vogt | 2013-12-28 | 1 | -2/+0 |
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bugfix/bts731738-fancy-progess Conflicts: apt-pkg/install-progress.cc | ||||
| | * | | | | | | | | first proof-of-concept for a fix for #731738 | Michael Vogt | 2013-12-22 | 3 | -4/+11 |
| | | |/ / / / / / | | |/| | | | | | | |||||
| * | | | | | | | | properly handle SIGWINCH in PackageManagerFancy again | Michael Vogt | 2013-12-28 | 2 | -26/+51 |
| | | | | | | | | | |||||
| * | | | | | | | | first proof-of-concept for a fix for #731738 | Michael Vogt | 2013-12-22 | 3 | -4/+11 |
| |/ / / / / / / | |||||
* | / / / / / / | remove debian entry from default steamos sources.list | Michael Vogt | 2013-12-27 | 1 | -2/+0 |
| |/ / / / / / |/| | | | | | | |||||
* | | | | | | | apt-pkg/contrib/gpgv.cc: use /tmp as fallback dir | Thomas Bechtold | 2013-12-22 | 1 | -1/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | if the directory given by $TMPDIR is not available, use /tmp as fallback. |