]> git.saurik.com Git - apt.git/commitdiff
merge with debian-experimental-ma
authorDavid Kalnischkies <kalnischkies@gmail.com>
Thu, 6 May 2010 14:15:53 +0000 (16:15 +0200)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Thu, 6 May 2010 14:15:53 +0000 (16:15 +0200)
1  2 
cmdline/apt-get.cc
debian/changelog
debian/rules

index de8c7aeaf268a4de25abd53cb86b95331c226330,03239dabea433febdc7d93609fa45681f9849e4f..00da0855fe65961210a6c0bb5cde92b3430d1861
@@@ -1932,10 -1936,9 +1936,10 @@@ bool DoInstall(CommandLine &CmdL
            {
               /* Skip if package is  installed already, or is about to be */
               string target = Start.TargetPkg().FullName(true) + " ";
 -             
 -             if ((*Start.TargetPkg()).SelectedState == pkgCache::State::Install
 -                 || Cache[Start.TargetPkg()].Install())
 +             pkgCache::PkgIterator const TarPkg = Start.TargetPkg();
 +             if (TarPkg->SelectedState == pkgCache::State::Install ||
-                  TarPkg->SelectedState == pkgCache::State::Hold ||
++                 TarPkg->SelectedState == pkgCache::State::Hold ||
 +                 Cache[Start.TargetPkg()].Install())
               {
                  foundInstalledInOrGroup=true;
                  break;
index 144d307fa6e6f98ba97939865eb532b643898cfd,004a890e1a5552627925abf08880e0226d186ab9..43f76a18e97f82cf5abebf203b224496eca8e023
@@@ -1,14 -1,4 +1,26 @@@
- apt (0.7.26~exp4) UNRELEASED; urgency=low
++apt (0.7.26~exp5) UNRELEASED; urgency=low
 +
-   [ Michael Vogt ]
-   * [ Abi break ] apt-pkg/acquire-item.{cc,h}:
-     - add "IsIndexFile" to constructor of pkgAcqFile so that it sends
-       the right cache control headers
-   * apt-pkg/depcache.cc:
-     - fix incorrect std::cout usage for debug output
-   * test/libapt/getlanguages_test.cc:
-     - Add test for Esperanto that has nocounty associated with them
-       (LP: #560956)
++  [ David Kalnischkies ]
++  * cmdline/apt-get.cc:
++    - rerun dpkg-source in source if --fix-broken is given (Closes: #576752)
++    - don't suggest held packages as they are installed (Closes: #578135)
++  * cmdline/apt-cache.cc:
++    - use GroupCount for package names in stats and add a package struct line
++  * methods/rred.cc:
++    - use the patchfile modification time instead of the one from the
++      "old" file - thanks to Philipp Weis for noticing! (Closes: #571541)
++  * debian/rules:
++    - remove targets refering to CVS or arch as they are useless
++
++  [ Jari Aalto ]
++  * debian/rules:
++    - spell out some less known options to reduce manpage consulation-rate
++    - Use POSIX command substitution: $(<command sequence>)
++    - Remove EOL whitespace (Closes: #577804)
++
++ -- David Kalnischkies <kalnischkies@gmail.com>  Thu, 06 May 2010 16:10:39 +0200
++
+ apt (0.7.26~exp4) experimental; urgency=low
  
    [ David Kalnischkies ]
    * apt-pkg/depcache.cc:
diff --cc debian/rules
index bb2cc34c30a2fc89b89f448e3949bd2873433edd,f901ea749844e315cb9a75f4d41060cec7ff9b32..cb46227793a3109f0876bbf7503890c7a82a30d7
@@@ -139,15 -141,18 +139,16 @@@ libapt-pkg-doc: build-doc debian/shlibs
        dh_installdirs -p$@
  #
  # libapt-pkg-doc install
 -#     
 -      dh_installdocs -p$@ $(BLD)/docs/design* $(BLD)/docs/dpkg-tech* \
 -                            $(BLD)/docs/files* $(BLD)/docs/method* \
 -                          doc/libapt-pkg2_to_3.txt doc/style.txt \
 +#
 +      dh_installdocs -p$@ $(BLD)/docs/design* \
 +                          $(BLD)/docs/dpkg-tech* \
 +                          $(BLD)/docs/files* \
 +                          $(BLD)/docs/method* \
 +                          doc/libapt-pkg2_to_3.txt \
-                           doc/style.txt
++                          doc/style.txt \
+                           $(BLD)/doc/doxygen/html
        dh_installexamples -p$@
 -#     dh_installmenu -p$@
 -#     dh_installinit -p$@
 -#     dh_installcron -p$@
 -#     dh_installman -p$@
  
 -#     dh_undocumented -p$@
        dh_installchangelogs -p$@
        dh_strip -p$@
        dh_compress -p$@