From 6e41d873d3cd141200762bd14dba125a674d5c7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tarek=20Ziad=C3=A9?= Date: Sat, 28 Mar 2009 18:49:24 +0000 Subject: [PATCH] removing the python version bit for the egg.info directory --- pep-0376.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pep-0376.txt b/pep-0376.txt index ef559a19f..0d3ca0639 100644 --- a/pep-0376.txt +++ b/pep-0376.txt @@ -45,9 +45,9 @@ For example, if the `zlib` package is installed, two elements will be installed in `site-packages`:: - zlib - - zlib-2.5.2-py2.6.egg-info + - zlib-2.5.2.egg-info -Where `zlib` is the package itself, and `zlib-2.5.2-py2.6.egg-info` is +Where `zlib` is the package itself, and `zlib-2.5.2.egg-info` is a file containing the package metadata as described in PEP 314. This file corresponds to the file called `PKG-INFO`, built by @@ -143,8 +143,9 @@ time. They will all be UPPERCASE files. - the `RECORD` file will hold the list of installed files. These correspond to the files listed by the `record` option of the `install` command, and will always be generated. This will allow uninstall, as - explained later in this PEP. + explained later in this PEP. +The two files will need to use '/'-separated relative paths. The `install` command will record by default installed files in the RECORD file. @@ -161,13 +162,12 @@ all files located in the `.egg-info` directory:: Back to our `zlib` example, we will have:: - zlib - - zlib-2.5.2-py2.6.egg-info/ + - zlib-2.5.2.egg-info/ PKG-INFO MANIFEST RECORD -XXX See if we want to keep the 2.5.2-py2.6 part - +XXX See if we want to add Python version in the PKG-INFO New functions in pkgutil ========================