summaryrefslogtreecommitdiff
path: root/Mac/scripts/genallsuites.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-06-01 13:34:59 +0000
committerBenjamin Peterson <benjamin@python.org>2008-06-01 13:34:59 +0000
commitf6325444e9c2804825e427c69a6178e9a23f564d (patch)
tree53bb5fc59f7702708e1789e59903750e1fb8a09c /Mac/scripts/genallsuites.py
parent21491717bddcee1ed4a19cac7d15ff4cc2c0d48a (diff)
downloadcpython-git-f6325444e9c2804825e427c69a6178e9a23f564d.tar.gz
remove old mac scripts including bgen
Diffstat (limited to 'Mac/scripts/genallsuites.py')
-rw-r--r--Mac/scripts/genallsuites.py52
1 files changed, 0 insertions, 52 deletions
diff --git a/Mac/scripts/genallsuites.py b/Mac/scripts/genallsuites.py
deleted file mode 100644
index a556847670..0000000000
--- a/Mac/scripts/genallsuites.py
+++ /dev/null
@@ -1,52 +0,0 @@
-# Generate all the standard scripting suite packages.
-# Note that this module needs *serious* hand-crafting because of all the
-# absolute paths. It is, however, a great leap forward compared to the time
-# when this information was only stored in Jack's brain:-)
-
-import sys
-import os
-import gensuitemodule
-
-verbose=sys.stdout
-
-DSTDIR="/Users/jack/src/python/Lib/plat-mac/lib-scriptpackages"
-OS9DISK="/Volumes/Moes"
-
-APPLESCRIPT=OS9DISK + "/Systeemmap/Extensies/AppleScript"
-SYSTEMEVENTS="/System/Library/CoreServices/System Events.app"
-
-CODEWARRIOR=OS9DISK + "/Applications (Mac OS 9)/Metrowerks CodeWarrior 7.0/Metrowerks CodeWarrior/CodeWarrior IDE 4.2.6"
-EXPLORER="/Applications/Internet Explorer.app"
-FINDER="/System/Library/CoreServices/Finder.app"
-NETSCAPE=OS9DISK + "/Applications (Mac OS 9)/Netscape Communicator\xe2\x84\xa2 Folder/Netscape Communicator\xe2\x84\xa2"
-TERMINAL="/Applications/Utilities/Terminal.app"
-
-gensuitemodule.processfile_fromresource(APPLESCRIPT,
- output=os.path.join(DSTDIR, 'StdSuites'),
- basepkgname='_builtinSuites',
- edit_modnames=[], verbose=verbose)
-gensuitemodule.processfile(SYSTEMEVENTS,
- output=os.path.join(DSTDIR, 'SystemEvents'),
- basepkgname='StdSuites',
- edit_modnames=[('Disk_2d_Folder_2d_File_Suite', 'Disk_Folder_File_Suite')],
- verbose=verbose)
-gensuitemodule.processfile(CODEWARRIOR,
- output=os.path.join(DSTDIR, 'CodeWarrior'),
- basepkgname='StdSuites',
- edit_modnames=[], verbose=verbose)
-gensuitemodule.processfile(EXPLORER,
- output=os.path.join(DSTDIR, 'Explorer'),
- basepkgname='StdSuites',
- edit_modnames=[], verbose=verbose)
-gensuitemodule.processfile(FINDER,
- output=os.path.join(DSTDIR, 'Finder'),
- basepkgname='StdSuites',
- edit_modnames=[], verbose=verbose)
-gensuitemodule.processfile(NETSCAPE,
- output=os.path.join(DSTDIR, 'Netscape'),
- basepkgname='StdSuites',
- edit_modnames=[('WorldWideWeb_suite_2c__as_d', 'WorldWideWeb_suite')], verbose=verbose)
-gensuitemodule.processfile(TERMINAL,
- output=os.path.join(DSTDIR, 'Terminal'),
- basepkgname='StdSuites',
- edit_modnames=[], verbose=verbose)