[Python-checkins] python/nondist/peps pep-0314.txt,1.18,1.19

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Sun Mar 20 16:57:40 CET 2005


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20639

Modified Files:
	pep-0314.txt 
Log Message:
add a way to spell that a specific version of an individual module or
package is being provided; this is useful for omnibus packages


Index: pep-0314.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0314.txt,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- pep-0314.txt	3 Feb 2005 12:30:44 -0000	1.18
+++ pep-0314.txt	20 Mar 2005 15:57:37 -0000	1.19
@@ -239,11 +239,12 @@
        
     Provides (multiple use)
 
-      Each entry contains a string describing a package or
-      module that will be provided by this package once it is
-      installed.  These strings should match the ones used in
-      Requirements fields.  Version declarations cannot be supplied;
-      instead the package's version number will be used.
+      Each entry contains a string describing a package or module that
+      will be provided by this package once it is installed.  These
+      strings should match the ones used in Requirements fields.  A
+      version declaration may be supplied (without a comparison
+      operator); the package's version number will be implied if none
+      is specified.
 
       Example: 
 
@@ -251,6 +252,7 @@
           Provides: xml.utils
           Provides: xml.utils.iso8601
           Provides: xml.dom
+          Provides: xmltools (1.3)
 
     Obsoletes (multiple use)
 



More information about the Python-checkins mailing list