Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-12-01 | generate apt-key script with vendor info about keys | David Kalnischkies | |
The apt-key script uses quiet a few keyring files for operation which are specific to the distribution it is build on and is hence one of the most patched parts – even if it is not that often used anymore now that a fragment directory for trusted.gpg exists. | |||
2013-12-01 | cherry-pick ubuntus (disabled) net-update fixes | David Kalnischkies | |
With the net-update command a special keyring can be downloaded and imported into apt, which must be signed by a master key. Its is currently disabled because of security problems with it – and the only known user before that was Ubuntu. | |||
2013-11-30 | use a substvar to set the archive-keyring in debian/control | David Kalnischkies | |
Adds a small helper to extract the small information bits we store in apt-vendor.ent and uses it in debian/rules to set apt:keyring as a substvar for debian/control populated with the &keyring-package; info | |||
2013-11-30 | add a vendor specific file to have configurable entities | David Kalnischkies | |
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-30 | introduce a vendor system to change sources.list | David Kalnischkies | |
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-11-30 | enable NOISE for build logs to enable analyse | David Kalnischkies | |
It was enabled for a (long) while in Ubuntu, but it shouldn't hurt to enable it in Debian as well – especially now that Debian has automatic analyses of the buildlogs which don't work that well without the 'noise' | |||
2013-11-30 | merge ubuntus apport reporting changes to reduce diff | David Kalnischkies | |
apport reporting is still disabled by default, but it is available in Debian/experimental at the moment and a diff is not a good idea anyway. | |||
2013-11-30 | tests: add a webserverconfig method to abstract config | David Kalnischkies | |
The URI to use to set a config option is a bit arcane to write/remember and checking if the setting was successful doubly so. Git-Dch: Ignore | |||
2013-11-30 | tests: rm pkgcache.bin in 719263 test | David Kalnischkies | |
As testcases are running really fast it can happen that files which are changed in reality are considered unchanged as the modify time isn't changed. What we could do is disable those caches by default, but some tests actually depend on those and deriving too much from the default by default (pun intended) is not a good idea for tests after all. Git-Dch: Ignore | |||
2013-11-30 | webserver: use pthreads to handle multiple clients | David Kalnischkies | |
Clients like browsers prefer to open many connections and keep them open for a while, so that pages with lot of subelements would take a while to load (if at all), by using threads as all servers do some way or another we can resolve this. libapt is not intended to be pthread-safe and stuff like the storage of the last return code doesn't make too much sense if multiple clients interact with us, but it is good enough for now and an other interesting (mis)use of libapt in general. Git-Dch: Ignore | |||
2013-11-30 | webserver: strip parameters from filename | David Kalnischkies | |
Again, not (currently) used by the tests itself, but in interactive usage of the webserver itself. Git-Dch: Ignore | |||
2013-11-30 | webserver: add directoryIndex support defaulting to index.html | David Kalnischkies | |
Git-Dch: Ignore | |||
2013-11-30 | webserver: implement ~user access to ~user/public_html/ | David Kalnischkies | |
pretty much useless for the testcases, but handy to test the webserver itself in 'real world' environments Git-Dch: Ignore | |||
2013-11-30 | tests: enhance https support in the testcases | David Kalnischkies | |
Git-Dch: Ignore | |||
2013-11-30 | webserver: spurious newline after data confuses curl | David Kalnischkies | |
Webserver wrongly sends an additional newline after the data which causes curl to believe that the next request on this socket has no header data and so includes all headers in the data output. Git-Dch: Ignore | |||
2013-11-30 | truncating /dev/null to zero is always successful | David Kalnischkies | |
Calling truncate on /dev/null can happen by the download methods if they are instructed to download a file to /dev/null (as testcases are only interested in the status code, but do not support HEAD requests yet) So just ignore truncate calls on the /dev/null file as it is always empty anyway, so truncating to zero isn't a problem. Git-Dch: Ignore | |||
2013-11-29 | releasing package apt version 0.9.13.10.9.13.1 | Michael Vogt | |
2013-11-29 | fix apport report writing (LP: #1254499) | Michael Vogt | |
2013-11-29 | reset terminal on error (closes: #730795) | Michael Vogt | |
2013-11-29 | update changelog | Michael Vogt | |
2013-11-29 | fix crash when SetCandidateRelease is used | Michael Vogt | |
2013-11-29 | update changelog | Michael Vogt | |
2013-11-29 | Merge remote-tracking branch 'mvo/debian/sid' into debian/sid | Michael Vogt | |
Conflicts: apt-private/private-cmndline.cc | |||
2013-11-29 | Merge branch 'feature/edit-sources' into debian/sid | Michael Vogt | |
2013-11-29 | add "APT::String::Endswith" and automatic adding of ".list" in apt edit-source | Michael Vogt | |
2013-11-29 | add support for "apt edit-source foo" sources.list.d component editing | Michael Vogt | |
2013-11-29 | add autopkgtest | Michael Vogt | |
2013-11-28 | add missing test/integration/test-bug-720597-build-dep-purge | Michael Vogt | |
2013-11-28 | update changelog | Michael Vogt | |
2013-11-28 | Merge remote-tracking branch 'mvo/feature/short-list' into debian/sid | Michael Vogt | |
2013-11-28 | add "-f" option to "build-dep" as sbuild is using it to fix regression with ↵ | Michael Vogt | |
cross-building (LP: #1255806) | |||
2013-11-28 | fix regression that APT::Keep-Fds is not honored (closes: #730490) | Michael Vogt | |
2013-11-28 | fix "apt-get --purge build-dep" (closes: #720597) | Michael Vogt | |
2013-11-28 | move EditSources into its own file | Michael Vogt | |
2013-11-26 | add check when sources.list changed | Michael Vogt | |
2013-11-26 | add syntax check for sources.list | Michael Vogt | |
2013-11-26 | rename APT::Cmd::AllVersions -> APT::Cmd::All-Versions, APT::Cmd::UseRegexp ↵ | Michael Vogt | |
-> APT::Cmd::Use-Regexp | |||
2013-11-26 | add APT::Cmd::List-Include-Summary | Michael Vogt | |
2013-11-25 | do not show summary in "apt list" | Michael Vogt | |
2013-11-25 | add basic "edit-sources" command | Michael Vogt | |
2013-11-24 | upload 0.9.13 to unstable | Michael Vogt | |
2013-11-23 | Changed MinAgeSec to MinAge in /etc/cron.daily/apt:200,204 LP: #1206047 | Michael Vogt | |
2013-11-01 | small documentation updates0.9.13_exp1 | Michael Vogt | |
2013-11-01 | releasing package apt version 0.9.13~exp10.9.13.exp1 | Michael Vogt | |
2013-10-31 | prepare new upload | Michael Vogt | |
2013-10-31 | setup LINES in apt-pkg/install-progress.cc | Michael Vogt | |
2013-10-31 | use StartDpkg() in PackageManagerProgressDeb822Fd as well | Michael Vogt | |
2013-10-31 | add new pid_t ExecFork(std::set<int> KeepFDs) to get rid of the super ugly ↵ | Michael Vogt | |
APT::Keep-Fds hack and also add a new PackageManagerProgressFd::StartDpkg() progress state | |||
2013-10-31 | move pty magic into its own functions | Michael Vogt | |
2013-10-31 | fix some more ABI issues, abicheck is happy now | Michael Vogt | |