[Checkins] SVN: Sandbox/adamg/zope.wineggbuilder/trunk/ doc cleanup

Adam Groszer agroszer at gmail.com
Sun Aug 22 08:38:43 EDT 2010


Log message for revision 115855:
  doc cleanup

Changed:
  U   Sandbox/adamg/zope.wineggbuilder/trunk/README.txt
  U   Sandbox/adamg/zope.wineggbuilder/trunk/TODO.txt
  D   Sandbox/adamg/zope.wineggbuilder/trunk/server-setup.txt

-=-
Modified: Sandbox/adamg/zope.wineggbuilder/trunk/README.txt
===================================================================
--- Sandbox/adamg/zope.wineggbuilder/trunk/README.txt	2010-08-22 12:18:03 UTC (rev 115854)
+++ Sandbox/adamg/zope.wineggbuilder/trunk/README.txt	2010-08-22 12:38:43 UTC (rev 115855)
@@ -1 +1,4 @@
 A set of tools for managing windows binary egg building.
+
+Detailed documentation at:
+http://docs.zope.org/zopetoolkit/process/winbotsetup.html
\ No newline at end of file

Modified: Sandbox/adamg/zope.wineggbuilder/trunk/TODO.txt
===================================================================
--- Sandbox/adamg/zope.wineggbuilder/trunk/TODO.txt	2010-08-22 12:18:03 UTC (rev 115854)
+++ Sandbox/adamg/zope.wineggbuilder/trunk/TODO.txt	2010-08-22 12:38:43 UTC (rev 115855)
@@ -1,29 +1,2 @@
-TODOs on the server:
+TODOs:
 
-- windows basics
-  - kill unneeded services
-  - windows firewall
-
-- setup python's 2.4 -> 2.7?
-  - setuptools
-  - pywin32
-  - add one more 'system' python for buildbot etc, keep the others CLEAN
-
-- setup .buildout
-  - egg folder -> c:\eggs
-  - no DL cache
-
-- setup mingw32
-  - don't add to PATH
-
-- setup VS C express
-  - check that build_ext works only with --compiler
-
-- buildbot
-
-- create user on PYPI
-  - setup .pypirc
-  - grant perm to packages
-
-
-- setup some monitoring (mon.itor.us?)
\ No newline at end of file

Deleted: Sandbox/adamg/zope.wineggbuilder/trunk/server-setup.txt
===================================================================
--- Sandbox/adamg/zope.wineggbuilder/trunk/server-setup.txt	2010-08-22 12:18:03 UTC (rev 115854)
+++ Sandbox/adamg/zope.wineggbuilder/trunk/server-setup.txt	2010-08-22 12:38:43 UTC (rev 115855)
@@ -1,111 +0,0 @@
-windows basics
-==============
-
-  - kill unneeded services
-    - ALG
-    - Automatic Updates (yes!)
-    - Computer Browser
-    - DHCP Client
-    - Print Spooler
-    - Remote Registry
-    - Server
-    - TCP/IP NetBIOS Helper
-    - Wireless Configuration
-  - windows firewall
-    - kill file and printer sharing on ethernet
-    - allow only RDP, http, https
-  - time sync
-  - windows update (manual)
-    - we should have only security updates, no fancy IE8 etc
-    - better dont touch HW
-    - restart, repeat
-    - kill off all c:\windows\$NtUninstall*, $hf_mig too
-  - automatic windows update is OFF! (I hate when it f..s up the system)
-  - download: (all downloaded stuf goes into c:\install)
-    - firefox
-    - freecommander (my personal stuff)
-    - programmers notepad (my personal stuff)
-    - mydefrag
-    - collabnet svn client
-    - pythons 2.4 ... 2.6
-    - pywin32
-    - setuptools
-    - mingw32
-    - MS Visual C++ 2008 Express Edition
-      http://www.microsoft.com/express/downloads/
-
-pythons+pywin32+setuptools
-==========================
-
-  - c:\python24_32 NOT default
-  - c:\python25_32 NOT default
-    - the trick is to install python25_sys+pywin32+setuptools first
-      then copy c:\python25_sys to python25_32
-  - c:\python26_32 NOT default
-  - c:\python26_64 NOT default
-    - setuptools trick:
-      get the source tgz, patch it with
-      http://bugs.python.org/setuptools/issue2
-  - c:\python27_32 NOT default
-  - c:\python27_64 NOT default
-    - setuptools trick:
-      - install setuptools from the patched source with setup.py install
-  - c:\python25_sys (default, 32bit, add to path)
-  - install mingw32 to C:\MinGW
-  - collabnet svn client to C:\svn
-  - MSVC
-    - check that build_ext works only with --compiler:
-        - mingw32 fails because it's not on path
-        - MSVC fails because ENV vars are missing
-    - x64 sucks, but:
-        - http://www.mathworks.com/support/solutions/en/data/1-6IJJ3L/index.html?solution=1-6IJJ3L
-
-  - create buildbot user
-  - create own user/other devs
-    - setup .buildout
-      - c:\Documents and Settings\<username>\.buildout\default.cfg:
-
-[buildout]
-eggs-directory=c:\eggs
-
-        everyone, please SHARE c:\eggs, the disk is small
-
-  - create user on PYPI: zope.wineggbuilder
-    - grant perm to packages
-    - what's up with ZODB3??? ask Jim
-    - setup .pypirc
-
-  - setup buildbot
-    - http://buildbot.net/trac/wiki/RunningBuildbotOnWindows
-    - grant permissions to user buildbot
-    - beat it until it works (permissions, etc....)
-
-  - put an apache in front of the whole
-
-Buildbot for tests
-==================
-
-  - for py24_32 and py25_32:
-    - Create a file called 'distutils.cfg' in "C:\Python_xxx\Lib\distutils".
-
-[build]
-compiler=mingw32
-
-  - Create a file called 'setupcompilerandexecute.bat' in "C:\Python24_32".
-
-set PATH=%PATH%;c:\mingw\bin
-%*
-
-  - Create a file called 'setupcompilerandexecute.bat' in "C:\Python25_32".
-
-set PATH=%PATH%;c:\mingw\bin
-%*
-
-  - Create a file called 'setupcompilerandexecute.bat' in "C:\Python26_32",
-  "C:\Python26_64", "C:\Python27_32", "C:\Python27_64".
-
-call "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\VCVARSALL.bat" x86
-set PATH=%PATH%;"C:\Program Files\Microsoft SDKs\Windows\v6.1\Bin"
-%*
-
-  - for the rest see master.cfg
\ No newline at end of file



More information about the checkins mailing list