2001-07-09 10:26:26 -04:00
|
|
|
|
PEP: 262
|
|
|
|
|
Title: A Database of Installed Python Packages
|
|
|
|
|
Version: $Revision$
|
2006-03-23 15:13:19 -05:00
|
|
|
|
Last-Modified: $Date$
|
2002-10-30 20:35:08 -05:00
|
|
|
|
Author: A.M. Kuchling <amk@amk.ca>
|
2007-06-19 00:20:07 -04:00
|
|
|
|
Status: Deferred
|
2001-07-09 10:26:26 -04:00
|
|
|
|
Type: Standards Track
|
|
|
|
|
Created: 08-Jul-2001
|
2002-03-27 22:03:28 -05:00
|
|
|
|
Post-History: 27-Mar-2002
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
|
|
|
|
Introduction
|
|
|
|
|
|
2004-03-08 08:51:59 -05:00
|
|
|
|
This PEP describes a format for a database of the Python software
|
2001-07-09 10:26:26 -04:00
|
|
|
|
installed on a system.
|
|
|
|
|
|
2017-03-24 17:11:33 -04:00
|
|
|
|
(In this document, the term "distribution" is used to mean a set
|
2004-03-08 08:51:59 -05:00
|
|
|
|
of code that's developed and distributed together. A "distribution"
|
|
|
|
|
is the same as a Red Hat or Debian package, but the term "package"
|
|
|
|
|
already has a meaning in Python terminology, meaning "a directory
|
|
|
|
|
with an __init__.py file in it.")
|
|
|
|
|
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
|
|
|
|
Requirements
|
|
|
|
|
|
2004-03-08 08:51:59 -05:00
|
|
|
|
We need a way to figure out what distributions, and what versions of
|
|
|
|
|
those distributions, are installed on a system. We want to provide
|
2001-07-09 10:26:26 -04:00
|
|
|
|
features similar to CPAN, APT, or RPM. Required use cases that
|
|
|
|
|
should be supported are:
|
2017-03-24 17:11:33 -04:00
|
|
|
|
|
|
|
|
|
* Is distribution X on a system?
|
2004-03-08 08:51:59 -05:00
|
|
|
|
* What version of distribution X is installed?
|
|
|
|
|
* Where can the new version of distribution X be found? (This can
|
2002-03-25 08:36:05 -05:00
|
|
|
|
be defined as either "a home page where the user can go and
|
2001-07-09 10:26:26 -04:00
|
|
|
|
find a download link", or "a place where a program can find
|
2002-03-25 08:36:05 -05:00
|
|
|
|
the newest version?" Both should probably be supported.)
|
2004-03-08 08:51:59 -05:00
|
|
|
|
* What files did distribution X put on my system?
|
|
|
|
|
* What distribution did the file x/y/z.py come from?
|
2001-07-09 10:26:26 -04:00
|
|
|
|
* Has anyone modified x/y/z.py locally?
|
2004-03-08 08:51:59 -05:00
|
|
|
|
* What other distributions does this software need?
|
|
|
|
|
* What Python modules does this distribution provide?
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Database Location
|
|
|
|
|
|
|
|
|
|
The database lives in a bunch of files under
|
2004-03-08 08:38:50 -05:00
|
|
|
|
<prefix>/lib/python<version>/install-db/. This location will be
|
2001-07-09 10:26:26 -04:00
|
|
|
|
called INSTALLDB through the remainder of this PEP.
|
|
|
|
|
|
|
|
|
|
The structure of the database is deliberately kept simple; each
|
|
|
|
|
file in this directory or its subdirectories (if any) describes a
|
2004-03-08 08:51:59 -05:00
|
|
|
|
single distribution. Binary packagings of Python software such as
|
|
|
|
|
RPMs can then update Python's database by just installing the
|
2003-03-30 11:52:11 -05:00
|
|
|
|
corresponding file into the INSTALLDB directory.
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
|
|
|
|
The rationale for scanning subdirectories is that we can move to a
|
2004-03-08 08:51:59 -05:00
|
|
|
|
directory-based indexing scheme if the database directory contains
|
2002-03-25 08:36:05 -05:00
|
|
|
|
too many entries. For example, this would let us transparently
|
|
|
|
|
switch from INSTALLDB/Numeric to INSTALLDB/N/Nu/Numeric or some
|
|
|
|
|
similar hashing scheme.
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Database Contents
|
|
|
|
|
|
|
|
|
|
Each file in INSTALLDB or its subdirectories describes a single
|
2004-03-08 08:51:59 -05:00
|
|
|
|
distribution, and has the following contents:
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
|
|
|
|
An initial line listing the sections in this file, separated
|
2003-03-30 11:52:11 -05:00
|
|
|
|
by whitespace. Currently this will always be 'PKG-INFO FILES
|
|
|
|
|
REQUIRES PROVIDES'. This is for future-proofing; if we add a
|
|
|
|
|
new section, for example to list documentation files, then
|
|
|
|
|
we'd add a DOCS section and list it in the contents. Sections
|
|
|
|
|
are always separated by blank lines.
|
|
|
|
|
|
2004-03-08 08:51:59 -05:00
|
|
|
|
A distribution that uses the Distutils for installation should
|
|
|
|
|
automatically update the database. Distributions that roll their
|
2016-05-03 05:03:16 -04:00
|
|
|
|
own installation will have to use the database's API to
|
2004-03-08 08:51:59 -05:00
|
|
|
|
manually add or update their own entry. System package managers
|
|
|
|
|
such as RPM or pkgadd can just create the new file in the
|
2003-03-30 11:52:11 -05:00
|
|
|
|
INSTALLDB directory.
|
|
|
|
|
|
|
|
|
|
Each section of the file is used for a different purpose.
|
2002-03-25 08:36:05 -05:00
|
|
|
|
|
|
|
|
|
PKG-INFO section
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
2004-03-08 08:51:59 -05:00
|
|
|
|
An initial set of RFC-822 headers containing the distribution
|
2002-03-25 08:36:05 -05:00
|
|
|
|
information for a file, as described in PEP 241, "Metadata for
|
|
|
|
|
Python Software Packages".
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
2017-03-24 17:11:33 -04:00
|
|
|
|
FILES section
|
|
|
|
|
|
2004-03-08 08:51:59 -05:00
|
|
|
|
An entry for each file installed by the
|
|
|
|
|
distribution. Generated files such as .pyc and .pyo files are
|
|
|
|
|
on this list as well as the original .py files installed by a
|
|
|
|
|
distribution; their checksums won't be stored or checked,
|
|
|
|
|
though.
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
2004-03-08 08:51:59 -05:00
|
|
|
|
Each file's entry is a single tab-delimited line that contains
|
2017-03-24 17:11:33 -04:00
|
|
|
|
the following fields:
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
2017-03-24 17:11:33 -04:00
|
|
|
|
* The file's full path, as installed on the system.
|
2002-03-25 08:57:45 -05:00
|
|
|
|
|
2004-03-08 08:51:59 -05:00
|
|
|
|
* The file's size
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
2017-03-24 17:11:33 -04:00
|
|
|
|
* The file's permissions. On Windows, this field will always be
|
2004-03-08 08:51:59 -05:00
|
|
|
|
'unknown'
|
|
|
|
|
|
|
|
|
|
* The owner and group of the file, separated by a tab.
|
|
|
|
|
On Windows, these fields will both be 'unknown'.
|
|
|
|
|
|
|
|
|
|
* A SHA1 digest of the file, encoded in hex. For generated files
|
|
|
|
|
such as *.pyc files, this field must contain the string "-",
|
|
|
|
|
which indicates that the file's checksum should not be verified.
|
2002-03-27 21:18:02 -05:00
|
|
|
|
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
2003-03-30 11:52:11 -05:00
|
|
|
|
REQUIRES section
|
|
|
|
|
|
|
|
|
|
This section is a list of strings giving the services required for
|
|
|
|
|
this module distribution to run properly. This list includes the
|
2004-03-08 08:51:59 -05:00
|
|
|
|
distribution name ("python-stdlib") and module names ("rfc822",
|
2017-03-24 17:11:33 -04:00
|
|
|
|
"htmllib", "email", "email.Charset"). It will be specified
|
2003-03-30 11:52:11 -05:00
|
|
|
|
by an extra 'requires' argument to the distutils.core.setup()
|
|
|
|
|
function. For example:
|
|
|
|
|
|
2017-03-24 17:11:33 -04:00
|
|
|
|
setup(..., requires=['xml.utils.iso8601',
|
2003-03-30 11:52:11 -05:00
|
|
|
|
|
|
|
|
|
Eventually there may be automated tools that look through all of
|
|
|
|
|
the code and produce a list of requirements, but it's unlikely
|
2017-03-24 17:11:33 -04:00
|
|
|
|
that these tools can handle all possible cases; a manual
|
2003-03-30 11:52:11 -05:00
|
|
|
|
way to specify requirements will always be necessary.
|
|
|
|
|
|
|
|
|
|
|
2017-03-24 17:11:33 -04:00
|
|
|
|
PROVIDES section
|
2003-03-30 11:52:11 -05:00
|
|
|
|
|
|
|
|
|
This section is a list of strings giving the services provided by
|
2004-03-08 08:51:59 -05:00
|
|
|
|
an installed distribution. This list includes the distribution name
|
2003-03-30 11:52:11 -05:00
|
|
|
|
("python-stdlib") and module names ("rfc822", "htmllib", "email",
|
|
|
|
|
"email.Charset").
|
|
|
|
|
|
|
|
|
|
XXX should files be listed? e.g. $PREFIX/lib/color-table.txt,
|
|
|
|
|
to pick up data files, required scripts, etc.
|
|
|
|
|
|
|
|
|
|
Eventually there may be an option to let module developers add
|
|
|
|
|
their own strings to this section. For example, you might add
|
|
|
|
|
"XML parser" to this section, and other module distributions could
|
|
|
|
|
then list "XML parser" as one of their dependencies to indicate
|
|
|
|
|
that multiple different XML parsers can be used. For now this
|
|
|
|
|
ability isn't supported because it raises too many issues: do we
|
|
|
|
|
need a central registry of legal strings, or just let people put
|
2017-03-24 17:11:33 -04:00
|
|
|
|
whatever they like? Etc., etc...
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
|
|
|
|
|
2002-03-28 16:39:16 -05:00
|
|
|
|
API Description
|
|
|
|
|
|
|
|
|
|
There's a single fundamental class, InstallationDatabase. The
|
|
|
|
|
code for it lives in distutils/install_db.py. (XXX any
|
|
|
|
|
suggestions for alternate locations in the standard library, or an
|
|
|
|
|
alternate module name?)
|
|
|
|
|
|
2004-03-08 08:51:59 -05:00
|
|
|
|
The InstallationDatabase returns instances of Distribution that contain
|
|
|
|
|
all the information about an installed distribution.
|
2002-03-28 16:39:16 -05:00
|
|
|
|
|
2004-03-08 08:51:59 -05:00
|
|
|
|
XXX Several of the fields in Distribution are duplicates of ones in
|
2002-03-28 16:39:16 -05:00
|
|
|
|
distutils.dist.Distribution. Probably they should be factored out
|
2004-03-08 08:51:59 -05:00
|
|
|
|
into the Distribution class proposed here, but can this be done in a
|
2002-03-28 16:39:16 -05:00
|
|
|
|
backward-compatible way?
|
2017-03-24 17:11:33 -04:00
|
|
|
|
|
2002-03-28 16:39:16 -05:00
|
|
|
|
InstallationDatabase has the following interface:
|
|
|
|
|
|
|
|
|
|
class InstallationDatabase:
|
|
|
|
|
def __init__ (self, path=None):
|
|
|
|
|
"""InstallationDatabase(path:string)
|
|
|
|
|
Read the installation database rooted at the specified path.
|
2017-03-24 17:11:33 -04:00
|
|
|
|
If path is None, INSTALLDB is used as the default.
|
2002-03-28 16:39:16 -05:00
|
|
|
|
"""
|
|
|
|
|
|
2004-03-08 08:51:59 -05:00
|
|
|
|
def get_distribution (self, distribution_name):
|
|
|
|
|
"""get_distribution(distribution_name:string) : Distribution
|
|
|
|
|
Get the object corresponding to a single distribution.
|
2002-03-28 16:39:16 -05:00
|
|
|
|
"""
|
|
|
|
|
|
2004-03-08 08:51:59 -05:00
|
|
|
|
def list_distributions (self):
|
|
|
|
|
"""list_distributions() : [Distribution]
|
2017-03-24 17:11:33 -04:00
|
|
|
|
Return a list of all distributions installed on the system,
|
2002-03-28 16:39:16 -05:00
|
|
|
|
enumerated in no particular order.
|
|
|
|
|
"""
|
|
|
|
|
|
2004-03-08 08:51:59 -05:00
|
|
|
|
def find_distribution (self, path):
|
|
|
|
|
"""find_file(path:string) : Distribution
|
2017-03-24 17:11:33 -04:00
|
|
|
|
Search and return the distribution containing the file 'path'.
|
2004-03-08 08:51:59 -05:00
|
|
|
|
Returns None if the file doesn't belong to any distribution
|
2002-10-13 16:20:23 -04:00
|
|
|
|
that the InstallationDatabase knows about.
|
|
|
|
|
XXX should this work for directories?
|
|
|
|
|
"""
|
|
|
|
|
|
2004-03-08 08:51:59 -05:00
|
|
|
|
class Distribution:
|
2002-03-28 16:39:16 -05:00
|
|
|
|
"""Instance attributes:
|
|
|
|
|
name : string
|
2004-03-08 08:51:59 -05:00
|
|
|
|
Distribution name
|
2002-03-28 16:39:16 -05:00
|
|
|
|
files : {string : (size:int, perms:int, owner:string, group:string,
|
|
|
|
|
digest:string)}
|
2017-03-24 17:11:33 -04:00
|
|
|
|
Dictionary mapping the path of a file installed by this distribution
|
2002-03-28 16:39:16 -05:00
|
|
|
|
to information about the file.
|
|
|
|
|
|
|
|
|
|
The following fields all come from PEP 241.
|
|
|
|
|
|
|
|
|
|
version : distutils.version.Version
|
2004-03-08 08:51:59 -05:00
|
|
|
|
Version of this distribution
|
2002-03-28 16:39:16 -05:00
|
|
|
|
platform : [string]
|
|
|
|
|
summary : string
|
|
|
|
|
description : string
|
|
|
|
|
keywords : string
|
2017-03-24 17:11:33 -04:00
|
|
|
|
home_page : string
|
2002-03-28 16:39:16 -05:00
|
|
|
|
author : string
|
|
|
|
|
author_email : string
|
|
|
|
|
license : string
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
def add_file (self, path):
|
|
|
|
|
"""add_file(path:string):None
|
|
|
|
|
Record the size, ownership, &c., information for an installed file.
|
|
|
|
|
XXX as written, this would stat() the file. Should the size/perms/
|
|
|
|
|
checksum all be provided as parameters to this method instead?
|
|
|
|
|
"""
|
|
|
|
|
|
2002-10-13 16:20:23 -04:00
|
|
|
|
def has_file (self, path):
|
|
|
|
|
"""has_file(path:string) : Boolean
|
|
|
|
|
Returns true if the specified path belongs to a file in this
|
2004-03-08 08:51:59 -05:00
|
|
|
|
distribution.
|
2002-10-13 16:20:23 -04:00
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
def check_file (self, path):
|
|
|
|
|
"""check_file(path:string) : Boolean
|
|
|
|
|
Checks whether the file's size, checksum, and ownership match,
|
|
|
|
|
returning true if they do.
|
|
|
|
|
"""
|
2017-03-24 17:11:33 -04:00
|
|
|
|
|
|
|
|
|
|
2002-03-28 16:39:16 -05:00
|
|
|
|
|
2001-07-09 10:26:26 -04:00
|
|
|
|
Deliverables
|
2002-03-25 08:36:05 -05:00
|
|
|
|
|
|
|
|
|
A description of the database API, to be added to this PEP.
|
2017-03-24 17:11:33 -04:00
|
|
|
|
|
2002-03-25 08:36:05 -05:00
|
|
|
|
Patches to the Distutils that 1) implement an InstallationDatabase
|
2004-03-08 08:51:59 -05:00
|
|
|
|
class, 2) Update the database when a new distribution is installed. 3)
|
2002-05-29 17:24:23 -04:00
|
|
|
|
add a simple package management tool, features to be added to this
|
2017-03-24 17:11:33 -04:00
|
|
|
|
PEP. (Or should that be a separate PEP?) See [2] for the current
|
2002-05-29 17:24:23 -04:00
|
|
|
|
patch.
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
|
|
|
|
|
2004-03-08 09:09:21 -05:00
|
|
|
|
Open Issues
|
|
|
|
|
|
|
|
|
|
PJE suggests the installation database "be potentially present on
|
|
|
|
|
every directory in sys.path, with the contents merged in sys.path
|
|
|
|
|
order. This would allow home-directory or other
|
|
|
|
|
alternate-location installs to work, and ease the process of a
|
|
|
|
|
distutils install command writing the file." Nice feature: it does
|
|
|
|
|
mean that package manager tools can take into account Python
|
|
|
|
|
packages that a user has privately installed.
|
|
|
|
|
|
|
|
|
|
AMK wonders: what does setup.py do if it's told to install
|
|
|
|
|
packages to a directory not on sys.path? Does it write an
|
|
|
|
|
install-db directory to the directory it's told to write to, or
|
|
|
|
|
does it do nothing?
|
|
|
|
|
|
|
|
|
|
Should the package-database file itself be included in the files
|
|
|
|
|
list? (PJE would think yes, but of course it can't contain its
|
|
|
|
|
own checksum. AMK can't think of a use case where including the
|
|
|
|
|
DB file matters.)
|
|
|
|
|
|
|
|
|
|
PJE wonders about writing the package DB file
|
|
|
|
|
*first*, before installing any other files, so that failed partial
|
|
|
|
|
installations can both be backed out, and recognized as broken.
|
|
|
|
|
This PEP may have to specify some algorithm for recognizing this
|
|
|
|
|
situation.
|
|
|
|
|
|
|
|
|
|
Should we guarantee the format of installation databases remains
|
|
|
|
|
compatible across Python versions, or is it subject to arbitrary
|
|
|
|
|
change? Probably we need to guarantee compatibility.
|
|
|
|
|
|
2017-03-24 17:11:33 -04:00
|
|
|
|
|
2002-03-25 08:36:05 -05:00
|
|
|
|
Rejected Suggestions
|
|
|
|
|
|
2004-03-08 08:51:59 -05:00
|
|
|
|
Instead of using one text file per distribution, one large text
|
|
|
|
|
file or an anydbm file could be used. This has been rejected for
|
|
|
|
|
a few reasons. First, performance is probably not an extremely
|
|
|
|
|
pressing concern as the database is only used when installing or
|
|
|
|
|
removing software, a relatively infrequent task. Scalability also
|
2002-03-25 08:36:05 -05:00
|
|
|
|
likely isn't a problem, as people may have hundreds of Python
|
2004-03-08 08:51:59 -05:00
|
|
|
|
packages installed, but thousands or tens of thousands seems
|
|
|
|
|
unlikely. Finally, individual text files are compatible with
|
|
|
|
|
installers such as RPM or DPKG because a binary packager can just
|
|
|
|
|
drop the new database file into the database directory. If one
|
|
|
|
|
large text file or a binary file were used, the Python database
|
|
|
|
|
would then have to be updated by running a postinstall script.
|
2002-03-25 08:36:05 -05:00
|
|
|
|
|
2002-03-27 21:18:02 -05:00
|
|
|
|
On Windows, the permissions and owner/group of a file aren't
|
|
|
|
|
stored. Windows does in fact support ownership and access
|
|
|
|
|
permissions, but reading and setting them requires the win32all
|
|
|
|
|
extensions, and they aren't present in the basic Python installer
|
|
|
|
|
for Windows.
|
2017-03-24 17:11:33 -04:00
|
|
|
|
|
2002-03-25 08:36:05 -05:00
|
|
|
|
|
2001-07-09 10:26:26 -04:00
|
|
|
|
References
|
|
|
|
|
|
|
|
|
|
[1] Michael Muller's patch (posted to the Distutils-SIG around 28
|
|
|
|
|
Dec 1999) generates a list of installed files.
|
|
|
|
|
|
2017-03-24 17:11:33 -04:00
|
|
|
|
[2] A patch to implement this PEP will be tracked as
|
|
|
|
|
patch #562100 on SourceForge.
|
2004-03-08 08:51:59 -05:00
|
|
|
|
http://www.python.org/sf/562100 .
|
2017-03-24 17:11:33 -04:00
|
|
|
|
Code implementing the installation database is currently in
|
2004-03-08 08:51:59 -05:00
|
|
|
|
Python CVS in the nondist/sandbox/pep262 directory.
|
2002-05-29 17:24:23 -04:00
|
|
|
|
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
|
|
|
|
Acknowledgements
|
|
|
|
|
|
|
|
|
|
Ideas for this PEP originally came from postings by Greg Ward,
|
2004-03-08 08:51:59 -05:00
|
|
|
|
Fred L. Drake Jr., Thomas Heller, Mats Wichmann, Phillip J. Eby,
|
|
|
|
|
and others.
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
|
|
|
|
Many changes and rewrites to this document were suggested by the
|
2017-03-24 17:11:33 -04:00
|
|
|
|
readers of the Distutils SIG.
|
2001-07-09 10:26:26 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Copyright
|
|
|
|
|
|
|
|
|
|
This document has been placed in the public domain.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Local Variables:
|
|
|
|
|
mode: indented-text
|
|
|
|
|
indent-tabs-mode: nil
|
|
|
|
|
End:
|