David Kalnischkies [Thu, 13 Mar 2014 00:27:34 +0000 (01:27 +0100)]
use the pretty fullname of a pkg as download desciption
Otherwise the "WARNING: The following packages cannot be authenticated!"
messages does not include the architecture of the package, so it would
be slightly misinformative.
David Kalnischkies [Wed, 12 Mar 2014 15:16:14 +0000 (16:16 +0100)]
refactor FileFd to hide some #ifdefs
They tend to be ugly to look at, so hide them.
Git-Dch: Ignore
David Kalnischkies [Wed, 12 Mar 2014 13:39:18 +0000 (14:39 +0100)]
use liblzma-dev to provide xz/lzma support
We have xz/lzma support for a while, but only via an external binary
provided by xz-utils. Now that the Debian archive provides xz by default
and dpkg pre-depends on the library provided by liblzma-dev we can switch
now to use this library as well to avoid requiring an external binary.
For now the binary is in a prio:required package, but this might change
in the future.
API wise it is quiet similar to bz2 code expect that it doesn't provide
file I/O methods, so we piece this together on our own.
David Kalnischkies [Wed, 12 Mar 2014 13:24:41 +0000 (14:24 +0100)]
add a config option to switch uncompress methods to compress
Not very useful in the normal operation of work, but handy for tests.
Git-Dch: Ignore
David Kalnischkies [Wed, 12 Mar 2014 12:36:08 +0000 (13:36 +0100)]
ensure that gz compression test is run with gz
The framework can be configured to use different compression algorithms
to test different ones, but a testcase testing for gz support should
always be run with gz, regardless of what compressions are configured
otherwise.
Git-Dch: Ignore
David Kalnischkies [Wed, 12 Mar 2014 12:31:41 +0000 (13:31 +0100)]
factor out getting list of architectures from comma list
Beside fixing this minor code duplication it also resolves the problem
of messing up vim syntax-highlighting.
Git-Dch: Ignore
David Kalnischkies [Sun, 9 Jun 2013 12:32:48 +0000 (14:32 +0200)]
refactor setup of file opening via zlib/bz2 lib
Git-Dch: Ignore
David Kalnischkies [Fri, 31 May 2013 17:27:57 +0000 (19:27 +0200)]
move fd duplication closer to the gz/bz2 open calls
Git-Dch: Ignore
David Kalnischkies [Wed, 12 Mar 2014 16:55:08 +0000 (17:55 +0100)]
abstract version hash comparison a bit
In #737085 we see that apt can be confused if informations about
versions only differ slightly. This commit adds a way of at least adding
a few more data points with the next abi break to help a bit with it.
Git-Dch: Ignore
David Kalnischkies [Wed, 12 Mar 2014 15:53:44 +0000 (16:53 +0100)]
factor out parsing of MultiArch flag
Git-Dch: Ignore
David Kalnischkies [Mon, 10 Mar 2014 21:31:00 +0000 (22:31 +0100)]
correct LD_LIBRARY_PATH and config loading for apt-helper
Mostly ensures that we use the build methods and not the system
provided methods in the tests (if we don't want it that way).
Git-Dch: Ignore
David Kalnischkies [Mon, 10 Mar 2014 20:31:35 +0000 (21:31 +0100)]
ensure that a dot is a dot in the hook
As we deal with regex matchers here the dots are treated as wildcards if
we don't take care of escaping them. Not very likely that this could be
a real-world problem, but just to be sure.
David Kalnischkies [Mon, 10 Mar 2014 20:12:59 +0000 (21:12 +0100)]
add ".*-{kernel,modules}-$KERVER" matcher for hook
Pre-build kernel modules (like those build with module-assistent) are
commonly named in this way and it should be ungeneric enough to be added
by default for everyone.
David Kalnischkies [Mon, 10 Mar 2014 19:57:07 +0000 (20:57 +0100)]
support kfreebsd and hurd in the kernel hook
kfreebsd as well as hurd kernel packages call the postinst script as
well so we just need to enable the correct parsing for installed
packages and disable the "protect every version" hammer for them.
David Kalnischkies [Mon, 10 Mar 2014 16:53:22 +0000 (17:53 +0100)]
use a configurable list of versioned kernel packages
With APT::VersionedKernelPackages users have the option of adding
packages like pre-build out-of-tree modules to the list of automatically
protected from being autoremoved.
David Kalnischkies [Mon, 10 Mar 2014 14:12:11 +0000 (15:12 +0100)]
cmdline parsing: apt-config is not apt-cdrom
David Kalnischkies [Mon, 10 Mar 2014 13:15:45 +0000 (14:15 +0100)]
improve debug output in case downloadfile fails
Git-Dch: Ignore
David Kalnischkies [Mon, 10 Mar 2014 01:54:33 +0000 (02:54 +0100)]
msgstr with elipses need three dots
fixes some messages and their translation so that all of them have three
dots for messages with an elipse. Many translations already had this.
Wojciech Górski [Mon, 10 Mar 2014 01:07:05 +0000 (02:07 +0100)]
fix polish --install-suggests text in apt-get manpage
Description of the --install-suggests option is wrong in the polish
apt-get man page. The actual meaning of this option is the opposite
to what is written in the manual.
Closes: 741056
David Kalnischkies [Mon, 10 Mar 2014 00:49:37 +0000 (01:49 +0100)]
support very long mtab entries in mountpoint discovery
Old code limited lines to 250 characters which is probably enough for
everybody, but who knows… It also takes care of device nodes which start
with the same prefix.
David Kalnischkies [Sun, 9 Mar 2014 23:43:21 +0000 (00:43 +0100)]
enable mount support for apt-cdrom in the tests
Git-Dch: Ignore
David Kalnischkies [Sun, 9 Mar 2014 23:33:38 +0000 (00:33 +0100)]
remove code duplication for Add & Ident in apt-cdrom
The preparation code to deal with auto-detection and co is the same for
both methods, so not sharing them would be bad. Deals also with the
prevention of side effects triggered by the auto-detection like
disabling mounting for the fallback.
Git-Dch: Ignore
David Kalnischkies [Sun, 9 Mar 2014 23:09:56 +0000 (00:09 +0100)]
apt-cdrom ident shouldn't be interactive
Commit
62dcbf84 changed the code of ident to look more like the code for
add on my suggestion. This made ident interactive as it starts with a
unmount, press enter, mount cycle. The first two are skipped now.
This fixes d-i/apt-setup which is using it to get ID as well as label.
Closes: 740673
David Kalnischkies [Sun, 9 Mar 2014 13:38:07 +0000 (14:38 +0100)]
no error for non-existing mountpoints in MountCdrom
The mountpoint might be auto-generated by the mount command so pushing
an error on the stack will confuse the following code and let it believe
an unrecoverable error occured while potentially everything is okay.
Same goes for umount as a non-existing mountpoint is by definition not
mounted.
David Kalnischkies [Sun, 9 Mar 2014 12:32:07 +0000 (13:32 +0100)]
if mountpoint has a ".disk" directory it is mounted
Checking that parent-directory of mountpoint and mountpoint are on
different devices is fine most of the time, but is too restrictive
for our testcases and there shouldn't be anything wrong with 'normal'
users copying disk-contents around either if they want to.
We check for the existance of the ".disk/" directory now as this will
not be present if the disk isn't 'mounted'. Disks doesn't need to have
such a directory through, so for those we fall back to the old way of
detecting mounted or not mounted.
David Kalnischkies [Sat, 8 Mar 2014 16:42:11 +0000 (17:42 +0100)]
simplify apt-cdrom testcode
Git-Dch: Ignore
David Kalnischkies [Sat, 8 Mar 2014 16:29:46 +0000 (17:29 +0100)]
do not configure already unpacked packages needlessly
The unpack of a M-A:same package will force the unpack of all its
siblings directly to prevent that they could be separated by later
immediate actions. In commit
634985f8 a call to SmartConfigure was
introduced to configure these packages at the time the installation
order encounters them. Usually, the unpack order is already okay, so
that this 'earlier' unpack was not needed and if it wouldn't have been
done, the package would now only be unpacked, but by configuring the package
now we impose new requirements which must be satisfied. The code is
clever enough to handle this most of the time (it worked for 2 years!),
but it isn't needed and in very coupled cases this can fail.
Removing this call again removes this extra burden and so simplifies the
ordering as can be seen in the modified tests. Famous last words, but I
don't see a reason for this extra burden to exist hence the remove.
Closes: 740843
David Kalnischkies [Thu, 6 Mar 2014 01:36:48 +0000 (02:36 +0100)]
enable various compiler warnings
Now that the last few commits resolved the issues we can finally enable
a bunch of compiler warnings by default.
Git-Dch: ignore
David Kalnischkies [Thu, 6 Mar 2014 00:31:55 +0000 (01:31 +0100)]
use SPtrArray handling instead of explicit delete[]
The warning message from gcc doesn't make that much sense in my reading
as there is no loop which could overflow here, but it is better to use
our SPtrArray wrapping anyway which fixes the warning as well.
warning: cannot optimize loop, the loop counter may overflow [-Wunsafe-loop-optimizations]
delete[] Dsc;
Git-Dch: Ignore
Reported-By: gcc -Wunsafe-loop-optimizations
David Kalnischkies [Wed, 5 Mar 2014 23:33:10 +0000 (00:33 +0100)]
follow method attribute suggestions by gcc
Git-Dch: Ignore
Reported-By: gcc -Wsuggest-attribute={pure,const,noreturn}
David Kalnischkies [Wed, 5 Mar 2014 21:11:25 +0000 (22:11 +0100)]
cleanup headers and especially #includes everywhere
Beside being a bit cleaner it hopefully also resolves oddball problems
I have with high levels of parallel jobs.
Git-Dch: Ignore
Reported-By: iwyu (include-what-you-use)
David Kalnischkies [Sat, 1 Mar 2014 21:27:11 +0000 (22:27 +0100)]
move defines for version to macros.h
also adds namespaced attributes for good usage
Git-Dch: Ignore
David Kalnischkies [Sat, 1 Mar 2014 14:11:42 +0000 (15:11 +0100)]
warning: unused parameter ‘foo’ [-Wunused-parameter]
Reported-By: gcc -Wunused-parameter
Git-Dch: Ignore
David Kalnischkies [Sat, 1 Mar 2014 12:55:20 +0000 (13:55 +0100)]
warning: type qualifiers ignored on function return type [-Wignored-qualifiers]
Reported-By: gcc -Wignored-qualifiers
Git-Dch: Ignore
David Kalnischkies [Thu, 27 Feb 2014 02:32:13 +0000 (03:32 +0100)]
warning: cannot optimize loop, the loop counter may overflow [-Wunsafe-loop-optimizations]
Git-Dch: Ignore
Reported-By: gcc -Wunsafe-loop-optimizations
David Kalnischkies [Thu, 27 Feb 2014 02:11:54 +0000 (03:11 +0100)]
warning: no previous declaration for foobar() [-Wmissing-declarations]
Git-Dch: Ignore
Reported-By: gcc -Wmissing-declarations
David Kalnischkies [Thu, 27 Feb 2014 01:18:11 +0000 (02:18 +0100)]
warning: useless cast to type A [-Wuseless-cast]
Git-Dch: Ignore
Reported-By: gcc -Wuseless-cast
David Kalnischkies [Thu, 27 Feb 2014 00:54:10 +0000 (01:54 +0100)]
warning: cast from type A to type B casts away qualifiers [-Wcast-qual]
Git-Dch: Ignore
Reported-By: gcc -Wcast-qual
David Kalnischkies [Thu, 27 Feb 2014 00:26:29 +0000 (01:26 +0100)]
StartPos is always positive for http/https
server.cc: In member function ‘bool ServerState::HeaderLine(std::string)’:
server.cc:198:72: warning: format ‘%llu’ expects argument of type ‘long long unsigned int*’, but argument 3 has type ‘long long int*’ [-Wformat=]
else if (sscanf(Val.c_str(),"bytes %llu-%*u/%llu",&StartPos,&Size) != 2)
Git-Dch: Ignore
Reported-By: gcc -Wpedantic
David Kalnischkies [Thu, 27 Feb 2014 00:20:53 +0000 (01:20 +0100)]
warning: extra ‘;’ [-Wpedantic]
Git-Dch: Ignore
Reported-By: gcc -Wpedantic
David Kalnischkies [Wed, 26 Feb 2014 23:56:11 +0000 (00:56 +0100)]
warning: non-ISO-standard escape sequence, '\e' [enabled by default]
Git-Dch: Ignore
Reported-By: gcc -Wpedantic
David Kalnischkies [Tue, 25 Feb 2014 21:30:39 +0000 (22:30 +0100)]
fix -Wformat= warnings about size_t != %lu on e.g. armel
Git-Dch: Ignore
Reported-By: gcc
David Kalnischkies [Tue, 25 Feb 2014 21:22:41 +0000 (22:22 +0100)]
fix -Wmissing-field-initializers warnings
Reported-By: gcc
Git-Dch: Ignore
David Kalnischkies [Tue, 25 Feb 2014 21:10:40 +0000 (22:10 +0100)]
make doxygen more quiet, fix issues and disable latex
Git-Dch: Ignore
David Kalnischkies [Tue, 25 Feb 2014 16:21:44 +0000 (17:21 +0100)]
unset LANGUAGE in the testing framework directly
Git-Dch: Ignore
David Kalnischkies [Tue, 25 Feb 2014 13:26:18 +0000 (14:26 +0100)]
support DEB_BUILD_PROFILES and -P for build profiles
Inspired by the rest of the patch in 661537, but abstract the
parsing of various ways of setting the build profiles more so it can
potentially be reused and all apt parts have the same behaviour.
Especially config options, cmdline options and environment will not be
combined as proposed as this isn't APTs usual behaviour and dpkg doesn't
do it either, so one overrides the other as it normally does.
Johannes Schauer [Mon, 24 Feb 2014 23:12:20 +0000 (00:12 +0100)]
implement BuildProfileSpec support as dpkg has in 1.17.2
Build-dependencies are now able to include a <profile.foo …>
specification limiting usage similar to already supported [arch …].
More details: https://wiki.debian.org/BuildProfileSpec
Closes: 661537
David Kalnischkies [Mon, 24 Feb 2014 22:10:25 +0000 (23:10 +0100)]
add default and override handling for Cnf::FindVector
Automatically handle the override of list options via its parent value
which can even be a comma-separated list of values. It also adds an easy
way of providing a default for the list.
David Kalnischkies [Sun, 23 Feb 2014 23:25:29 +0000 (00:25 +0100)]
autogenerate makefile for vendor system
It can be useful to have a whole makefile available for vendor setup,
but by providing a basic one we can deal with the simple cases more
easily (and changes to the system are presumably easier).
David Kalnischkies [Sun, 23 Feb 2014 21:24:27 +0000 (22:24 +0100)]
check version before adding scores in resolver
Prevents that "old" dependencies have an influence in the scoring.
With positive dependencies this is usually not a problem, but negative
dependencies can linger around for a long time.
David Kalnischkies [Sun, 23 Feb 2014 21:22:15 +0000 (22:22 +0100)]
show debug output only if told so in packagemanager
Git-Dch: Ignore
David Kalnischkies [Sat, 15 Feb 2014 13:47:24 +0000 (14:47 +0100)]
do not do the same looping twice
Git-Dch: Ignore
David Kalnischkies [Sat, 15 Feb 2014 12:38:39 +0000 (13:38 +0100)]
propagate a negative score point along breaks/conflicts
versioned -dev packages like db and boost have the problem of no
dependencies which would give them a competitive advantage against an
older incarnation of the -dev package, so they tend to be kept back
until the old version is removed from the archive, which, if the user
has older releases in its sources can take a long time (or never happens).
The newer version has a conflicts/breaks against the older one, but the
older one hasn't against the newer, so by giving via the conflicts the
older one a reduced score the newer one can win if there is no other
reason to keep it. If both have a conflict against each other the
scoring will cancel itself out, so no harm done.
This gives "action" a slightly bigger edge in breaks/conflicts cases
than before, but holding back isn't a really good solution anyway.
Julian Andres Klode [Wed, 12 Mar 2014 19:46:36 +0000 (20:46 +0100)]
Promote xz-utils from apt Suggests to libapt-pkg Depends
libapt-pkg depends on the other compressors, and now that
xz is the default in many cases, it should depend on that
one as well.
Trần Ngọc Quân [Mon, 3 Mar 2014 08:41:01 +0000 (15:41 +0700)]
l10n: vi.po (624t): Update Vietnamese translation
Signed-off-by: Trần Ngọc Quân <vnwildman@gmail.com>
Michael Vogt [Fri, 28 Feb 2014 07:46:25 +0000 (08:46 +0100)]
releasing package apt version 0.9.15.5
Michael Vogt [Thu, 27 Feb 2014 15:46:05 +0000 (16:46 +0100)]
initial version of apt-helper
Martin Pitt [Mon, 24 Feb 2014 18:12:44 +0000 (19:12 +0100)]
Bug#739988: Fix autopkgtest missing dependencies and locale
debian/tests/control: Add missing build-essential, fakeroot, and wget test
dependencies.
debian/tests/run-tests: Pin locale to C to avoid test failures in other
locales.
Michael Vogt [Sat, 22 Feb 2014 23:41:52 +0000 (00:41 +0100)]
vendor/tanglu/makefile: add missing clean/sources.list
Michael Vogt [Sat, 22 Feb 2014 23:28:26 +0000 (00:28 +0100)]
releasing package apt version 0.9.15.4
Michael Vogt [Sat, 22 Feb 2014 23:05:43 +0000 (00:05 +0100)]
test/integration/test-ubuntu-bug-346386-apt-get-update-paywall: use http-method from METHODSDIR
Michael Vogt [Sat, 22 Feb 2014 22:53:54 +0000 (23:53 +0100)]
add missing libdb-dev to debian/tests/control
Michael Vogt [Sat, 22 Feb 2014 21:28:36 +0000 (22:28 +0100)]
skip test if "apt" is not build
Michael Vogt [Sat, 22 Feb 2014 21:04:22 +0000 (22:04 +0100)]
fix ADT failure in downloadfile()
Michael Vogt [Sat, 22 Feb 2014 20:07:38 +0000 (21:07 +0100)]
add testcase for Bug#718329
Guillem Jover [Sat, 22 Feb 2014 18:24:32 +0000 (19:24 +0100)]
debian: Add debDebFile::ExtractTarMember to the symbols file
Guillem Jover [Sun, 16 Feb 2014 22:30:48 +0000 (23:30 +0100)]
Add support for data.tar, control.tar and control.tar.xz
Sync the deb(5) format support with latest dpkg, by allowing
uncompressed tar members and xz compressed control.tar. This
also refactors the control.tar member extraction by using
ExtractTarMember(), which also means future changes only need
to be implemented in a single place.
Guillem Jover [Mon, 17 Feb 2014 21:02:38 +0000 (22:02 +0100)]
DebFile: Refactor ExtractTarMember() out from ExtractArchive()
Generalize DebFile::ExtractArchive() to take a member base name, so that
we can reuse it for control.tar member extraction too.
Guillem Jover [Sun, 16 Feb 2014 22:29:13 +0000 (23:29 +0100)]
ExtractTar: Allow an empty decompressor program
This allows for uncompressed tar files, as the decompressor process will
not get interposed in-between the file descriptors.
Jon Severinsson [Sat, 22 Feb 2014 17:40:09 +0000 (18:40 +0100)]
add apt-vendor information for tanglu
Michael Vogt [Sat, 22 Feb 2014 17:34:33 +0000 (18:34 +0100)]
Fix typos in documentation (codespell)
Michael Vogt [Sat, 22 Feb 2014 17:22:04 +0000 (18:22 +0100)]
improve clean for auto-generated sources.list
Michael Vogt [Sat, 22 Feb 2014 17:07:43 +0000 (18:07 +0100)]
remove auto-generated apt-key and sources.list on clean (closes: 739749)
Michael Vogt [Thu, 20 Feb 2014 13:42:50 +0000 (14:42 +0100)]
releasing package apt version 0.9.15.3
Michael Vogt [Thu, 20 Feb 2014 13:41:48 +0000 (14:41 +0100)]
Merge remote-tracking branch 'mvo/debian/sid' into debian/sid
Michael Vogt [Thu, 20 Feb 2014 13:41:24 +0000 (14:41 +0100)]
prepare re-enable fnmatch() once we have proper reporting
Michael Vogt [Thu, 20 Feb 2014 08:08:59 +0000 (09:08 +0100)]
prepare release
Michael Vogt [Fri, 14 Feb 2014 21:28:34 +0000 (22:28 +0100)]
Merge remote-tracking branch 'donkult/debian/sid' into debian/sid
Conflicts:
apt-private/acqprogress.cc
David Kalnischkies [Fri, 14 Feb 2014 21:20:17 +0000 (22:20 +0100)]
update symbols file with hints from the buildlogs
David Kalnischkies [Fri, 14 Feb 2014 17:59:46 +0000 (18:59 +0100)]
add a testcase to check for forbidden https→http downgrades
Git-Dch: Ignore
David Kalnischkies [Fri, 14 Feb 2014 17:35:35 +0000 (18:35 +0100)]
honor option to disable pulses for the testcases
Git-Dch: Ignore
Michael Vogt [Fri, 14 Feb 2014 21:01:35 +0000 (22:01 +0100)]
fix the test-kernel-helper-autoremove testcase
Steve Langasek [Mon, 5 Nov 2012 22:44:59 +0000 (14:44 -0800)]
Additional test for the case when installed version != newest version
Steve Langasek [Mon, 5 Nov 2012 21:11:39 +0000 (13:11 -0800)]
Make the test more verbose and check for the negative case of a kernel that
should not be marked not-for-autoremoval
Steve Langasek [Mon, 5 Nov 2012 20:32:50 +0000 (12:32 -0800)]
typo fix
Michael Vogt [Mon, 5 Nov 2012 10:39:47 +0000 (11:39 +0100)]
also check that the running kernel is kept
Michael Vogt [Mon, 5 Nov 2012 10:31:29 +0000 (11:31 +0100)]
add testcase for the autoremove feature
Conflicts:
debian/apt.auto-removal.sh
Michael Vogt [Fri, 14 Feb 2014 18:58:56 +0000 (19:58 +0100)]
disable fnmatch()
The current PackageContainerInterface::FromString() will do a
FromFnmatch() first and then FromRegEx(). This commit reverts
that change to restore the old behavior to only look for RegEx
and not glob-style pattern. The rational is that:
a) currently a fnmatch() is misleadingly reported as a regex match to
the user (Bug#738880)
b) a fnmatch may match something different than a a RegEx so the
change broke a published interface
Michael Vogt [Fri, 14 Feb 2014 18:40:58 +0000 (19:40 +0100)]
add missing canNotFindFnmatch/showFnmatchSelection (for the next ABI break)
David Kalnischkies [Fri, 14 Feb 2014 17:59:46 +0000 (18:59 +0100)]
add a testcase to check for forbidden https→http downgrades
Git-Dch: Ignore
David Kalnischkies [Fri, 14 Feb 2014 15:33:26 +0000 (16:33 +0100)]
simplify code some more to make reddit happy
Commit
6008b79adf1d7ea5607fab87a355d664c8725026 should have been guarded
by "Git-Dch: Ignore", but it wasn't and I only noticed it with the Close
message via deity thinking "hehe, I wonder if someone is gonna notice".
Looks like someone did: hats off to reddit user itisOmegakai!
Good to know that what I do isn't only monitored by goverments. :)
As there is another instance of basically the same code we just factor
out the code a bit and reuse, so its even cleaner and not only simpler.
Reported-By: scan-build
David Kalnischkies [Fri, 14 Feb 2014 17:35:35 +0000 (18:35 +0100)]
honor option to disable pulses for the testcases
Git-Dch: Ignore
Michael Vogt [Fri, 14 Feb 2014 16:11:07 +0000 (17:11 +0100)]
disable https->http redirects in libcurl
This change prevents changing the protocol from https to http.
Michael Vogt [Fri, 14 Feb 2014 16:32:42 +0000 (17:32 +0100)]
test/integration/test-bug-723705-tagfile-truncates-fields: fix autopkgtest failure
David Kalnischkies [Thu, 13 Feb 2014 23:55:20 +0000 (00:55 +0100)]
do not compress .xhtml files and remove junk files
dh_compress compresses .xhtml files by default, which breaks our doxygen
documentation. doxygen has also a bunch of temporary files it creates
which stay in the build directory and so we remove them before
installing them as documentation.
Closes: 738933
David Kalnischkies [Thu, 13 Feb 2014 23:44:06 +0000 (00:44 +0100)]
enforce 'house-style' on changelog testcase
Git-Dch: Ignore
David Kalnischkies [Thu, 13 Feb 2014 23:30:58 +0000 (00:30 +0100)]
allow http protocol to switch to https
switch protocols at random is a bad idea if e.g. http can switch to
file, so we limit the possibilities to http to http and http to https.
As very few people (less than 1% according to popcon) have https
installed this likely changes nothing in terms of failure. The commit is
adding a friendly hint which package needs to be installed though.
David Kalnischkies [Thu, 13 Feb 2014 22:38:28 +0000 (23:38 +0100)]
report https download start only if we really get it
Reporting it via progress means that e.g. a redirect will trigger it,
too, so you get a Get & Hit while http only reports a Hit as it should
be.
David Kalnischkies [Wed, 12 Feb 2014 14:01:40 +0000 (15:01 +0100)]
do not recommend dselect in apt-get manpage
The current description says:
"Many users find dselect intimidating and new users may prefer to use
apt-based user interfaces."
It doesn't feel right to refer users to it then.
Closes: 617625
Michael Vogt [Thu, 13 Feb 2014 13:47:34 +0000 (14:47 +0100)]
trivial indent fix