summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Release 1.9.21.9.2Julian Andres Klode2019-08-0548-49/+808
|
* Merge branch 'pu/locking-msg' into 'master'Julian Andres Klode2019-08-051-2/+53
|\ | | | | | | | | Improve locking messaging - pid and name, "do not remove lock file" See merge request apt-team/apt!68
| * Improve locking messaging - pid and name, "do not remove lock file"Julian Andres Klode2019-06-211-2/+53
| | | | | | | | | | | | | | | | | | We want to tell users which process is holding the lock so they can easily understand what's going on, and we want to advise users not to remove the lock file, because ugh, that's bad. Re-initalize the flock structure, in case it got mangled by previous fcntl call.
* | Fix typos reported by codespell in code commentsDavid Kalnischkies2019-07-1014-21/+22
| | | | | | | | | | | | | | | | Also in old changelogs, but nothing really user visible like error messages or alike so barely noteworthy. Reported-By: codespell Gbp-Dch: Ignore
* | Apply various suggestions by cppcheckDavid Kalnischkies2019-07-0829-72/+60
| | | | | | | | Reported-By: cppcheck
* | Show details about the package with bad ProvidesDavid Kalnischkies2019-07-081-3/+4
| | | | | | | | | | | | | | | | The error messages say only which package it was trying to provide, but not which package & version tried it which can be misleading as to which package (version) is the offender. References: #930256
* | Distribute host-less work based on backlog of the queuesDavid Kalnischkies2019-07-081-44/+66
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Work like applying patches via rred can be performed by many concurrent rred processes, but we can't just spawn new ones forever: We limit us to the number of CPUs which can drive them and reuse existing ones if they have nothing to do at the moment. The problem arises if we have reached the limit of queues and all of them are busy which is more likely to happen on "slow" machines with few CPUs. In this case we opted for random distribution, but that can result in many big files (e.g. Contents) being added to one queue while the others get none or only small files. Ideally we would ask the methods how much they still have to do, but they only know that for the current item, not for all items in the queue, so we use the filesize of the expected result.
* | Merge branch 'patch-1' into 'master'Julian Andres Klode2019-06-241-1/+1
|\ \ | |/ |/| | | | | Change a pronoun in the readme from `he` to `they` See merge request apt-team/apt!69
| * Change a pronoun in the readme from `he` to `they`Lynn Cyrin2019-06-231-1/+1
|/ | | | | | | | Using gender neutral language in your documentation is a inclusion win! Here's some documents describing more context here: - https://en.wikipedia.org/wiki/Singular_they#Trend_toward_gender-neutral_language - https://open.buffer.com/inclusive-language-tech - https://www.grammarly.com/blog/use-the-singular-they/
* Release 1.9.11.9.1Julian Andres Klode2019-06-205-6/+13
|
* Fix pkg-config-test autopkgtestJulian Andres Klode2019-06-171-1/+2
|
* RFC1123StrToTime: Accept const std::string& as first argumentJulian Andres Klode2019-06-178-7/+21
| | | | | | We are converting to std::string anyway by passing to istringstream, and this removes the need for .c_str() in callers.
* Release 1.9.0 to experimental1.9.0Julian Andres Klode2019-06-1765-7941/+7679
|
* policy: Get rid of Pins arrayJulian Andres Klode2019-06-142-20/+13
| | | | Gbp-Dch: ignore
* policy: Remove GetMatch and GetPriority(pkgIterator)Julian Andres Klode2019-06-142-22/+1
| | | | | These functions do not produce any useful results anymore, so it's pointless to keep them around.
* Remove deprecated cacheset methodsJulian Andres Klode2019-06-144-46/+85
| | | | | This mostly turns them private and then overrides the public version with the switch, as recommended.
* Bump cache MajorVersion to 16Julian Andres Klode2019-06-121-1/+1
| | | | | 1.6 was 13, so 1.7 has 14 reserved, and 1.8 has 15 reserved, so let's use 16 for 1.9 for now.
* Merge branch 'pu/cleaner-headers'Julian Andres Klode2019-06-1254-276/+12
|\
| * Adjust code for missing includes/using std::stringJulian Andres Klode2019-06-125-6/+12
| |
| * Run unifdef -DAPT_{8,9,10,15}_CLEANER_HEADERSJulian Andres Klode2019-06-1249-270/+0
|/
* doc/apt-get.8.xml: Fix typo in satisfy command descriptionJulian Andres Klode2019-06-121-1/+1
| | | | Gbp-Dch: ignore
* Merge branch 'depend-solutions' into 'master'Julian Andres Klode2019-06-111-16/+16
|\ | | | | | | | | apt-cache: only show solutions if displayed See merge request apt-team/apt!65
| * apt-cache: only show solutions if displayedStephen Kitt2019-05-131-16/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, apt-cache [r]depends always shows all solutions for a package, if appropriate, even if the package itself wasn’t displayed (e.g. “--installed” was specified). Thus, currently, with haskell-platform uninstalled and amd64 and i386 enabled, “apt-cache rdepends alex” shows alex Reverse Depends: haskell-platform alex:i386 haskell-platform alex:i386 and “apt-cache rdepends alex --installed” shows alex Reverse Depends: alex:i386 alex:i386 which is rather confusing. This patch changes the behaviour so that solutions are only displayed for packages which were themselves displayed; “apt-cache rdepends alex --installed” then shows alex Reverse Depends: Signed-off-by: Stephen Kitt <skitt@debian.org>
* | http: Fix Host header in proxied https connectionsSimon Körner2019-06-112-3/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently CONNECT requests use the name of the proxy as Host value, instead of the origin server's name. According to RFC 2616 "The Host field value MUST represent the naming authority of the origin server or gateway given by the original URL." The current implementation causes problems with some proxy vendors. This commit fixes this. [jak: Adding a test case] See merge request apt-team/apt!66
* | Introduce apt satisfy and apt-get satisfyJulian Andres Klode2019-06-118-7/+178
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow to satisfy dependency strings supplied on the command line, optionally prefixed with "Conflicts:" to satisfy them like Conflicts. Build profiles and architecture restriction lists, as used in build dependencies, are supported as well. Compared to build-dep, build-essential is not installed automatically, and installing of recommended packages follows the global default, which defaults to yes. Closes: #275379 See merge request apt-team/apt!63
* | Do not include squashfs file systems in df output.Brian Murray2019-06-111-1/+1
| | | | | | | | | | LP: #1756595 Fixes Debian/apt#94
* | Update symbols and hide some pkgTagSection ABIJulian Andres Klode2019-06-112-24/+22
| | | | | | | | Gbp-Dch: ignore
* | Merge the ParseDepends functionsJulian Andres Klode2019-06-113-68/+18
| |
* | Allow comparing string to StringViewJulian Andres Klode2019-06-111-0/+2
| |
* | Make APT::StringView publicJulian Andres Klode2019-06-1114-242/+31
| |
* | Merge tag '1.8.2'Julian Andres Klode2019-06-119-71/+103
|\ \ | | | | | | | | | apt Debian release 1.8.2
| * | Release 1.8.21.8.2Julian Andres Klode2019-05-285-6/+28
| | |
| * | Unlock dpkg locks in reverse locking orderJulian Andres Klode2019-05-211-1/+1
| | | | | | | | | | | | | | | | | | | | | We need to unlock in the reverse order of locking in order to get useful behavior. LP: #1829860
| * | methods: https: handle requests for TLS re-handshakeMichael Zhivich2019-05-211-28/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When accessing repository protected by TLS mutual auth, apt may receive a "re-handshake" request from the server, which must be handled in order for download to proceed. This situation arises when the server requests a client certificate based on the resource path provided in the GET request, after the inital handshake in UnwrapTLS() has already occurred, and a secure connection has been established. This issue has been observed with Artifactory-backed Debian repository. To address the issue, split TLS handshake code out into its own method in TlsFd, and call it when GNUTLS_E_REHANDSHAKE error is received. Signed-off-by: Michael Zhivich <mzhivich@akamai.com> (merged from Debian/apt#93) LP: #1829861
| * | French manpages translation updateJean-Pierre Giraud2019-05-211-34/+21
| | | | | | | | | | | | Closes: #929290
| * | Portuguese manpages translation updateAmérico Monteiro2019-05-211-895/+1333
| | | | | | | | | | | | Closes: #926614
| * | Fix typo in German manpage translationTilmanK2019-05-211-1/+1
| | | | | | | | | | | | | | | Github-Fixes: #89 (cherry picked from commit 46ef1a3e8c8895c53ff1e4787dc96d4f6c5dba27)
| * | Flip /: in documented default value of DPkg::PathAlwin Henseler2019-05-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | The value as shown in the NEWS file (not in the code) has a typo in which just a "/" and ":" are swapped. Closes: #917986 (cherry picked from commit 4c27ca80e2de06ab0fd058349f9813b60824cf04)
* | | WIP: README.md: Minor editing to make it read easierJulian Andres Klode2019-05-101-22/+22
| | | | | | | | | | | | | | | Went as far as "A test case here is a shell script", this paragraph is _hard_.
* | | More minor wording improvements in documentationJulian Andres Klode2019-05-1012-21/+21
| | |
* | | apt-mark: Add hidden showheld alias for showholdJulian Andres Klode2019-05-102-3/+3
| | | | | | | | | | | | For Unit193 and those who value grammar, I suppose.
* | | README.md: Quote -j <count> as code with backticksJulian Andres Klode2019-05-091-1/+1
| | | | | | | | | | | | | | | | | | | | | The <count> did not appear in the html, render it as code instead so things work correctly. Fixes Debian/apt#91
* | | debmetaindex: Use isspace_ascii() variant to normalize Signed-ByJulian Andres Klode2019-05-071-1/+1
| | | | | | | | | | | | | | | Using the locale-dependent isspace() function here opens us up to strange locale-dependent behavior.
* | | CMake: Enforce "override" use on overriden methodsJulian Andres Klode2019-05-063-2/+5
| | | | | | | | | | | | | | | This ensures that we do not accidentally stop overriding a method because it's signature changed in an API break.
* | | symbols: Remove invalid APTPKG@APTINST symbolJulian Andres Klode2019-05-061-2/+0
| | |
* | | Change soname to libapt-pkg.so.5.90Julian Andres Klode2019-05-064-1485/+1485
| | | | | | | | | | | | | | | This is a bit experimental, and we'll go through a few stages before reaching libapt-pkg.so.6.0.
* | | prepare-release: Add bump-abi commandJulian Andres Klode2019-05-061-0/+8
| | | | | | | | | | | | | | | This changes the ABI in the packaging based on the one in the header.
* | | cacheset: Remove simple cases of deprecated codeJulian Andres Klode2019-05-063-185/+6
| | | | | | | | | | | | | | | | | | This is missing the ones that are still actively used in cacheset.cc, we need to clean those up too, but they are obviously more tricky.
* | | Merge branch 'pu/merge-libraries'Julian Andres Klode2019-05-0630-1644/+71
|\ \ \
| * | | Use debDebFile to get control file instead of dpkg-debJulian Andres Klode2019-05-062-30/+19
| | | |