Changeset 393
- Timestamp:
- 09/11/08 15:26:17 (4 months ago)
- Files:
-
- trunk (modified) (1 prop)
- trunk/bin/domainmodel-sdist-maker (modified) (2 diffs)
- trunk/setup.py (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." trunk/setup.py
r389 r393 26 26 27 27 # metadata for upload to PyPI 28 author = ' Open Knowledge Foundation and Appropriate Software Foundation',28 author = 'Appropriate Software Foundation, Open Knowledge Foundation', 29 29 author_email = 'kforge-dev@lists.okfn.org', 30 30 license = 'GPL', 31 url = 'http://appropriatesoftware.net/domainmodel/ ',31 url = 'http://appropriatesoftware.net/domainmodel/Home.html', 32 32 download_url = 'http://appropriatesoftware.net/provide/docs/domainmodel-%s.tar.gz' % __version__, 33 33 description = 'Toolkit for enterprise application frameworks.', … … 37 37 """, 38 38 classifiers = [ 39 'Development Status :: 4 - Beta',39 'Development Status :: 5 - Production/Stable', 40 40 'Environment :: Console', 41 41 'Environment :: Web Environment',
