Differences between revisions 19 and 20
Revision 19 as of 2010-04-18 05:40:37
Size: 5252
Editor: ?JonathanNieder
Comment: oops, extra paren
Revision 20 as of 2010-06-22 15:54:42
Size: 7114
Editor: ?BernhardRLink
Comment: Do not recommend uncessary provide. Note what to conflict against. Also list method without transitional package.
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
== Method 1 (only useful in very easy cases) ==

One method is to just have the new package provide, replace and conflict the old
package. This had two disadvantages: If there are versioned depends on the
old package, they will break and most package managers (including AFAIK apt)
do not know to replace the old with the new one and will only do it if anything
pulls in the new package.

== Method 2 ==
Line 6: Line 16:
== Method A == == Method 2 A ==
Line 19: Line 29:
The package only installs the mandatory files in /usr/share/doc/oldPkg. The package only installs the mandatory files in /usr/share/doc/oldPkg
and possibly some compatibility symlinks, see below
.
Line 29: Line 40:
 Provides: oldPkg
Replaces: oldPkg (<< 2.0-1)
 Conflicts: oldPkg (<< 2.0-1)
 Replaces: oldPkg (<< 2.0-1~)
 Conflicts: oldPkg (<< 2.0-1~)
Line 33: Line 43:
The {{{Provides:}}} entry makes sure that reverse dependencies do net get broken so that other packages which depend on the old unversioned package name can still be installed.
Line 35: Line 44:
Please make sure not to forget the Debian-revision of the first renamed version which entered/will enter the archive in the Replaces: and Conflicts: line unless you want to stumble across bugs like [[DebianBug:397993|#397993]]. You can also add a {{{Provides:}}} entry. But that will only help for unversioned depends anyway and there is the transitional package to
keep the reverse depends working.
Line 37: Line 47:
== Method B (NOT CURRENTLY APPLICABLE) == Please make sure that you use the proper version to conflict against.
You must make sure that you conflict against all versions which still
have the files in the old package. Especially if you split it between
two debian revisions, you must add a debian revision and not only conflict
against older upstream versions. (Or you will stumble across bugs like
[[DebianBug:397993|#397993]]).

=== compatibility symlinks ===

If your new package also changes some interfaces to users or other packages,
for example the package name changed because the program name changed, you
might want to add compatiblity symlinks. Those can either be placed in the
old or the new package. If the symlink there there to stay, place it in the
new package (so users can remove the transitional package and still have it).
If the symlink is supposed to go away, placing it in the old package has the
advantage that users can choose to have it or not (of couse make sure to
give the old package a proper description stating that it contains that
compatibility) and that there is an easy way to see which other packages
still need to change (things depending on the old name may need the compatbility
symlink, while things depending on the new name must call it with the new name).
As packages that have been in a release will need to have the transitional
package in the next release, that extra information is especially useful if
the package never released so the transitional package can be removed soon
or if there are chances the transition to the new name will take more than
one release to have all reverse-dependencies fixed).

== Method 2 B (NOT CURRENTLY APPLICABLE) ==

Why?

Sometimes, it is necessary for a package to get a new name. Although this should rather seldom be the case, there are some situations when it makes sense, for example when the name of the upstream application changes. Of course an apt-get dist-upgrade should still seamlessly upgrade the package, best by completely removing the old package and installing the new one as a replacement.

Method 1 (only useful in very easy cases)

One method is to just have the new package provide, replace and conflict the old package. This had two disadvantages: If there are versioned depends on the old package, they will break and most package managers (including AFAIK apt) do not know to replace the old with the new one and will only do it if anything pulls in the new package.

Method 2

Basically, the solution is to define a binary dummy package with the same name as the old package in the control file of the new package. The new source package takes over the binary dummy package, and the old source package, which is then binaryless, will be cleaned up by rene, an archive cleanup tool.

Method 2 A

Assume that the last upstream version of the old package "oldPkg" was 1.5 and the package was renamed to "newPkg" for version 2.0.

Then, the dummy package is defined like this in debian/control:

 Package: oldPkg
 Depends: newPkg
 Architecture: all
 Description: transitional dummy package

This entry defines the binary dummy package. It will get version 2.0-1 and automatically be pulled in by an apt-get dist-upgrade if an earlier version of oldPkg was already installed.

The package only installs the mandatory files in /usr/share/doc/oldPkg and possibly some compatibility symlinks, see below.

Since it depends on newPkg, it also installs the new package.

Note that the package does not contain any architecture specific files anymore and therefore the Architecture is set to "All", even if it was "Any" before.

The new package is defined like this:

 Package: newPkg
 Replaces: oldPkg (<< 2.0-1~)
 Conflicts: oldPkg (<< 2.0-1~)

You can also add a Provides: entry. But that will only help for unversioned depends anyway and there is the transitional package to keep the reverse depends working.

Please make sure that you use the proper version to conflict against. You must make sure that you conflict against all versions which still have the files in the old package. Especially if you split it between two debian revisions, you must add a debian revision and not only conflict against older upstream versions. (Or you will stumble across bugs like #397993).

If your new package also changes some interfaces to users or other packages, for example the package name changed because the program name changed, you might want to add compatiblity symlinks. Those can either be placed in the old or the new package. If the symlink there there to stay, place it in the new package (so users can remove the transitional package and still have it). If the symlink is supposed to go away, placing it in the old package has the advantage that users can choose to have it or not (of couse make sure to give the old package a proper description stating that it contains that compatibility) and that there is an easy way to see which other packages still need to change (things depending on the old name may need the compatbility symlink, while things depending on the new name must call it with the new name). As packages that have been in a release will need to have the transitional package in the next release, that extra information is especially useful if the package never released so the transitional package can be removed soon or if there are chances the transition to the new name will take more than one release to have all reverse-dependencies fixed).

Method 2 B (NOT CURRENTLY APPLICABLE)

There is an even more elegant way which installs fewer files and would effectively provide a real replacement mechanism if it worked.

The dummy package is defined like this in debian/control:

 Section: transitional
 Package: oldPkg
 Depends: newPkg
 Architecture: all
 Description: transitional dummy package

The dummy package only installs a link (and nothing else!) like /usr/share/doc/oldPkg -> /usr/share/doc/newPkg, for example with the dh_link debhelper script. Since dpkg ignores the directory/link distinction, to get an actual link you would need a snippet like the following in postinst.

 test -L /usr/share/doc/oldPkg || rmdir /usr/share/doc/oldPkg || :
 test -e /usr/share/doc/oldPkg || ln -sT newPkg /usr/share/doc/oldPkg || :

The new package is defined like this in debian/control:

 Package: newPkg
 Provides: oldPkg
 Replaces: oldPkg
 Conflicts: oldPkg (<< 2.0)

The new package installs all its necessary files, and the same link as the dummy package, /usr/share/doc/oldPkg -> /usr/share/doc/newPkg.

Now, when an earlier version of the oldPkg is installed and the system is upgraded with apt-get dist-upgrade, the new version of the dummy package is installed which pulls in the new package newPkg. The link is then taken over by newPkg, so that no installed files remain for the old dummy package oldPkg. dpkg is aware of this situation and notices that oldPkg is now completely replaced.

Problems:

  • APT tries to configure the old dummy package at a later time, which fails because the package was already removed. See the relevant thread from the deity mailing list.

  • The new package (since installed through a dependency) is marked as automatically installed. Once oldPkg disappears, there is no obvious reason to keep newPkg any more, so it is removed on the next autoremove run. Fixing this would be good for Method A, too.

    Fix: teach the package manager that oldPkg was a transitional package so its dependencies can inherit its automatically installed status. This seems to require a change in policy (for example, a new transitional section). See Bug #574851.

  • During the transition, oldPkg might be needed to satisfy versioned dependencies on the old package name. If oldPkg and the packages depending on it are already installed, this will work fine (dpkg has support for this case), but installing oldPkg and a package with a versioned dependency on it in separate dpkg runs will not work: after oldPkg is installed, it disappears before dpkg gets a chance to know about the package that would depend on it. Workaround 1: if it needs to be kept around, install oldPkg at the same run as or later than at least one package depending on it. No higher-level package manager in Debian seems to do this. Workaround 2: do not add the /usr/share/doc/oldPkg link to newPkg until all versioned dependencies on oldPkg have been eliminated.