Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-05-15 | Update .gitignore | Filipe Brandenburger | |
2018-05-11 | use 127.0.0.1 instead of localhost as default Tor proxy | David Kalnischkies | |
This shouldn't make a practical difference for most people, but for edge cases it avoids DNS lookups and additionally prevents us from perfoming unneeded SRV requests, too. | |||
2018-05-11 | don't try SRV requests based on IP addresses | David Kalnischkies | |
IP addresses are by definition not a domain so in the best case the requests will just fail; we can do better than that on our own. | |||
2018-05-10 | prepare-release: run i18nspector as "lint" if available | David Kalnischkies | |
Gbp-Dch: Ignore | |||
2018-05-10 | po: Drop boilerplate in initial comments | David Kalnischkies | |
The boilerplate stems from automatic processing of these files as most (with the exception of po/nl.po) are one-off (partial) translations from years past. Gbp-Dch: Ignore | |||
2018-05-10 | Add boilerplate plural form to po/apt-all.pot | David Kalnischkies | |
Warned-by: i18nspector Fixes: no-plural-forms-header-field | |||
2018-05-09 | Merge branch 'pu/cleanup' into 'master' | Julian Andres Klode | |
Repository cleanups See merge request apt-team/apt!12 | |||
2018-05-07 | po: Add missing Plural-Forms fields | Guillem Jover | |
Warned-by: i18nspector Fixes: no-plural-forms-header-field | |||
2018-05-07 | po: Remove spurious text in Plural-Forms field | Guillem Jover | |
Warned-by: i18nspector Fixes: trailing-junk-in-plural-forms | |||
2018-05-07 | po: Fix Language field to match actual locale | Guillem Jover | |
Warned-by: i18nspector Fixes: language-disparity | |||
2018-05-07 | po: Fix translated string not matching format string arguments | Guillem Jover | |
Warned-by: i18nspector Fixes: c-format-string-argument-type-mismatch Fixes: c-format-string-missing-arguments | |||
2018-05-07 | po: Fill Project-Id-Version with correct project id and version | Guillem Jover | |
Warned-by: i18nspector Fixes: no-version-in-project-id-version | |||
2018-05-07 | Normalize authors through a mailmap file | Guillem Jover | |
This is used from at least git shortlog. | |||
2018-05-07 | Remove obsolete RCS keywords | Guillem Jover | |
Prompted-by: Jakub Wilk <jwilk@debian.org> | |||
2018-05-05 | move special READMEs into doc/ and format as md | David Kalnischkies | |
The formatting is very basic and more should probably be done, but we at least get the files out of the root directory which in case of the various READMEs was confusing salsa which one display as (central) README. | |||
2018-05-05 | Fix various typos reported by spellcheckers | David Kalnischkies | |
Reported-By: codespell & spellintian Gbp-Dch: Ignore | |||
2018-05-05 | Avoid implicitly promotion of float to double | David Kalnischkies | |
Reported-By: gcc -Wdouble-promotion Gbp-Dch: Ignore | |||
2018-05-04 | Prevent GTest from flooding us with compiler warnings | David Kalnischkies | |
GTest has a bunch of undefined macros which causes the compiler to spit out warnings for each one on each test file. There isn't much we can do, so we just disable the warning for the testcases. Other warnings like sign-promo and sign-compare we can avoid by being more explicit about our expected integer constants being unsigned. As we are just changing testcases, there is no user visible change which would deserve to be noted in the changelog. Gbp-Dch: Ignore Reported-By: gcc-8 | |||
2018-05-04 | Fix build with new gtest | Julian Andres Klode | |
Still allow the older one to be used. Closes: #897149 | |||
2018-04-20 | apt.conf.autoremove: Catch some new Ubuntu module packages | Julian Andres Klode | |
2018-04-20 | CMake: Fix builds without zstd | Julian Andres Klode | |
Only use zstd defined variables if zstd was found. | |||
2018-04-18 | Release 1.7.0~alpha0 to experimental1.7.0_alpha0 | Julian Andres Klode | |
2018-04-18 | Run travis against debian:testing again, keep shippable at bionic | Julian Andres Klode | |
We are opening 1.7, whoo | |||
2018-04-18 | Make libzstd optional in CMakeLists.txt, to aid cross-building | Julian Andres Klode | |
This makes cross-building a bit easier, and also porting to other platforms. | |||
2018-04-17 | Build with cmake+ninja instead of cmake+make | Julian Andres Klode | |
2018-04-15 | mention mirror method in sources.list | David Kalnischkies | |
Closes: 679580 | |||
2018-04-15 | Release 1.6~rc11.6_rc1 | Julian Andres Klode | |
2018-04-15 | French man pages translation | jean-pierre giraud | |
[jak: Fix invalid empty line] Closes: #895117 | |||
2018-04-15 | Revert "mention mirror method in sources.list" | Julian Andres Klode | |
This reverts commit 57a00c50b14a49ed91816e3f4467e0f2e57ee772. | |||
2018-04-15 | Merge branch 'pu/heavy-hooks' into 'master' | Julian Andres Klode | |
json-based hooks for apt cli tools See merge request apt-team/apt!10 | |||
2018-04-15 | Introduce experimental new hooks for command-line tools | Julian Andres Klode | |
This allows third-party package managers like snap or flatpak to hook in and suggest alternatives if packages could not be found, for example. This is still highly experimental and the protocol might change in future versions. | |||
2018-04-15 | Merge branch 'pu/zstd' into 'master' | Julian Andres Klode | |
pu/zstd See merge request apt-team/apt!8 | |||
2018-04-13 | zstd: Implement support for multi-frame files | Julian Andres Klode | |
This implements support for multi frame files while keeping error checking for unexpected EOF working correctly. Files with multiple frames are generated by pzstd, for example. | |||
2018-04-13 | Implement compression level handling for zstd | Julian Andres Klode | |
This is a simplified variant of the code for xz, adapted to support multiple digit integers. | |||
2018-04-13 | apt-private: Collect not found packages in CacheSetHelperAPTGet | Julian Andres Klode | |
Collecting the packages we could not find allows us to pass them to other places. | |||
2018-04-07 | document Acquire::AllowReleaseInfoChange without extra s | David Kalnischkies | |
Reported-By: Mattia Rizzolo on IRC | |||
2018-04-07 | mention mirror method in sources.list | David Kalnischkies | |
Closes: 679580 | |||
2018-04-07 | set our two libapt libraries to prio:optional | David Kalnischkies | |
The override file already implements this, so we just adapt to reality. Reported-By: lintian excessive-priority-for-library-package | |||
2018-04-07 | fix communication typo in https manpage | David Kalnischkies | |
Reported-By: lintian spelling-error-in-manpage | |||
2018-04-07 | catch changelog ↔ NEWS dist mismatches in release script | David Kalnischkies | |
At least it tries a little harder. Gbp-Dch: Ignore | |||
2018-04-07 | remove duplicate changelog lines from 1.6~beta1 entry | David Kalnischkies | |
Whatever caused it, lets fix it. | |||
2018-04-06 | test: export GCOV_ERROR_FILE=/dev/null to make it fail less/no tests | Julian Andres Klode | |
2018-04-06 | Delete /etc/dpkg/dpkg.cfg.d/excludes on Docker CI images | Julian Andres Klode | |
Fixes test suite on Ubuntu docker images. | |||
2018-04-06 | Allow restart_syscall() syscall in seccomp sandboxes | Julian Andres Klode | |
Closes: #891644 | |||
2018-04-06 | Turn off seccomp sandboxing by default | Julian Andres Klode | |
LP: #1732030 Closes: #890489 Fixes meefik/linuxdeploy#869 | |||
2018-03-23 | CI: Switch testing to use ubuntu:bionic for 1.6.y | Julian Andres Klode | |
1.6.y is bionic's release series, it should be tested in it. | |||
2018-03-19 | Bump cache major version to allow different 1.5 and 1.6 updates | Julian Andres Klode | |
Shipping 1.6 with major 12 would not allow us to update 1.5.y in a different way than 1.6.y if we have to without resorting to minor version hacks. Let's just bump the major instead. | |||
2018-03-15 | Use https for Ubuntu changelogs | Julian Andres Klode | |
We just enabled https on changelogs.ubuntu.com, let's use it. | |||
2018-03-13 | Fix debian/NEWS entry for 1.6~beta1 | Julian Andres Klode | |
2018-03-12 | apt-inst: Add support for zstd compressed debs | Julian Andres Klode | |
Whitelist support for zst members. |