2009-02-21 21:33:52 -05:00
|
|
|
|
PEP: 376
|
|
|
|
|
Title: Changing the .egg-info structure
|
2009-02-22 17:42:22 -05:00
|
|
|
|
Version: $Revision$
|
|
|
|
|
Last-Modified: $Date$
|
2009-02-21 21:33:52 -05:00
|
|
|
|
Author: Tarek Ziadé <tarek@ziade.org>
|
|
|
|
|
Status: Draft
|
|
|
|
|
Type: Standards Track
|
|
|
|
|
Content-Type: text/x-rst
|
|
|
|
|
Created: 22-Feb-2009
|
2009-05-14 18:03:08 -04:00
|
|
|
|
Python-Version: 2.7, 3.2
|
2009-02-21 21:33:52 -05:00
|
|
|
|
Post-History:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Abstract
|
|
|
|
|
========
|
|
|
|
|
|
|
|
|
|
This PEP proposes various enhancements for Distutils:
|
|
|
|
|
|
2009-02-22 17:42:22 -05:00
|
|
|
|
- A new format for the .egg-info structure.
|
2009-06-25 05:43:46 -04:00
|
|
|
|
- Some APIs to read the meta-data of a distribution.
|
|
|
|
|
- A replacement PEP 262.
|
|
|
|
|
- An uninstall feature.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-04-24 12:03:02 -04:00
|
|
|
|
Definitions
|
|
|
|
|
===========
|
2009-02-28 09:22:01 -05:00
|
|
|
|
|
2009-06-23 04:50:10 -04:00
|
|
|
|
A **distribution** is a collection of files, which can be Python modules,
|
2009-06-25 05:43:46 -04:00
|
|
|
|
extensions, or data. A distribution is managed by a special module called
|
2009-06-22 09:06:55 -04:00
|
|
|
|
`setup.py` which contains a call to the `distutils.core.setup` function.
|
2009-06-23 04:50:10 -04:00
|
|
|
|
The arguments passed to that function describe the distribution, like
|
2009-06-22 09:06:55 -04:00
|
|
|
|
its `name`, its `version`, and so on.
|
|
|
|
|
|
2009-06-25 05:43:46 -04:00
|
|
|
|
Disutils provides, among other things, **commands** that can be called
|
|
|
|
|
through the shell using the `setup.py` script. An `sdist` command is provided
|
2009-06-23 08:14:02 -04:00
|
|
|
|
for instance to create a source distribution archive. An `install` command
|
|
|
|
|
is also provided to perform an installation of the distribution in the Python
|
2009-06-22 09:06:55 -04:00
|
|
|
|
installation the script is invoked with::
|
|
|
|
|
|
|
|
|
|
$ python setup.py install
|
|
|
|
|
|
2009-06-23 08:14:02 -04:00
|
|
|
|
See the Distutils [#distutils]_ documentation for more information.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-05-16 12:02:06 -04:00
|
|
|
|
Once installed, the elements are located in various places in the system, like:
|
|
|
|
|
|
2009-06-25 05:43:46 -04:00
|
|
|
|
- In Python's site-packages (Python modules, Python modules organized into
|
2009-06-22 09:06:55 -04:00
|
|
|
|
packages, Extensions, etc.)
|
2009-06-25 05:43:46 -04:00
|
|
|
|
- In Python's `include` directory.
|
|
|
|
|
- In Python's `bin` or `Script` directory.
|
|
|
|
|
- Etc.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-04-24 12:03:02 -04:00
|
|
|
|
Rationale
|
|
|
|
|
=========
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-06-23 04:50:10 -04:00
|
|
|
|
There are two problems right now in the way distributions are installed in
|
2009-06-22 09:06:55 -04:00
|
|
|
|
Python:
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-05-16 12:02:06 -04:00
|
|
|
|
- There are too many ways to do it.
|
2009-06-22 09:06:55 -04:00
|
|
|
|
- There is no API to get the metadata of installed distributions.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-06-22 09:06:55 -04:00
|
|
|
|
How distributions are installed
|
|
|
|
|
-------------------------------
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-06-30 18:10:55 -04:00
|
|
|
|
Right now, when a distribution is installed in Python, the elements it
|
|
|
|
|
contains are installed in various directories.
|
2009-05-16 12:02:06 -04:00
|
|
|
|
|
2009-06-25 05:43:46 -04:00
|
|
|
|
The pure Python code, for instance, is installed in the `purelib` directory
|
2009-06-30 18:10:55 -04:00
|
|
|
|
which is located in the Python installation at ``lib/python2.6/site-packages``
|
|
|
|
|
for example under Unix-like systems or Mac OS X, and in ``Lib\site-packages``
|
2009-05-16 12:02:06 -04:00
|
|
|
|
under Windows. This is done with the Distutils `install` command, which calls
|
|
|
|
|
various subcommands.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-06-25 05:43:46 -04:00
|
|
|
|
The `install_egg_info` subcommand is called during this process in order to
|
2009-05-16 12:02:06 -04:00
|
|
|
|
create an `.egg-info` file in the `purelib` directory.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-06-23 04:50:10 -04:00
|
|
|
|
For example, for the `docutils` distribution, which contains one package an
|
2009-07-02 06:13:23 -04:00
|
|
|
|
extra module and executable scripts, three elements are installed in
|
2009-06-23 08:14:02 -04:00
|
|
|
|
`site-packages`:
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-06-25 05:43:46 -04:00
|
|
|
|
- `docutils`: The ``docutils`` package.
|
|
|
|
|
- `roman.py`: An extra module used by `docutils`.
|
|
|
|
|
- `docutils-0.5-py2.6.egg-info`: A file containing the distribution metadata
|
2009-06-23 08:14:02 -04:00
|
|
|
|
as described in PEP 314 [#pep314]_. This file corresponds to the file
|
|
|
|
|
called `PKG-INFO`, built by the `sdist` command.
|
2009-04-24 12:03:02 -04:00
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
Some executable scripts, such as `rst2html.py`, are also be added in the
|
2009-06-25 05:43:46 -04:00
|
|
|
|
`bin` directory of the Python installation.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-07-02 05:46:04 -04:00
|
|
|
|
Another project called `setuptools` [#setuptools]_ has two other formats
|
|
|
|
|
to install distributions, called `EggFormats` [#eggformats]_:
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-07-02 04:45:29 -04:00
|
|
|
|
- a self-contained `.egg` directory, that contains all the distribution files
|
|
|
|
|
and the distribution metadata in a file called `PKG-INFO` in a subdirectory
|
2009-07-02 05:46:04 -04:00
|
|
|
|
called `EGG-INFO`. `setuptools` creates other fils in that directory that can
|
|
|
|
|
be considered as complementary metadata.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-07-02 04:45:29 -04:00
|
|
|
|
- a `.egg-info` directory installed in `site-packages`, that contains the same
|
|
|
|
|
files `EGG-INFO` has in the `.egg` format.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-07-02 04:45:29 -04:00
|
|
|
|
The first format is automatically used when you install a distribution that
|
2009-07-02 05:46:04 -04:00
|
|
|
|
uses the ``setuptools.setup`` function in its setup.py file, instead of
|
|
|
|
|
the ``distutils.core.setup`` one.
|
2009-07-02 04:45:29 -04:00
|
|
|
|
|
|
|
|
|
The `setuptools` project also provides an executable script called
|
2009-07-02 06:13:23 -04:00
|
|
|
|
`easy_install` [#easyinstall]_ that installs all distributions, including
|
2009-07-02 05:46:04 -04:00
|
|
|
|
distutils-based ones in self-contained `.egg` directories.
|
2009-07-02 04:45:29 -04:00
|
|
|
|
|
2009-07-02 05:46:04 -04:00
|
|
|
|
If you want to have a standalone `.egg.info` directory distributions, e.g.
|
|
|
|
|
the second `setuptools` format, you have to force it when you work
|
|
|
|
|
with a setuptools-based distribution or with the `easy_install` script.
|
|
|
|
|
You can force it by using the `-–single-version-externally-managed` option
|
|
|
|
|
**or** the `--root` option.
|
2009-07-02 04:45:29 -04:00
|
|
|
|
|
|
|
|
|
This option is used by :
|
|
|
|
|
|
|
|
|
|
- the `pip` [#pip]_ installer
|
|
|
|
|
- the Fedora packagers [#fedora]_.
|
|
|
|
|
- the Debian packagers [#debian]_.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-04-24 12:03:02 -04:00
|
|
|
|
Uninstall information
|
2009-02-21 21:33:52 -05:00
|
|
|
|
---------------------
|
|
|
|
|
|
2009-06-25 05:43:46 -04:00
|
|
|
|
Distutils doesn't provide an `uninstall` command. If you want to uninstall
|
2009-06-23 04:50:10 -04:00
|
|
|
|
a distribution, you have to be a power user and remove the various elements
|
2009-06-25 05:43:46 -04:00
|
|
|
|
that were installed, and then look over the `.pth` file to clean them if
|
|
|
|
|
necessary.
|
2009-05-16 12:02:06 -04:00
|
|
|
|
|
2009-06-25 05:43:46 -04:00
|
|
|
|
And the process differs depending on the tools you have used to install the
|
|
|
|
|
distribution and if the distribution's `setup.py` uses Distutils or
|
2009-06-22 09:06:55 -04:00
|
|
|
|
Setuptools.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-05-25 06:22:46 -04:00
|
|
|
|
Under some circumstances, you might not be able to know for sure that you
|
2009-06-22 09:06:55 -04:00
|
|
|
|
have removed everything, or that you didn't break another distribution by
|
2009-06-23 08:14:02 -04:00
|
|
|
|
removing a file that is shared among several distributions.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-06-25 05:43:46 -04:00
|
|
|
|
But there's a common behavior: when you install a distribution, files are
|
|
|
|
|
copied in your system. And it's possible to keep track of these files for
|
|
|
|
|
later removal.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
|
|
|
|
What this PEP proposes
|
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
|
|
To address those issues, this PEP proposes a few changes:
|
|
|
|
|
|
2009-07-02 05:46:04 -04:00
|
|
|
|
- A new `.egg-info` structure using a directory, based on one format of
|
|
|
|
|
the `EggFormats` standard from `setuptools`.
|
2009-06-25 05:43:46 -04:00
|
|
|
|
- New APIs in `pkgutil` to be able to query the information of installed
|
2009-06-22 09:06:55 -04:00
|
|
|
|
distributions.
|
2009-06-25 05:43:46 -04:00
|
|
|
|
- A de-facto replacement for PEP 262
|
2009-07-01 05:04:12 -04:00
|
|
|
|
- An uninstall function and an uninstall script in Distutils.
|
2009-05-25 06:22:46 -04:00
|
|
|
|
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
|
|
|
|
.egg-info becomes a directory
|
|
|
|
|
=============================
|
|
|
|
|
|
2009-07-02 04:45:29 -04:00
|
|
|
|
As explained earlier, the `EggFormats` standard from `setuptools` proposes two
|
|
|
|
|
formats to install the metadata information of a distribution:
|
2009-06-08 05:54:02 -04:00
|
|
|
|
|
2009-06-25 05:43:46 -04:00
|
|
|
|
- A self-contained directory that can be zipped or left unzipped and contains
|
2009-07-01 09:15:40 -04:00
|
|
|
|
the distribution files *and* an `.egg-info` directory containing the
|
|
|
|
|
metadata.
|
|
|
|
|
|
|
|
|
|
- A distinct `.egg-info` directory located in the site-packages directory,
|
|
|
|
|
with the metadata inside.
|
2009-06-08 05:54:02 -04:00
|
|
|
|
|
2009-07-01 09:15:40 -04:00
|
|
|
|
This PEP proposes to keep just one format and make it the standard way to
|
|
|
|
|
install the metadata of a distribution : a distinct `.egg-info` directory
|
|
|
|
|
located in the site-packages directory, containing the metadata.
|
2009-06-08 05:54:02 -04:00
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
This `.egg-info` directory contains a `PKG-INFO` file built by the
|
2009-07-01 09:15:40 -04:00
|
|
|
|
`write_pkg_file` method of the `Distribution` class in Distutils.
|
2009-05-25 06:22:46 -04:00
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
This change is not impacting Python itself because the metadata files are not
|
2009-05-25 06:22:46 -04:00
|
|
|
|
used anywhere yet in the standard library besides Distutils.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
However, it is impacting the `setuptools` and `pip` projects, but given
|
2009-05-25 06:22:46 -04:00
|
|
|
|
the fact that they already work with a directory that contains a `PKG-INFO`
|
2009-07-01 09:15:40 -04:00
|
|
|
|
file, the change will have no deep consequences. That said, packages installed
|
2009-07-02 06:13:23 -04:00
|
|
|
|
other existing pre-standardisation formats are ignored by the new
|
2009-07-01 09:15:40 -04:00
|
|
|
|
system, as explained in the backward compatibility section of this document.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-07-01 09:15:40 -04:00
|
|
|
|
Let's take an example of the new format with the `docutils` distribution.
|
2009-07-02 06:13:23 -04:00
|
|
|
|
The elements installed in `site-packages` are::
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-06-23 08:14:02 -04:00
|
|
|
|
- docutils/
|
2009-06-23 04:50:10 -04:00
|
|
|
|
- roman.py
|
|
|
|
|
- docutils-0.5-py2.6.egg-info/
|
2009-02-21 21:33:52 -05:00
|
|
|
|
PKG-INFO
|
|
|
|
|
|
2009-05-25 06:22:46 -04:00
|
|
|
|
The syntax of the egg-info directory name is as follows::
|
|
|
|
|
|
|
|
|
|
name + '-' + version + '.egg-info'
|
|
|
|
|
|
|
|
|
|
The egg-info directory name is created using a new function called
|
2009-06-12 06:00:17 -04:00
|
|
|
|
``egginfo_dirname(name, version)`` added to ``pkgutil``. ``name`` is
|
2009-06-30 18:10:55 -04:00
|
|
|
|
converted to a standard distribution name by replacing any runs of
|
|
|
|
|
non-alphanumeric characters with a single '-'. ``version`` is converted
|
2009-06-04 05:36:32 -04:00
|
|
|
|
to a standard version string. Spaces become dots, and all other
|
2009-06-30 18:10:55 -04:00
|
|
|
|
non-alphanumeric characters (except dots) become dashes, with runs of
|
|
|
|
|
multiple dashes condensed to a single dash. Both attributes are then
|
|
|
|
|
converted into their filename-escaped form, i.e. any '-' characters are
|
2009-07-01 09:15:40 -04:00
|
|
|
|
replaced with '_' other than the one in 'egg-info' and the one
|
|
|
|
|
separating the name from the version number.
|
2009-05-25 06:22:46 -04:00
|
|
|
|
|
|
|
|
|
Examples::
|
|
|
|
|
|
2009-06-23 04:50:10 -04:00
|
|
|
|
>>> egginfo_dirname('docutils', '0.5')
|
|
|
|
|
'docutils-0.5.egg-info'
|
2009-05-25 06:22:46 -04:00
|
|
|
|
|
2009-06-12 06:00:17 -04:00
|
|
|
|
>>> egginfo_dirname('python-ldap', '2.5')
|
2009-05-25 06:22:46 -04:00
|
|
|
|
'python_ldap-2.5.egg-info'
|
|
|
|
|
|
2009-06-12 06:00:17 -04:00
|
|
|
|
>>> egginfo_dirname('python-ldap', '2.5 a---5')
|
2009-05-25 06:22:46 -04:00
|
|
|
|
'python_ldap-2.5.a_5.egg-info'
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-05-25 06:22:46 -04:00
|
|
|
|
Adding a RECORD file in the .egg-info directory
|
|
|
|
|
===============================================
|
2009-02-28 09:22:01 -05:00
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
A `RECORD` file is added inside the `.egg-info` directory at installation
|
|
|
|
|
time. The `RECORD` file holds the list of installed files. These correspond
|
2009-05-25 06:22:46 -04:00
|
|
|
|
to the files listed by the `record` option of the `install` command, and will
|
2009-07-02 06:13:23 -04:00
|
|
|
|
be generated by default. This allows the implementation of an uninstallation
|
|
|
|
|
feature, as explained later in this PEP. The `install` command also provides
|
|
|
|
|
an option to prevent the `RECORD` file from being written and this option
|
|
|
|
|
should be used when creating system packages.
|
2009-06-05 04:35:30 -04:00
|
|
|
|
|
|
|
|
|
Third-party installation tools also should not overwrite or delete files
|
|
|
|
|
that are not in a RECORD file without prompting or warning.
|
|
|
|
|
|
|
|
|
|
This RECORD file is inspired from PEP 262 FILES [#pep262]_.
|
2009-05-16 12:02:06 -04:00
|
|
|
|
|
|
|
|
|
The RECORD format
|
|
|
|
|
-----------------
|
|
|
|
|
|
2009-06-08 05:54:02 -04:00
|
|
|
|
The `RECORD` file is a CSV file, composed of records, one line per
|
|
|
|
|
installed file. The ``csv`` module is used to read the file, with
|
2009-07-01 09:37:33 -04:00
|
|
|
|
these options:
|
2009-06-08 05:54:02 -04:00
|
|
|
|
|
|
|
|
|
- field delimiter : `,`
|
|
|
|
|
- quoting char : `"`.
|
2009-06-30 18:10:55 -04:00
|
|
|
|
- line terminator : ``os.linesep`` (so ``\r\n`` or ``\n``)
|
2009-06-08 05:54:02 -04:00
|
|
|
|
|
|
|
|
|
Each record is composed of three elements.
|
2009-05-16 12:02:06 -04:00
|
|
|
|
|
|
|
|
|
- the file's full **path**
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-06-23 04:50:10 -04:00
|
|
|
|
- if the installed file is located in the directory where the `.egg-info`
|
2009-07-02 06:13:23 -04:00
|
|
|
|
directory of the package is located, it's a '/'-separated relative
|
2009-06-25 05:43:46 -04:00
|
|
|
|
path, no matter what the target system is. This makes this information
|
2009-06-30 18:10:55 -04:00
|
|
|
|
cross-compatible and allows simple installations to be relocatable.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-05-25 06:22:46 -04:00
|
|
|
|
- if the installed file is located elsewhere in the system, a
|
2009-05-16 12:02:06 -04:00
|
|
|
|
'/'-separated absolute path is used.
|
2009-04-24 12:03:02 -04:00
|
|
|
|
|
2009-05-16 12:02:06 -04:00
|
|
|
|
- the **MD5** hash of the file, encoded in hex. Notice that `pyc` and `pyo`
|
2009-07-02 06:13:23 -04:00
|
|
|
|
generated files don't have any hash because they are automatically produced
|
2009-06-23 04:50:10 -04:00
|
|
|
|
from `py` files. So checking the hash of the corresponding `py` file is
|
|
|
|
|
enough to decide if the file and its associated `pyc` or `pyo` files have
|
|
|
|
|
changed.
|
2009-04-24 12:03:02 -04:00
|
|
|
|
|
2009-05-16 12:02:06 -04:00
|
|
|
|
- the file's size in bytes
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
The ``csv`` module is used to generate this file, so the field separator is
|
|
|
|
|
",". Any "," characters found within a field is escaped automatically by ``csv``.
|
2009-05-25 06:22:46 -04:00
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
When the file is read, the `U` option is used so the universal newline
|
|
|
|
|
support (see PEP 278 [#pep278]_) is activated, avoiding any trouble
|
2009-06-23 04:50:10 -04:00
|
|
|
|
reading a file produced on a platform that uses a different new line
|
|
|
|
|
terminator.
|
|
|
|
|
|
2009-05-16 12:02:06 -04:00
|
|
|
|
Example
|
|
|
|
|
-------
|
2009-04-24 12:03:02 -04:00
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
Back to our `docutils` example, we now have::
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-06-23 08:14:02 -04:00
|
|
|
|
- docutils/
|
|
|
|
|
- roman.py
|
|
|
|
|
- docutils-0.5-py2.6.egg-info/
|
2009-02-21 21:33:52 -05:00
|
|
|
|
PKG-INFO
|
|
|
|
|
RECORD
|
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
And the RECORD file contains (extract)::
|
2009-05-16 12:02:06 -04:00
|
|
|
|
|
2009-06-23 08:14:02 -04:00
|
|
|
|
docutils/__init__.py,b690274f621402dda63bf11ba5373bf2,9544
|
|
|
|
|
docutils/core.py,9c4b84aff68aa55f2e9bf70481b94333,66188
|
|
|
|
|
roman.py,a4b84aff68aa55f2e9bf70481b943D3,234
|
|
|
|
|
/usr/local/bin/rst2html.py,a4b84aff68aa55f2e9bf70481b943D3,234
|
|
|
|
|
docutils-0.5-py2.6.egg-info/PKG-INFO,6fe57de576d749536082d8e205b77748,195
|
|
|
|
|
docutils-0.5-py2.6.egg-info/RECORD
|
2009-05-16 12:02:06 -04:00
|
|
|
|
|
|
|
|
|
Notice that:
|
|
|
|
|
|
|
|
|
|
- the `RECORD` file can't contain a hash of itself and is just mentioned here
|
2009-06-23 08:14:02 -04:00
|
|
|
|
- `docutils` and `docutils-0.5-py2.6.egg-info` are located in `site-packages` so the file
|
2009-05-16 12:02:06 -04:00
|
|
|
|
paths are relative to it.
|
|
|
|
|
|
2009-06-05 04:35:30 -04:00
|
|
|
|
Adding an INSTALLER file in the .egg-info directory
|
|
|
|
|
===================================================
|
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
The `install` command has a new option called `installer`. This option
|
2009-06-05 04:35:30 -04:00
|
|
|
|
is the name of the tool used to invoke the installation. It's an normalized
|
2009-06-12 06:00:17 -04:00
|
|
|
|
lower-case string matching `[a-z0-9_\-\.]`.
|
2009-06-05 04:35:30 -04:00
|
|
|
|
|
|
|
|
|
$ python setup.py install --installer=pkg-system
|
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
It defaults to `distutils` if not provided.
|
2009-06-05 04:35:30 -04:00
|
|
|
|
|
2009-06-22 09:06:55 -04:00
|
|
|
|
When a distribution is installed, the INSTALLER file is generated in the
|
2009-06-12 06:00:17 -04:00
|
|
|
|
`.egg-info` directory with this value, to keep track of **who** installed the
|
2009-06-22 09:06:55 -04:00
|
|
|
|
distribution. The file is a single-line text file.
|
2009-06-05 04:35:30 -04:00
|
|
|
|
|
2009-05-25 06:22:46 -04:00
|
|
|
|
New APIs in pkgutil
|
|
|
|
|
===================
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-05-25 06:22:46 -04:00
|
|
|
|
To use the `.egg-info` directory content, we need to add in the standard
|
2009-07-02 04:45:29 -04:00
|
|
|
|
library a set of APIs. The best place to put these APIs is `pkgutil`.
|
2009-04-13 16:52:58 -04:00
|
|
|
|
|
2009-07-02 05:46:04 -04:00
|
|
|
|
Query functions
|
|
|
|
|
---------------
|
2009-06-04 05:36:32 -04:00
|
|
|
|
|
2009-07-02 05:46:04 -04:00
|
|
|
|
The new functions added in the ``pkgutil`` are :
|
|
|
|
|
|
|
|
|
|
- ``get_distributions()`` -> iterator of ``Distribution`` instances.
|
|
|
|
|
|
|
|
|
|
Provides an iterator that looks for ``.egg-info`` directories in
|
|
|
|
|
``sys.path`` and returns ``Distribution`` instances for
|
|
|
|
|
each one of them.
|
|
|
|
|
|
|
|
|
|
- ``get_distribution(name)`` -> ``Distribution`` or None.
|
|
|
|
|
|
|
|
|
|
Scans all elements in ``sys.path`` and looks for all directories ending with
|
|
|
|
|
``.egg-info``. Returns a ``Distribution`` corresponding to the
|
|
|
|
|
``.egg-info`` directory that contains a PKG-INFO that matches `name`
|
|
|
|
|
for the `name` metadata.
|
|
|
|
|
|
|
|
|
|
Notice that there should be at most one result. The first result founded
|
2009-07-02 06:13:23 -04:00
|
|
|
|
is returned. If the directory is not found, returns None.
|
2009-07-02 05:46:04 -04:00
|
|
|
|
|
|
|
|
|
- ``get_file_users(path)`` -> iterator of ``Distribution`` instances.
|
|
|
|
|
|
|
|
|
|
Iterates over all distributions to find out which distributions uses ``path``.
|
|
|
|
|
``path`` can be a local absolute path or a relative '/'-separated path.
|
2009-06-04 05:36:32 -04:00
|
|
|
|
|
2009-06-12 06:00:17 -04:00
|
|
|
|
Distribution class
|
|
|
|
|
------------------
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-06-12 06:00:17 -04:00
|
|
|
|
A new class called ``Distribution`` is created with a the path of the
|
|
|
|
|
`.egg-info` directory provided to the contructor. It reads the metadata
|
|
|
|
|
contained in `PKG-INFO` when it is instanciated.
|
2009-06-04 05:36:32 -04:00
|
|
|
|
|
2009-06-23 08:14:02 -04:00
|
|
|
|
``Distribution(path)`` -> instance
|
|
|
|
|
|
|
|
|
|
Creates a ``Distribution`` instance for the given ``path``.
|
|
|
|
|
|
2009-06-12 06:00:17 -04:00
|
|
|
|
``Distribution`` provides the following attributes:
|
2009-05-19 08:43:34 -04:00
|
|
|
|
|
2009-06-12 06:00:17 -04:00
|
|
|
|
- ``name``: The name of the distribution.
|
2009-05-25 06:22:46 -04:00
|
|
|
|
|
2009-06-12 06:00:17 -04:00
|
|
|
|
- ``metadata``: A ``DistributionMetadata`` instance loaded with the
|
|
|
|
|
distribution's PKG-INFO file.
|
2009-05-25 06:22:46 -04:00
|
|
|
|
|
2009-06-04 05:36:32 -04:00
|
|
|
|
And following methods:
|
2009-05-25 06:22:46 -04:00
|
|
|
|
|
|
|
|
|
- ``get_installed_files(local=False)`` -> iterator of (path, md5, size)
|
|
|
|
|
|
2009-06-04 05:36:32 -04:00
|
|
|
|
Iterates over the `RECORD` entries and return a tuple ``(path, md5, size)``
|
|
|
|
|
for each line. If ``local`` is ``True``, the path is transformed into a
|
2009-05-25 06:22:46 -04:00
|
|
|
|
local absolute path. Otherwise the raw value from `RECORD` is returned.
|
|
|
|
|
|
2009-07-01 09:15:40 -04:00
|
|
|
|
A local absolute path is an absolute path in which occurrences of '/'
|
|
|
|
|
have been replaced by the system separator given by ``os.sep``.
|
|
|
|
|
|
2009-05-25 06:22:46 -04:00
|
|
|
|
- ``uses(path)`` -> Boolean
|
|
|
|
|
|
|
|
|
|
Returns ``True`` if ``path`` is listed in `RECORD`. ``path``
|
|
|
|
|
can be a local absolute path or a relative '/'-separated path.
|
2009-05-19 08:43:34 -04:00
|
|
|
|
|
2009-06-12 06:00:17 -04:00
|
|
|
|
- ``get_egginfo_file(path, binary=False)`` -> file object
|
2009-06-08 05:54:02 -04:00
|
|
|
|
|
|
|
|
|
Returns a file located under the `.egg-info` directory.
|
|
|
|
|
|
|
|
|
|
Returns a ``file`` instance for the file pointed by ``path``.
|
|
|
|
|
|
2009-06-23 08:14:02 -04:00
|
|
|
|
``path`` has to be a '/'-separated path relative to the `.egg-info`
|
2009-06-08 05:54:02 -04:00
|
|
|
|
directory or an absolute path.
|
|
|
|
|
|
2009-06-12 06:00:17 -04:00
|
|
|
|
If ``path`` is an absolute path and doesn't start with the `.egg-info`
|
2009-06-08 05:54:02 -04:00
|
|
|
|
directory path, a ``DistutilsError`` is raised.
|
|
|
|
|
|
2009-06-23 04:55:56 -04:00
|
|
|
|
If ``binary`` is ``True``, opens the file in read-only binary mode (`rb`),
|
|
|
|
|
otherwise opens it in read-only mode (`r`).
|
2009-06-08 05:54:02 -04:00
|
|
|
|
|
2009-06-12 06:00:17 -04:00
|
|
|
|
- ``get_egginfo_files(local=False)`` -> iterator of paths
|
2009-06-08 05:54:02 -04:00
|
|
|
|
|
|
|
|
|
Iterates over the `RECORD` entries and return paths for each line if the path
|
|
|
|
|
is pointing a file located in the `.egg-info` directory or one of its
|
|
|
|
|
subdirectory.
|
|
|
|
|
|
|
|
|
|
If ``local`` is ``True``, each path is transformed into a
|
|
|
|
|
local absolute path. Otherwise the raw value from `RECORD` is returned.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-06-23 08:14:02 -04:00
|
|
|
|
|
2009-07-02 05:46:04 -04:00
|
|
|
|
Notice that the API is organized in five classes that work with directories
|
|
|
|
|
and Zip files (so it works with files included in Zip files, see PEP 273 for
|
|
|
|
|
more details [#pep273]_). These classes are described in the documentation
|
|
|
|
|
of the prototype implementation for interested readers [#prototype]_.
|
2009-06-23 08:14:02 -04:00
|
|
|
|
|
2009-07-02 05:46:04 -04:00
|
|
|
|
Usage example
|
|
|
|
|
-------------
|
2009-05-25 06:22:46 -04:00
|
|
|
|
|
2009-06-23 08:14:02 -04:00
|
|
|
|
Let's use some of the new APIs with our `docutils` example::
|
2009-05-25 06:22:46 -04:00
|
|
|
|
|
2009-06-12 06:00:17 -04:00
|
|
|
|
>>> from pkgutil import get_distribution, get_file_users
|
2009-06-23 08:14:02 -04:00
|
|
|
|
>>> dist = get_distribution('docutils')
|
2009-06-12 06:00:17 -04:00
|
|
|
|
>>> dist.name
|
2009-06-23 08:14:02 -04:00
|
|
|
|
'docutils'
|
2009-06-12 06:00:17 -04:00
|
|
|
|
>>> dist.metadata.version
|
2009-06-23 08:14:02 -04:00
|
|
|
|
'0.5'
|
2009-05-25 06:22:46 -04:00
|
|
|
|
|
2009-06-12 06:00:17 -04:00
|
|
|
|
>>> for path, hash, size in dist.get_installed_files()::
|
2009-06-23 04:50:10 -04:00
|
|
|
|
... print '%s %s %d' % (path, hash, size)
|
2009-05-16 12:02:06 -04:00
|
|
|
|
...
|
2009-06-23 08:14:02 -04:00
|
|
|
|
docutils/__init__.py b690274f621402dda63bf11ba5373bf2 9544
|
|
|
|
|
docutils/core.py 9c4b84aff68aa55f2e9bf70481b94333 66188
|
|
|
|
|
roman.py a4b84aff68aa55f2e9bf70481b943D3 234
|
|
|
|
|
/usr/local/bin/rst2html.py a4b84aff68aa55f2e9bf70481b943D3 234
|
|
|
|
|
docutils-0.5-py2.6.egg-info/PKG-INFO 6fe57de576d749536082d8e205b77748 195
|
|
|
|
|
docutils-0.5-py2.6.egg-info/RECORD None None
|
|
|
|
|
|
|
|
|
|
>>> dist.uses('docutils/core.py')
|
|
|
|
|
True
|
|
|
|
|
|
|
|
|
|
>>> dist.uses('/usr/local/bin/rst2html.py')
|
2009-05-25 06:22:46 -04:00
|
|
|
|
True
|
2009-05-16 12:02:06 -04:00
|
|
|
|
|
2009-06-12 06:00:17 -04:00
|
|
|
|
>>> dist.get_egginfo_file('PKG-INFO')
|
2009-05-25 06:22:46 -04:00
|
|
|
|
<open file at ...>
|
|
|
|
|
|
|
|
|
|
PEP 262 replacement
|
|
|
|
|
===================
|
|
|
|
|
|
|
|
|
|
In the past an attempt was made to create a installation database (see PEP 262
|
|
|
|
|
[#pep262]_).
|
|
|
|
|
|
|
|
|
|
Extract from PEP 262 Requirements:
|
|
|
|
|
|
|
|
|
|
" We need a way to figure out what distributions, and what versions of
|
|
|
|
|
those distributions, are installed on a system..."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Since the APIs proposed in the current PEP provide everything needed to meet
|
2009-07-02 06:13:23 -04:00
|
|
|
|
this requirement, PEP 376 replaces PEP 262 and becomes the official
|
2009-05-25 06:22:46 -04:00
|
|
|
|
`installation database` standard.
|
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
The new version of PEP 345 (XXX work in progress) extends the Metadata
|
|
|
|
|
standard and fullfills the requirements described in PEP 262, like the
|
2009-05-25 06:22:46 -04:00
|
|
|
|
`REQUIRES` section.
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-05-07 05:02:23 -04:00
|
|
|
|
Adding an Uninstall function
|
|
|
|
|
============================
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-06-23 04:50:10 -04:00
|
|
|
|
Distutils already provides a very basic way to install a distribution, which
|
|
|
|
|
is running the `install` command over the `setup.py` script of the
|
2009-06-22 09:06:55 -04:00
|
|
|
|
distribution.
|
2009-03-28 15:08:48 -04:00
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
Distutils will provide a very basic ``uninstall`` function, that is added
|
|
|
|
|
in ``distutils.util`` and takes the name of the distribution to uninstall
|
|
|
|
|
as its argument. ``uninstall`` uses the APIs desribed earlier and remove all
|
|
|
|
|
unique files, as long as their hash didn't change. Then it removes empty
|
|
|
|
|
directories left behind.
|
2009-03-28 15:08:48 -04:00
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
``uninstall`` returns a list of uninstalled files::
|
2009-03-28 15:08:48 -04:00
|
|
|
|
|
2009-04-24 12:03:02 -04:00
|
|
|
|
>>> from distutils.util import uninstall
|
2009-06-23 08:14:02 -04:00
|
|
|
|
>>> uninstall('docutils')
|
|
|
|
|
['/opt/local/lib/python2.6/site-packages/docutils/core.py',
|
|
|
|
|
...
|
|
|
|
|
'/opt/local/lib/python2.6/site-packages/docutils/__init__.py']
|
2009-05-07 05:02:23 -04:00
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
If the distribution is not found, a ``DistutilsUninstallError`` is be raised.
|
2009-03-28 15:08:48 -04:00
|
|
|
|
|
2009-06-05 04:35:30 -04:00
|
|
|
|
Filtering
|
|
|
|
|
---------
|
|
|
|
|
|
2009-05-25 06:22:46 -04:00
|
|
|
|
To make it a reference API for third-party projects that wish to control
|
2009-07-02 06:13:23 -04:00
|
|
|
|
how `uninstall` works, a second callable argument can be used. It's
|
2009-05-25 06:22:46 -04:00
|
|
|
|
called for each file that is removed. If the callable returns `True`, the
|
2009-07-02 06:13:23 -04:00
|
|
|
|
file is removed. If it returns False, it's left alone.
|
2009-03-28 15:08:48 -04:00
|
|
|
|
|
2009-04-24 12:03:02 -04:00
|
|
|
|
Examples::
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-04-24 12:03:02 -04:00
|
|
|
|
>>> def _remove_and_log(path):
|
|
|
|
|
... logging.info('Removing %s' % path)
|
|
|
|
|
... return True
|
2009-05-16 12:02:06 -04:00
|
|
|
|
...
|
2009-06-23 08:14:02 -04:00
|
|
|
|
>>> uninstall('docutils', _remove_and_log)
|
2009-05-07 05:02:23 -04:00
|
|
|
|
|
2009-04-24 12:03:02 -04:00
|
|
|
|
>>> def _dry_run(path):
|
|
|
|
|
... logging.info('Removing %s (dry run)' % path)
|
|
|
|
|
... return False
|
2009-05-16 12:02:06 -04:00
|
|
|
|
...
|
2009-06-23 08:14:02 -04:00
|
|
|
|
>>> uninstall('docutils', _dry_run)
|
2009-03-28 15:08:48 -04:00
|
|
|
|
|
2009-05-25 06:22:46 -04:00
|
|
|
|
Of course, a third-party tool can use ``pkgutil`` APIs to implement
|
2009-05-16 13:13:54 -04:00
|
|
|
|
its own uninstall feature.
|
2009-05-16 12:02:06 -04:00
|
|
|
|
|
2009-06-05 04:35:30 -04:00
|
|
|
|
Installer marker
|
|
|
|
|
----------------
|
|
|
|
|
|
|
|
|
|
As explained earlier in this PEP, the `install` command adds an `INSTALLER`
|
|
|
|
|
file in the `.egg-info` directory with the name of the installer.
|
|
|
|
|
|
2009-06-22 09:06:55 -04:00
|
|
|
|
To avoid removing distributions that where installed by another packaging system,
|
2009-06-05 04:35:30 -04:00
|
|
|
|
the ``uninstall`` function takes an extra argument ``installer`` which default
|
|
|
|
|
to ``distutils``.
|
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
When called, ``uninstall`` controls that the ``INSTALLER`` file matches
|
|
|
|
|
this argument. If not, it raises a ``DistutilsUninstallError``::
|
2009-06-05 04:35:30 -04:00
|
|
|
|
|
2009-06-23 08:14:02 -04:00
|
|
|
|
>>> uninstall('docutils')
|
2009-06-05 04:35:30 -04:00
|
|
|
|
Traceback (most recent call last):
|
|
|
|
|
...
|
2009-06-23 08:14:02 -04:00
|
|
|
|
DistutilsUninstallError: docutils was installed by 'cool-pkg-manager'
|
2009-06-05 04:35:30 -04:00
|
|
|
|
|
2009-06-23 08:14:02 -04:00
|
|
|
|
>>> uninstall('docutils', installer='cool-pkg-manager')
|
2009-06-05 04:35:30 -04:00
|
|
|
|
|
2009-06-12 06:00:17 -04:00
|
|
|
|
This allows a third-party application to use the ``uninstall`` function
|
2009-06-22 09:06:55 -04:00
|
|
|
|
and make sure it's the only program that can remove a distribution it has
|
2009-06-05 04:35:30 -04:00
|
|
|
|
previously installed. This is useful when a third-party program that relies
|
|
|
|
|
on Distutils APIs does extra steps on the system at installation time,
|
|
|
|
|
it has to undo at uninstallation time.
|
|
|
|
|
|
2009-07-01 05:04:12 -04:00
|
|
|
|
Adding an Uninstall script
|
|
|
|
|
==========================
|
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
An `uninstall` script is added in Distutils. and is used like this::
|
2009-07-01 05:04:12 -04:00
|
|
|
|
|
|
|
|
|
$ python -m distutils.uninstall packagename
|
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
Notice that script doesn't control if the removal of a distribution breaks
|
|
|
|
|
another distribution. Although it makes sure that all the files it removes
|
2009-07-01 05:04:12 -04:00
|
|
|
|
are not used by any other distribution, by using the uninstall function.
|
|
|
|
|
|
|
|
|
|
|
2009-05-14 05:32:29 -04:00
|
|
|
|
Backward compatibility and roadmap
|
|
|
|
|
==================================
|
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
These changes doesn't introduce any compatibility problems with the previous
|
2009-05-14 05:32:29 -04:00
|
|
|
|
version of Distutils, and will also work with existing third-party tools.
|
|
|
|
|
|
2009-07-02 06:13:23 -04:00
|
|
|
|
Although, a backport of the new Distutils for 2.5, 2.6, 3.0 and 3.1 is
|
2009-05-16 12:02:06 -04:00
|
|
|
|
provided so people can benefit from these new features.
|
2009-05-14 18:19:41 -04:00
|
|
|
|
|
2009-05-14 05:32:29 -04:00
|
|
|
|
The plan is to integrate them for Python 2.7 and Python 3.2
|
2009-03-28 15:08:48 -04:00
|
|
|
|
|
2009-06-23 08:14:02 -04:00
|
|
|
|
|
2009-05-16 12:02:06 -04:00
|
|
|
|
References
|
|
|
|
|
==========
|
|
|
|
|
|
2009-06-23 08:14:02 -04:00
|
|
|
|
.. [#distutils]
|
|
|
|
|
http://docs.python.org/distutils
|
|
|
|
|
|
2009-05-16 12:02:06 -04:00
|
|
|
|
.. [#pep262]
|
|
|
|
|
http://www.python.org/dev/peps/pep-0262
|
|
|
|
|
|
|
|
|
|
.. [#pep314]
|
|
|
|
|
http://www.python.org/dev/peps/pep-0314
|
|
|
|
|
|
2009-05-16 13:13:54 -04:00
|
|
|
|
.. [#setuptools]
|
|
|
|
|
http://peak.telecommunity.com/DevCenter/setuptools
|
|
|
|
|
|
2009-07-02 05:46:04 -04:00
|
|
|
|
.. [#easyinstall]
|
|
|
|
|
http://peak.telecommunity.com/DevCenter/EasyInstall
|
|
|
|
|
|
2009-05-16 13:13:54 -04:00
|
|
|
|
.. [#pip]
|
|
|
|
|
http://pypi.python.org/pypi/pip
|
2009-05-16 12:02:06 -04:00
|
|
|
|
|
2009-05-25 06:22:46 -04:00
|
|
|
|
.. [#eggformats]
|
|
|
|
|
http://peak.telecommunity.com/DevCenter/EggFormats
|
|
|
|
|
|
2009-06-22 09:06:55 -04:00
|
|
|
|
.. [#pep273]
|
|
|
|
|
http://www.python.org/dev/peps/pep-0273
|
|
|
|
|
|
2009-06-23 08:14:02 -04:00
|
|
|
|
.. [#pep278]
|
2009-06-23 04:50:10 -04:00
|
|
|
|
http://www.python.org/dev/peps/pep-0278
|
|
|
|
|
|
2009-07-02 04:45:29 -04:00
|
|
|
|
.. [#fedora]
|
|
|
|
|
http://fedoraproject.org/wiki/Packaging/Python/Eggs#Providing_Eggs_using_Setuptools
|
|
|
|
|
|
|
|
|
|
.. [#debian]
|
|
|
|
|
http://wiki.debian.org/DebianPython/NewPolicy
|
2009-06-23 04:50:10 -04:00
|
|
|
|
|
2009-07-02 05:46:04 -04:00
|
|
|
|
.. [#prototype]
|
|
|
|
|
http://bitbucket.org/tarek/pep376/
|
|
|
|
|
|
2009-03-28 15:08:48 -04:00
|
|
|
|
Aknowledgments
|
|
|
|
|
==============
|
2009-02-21 21:33:52 -05:00
|
|
|
|
|
2009-03-28 15:08:48 -04:00
|
|
|
|
Jim Fulton, Ian Bicking, Phillip Eby, and many people at Pycon and Distutils-SIG.
|
2009-02-28 09:22:01 -05:00
|
|
|
|
|
2009-02-21 21:33:52 -05:00
|
|
|
|
Copyright
|
|
|
|
|
=========
|
|
|
|
|
|
|
|
|
|
This document has been placed in the public domain.
|
|
|
|
|
|
|
|
|
|
|
2009-02-28 09:22:01 -05:00
|
|
|
|
|
2009-02-21 21:33:52 -05:00
|
|
|
|
..
|
|
|
|
|
Local Variables:
|
|
|
|
|
mode: indented-text
|
|
|
|
|
indent-tabs-mode: nil
|
|
|
|
|
sentence-end-double-space: t
|
|
|
|
|
fill-column: 70
|
|
|
|
|
coding: utf-8
|
|
|
|
|
End:
|