- Timestamp:
- 09/11/08 15:26:17 (4 months ago)
- Files:
-
- trunk (modified) (1 prop)
- trunk/bin/domainmodel-sdist-maker (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk
- Property svn:externals set to
dist http://project.kforge.appropriatesoftware.net/foundation/svn/product/domainmodel
- Property svn:externals set to
trunk/bin/domainmodel-sdist-maker
r388 r393 23 23 os.system("python setup.py sdist") 24 24 25 # Copy distribution to download location. 25 print "Copying distribution to download location..." 26 26 import sys 27 27 sys.path.append('./src') … … 31 31 os.system(cmd) 32 32 33 print "Committing release product..." 34 cmd = "svn add dist dist/domainmodel-%s.tar.gz" % __version__ 35 print cmd 36 if os.system(cmd): 37 sys.exit(1) 38 cmd = "svn ci dist/domainmodel-%s.tar.gz -m\"Created new distribution for domainmodel %s\"" % (__version__, __version__) 39 print cmd 40 if os.system(cmd): 41 sys.exit(1) 42 33 43 34 44 # Further manual steps. 35 print "Test distribution with foundation system tests."36 45 print "Update domainmodel website to state and point to new release." 37 46 print "Update cheeseshop."
