Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge remote-tracking branch 'mvo/feature/source-deb822' into ↵ | Michael Vogt | 2014-01-18 | 2 | -5/+5 |
|\ | | | | | | | debian/experimental-no-abi-break | ||||
| * | rename "Suite/Section" to plural | Michael Vogt | 2014-01-18 | 2 | -5/+5 |
| | | |||||
* | | Merge remote-tracking branch 'mvo/feature/source-deb822' into ↵ | Michael Vogt | 2014-01-18 | 2 | -3/+3 |
|\| | | | | | | | debian/experimental-no-abi-break | ||||
| * | implement suggestion by donkult (thanks!) | Michael Vogt | 2014-01-17 | 2 | -3/+3 |
| | | |||||
* | | Merge remote-tracking branch 'mvo/debian/sid' into ↵ | Michael Vogt | 2014-01-18 | 2 | -4/+53 |
|\ \ | | | | | | | | | | debian/experimental-no-abi-break | ||||
| * | | add missing integration test for "apt list" | Michael Vogt | 2014-01-17 | 2 | -4/+53 |
| | | | |||||
* | | | merged mvo/feature/deb822 | Michael Vogt | 2014-01-16 | 2 | -20/+19 |
|\ \ \ | | |/ | |/| | |||||
| * | | update libapt test | Michael Vogt | 2014-01-16 | 1 | -4/+4 |
| | | | |||||
| * | | support multiple "Suite:" entries | Michael Vogt | 2014-01-16 | 1 | -0/+8 |
| | | | |||||
| * | | rename URL to Uri in deb822-sources | Michael Vogt | 2014-01-16 | 1 | -1/+1 |
| | | | |||||
| * | | rename "distribution" in sources.list to "suite" | Michael Vogt | 2014-01-16 | 1 | -2/+2 |
| | | | |||||
| * | | * refactor to have a new virtual ParseStanza | Michael Vogt | 2014-01-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | Have a similar ParseStanza() to the current ParseLine(). Rename the Architectures options in deb822 to make it more user friendly | ||||
| * | | remove "," in components again | Michael Vogt | 2014-01-16 | 1 | -11/+0 |
| | | | |||||
* | | | rework some testcases to not spit out text | David Kalnischkies | 2014-01-15 | 4 | -51/+77 |
| | | | | | | | | | | | | | | | | | | Rework also uncovers two FIXMEs Git-Dch: Ignore | ||||
* | | | integrate Anthonys rred with POC for client-side merge | David Kalnischkies | 2014-01-15 | 1 | -7/+16 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Providing the benefits of both without the downsides :) (ABI breaks or external dependencies) For this Anthonys rred is equipped with: - magic-filename-pickup of patches rather than explicit messages - use of FileFd instead of FILE* to get on-the-fly uncompress of the gzip compressed pdiff patches The acquire code in turn stops checking for apt-file's helper as our own rred is now clever enough for our needs. | ||||
* | | | actually register the tempfile removal atexit | David Kalnischkies | 2014-01-15 | 1 | -0/+1 |
| | | | | | | | | | | | | Git-Dch: Ignore | ||||
* | | | Merge remote-tracking branch 'mvo/feature/source-deb822' into ↵ | Michael Vogt | 2014-01-05 | 4 | -2/+149 |
|\| | | | | | | | | | | | debian/experimental-no-abi-break | ||||
| * | | improve error message | Michael Vogt | 2014-01-04 | 1 | -8/+22 |
| | | | |||||
| * | | improve tests | Michael Vogt | 2014-01-04 | 2 | -7/+27 |
| | | | |||||
| * | | Merge branch 'debian/sid' into feature/source-deb822 | Michael Vogt | 2014-01-04 | 14 | -87/+232 |
| |\| | |||||
| * | | Merge remote-tracking branch 'origin/feature/deb-src-bts731102' into ↵ | Michael Vogt | 2013-12-09 | 1 | -0/+60 |
| |\ \ | | | | | | | | | | | | | feature/source-deb822 | ||||
| * | | | fix section adding | Michael Vogt | 2013-12-05 | 1 | -0/+10 |
| | | | | |||||
| * | | | 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 | 1 | -0/+45 |
| | | | | |||||
* | | | | Merge remote-tracking branch 'donkult/feature/clientmergepdiffs' into ↵ | Michael Vogt | 2014-01-05 | 1 | -20/+127 |
|\ \ \ \ | |_|_|/ |/| | | | | | | | debian/experimental-no-abi-break | ||||
| * | | | implement POC client-side merging of pdiffs via apt-file | David Kalnischkies | 2013-12-13 | 1 | -20/+127 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | | | | fix APTWEBSERVERBINDIR default | Michael Vogt | 2013-12-27 | 1 | -1/+1 |
| | | | | |||||
* | | | | Merge branch 'feature/tests-on-installed' into debian/sid | Michael Vogt | 2013-12-27 | 1 | -4/+13 |
|\ \ \ \ | |||||
| * | | | | run autopkgtest against the installed apt | Michael Vogt | 2013-12-13 | 1 | -4/+13 |
| | | | | | |||||
* | | | | | Merge branch 'feature/test-apt-key-net-update' into debian/sid | Michael Vogt | 2013-12-27 | 7 | -97/+26 |
|\ \ \ \ \ | |||||
| * | | | | | fix apt-key net-update test to use the buildin webserver | Michael Vogt | 2013-12-19 | 7 | -109/+24 |
| | | | | | | |||||
| * | | | | | make apt-key net-update actually testable | Michael Vogt | 2013-12-13 | 1 | -0/+14 |
| |/ / / / | |||||
* | | | | | Merge branch 'feature/policy-parser-bts732746' into debian/sid | Michael Vogt | 2013-12-27 | 1 | -0/+32 |
|\ \ \ \ \ | |||||
| * | | | | | make /etc/apt/preferences parser deal with comment only sections | Michael Vogt | 2013-12-21 | 1 | -0/+32 |
| |/ / / / | |||||
* | | | | | add integration test | Michael Vogt | 2013-12-24 | 1 | -0/+18 |
| | | | | | |||||
* | | | | | add basic tests for GetTempDir() | Michael Vogt | 2013-12-23 | 1 | -0/+13 |
| |/ / / |/| | | | |||||
* | | | | Merge remote-tracking branch 'mvo/bugfix/conffile' into debian/sid | Michael Vogt | 2013-12-12 | 3 | -2/+64 |
|\ \ \ \ | |||||
| * | | | | Fix conffile prompt regression (LP: #1260297) | Michael Vogt | 2013-12-12 | 1 | -0/+43 |
| |/ / / | | | | | | | | | | | | | | | | | This fixes a regression in the conffile prompt for the progress-fd and adds a testcase to ensure this does not regress again. | ||||
| * | | | fix test/integration/test-apt-key-net-update | Michael Vogt | 2013-12-12 | 1 | -2/+6 |
| | | | | |||||
| * | | | clarify error message when apt-get source=ver fails, print a real error ↵ | Michael Vogt | 2013-12-12 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | message instead of "ignoring" | ||||
| * | | | fix test/integration/test-apt-key-net-update (code copy/DRY violation) | Michael Vogt | 2013-12-11 | 1 | -0/+15 |
| | | | | |||||
* | | | | improve error message | Michael Vogt | 2013-12-11 | 1 | -2/+2 |
|/ / / | |||||
* | | | improve error message for apt-get source pkg:arch{=ver,/release} | Michael Vogt | 2013-12-11 | 1 | -0/+10 |
| | | | |||||
* | | | add support for "apt-get source pkg:arch" | Michael Vogt | 2013-12-11 | 1 | -0/+60 |
| | | | |||||
* | | | user-requested version tag gets precedence in apt-get source -t dist ↵ | Michael Vogt | 2013-12-10 | 1 | -0/+5 |
| | | | | | | | | | | | | pkg=version requests | ||||
* | | | fix typo | Michael Vogt | 2013-12-10 | 1 | -2/+2 |
| | | | |||||
* | | | improve test for #731853 and comments | Michael Vogt | 2013-12-10 | 1 | -3/+5 |
| | | | |||||
* | | | if there is only deb-src pick higest version in deb-src release matching | Michael Vogt | 2013-12-10 | 1 | -2/+7 |
| | | | |||||
* | | | Merge remote-tracking branch 'mvo/feature/deb-src-bts731102' into debian/sid | Michael Vogt | 2013-12-10 | 1 | -0/+60 |
|\ \ \ | |/ / |/| / | |/ | |||||
| * | add test for aptget source for unavailable package | Michael Vogt | 2013-12-04 | 1 | -0/+5 |
| | |