Update of /cvsroot/jython/jython/installer
In directory usw-pr-cvs1:/tmp/cvs-serv7817/installer
Modified Files:
mklist.py
Log Message:
added com/ziclix/** packages
Index: mklist.py
===================================================================
RCS file: /cvsroot/jython/jython/installer/mklist.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** mklist.py 2001/11/19 18:55:00 1.23
--- mklist.py 2001/11/20 04:57:57 1.24
***************
*** 11,20 ****
else:
rootdir = os.path.join(d, mask)
!
fl = glob.glob(rootdir)
for f in fl:
! if os.path.basename(f) in exclude:
continue
! # After this, the name is a true mess of different
# path seperator chars. Attempt to clean this by making
# the jar contain only unix seps.
--- 11,20 ----
else:
rootdir = os.path.join(d, mask)
!
fl = glob.glob(rootdir)
for f in fl:
! if os.path.basename(f) in exclude:
continue
! # After this, the name is a true mess of different
# path seperator chars. Attempt to clean this by making
# the jar contain only unix seps.
***************
*** 152,157 ****
# New CPython files added in Jython
! 'pstats.py',
! 'code.py',
'codecs.py',
#'re.py',
--- 152,157 ----
# New CPython files added in Jython
! 'pstats.py',
! 'code.py',
'codecs.py',
#'re.py',
***************
*** 220,223 ****
--- 220,231 ----
listfiles(None, "org/python/util", *javafiles)
listfiles(None, "Lib/jxxload_help", *javafiles)
+ listfiles(None, "com/ziclix/python/sql", *.javafiles)
+ listfiles(None, "com/ziclix/python/sql/util", *.javafiles)
+ listfiles(None, "com/ziclix/python/sql/resource", *.javafiles)
+ listfiles(None, "com/ziclix/python/sql/pipe", *.javafiles)
+ listfiles(None, "com/ziclix/python/sql/pipe/db", *.javafiles)
+ listfiles(None, "com/ziclix/python/sql/pipe/csv", *.javafiles)
+ listfiles(None, "com/ziclix/python/sql/handler", *.javafiles)
+ listfiles(None, "com/ziclix/python/sql/connect", *.javafiles)
comment("Library modules from CPython")
|