[Commits] (markie) Bug 1622;
manifest should not copy *.pyc and *.pyo files; r=morgen
commits at osafoundation.org
commits at osafoundation.org
Mon Aug 2 10:29:21 PDT 2004
Commit by: markie
Modified files:
chandler/distrib/linux/manifest.linux 1.40 1.41
chandler/distrib/osx/manifest.debug.osx 1.21 1.22
chandler/distrib/osx/manifest.osx 1.36 1.37
chandler/distrib/win/manifest.debug.win 1.24 1.25
chandler/distrib/win/manifest.win 1.37 1.38
Log message:
Bug 1622;manifest should not copy *.pyc and *.pyo files;r=morgen
ViewCVS links:
http://cvs.osafoundation.org/index.cgi/chandler/distrib/linux/manifest.linux.diff?r1=text&tr1=1.40&r2=text&tr2=1.41
http://cvs.osafoundation.org/index.cgi/chandler/distrib/osx/manifest.debug.osx.diff?r1=text&tr1=1.21&r2=text&tr2=1.22
http://cvs.osafoundation.org/index.cgi/chandler/distrib/osx/manifest.osx.diff?r1=text&tr1=1.36&r2=text&tr2=1.37
http://cvs.osafoundation.org/index.cgi/chandler/distrib/win/manifest.debug.win.diff?r1=text&tr1=1.24&r2=text&tr2=1.25
http://cvs.osafoundation.org/index.cgi/chandler/distrib/win/manifest.win.diff?r1=text&tr1=1.37&r2=text&tr2=1.38
Index: chandler/distrib/win/manifest.debug.win
diff -u chandler/distrib/win/manifest.debug.win:1.24 chandler/distrib/win/manifest.debug.win:1.25
--- chandler/distrib/win/manifest.debug.win:1.24 Sun Jul 25 00:22:32 2004
+++ chandler/distrib/win/manifest.debug.win Mon Aug 2 10:29:19 2004
@@ -24,7 +24,7 @@
# Grab all py, pyc, etc. from debug/bin/DLLs and debug/bin/Lib
src=chandler/debug/bin
dest=debug/bin
-glob=*.py,*.pyc,*.pyo,*.pyd,*.so,*.dll
+glob=*.py,*.so,*.dll
recursive=yes
DLLs
Lib
Index: chandler/distrib/osx/manifest.osx
diff -u chandler/distrib/osx/manifest.osx:1.36 chandler/distrib/osx/manifest.osx:1.37
--- chandler/distrib/osx/manifest.osx:1.36 Mon Jul 26 17:12:06 2004
+++ chandler/distrib/osx/manifest.osx Mon Aug 2 10:29:19 2004
@@ -12,6 +12,7 @@
src=chandler/release/Library/Frameworks/Python.framework/Versions/2.3/lib
dest=Contents/Resources/Library/Frameworks/Python.framework/Versions/2.3/lib
glob=*
+exclude=*.pyc,*.pyo
recursive=yes
python2.3
Index: chandler/distrib/linux/manifest.linux
diff -u chandler/distrib/linux/manifest.linux:1.40 chandler/distrib/linux/manifest.linux:1.41
--- chandler/distrib/linux/manifest.linux:1.40 Sun Jul 25 00:22:32 2004
+++ chandler/distrib/linux/manifest.linux Mon Aug 2 10:29:18 2004
@@ -24,7 +24,7 @@
src=chandler/release/lib
dest=release/lib
recursive=yes
-glob=*.py,*.pyc,*.pyo,*.pyd,*.so
+glob=*.py,*.so
python2.3/bsddb
python2.3/compiler
python2.3/curses
Index: chandler/distrib/osx/manifest.debug.osx
diff -u chandler/distrib/osx/manifest.debug.osx:1.21 chandler/distrib/osx/manifest.debug.osx:1.22
--- chandler/distrib/osx/manifest.debug.osx:1.21 Mon Jul 26 17:12:06 2004
+++ chandler/distrib/osx/manifest.debug.osx Mon Aug 2 10:29:19 2004
@@ -12,6 +12,7 @@
src=chandler/debug/Library/Frameworks/Python.framework/Versions/2.3/lib
dest=Contents/Resources/Library/Frameworks/Python.framework/Versions/2.3/lib
glob=*
+exclude=*.pyc,*.pyo
recursive=yes
python2.3
Index: chandler/distrib/win/manifest.win
diff -u chandler/distrib/win/manifest.win:1.37 chandler/distrib/win/manifest.win:1.38
--- chandler/distrib/win/manifest.win:1.37 Sun Jul 25 00:22:32 2004
+++ chandler/distrib/win/manifest.win Mon Aug 2 10:29:19 2004
@@ -23,7 +23,7 @@
# Grab all py, pyc, etc. from release/bin/DLLs and release/bin/Lib
src=chandler/release/bin
dest=release/bin
-glob=*.py,*.pyc,*.pyo,*.pyd,*.so,*.dll
+glob=*.py,*.so,*.dll
recursive=yes
DLLs
Lib
More information about the Commits
mailing list