mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
IGN:...
This commit is contained in:
parent
833d943870
commit
26a155d436
@ -39,7 +39,7 @@ class ChangelogFormatter(blog.LogFormatter):
|
||||
self.messages = collections.deque()
|
||||
|
||||
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'):
|
||||
self.messages.append(msg.strip())
|
||||
|
||||
|
@ -41,7 +41,7 @@
|
||||
wget -O- http://calibre.kovidgoyal.net/downloads/calibre-0.4.83.tar.bz2 | tar xvj
|
||||
cd calibre*
|
||||
python setup.py build && sudo python setup.py install
|
||||
</pre>
|
||||
</pre></li>
|
||||
</ol>
|
||||
<h2>Dependencies</h2>
|
||||
<table border="1" cellpadding="10">
|
||||
|
@ -229,9 +229,10 @@ def stage_two():
|
||||
def stage_three():
|
||||
print 'Uploading installers...'
|
||||
upload_installers()
|
||||
print 'Uploading to PyPI'
|
||||
print 'Uploading documentation...'
|
||||
upload_docs()
|
||||
upload_user_manual()
|
||||
print 'Uploading to PyPI...'
|
||||
check_call('rm -f dist/*')
|
||||
check_call('python setup.py register')
|
||||
check_call('python setup.py bdist_egg --exclude-source-files')
|
||||
|
Loading…
x
Reference in New Issue
Block a user