[Python-checkins] python/nondist/sandbox/Lib bdist_dpkg.py,1.2,1.3

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Tue Sep 23 09:56:59 EDT 2003


Update of /cvsroot/python/python/nondist/sandbox/Lib
In directory sc8-pr-cvs1:/tmp/cvs-serv16918

Modified Files:
	bdist_dpkg.py 
Log Message:
Use '.' instead of an empty string in the directory list

Index: bdist_dpkg.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/Lib/bdist_dpkg.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** bdist_dpkg.py	23 Sep 2003 12:26:25 -0000	1.2
--- bdist_dpkg.py	23 Sep 2003 13:56:57 -0000	1.3
***************
*** 69,73 ****
          dirlist = ""
          if dist.has_pure_modules():
!             dirlist += '""'
          
          for i in dist.packages or []:
--- 69,73 ----
          dirlist = ""
          if dist.has_pure_modules():
!             dirlist += '.'
          
          for i in dist.packages or []:
***************
*** 95,99 ****
  
   -- %s <%s>  Wed, 11 Jun 2003 14:44:11 -0400
! """ % (package_name, dist.get_version(), 1, # XXX build version
         dist.get_maintainer(), dist.get_maintainer_email()))
              output.close()
--- 95,99 ----
  
   -- %s <%s>  Wed, 11 Jun 2003 14:44:11 -0400
! """ % (package_name, dist.get_version(), 1, # XXX build version?
         dist.get_maintainer(), dist.get_maintainer_email()))
              output.close()
***************
*** 176,181 ****
  PACKAGE=%(name)s
  VERSION=%(pyversion)s
! LIB="/usr/lib/python$VERSION"
! DIRLIST="%(dirlist)s"
  
  case "$1" in
--- 176,181 ----
  PACKAGE=%(name)s
  VERSION=%(pyversion)s
! LIB=/usr/lib/python$VERSION
! DIRLIST=%(dirlist)s
  
  case "$1" in
***************
*** 223,228 ****
  PACKAGE=%(name)s
  VERSION=%(pyversion)s
! LIB="/usr/lib/python$VERSION"
! DIRLIST="%(dirlist)s"
  
  case "$1" in
--- 223,228 ----
  PACKAGE=%(name)s
  VERSION=%(pyversion)s
! LIB=/usr/lib/python$VERSION
! DIRLIST=%(dirlist)s
  
  case "$1" in





More information about the Python-checkins mailing list