This commit is contained in:
Kovid Goyal 2008-09-18 23:12:30 -07:00
parent 833d943870
commit 26a155d436
3 changed files with 4 additions and 3 deletions

View File

@ -39,7 +39,7 @@ class ChangelogFormatter(blog.LogFormatter):
self.messages = collections.deque() self.messages = collections.deque()
else: else:
if re.search(r'[a-zA-Z]', msg): if re.search(r'[a-zA-Z]', msg) and len(msg.strip()) > 5:
if 'translation' not in msg and not msg.startswith('IGN'): if 'translation' not in msg and not msg.startswith('IGN'):
self.messages.append(msg.strip()) self.messages.append(msg.strip())

View File

@ -41,7 +41,7 @@
wget -O- http://calibre.kovidgoyal.net/downloads/calibre-0.4.83.tar.bz2 | tar xvj wget -O- http://calibre.kovidgoyal.net/downloads/calibre-0.4.83.tar.bz2 | tar xvj
cd calibre* cd calibre*
python setup.py build && sudo python setup.py install python setup.py build && sudo python setup.py install
</pre> </pre></li>
</ol> </ol>
<h2>Dependencies</h2> <h2>Dependencies</h2>
<table border="1" cellpadding="10"> <table border="1" cellpadding="10">

View File

@ -229,9 +229,10 @@ def stage_two():
def stage_three(): def stage_three():
print 'Uploading installers...' print 'Uploading installers...'
upload_installers() upload_installers()
print 'Uploading to PyPI' print 'Uploading documentation...'
upload_docs() upload_docs()
upload_user_manual() upload_user_manual()
print 'Uploading to PyPI...'
check_call('rm -f dist/*') check_call('rm -f dist/*')
check_call('python setup.py register') check_call('python setup.py register')
check_call('python setup.py bdist_egg --exclude-source-files') check_call('python setup.py bdist_egg --exclude-source-files')