[Python-checkins] r70644 - peps/trunk/pep-0376.txt

tarek.ziade python-checkins at python.org
Sat Mar 28 19:49:24 CET 2009


Author: tarek.ziade
Date: Sat Mar 28 19:49:24 2009
New Revision: 70644

Log:
removing the python version bit for the egg.info directory

Modified:
   peps/trunk/pep-0376.txt

Modified: peps/trunk/pep-0376.txt
==============================================================================
--- peps/trunk/pep-0376.txt	(original)
+++ peps/trunk/pep-0376.txt	Sat Mar 28 19:49:24 2009
@@ -45,9 +45,9 @@
 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 @@
 - 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 @@
 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
 ========================


More information about the Python-checkins mailing list