ntk/apt.git
12 years agoreleasing version 0.8.15.4 0.8.15.4
Michael Vogt [Tue, 26 Jul 2011 10:23:04 +0000 (12:23 +0200)]
releasing version 0.8.15.4

12 years agorefresh po/*
Michael Vogt [Tue, 26 Jul 2011 10:10:00 +0000 (12:10 +0200)]
refresh po/*

12 years agomerged from lp:~mvo/apt/mvo
Michael Vogt [Tue, 26 Jul 2011 10:02:40 +0000 (12:02 +0200)]
merged from lp:~mvo/apt/mvo

12 years agomerged from lp:~donkult/apt/sid
Michael Vogt [Tue, 26 Jul 2011 09:57:16 +0000 (11:57 +0200)]
merged from lp:~donkult/apt/sid

12 years agofix typos in changelog, make DeEscapeString const, improve description
Michael Vogt [Tue, 26 Jul 2011 09:52:42 +0000 (11:52 +0200)]
fix typos in changelog, make DeEscapeString const, improve description

12 years agoadd another escape test case, fixup octal one (its \0XX instead of \0XXX)
Michael Vogt [Tue, 26 Jul 2011 09:10:47 +0000 (11:10 +0200)]
add another escape test case, fixup octal one (its \0XX instead of \0XXX)

12 years agoapt-pkg/contrib/strutl.cc: kill unneeded debug output
Michael Vogt [Tue, 26 Jul 2011 08:50:43 +0000 (10:50 +0200)]
apt-pkg/contrib/strutl.cc: kill unneeded debug output

12 years ago* apt-pkg/contrib/strutl.{h,cc}, test/libapt/strutil_test.cc:
Michael Vogt [Tue, 26 Jul 2011 08:49:28 +0000 (10:49 +0200)]
* apt-pkg/contrib/strutl.{h,cc}, test/libapt/strutil_test.cc:
  - add new DeEscapeString() similar to DeQuoteQuotedWord but
    unescape charackter escapes like \0XXX and \xXX (plus add test)

12 years ago* apt-pkg/contrib/sha1.cc:
David Miller [Tue, 26 Jul 2011 07:00:10 +0000 (09:00 +0200)]
* apt-pkg/contrib/sha1.cc:
  - fix illegally casts of on-stack buffer to a type requiring more
    alignment than it has resulting in segfaults on sparc (Closes: #634696)

The problem is how sha1.cc codes the SHA1 transform, it illegally
casts the on-stack workspace buffer to a type requiring more
alignment than 'workspace' is actually declared to have.

This only shows up recently because gcc-4.6 now does a really
aggressive optimization where it gets rid of the workspace
buffer entirely and just accesses 'buffer' directly, and assumes
it has the necessary alignment for 32-bit loads (which it
doesn't).

12 years ago* apt-pkg/contrib/cdromutl.cc:
Michael Vogt [Mon, 25 Jul 2011 14:53:18 +0000 (16:53 +0200)]
* apt-pkg/contrib/cdromutl.cc:
  - fix escape problem when looking for the mounted devices

12 years agoreleasing version 0.8.15.3
Michael Vogt [Mon, 25 Jul 2011 13:55:31 +0000 (15:55 +0200)]
releasing version 0.8.15.3

12 years agomerged from lp:~donkult/apt/sid 0.8.15.3
Michael Vogt [Mon, 25 Jul 2011 13:54:03 +0000 (15:54 +0200)]
merged from lp:~donkult/apt/sid

12 years agoimplement MultiarchCross for build-dep and source (Closes: #632221)
David Kalnischkies [Mon, 25 Jul 2011 12:40:22 +0000 (14:40 +0200)]
implement MultiarchCross for build-dep and source (Closes: #632221)

12 years agothe order of languages after "none" is not important, so ignore it in tests
David Kalnischkies [Mon, 25 Jul 2011 11:55:23 +0000 (13:55 +0200)]
the order of languages after "none" is not important, so ignore it in tests

12 years agoupdate the testcase to reflect that native is always on top if
David Kalnischkies [Mon, 25 Jul 2011 11:40:50 +0000 (13:40 +0200)]
update the testcase to reflect that native is always on top if
it is not in the config provided list of Architectures

12 years ago* apt-pkg/deb/deblistparser.cc:
David Kalnischkies [Mon, 25 Jul 2011 10:52:50 +0000 (12:52 +0200)]
* apt-pkg/deb/deblistparser.cc:
  - Strip only :any and :native if MultiArch should be stripped as it is
    save to ignore them in non-MultiArch contexts but if the dependency
    is a specific architecture (and not the native) do not strip

12 years ago* apt-pkg/aptconfiguration.cc:
David Kalnischkies [Mon, 25 Jul 2011 10:37:06 +0000 (12:37 +0200)]
* apt-pkg/aptconfiguration.cc:
  - ensure that native architecture is if not specified otherwise the
    first architecture in the Architectures vector

12 years agomove debug message about attempt install/remove to the responsible method
David Kalnischkies [Sun, 24 Jul 2011 17:37:49 +0000 (19:37 +0200)]
move debug message about attempt install/remove to the responsible method

12 years agoalternatively check in a versioned depends if the candidate is good
David Kalnischkies [Sun, 24 Jul 2011 17:26:38 +0000 (19:26 +0200)]
alternatively check in a versioned depends if  the candidate is good

The old code used to do move on to versions behind the candidate in
cases the candidate wasn't a match, but as the Install request later
always installs the candidate (witch wasn't switched) this could have
never worked - and shouldn't in most cases anyway as:
a) it could only work for <, <=, != depends which are unusal
b) doesn't respect pinning, so it could install -1 versions

12 years agoafter this consider providing packages (if it is not a versioned dep)
David Kalnischkies [Sun, 24 Jul 2011 17:15:20 +0000 (19:15 +0200)]
after this consider providing packages (if it is not a versioned dep)

12 years agomove the detection for installed versions up as it is the easiest case
David Kalnischkies [Sun, 24 Jul 2011 17:06:01 +0000 (19:06 +0200)]
move the detection for installed versions up as it is the easiest case

12 years agofirst round of reorder code without changing result
David Kalnischkies [Sun, 24 Jul 2011 17:04:18 +0000 (19:04 +0200)]
first round of reorder code without changing result

12 years agobuildconflicts effect all architectures
David Kalnischkies [Sun, 24 Jul 2011 17:03:15 +0000 (19:03 +0200)]
buildconflicts effect all architectures

12 years agoyou want to be nice and quote a filename just to be reminded by gpg
David Kalnischkies [Sat, 23 Jul 2011 09:50:49 +0000 (11:50 +0200)]
you want to be nice and quote a filename just to be reminded by gpg
that it doesn't like that… remove superficial quoting to fix apt-key

12 years agomerged from donkult
Michael Vogt [Fri, 22 Jul 2011 14:01:00 +0000 (16:01 +0200)]
merged from donkult

12 years agomerged from the mvo branch
Michael Vogt [Fri, 22 Jul 2011 09:13:48 +0000 (11:13 +0200)]
merged from the mvo branch

12 years ago* cmdline/apt-get.cc:
Michael Vogt [Fri, 22 Jul 2011 09:12:14 +0000 (11:12 +0200)]
* cmdline/apt-get.cc:
  - fix missing download progress in apt-get download

12 years ago* apt-pkg/policy.cc:
David Kalnischkies [Sat, 16 Jul 2011 14:48:03 +0000 (16:48 +0200)]
* apt-pkg/policy.cc:
  - emit an error on unknown APT::Default-Release value (Closes: #407511)

12 years agodo not require unused partial dirs in 'source' (Closes: #633510)
David Kalnischkies [Sat, 16 Jul 2011 12:57:37 +0000 (14:57 +0200)]
do not require unused partial dirs in 'source' (Closes: #633510)

12 years ago* doc/apt-cache.8.xml:
John Feuerstein [Sat, 16 Jul 2011 12:37:52 +0000 (14:37 +0200)]
* doc/apt-cache.8.xml:
  - apply madison typofix from John Feuerstein, thanks! (Closes: #633455)

12 years ago* cmdline/apt-key:
David Kalnischkies [Sat, 16 Jul 2011 12:21:51 +0000 (14:21 +0200)]
* cmdline/apt-key:
  - use a tmpfile instead of /etc/apt/secring.gpg (Closes: #632596)
* debian/apt.postinst:
  - remove /etc/apt/secring.gpg if it is an empty file

12 years agoapt-pkg/contrib/configuration.cc: revert Configuration::Set() ABI break
Michael Vogt [Fri, 15 Jul 2011 08:39:58 +0000 (10:39 +0200)]
apt-pkg/contrib/configuration.cc: revert Configuration::Set() ABI break

12 years agomerged from lp:~donkult/apt/sid
Michael Vogt [Fri, 15 Jul 2011 07:45:33 +0000 (09:45 +0200)]
merged from lp:~donkult/apt/sid

12 years ago* apt-pkg/depcache.cc:
David Kalnischkies [Fri, 15 Jul 2011 07:33:36 +0000 (09:33 +0200)]
* apt-pkg/depcache.cc:
  - change default of APT::AutoRemove::SuggestsImportant to true

12 years agomerge with debian-sid 0.8.15.2
David Kalnischkies [Thu, 14 Jul 2011 19:28:50 +0000 (21:28 +0200)]
merge with debian-sid 0.8.15.2

12 years agomerged from the mvo branch and add proper changelog
Michael Vogt [Thu, 14 Jul 2011 09:30:02 +0000 (11:30 +0200)]
merged from the mvo branch and add proper changelog

12 years agomerged from debian-sid
Michael Vogt [Thu, 14 Jul 2011 09:20:28 +0000 (11:20 +0200)]
merged from debian-sid

12 years agomake ResolveByKeep() more clever and hold back packages that would go into a broken...
Michael Vogt [Thu, 14 Jul 2011 09:03:55 +0000 (11:03 +0200)]
make ResolveByKeep() more clever and hold back packages that would go into a broken policy state by the upgrade

12 years agofix from David Kalnischkies for the InRelease gpg verification 0.8.15.2
Michael Vogt [Wed, 13 Jul 2011 17:02:10 +0000 (19:02 +0200)]
fix from David Kalnischkies for the InRelease gpg verification
code (LP: #784473)

12 years agoapt-pkg/aptconfiguration.h: fix copy/paste error in getCompressionTypes() description
Michael Vogt [Wed, 13 Jul 2011 11:47:25 +0000 (13:47 +0200)]
apt-pkg/aptconfiguration.h: fix copy/paste error in getCompressionTypes() description

12 years ago* apt-pkg/init.cc:
David Kalnischkies [Wed, 6 Jul 2011 11:41:18 +0000 (13:41 +0200)]
* apt-pkg/init.cc:
  - use CndSet in pkgInitConfig (Closes: #629617)

12 years ago* cmdline/apt-get.cc:
David Kalnischkies [Wed, 6 Jul 2011 10:46:29 +0000 (12:46 +0200)]
* cmdline/apt-get.cc:
  - restore all important dependencies for garbage packages (LP: #806274)

12 years ago* doc/apt.conf.5.xml:
David Kalnischkies [Tue, 5 Jul 2011 13:34:43 +0000 (15:34 +0200)]
* doc/apt.conf.5.xml:
  - document APT::Architectures list (Closes: #612102)

12 years ago* doc/sources.list.5.xml:
David Kalnischkies [Tue, 5 Jul 2011 13:14:25 +0000 (15:14 +0200)]
* doc/sources.list.5.xml:
  - document available [options] for sources.list entries (Closes: 632441)

12 years agoapt-pkg/acquire-item.cc: improve error message for valid-until
Michael Vogt [Fri, 1 Jul 2011 13:10:28 +0000 (14:10 +0100)]
apt-pkg/acquire-item.cc: improve error message for valid-until

12 years agoremove empty line dpkg-gensymbols complains about
David Kalnischkies [Thu, 30 Jun 2011 12:24:59 +0000 (14:24 +0200)]
remove empty line dpkg-gensymbols complains about

12 years ago* apt-pkg/pkgcachegen.cc:
David Kalnischkies [Thu, 30 Jun 2011 12:05:03 +0000 (14:05 +0200)]
* apt-pkg/pkgcachegen.cc:
  - fallback to memory if file is not writeable even if access()
    told us the opposite before (e.g. in fakeroot 1.16) (Closes: #630591)

12 years agomerge with debian-sid 0.8.15.1
David Kalnischkies [Thu, 30 Jun 2011 11:59:36 +0000 (13:59 +0200)]
merge with debian-sid 0.8.15.1

12 years agoreleasing version 0.8.15.1 0.8.15.1
Michael Vogt [Thu, 30 Jun 2011 08:14:38 +0000 (10:14 +0200)]
releasing version 0.8.15.1

12 years ago* doc/makefile:
Michael Vogt [Thu, 30 Jun 2011 07:33:19 +0000 (08:33 +0100)]
* doc/makefile:
  - create doxygen directory to avoid depending on magic (Closes: #628799)
* cmdline/apt-key:
  - explicitly state that net-update is not supported if no url is set
  - require to be root for add, rm, update and net-update
  - clarify update vs. net-update in different distros (Closes: #632043)
* debian/apt.symbols:
  - forgot 'mips' in the list for all architecture dependent symbols
  - comment out gcc-4.5 specific symbols as gcc-4.6 is now default
  - the symbol for PrintStatus() is architecture dependent
* apt-pkg/policy.cc:
  - do not segfault in pinning if a package with this name doesn't exist.
    Thanks to Ferdinand Thommes for the report!
  - Defaults is a vector of Pin not of PkgPin
  - ensure that only the first specific stanza for a package is used
  - save all stanzas which had no effect in Unmatched
  - allow package:architecure in Package:

12 years agoallow package:architecure in Package:
David Kalnischkies [Wed, 29 Jun 2011 22:03:26 +0000 (00:03 +0200)]
allow package:architecure in Package:

12 years ago - ensure that only the first specific stanza for a package is used
David Kalnischkies [Wed, 29 Jun 2011 21:26:38 +0000 (23:26 +0200)]
  - ensure that only the first specific stanza for a package is used
  - save all stanzas which had no effect in Unmatched

12 years agoDefaults is a vector of Pin not of PkgPin
David Kalnischkies [Wed, 29 Jun 2011 21:16:00 +0000 (23:16 +0200)]
Defaults is a vector of Pin not of PkgPin

12 years ago* apt-pkg/policy.cc:
David Kalnischkies [Wed, 29 Jun 2011 20:38:59 +0000 (22:38 +0200)]
* apt-pkg/policy.cc:
  - do not segfault in pinning if a package with this name doesn't exist.
    Thanks to Ferdinand Thommes for the report!

12 years agothe symbol for PrintStatus() is architecture dependent
David Kalnischkies [Wed, 29 Jun 2011 16:46:20 +0000 (18:46 +0200)]
the symbol for PrintStatus() is architecture dependent

12 years agocomment out gcc-4.5 specific symbols as gcc-4.6 is now default
David Kalnischkies [Wed, 29 Jun 2011 16:46:01 +0000 (18:46 +0200)]
comment out gcc-4.5 specific symbols as gcc-4.6 is now default

12 years ago* debian/apt.symbols:
David Kalnischkies [Wed, 29 Jun 2011 16:15:56 +0000 (18:15 +0200)]
* debian/apt.symbols:
  - forgot 'mips' in the list for all architecture dependent symbols

12 years agoclarify update vs. net-update in different distros (Closes: #632043)
David Kalnischkies [Wed, 29 Jun 2011 16:15:44 +0000 (18:15 +0200)]
clarify update vs. net-update in different distros (Closes: #632043)

12 years agorequire to be root for add, rm, update and net-update
David Kalnischkies [Wed, 29 Jun 2011 15:24:47 +0000 (17:24 +0200)]
require to be root for add, rm, update and net-update

12 years ago* cmdline/apt-key:
David Kalnischkies [Wed, 29 Jun 2011 15:15:56 +0000 (17:15 +0200)]
* cmdline/apt-key:
  - explicitly state that net-update is not supported if no url is set

12 years ago* doc/makefile:
David Kalnischkies [Wed, 29 Jun 2011 14:38:49 +0000 (16:38 +0200)]
* doc/makefile:
  - create doxygen directory to avoid depending on magic (Closes: #628799)

12 years agomerge with debian-sid release 0.8.15
David Kalnischkies [Wed, 29 Jun 2011 14:29:54 +0000 (16:29 +0200)]
merge with debian-sid release 0.8.15

12 years agomerged from debian-sid
Michael Vogt [Wed, 29 Jun 2011 10:15:35 +0000 (11:15 +0100)]
merged from debian-sid

12 years agoreleasing version 0.8.15 0.8.15
Michael Vogt [Tue, 28 Jun 2011 16:49:01 +0000 (18:49 +0200)]
releasing version 0.8.15

12 years agovarious typo and syntax corrections in doc/*.xml
Michael Vogt [Tue, 28 Jun 2011 16:00:07 +0000 (17:00 +0100)]
various typo and syntax corrections in doc/*.xml

12 years agoupdate symbol file (thanks to david)
Michael Vogt [Tue, 28 Jun 2011 15:27:48 +0000 (16:27 +0100)]
update symbol file (thanks to david)

12 years agomerged from lp:~mvo/apt/mvo
Michael Vogt [Tue, 28 Jun 2011 14:51:33 +0000 (15:51 +0100)]
merged from lp:~mvo/apt/mvo

12 years agomerged from donkult
Michael Vogt [Tue, 28 Jun 2011 14:49:45 +0000 (15:49 +0100)]
merged from donkult

12 years agochange to 0.8.14.2
Michael Vogt [Tue, 28 Jun 2011 14:46:28 +0000 (15:46 +0100)]
change to 0.8.14.2

12 years agocherry pick from donkult
Michael Vogt [Tue, 28 Jun 2011 14:45:59 +0000 (15:45 +0100)]
cherry pick from donkult

12 years ago* apt-pkg/deb/dpkgpm.cc:
Michael Vogt [Mon, 27 Jun 2011 08:46:41 +0000 (10:46 +0200)]
* apt-pkg/deb/dpkgpm.cc:
  - set permissions of term.log to root.adm and 644 (LP: #404724)

12 years agoCatalan translation update (Jordi Mallach). Closes: #630657
bubulle@debian.org [Sat, 18 Jun 2011 11:56:21 +0000 (13:56 +0200)]
Catalan translation update (Jordi Mallach). Closes: #630657

12 years agoGerman documentation translation update (Chris Leick). Closes: #629949
bubulle@debian.org [Thu, 9 Jun 2011 20:48:35 +0000 (22:48 +0200)]
German documentation translation update (Chris Leick). Closes: #629949

12 years agoupdate changelog for the previous two commits
Michael Vogt [Thu, 9 Jun 2011 12:02:03 +0000 (14:02 +0200)]
update changelog for the previous two commits

12 years agoapt-pkg/deb/debindexfile.cc: kill off another TranslationsAvailable() usage that...
Michael Vogt [Thu, 9 Jun 2011 11:30:08 +0000 (13:30 +0200)]
apt-pkg/deb/debindexfile.cc: kill off another TranslationsAvailable() usage that is not needed

12 years agoapt-pkg/deb/debindexfile.cc: remove tests for TranslationsAvailable() as this will...
Michael Vogt [Thu, 9 Jun 2011 11:24:36 +0000 (13:24 +0200)]
apt-pkg/deb/debindexfile.cc: remove tests for TranslationsAvailable() as this will break adding translations to the cache if the current environment does not include the language (e.g. LANG=C but german translations). testing for existance of the file is the better approach

12 years ago* apt-pkg/deb/deblistparser.cc:
Michael Vogt [Thu, 9 Jun 2011 09:51:45 +0000 (11:51 +0200)]
* apt-pkg/deb/deblistparser.cc:
  - include all known languages when building the apt cache
    (LP: #794907)

12 years agoappend the dist (e.g. sid, wheezy) as a query string when
Michael Vogt [Tue, 7 Jun 2011 11:21:47 +0000 (13:21 +0200)]
append the dist (e.g. sid, wheezy) as a query string when
asking for a suitable mirror

12 years ago* methods/mirror.cc:
Michael Vogt [Tue, 7 Jun 2011 06:48:09 +0000 (08:48 +0200)]
* methods/mirror.cc:
  - ignore lines starting with "#" in the mirror file
  - ignore non http urls in the mirrors

12 years agorevert 2114.1.12 as doxygen does this for use now
David Kalnischkies [Mon, 6 Jun 2011 19:33:55 +0000 (21:33 +0200)]
revert 2114.1.12 as doxygen does this for use now

12 years ago* apt-pkg/indexcopy.cc:
David Kalnischkies [Mon, 6 Jun 2011 19:29:16 +0000 (21:29 +0200)]
* apt-pkg/indexcopy.cc:
  - Verify that the first line of an InRelease file is a PGP header
    for a signed message. Otherwise a man-in-the-middle can prefix
    a valid InRelease file with his own data! (CVE-2011-1829)

12 years agoadd a very dumb pause method to stop test-execution
David Kalnischkies [Mon, 6 Jun 2011 19:23:00 +0000 (21:23 +0200)]
add a very dumb pause method to stop test-execution

12 years agomerge from lp:~mvo/apt/mvo
Michael Vogt [Tue, 31 May 2011 08:56:06 +0000 (10:56 +0200)]
merge from lp:~mvo/apt/mvo

12 years agoapt-pkg/acquire-item.cc: only test packages file for correctness if its not empty...
Michael Vogt [Tue, 31 May 2011 08:40:53 +0000 (10:40 +0200)]
apt-pkg/acquire-item.cc: only test packages file for correctness if its not empty (its ok to have empty packages files)

12 years agomerged from the debian branch
Michael Vogt [Tue, 31 May 2011 08:34:56 +0000 (10:34 +0200)]
merged from the debian branch

12 years agoReject files known to be invalid (LP: #346386) (Closes: #627642)
Julian Andres Klode [Mon, 30 May 2011 12:14:11 +0000 (14:14 +0200)]
Reject files known to be invalid (LP: #346386) (Closes: #627642)

12 years agoapt-pkg/acquire-item.cc: Reject files known to be invalid (LP: #346386) (Closes:...
Julian Andres Klode [Mon, 30 May 2011 12:04:01 +0000 (14:04 +0200)]
apt-pkg/acquire-item.cc: Reject files known to be invalid (LP: #346386) (Closes: #195301)

This commit deals with the following cases:

  - First section of index file (Packages,Sources,Translation) without Package field
  - Signed release files without GPG data (NODATA)
  - i18n/Index files without hash sums

Handling unsigned Release files is more complicated, and the example code
using indexRecords is disabled as it can reject correct Release files
without hashes. How we can reliably check unsigned Release files is
another question, and not urgent anyway, as it should have no
dramatic effect (we could check that it is a valid RFC-822 section,
but that's a bit too long to write)

12 years ago* cmdline/apt-config.cc:
David Kalnischkies [Sat, 28 May 2011 08:56:46 +0000 (10:56 +0200)]
* cmdline/apt-config.cc:
  - show Acquire::Languages and APT::Architectures settings
    in 'dump' (Closes: 626739)

12 years ago* apt-pkg/init.cc:
Jörg Sommer [Sat, 28 May 2011 08:54:10 +0000 (10:54 +0200)]
* apt-pkg/init.cc:
  - don't set deprecated APT::Acquire::Translation, thanks Jörg Sommer!

12 years agouse the correct option name in comment for Acquire::Languages
Jörg Sommer [Sat, 28 May 2011 08:14:43 +0000 (10:14 +0200)]
use the correct option name in comment for Acquire::Languages

13 years agoItalian translation update (Milo Casagrande). Closes: #627834
bubulle@debian.org [Wed, 25 May 2011 12:45:04 +0000 (14:45 +0200)]
Italian translation update (Milo Casagrande). Closes: #627834

13 years agodebian/changelog: next version will be 0.8.15
Michael Vogt [Wed, 25 May 2011 12:43:05 +0000 (14:43 +0200)]
debian/changelog: next version will be 0.8.15

13 years agolog reinstall commands in history.log
David Kalnischkies [Mon, 23 May 2011 16:10:48 +0000 (18:10 +0200)]
log reinstall commands in history.log

13 years agoremove invalid pkgcache.bin and rebuild it if possible
David Kalnischkies [Thu, 19 May 2011 12:16:43 +0000 (14:16 +0200)]
remove invalid pkgcache.bin and rebuild it if possible

The next invocation of APT tried to load an outdated big
(and possible io-cold) file just to end up rebuilding it
(possibly only as non-root in memory again and again), so
we remove it here and if we have a srcpkgcache we are
going to rebuild, too.

13 years agorename I to J to avoid redefining a variable (clang warning)
David Kalnischkies [Tue, 17 May 2011 13:15:13 +0000 (15:15 +0200)]
rename I to J to avoid redefining a variable (clang warning)

13 years agoServerState is a struct and not a class (clang mismatch type warning)
David Kalnischkies [Tue, 17 May 2011 13:13:56 +0000 (15:13 +0200)]
ServerState is a struct and not a class (clang mismatch type warning)

13 years agoremove Size >= 0 check as Itm.Size is an unsigned variable (clang warning)
David Kalnischkies [Tue, 17 May 2011 13:12:04 +0000 (15:12 +0200)]
remove Size >= 0 check as Itm.Size is an unsigned variable (clang warning)

13 years agomerged from lp:~donkult/apt/sid
Michael Vogt [Mon, 16 May 2011 13:57:52 +0000 (15:57 +0200)]
merged from lp:~donkult/apt/sid

13 years ago* apt-pkg/packagemanager.cc:
David Kalnischkies [Mon, 16 May 2011 09:41:43 +0000 (11:41 +0200)]
* apt-pkg/packagemanager.cc:
  - ensure for Multi-Arch:same packages that they are unpacked in
    lock step even in immediate configuration (Closes: #618288)

13 years agoGalician translation update (Miguel Anxo Bouzada). Closes: #626505
bubulle@debian.org [Fri, 13 May 2011 21:00:18 +0000 (23:00 +0200)]
Galician translation update (Miguel Anxo Bouzada). Closes: #626505