]> git.donarmstrong.com Git - debian/debian-policy.git/commitdiff
Merge branch 'master' into bug504880-rra
authorRuss Allbery <rra@debian.org>
Sun, 18 Jul 2010 01:13:26 +0000 (18:13 -0700)
committerRuss Allbery <rra@debian.org>
Sun, 18 Jul 2010 01:13:26 +0000 (18:13 -0700)
policy.sgml

index 0b3c1a1db56066b4f49f8ca19d5fe771aa20e629..673f5ba2f4e21fd53ad944d3993b415fa0efb8f9 100644 (file)
        </p>
 
        <p>
-         Sometimes, a package requires another package to be installed
-         <em>and</em> configured before it can be installed. In this
+         Sometimes, a package requires another package to be unpacked
+         <em>and</em> configured before it can be unpacked. In this
          case, you must specify a <tt>Pre-Depends</tt> entry for
          the package.
        </p>
@@ -3647,7 +3647,7 @@ Checksums-Sha256:
 
        <p>
          Broadly speaking the <prgn>preinst</prgn> is called before
-         (a particular version of) a package is installed, and the
+         (a particular version of) a package is unpacked, and the
          <prgn>postinst</prgn> afterwards; the <prgn>prerm</prgn>
          before (a version of) a package is removed and the
          <prgn>postrm</prgn> afterwards.
@@ -4037,7 +4037,7 @@ Checksums-Sha256:
                behavior which, though deterministic, is hard for the
                system administrator to understand.  It can easily
                lead to "missing" programs if, for example, a package
-               is installed which overwrites a file from another
+               is unpacked which overwrites a file from another
                package, and is then removed again.<footnote>
                    Part of the problem is due to what is arguably a
                    bug in <prgn>dpkg</prgn>.
@@ -4173,7 +4173,7 @@ Checksums-Sha256:
                If there was a conflicting package we go and do the
                removal actions (described below), starting with the
                removal of the conflicting package's files (any that
-               are also in the package being installed have already
+               are also in the package being unpacked have already
                been removed from the conflicting package's file list,
                and so do not get removed now).
            </item>
@@ -4513,31 +4513,30 @@ Build-Depends: foo [linux-any], bar [any-i386], baz [!linux-any]
        </p>
 
        <p>
-         For this reason packages in an installation run are usually
-         all unpacked first and all configured later; this gives
-         later versions of packages with dependencies on later
-         versions of other packages the opportunity to have their
-         dependencies satisfied.
+         Since <tt>Depends</tt> only places requirements on the
+         configuration step, packages in an installation run are usually
+         all unpacked first and all configured later.  This makes it
+         easier to satisfy all dependencies when multiple packages are
+         being upgraded.
        </p>
 
-        <p>
-          In case of circular dependencies, since installation or
-          removal order honoring the dependency order can't be
-          established, dependency loops are broken at some point
-          (based on rules below), and some packages may not be able to
-          rely on their dependencies being present when being
-          installed or removed, depending on which side of the break
-          of the circular dependency loop they happen to be on.  If one
-          of the packages in the loop has no postinst script, then the
-          cycle will be broken at that package, so as to ensure that
-          all postinst scripts run with the dependencies properly
-          configured if this is possible. Otherwise the breaking point
-          is arbitrary.
-        </p>
-
        <p>
-         The <tt>Depends</tt> field thus allows package maintainers
-         to impose an order in which packages should be configured.
+         If there is a circular dependency among packages being installed
+         or removed, installation or removal order honoring the
+         dependency order is impossible, requiring the dependency loop be
+         broken at some point and the dependency requirements violated
+         for at least one package.  Packages involved in circular
+         dependencies may not be able to rely on their dependencies being
+         configured when being configured or removed depending on which
+         side of the break of the circular dependency loop they happen to
+         be on.  If one of the packages in the loop has no
+         <prgn>postinst</prgn> script, then the cycle will be broken at
+         that package; this ensures that all <prgn>postinst</prgn>
+         scripts are run with their dependencies properly configured if
+         this is possible.  Otherwise the breaking point is arbitrary.
+         Packages should therefore avoid circular dependencies where
+         possible, particularly if they have <prgn>postinst</prgn>
+         scripts.
        </p>
 
        <p>
@@ -4549,7 +4548,8 @@ Build-Depends: foo [linux-any], bar [any-i386], baz [!linux-any]
                This declares an absolute dependency.  A package will
                not be configured unless all of the packages listed in
                its <tt>Depends</tt> field have been correctly
-               configured.
+               configured (unless there is a circular dependency as
+               described above).
              </p>
 
              <p>
@@ -4563,10 +4563,17 @@ Build-Depends: foo [linux-any], bar [any-i386], baz [!linux-any]
                The <tt>Depends</tt> field should also be used if the
                <prgn>postinst</prgn>, <prgn>prerm</prgn> or
                <prgn>postrm</prgn> scripts require the package to be
-               present in order to run.  Note, however, that the
-               <prgn>postrm</prgn> cannot rely on any non-essential
-               packages to be present during the <tt>purge</tt>
-               phase.
+               present in order to run.  (If both packages are involved
+               in a dependency loop, this might not work as expected; see
+               the explanation a few paragraphs back.)  In the case of
+               <prgn>postinst</prgn> and <prgn>postrm</prgn>, the
+               depended-on packages will be unpacked and configured
+               first.  (Note, however, that the <prgn>postrm</prgn>
+               cannot rely on any non-essential packages to be present
+               during the <tt>purge</tt> phase.)  In the case of
+               <prgn>prerm</prgn>, the depended-on package will at least
+               be unpacked (it might be configured too, but you can't
+               rely on this unless you use <tt>Pre-Depends</tt>).
            </item>
 
            <tag><tt>Recommends</tt></tag>
@@ -4629,7 +4636,17 @@ Build-Depends: foo [linux-any], bar [any-i386], baz [!linux-any]
                to be <em>configured</em>, the pre-dependency will be
                treated as a normal <tt>Depends</tt>, that is, it will
                be considered satisfied only if the depended-on
-               package has been correctly configured.
+               package has been correctly configured.  However, unlike
+               with <tt>Depends</tt>, <tt>Pre-Depends</tt> does not
+               permit circular dependencies to be broken.  If a circular
+               dependency is encountered while attempting to honor
+               <tt>Pre-Depends</tt>, the installation will be aborted.
+             </p>
+
+             <p>
+               <tt>Pre-Depends</tt> are also required if the
+               <prgn>preinst</prgn> script depends on the named package.
+               It is best to avoid this situation if possible.
              </p>
 
              <p>
@@ -4638,13 +4655,6 @@ Build-Depends: foo [linux-any], bar [any-i386], baz [!linux-any]
                installation would hamper the ability of the system to
                continue with any upgrade that might be in progress.
              </p>
-
-             <p>
-               <tt>Pre-Depends</tt> are also required if the
-               <prgn>preinst</prgn> script depends on the named
-               package.  It is best to avoid this situation if
-               possible.
-             </p>
            </item>
          </taglist>
        </p>
@@ -4669,7 +4679,7 @@ Build-Depends: foo [linux-any], bar [any-i386], baz [!linux-any]
        <p>
          When one binary package declares that it breaks another,
          <prgn>dpkg</prgn> will refuse to allow the package which
-         declares <tt>Breaks</tt> be installed unless the broken
+         declares <tt>Breaks</tt> be unpacked unless the broken
          package is deconfigured first, and it will refuse to
          allow the broken package to be reconfigured.
        </p>
@@ -4722,7 +4732,7 @@ Build-Depends: foo [linux-any], bar [any-i386], baz [!linux-any]
        <p>
           When one binary package declares a conflict with another
          using a <tt>Conflicts</tt> field, <prgn>dpkg</prgn> will
-         refuse to allow them to be installed on the system at the
+         refuse to allow them to be unpacked on the system at the
          same time.  This is a stronger restriction than <tt>Breaks</tt>,
          which just prevents both packages from being configured at the
          same time.  Conflicting packages cannot be unpacked on the
@@ -4730,8 +4740,8 @@ Build-Depends: foo [linux-any], bar [any-i386], baz [!linux-any]
        </p>
 
        <p>
-         If one package is to be installed, the other must be removed
-         first.  If the package being installed is marked as replacing
+         If one package is to be unpacked, the other must be removed
+         first.  If the package being unpacked is marked as replacing
          (see <ref id="replaces">, but note that <tt>Breaks</tt> should
          normally be used in this case) the one on the system, or the one
          on the system is marked as deselected, or both packages are
@@ -5013,7 +5023,7 @@ Provides: mail-transport-agent
 Conflicts: mail-transport-agent
 Replaces: mail-transport-agent
            </example>
-           ensuring that only one MTA can be installed at any one
+           ensuring that only one MTA can be unpacked at any one
            time.  See <ref id="virtual"> for more information about this
            example.
        </sect1>
@@ -5232,7 +5242,7 @@ Replaces: mail-transport-agent
          <footnote>
            <p>
              During install or upgrade, the preinst is called before
-             the new files are installed, so calling "ldconfig" is
+             the new files are unpacked, so calling "ldconfig" is
              pointless.  The preinst of an existing package can also be
              called if an upgrade fails.  However, this happens during
              the critical time when a shared libs may exist on-disk
@@ -5377,7 +5387,7 @@ Replaces: mail-transport-agent
        <ref id="conflicts">) to ensure that the user only installs one
        development version at a time (as different development versions are
        likely to have the same header files in them, which would cause a
-       filename clash if both were installed).
+       filename clash if both were unpacked).
       </p>
 
       <p>
@@ -9658,7 +9668,7 @@ END-INFO-DIR-ENTRY
        <p>
          The <prgn>DEBIAN</prgn> directory will not appear in the
          file system archive of the package, and so won't be installed
-         by <prgn>dpkg</prgn> when the package is installed.
+         by <prgn>dpkg</prgn> when the package is unpacked.
        </p>
 
        <p>