aboutsummaryrefslogtreecommitdiffstats
path: root/fabfile.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2011-08-03 12:43:30 -0400
committerWaylan Limberg <waylan@gmail.com>2011-08-03 12:43:30 -0400
commitf1c7e8d673e0ba788b9a126b7063771066302023 (patch)
treed72032e28c73833708a4f84030c8bd2db314e61d /fabfile.py
parent7af553173629d8d8e36e71fbf2753dc8d6fe11d3 (diff)
downloadmarkdown-f1c7e8d673e0ba788b9a126b7063771066302023.tar.gz
markdown-f1c7e8d673e0ba788b9a126b7063771066302023.tar.bz2
markdown-f1c7e8d673e0ba788b9a126b7063771066302023.zip
Updated fabfile to automate deploying a release. Includes building a release distribution, registering it with PyPI and uploading donwloads to PyPI and Github.
Diffstat (limited to 'fabfile.py')
-rw-r--r--fabfile.py83
1 files changed, 81 insertions, 2 deletions
diff --git a/fabfile.py b/fabfile.py
index b2016c0..5df64af 100644
--- a/fabfile.py
+++ b/fabfile.py
@@ -2,8 +2,9 @@
Common maintenance commands for the Python-Markdown package.
"""
-from fabric.api import local, lcd, settings, hide, prefix
+from fabric.api import local, lcd, settings, hide, prefix, prompt, abort
from sys import version as _pyversion
+from sys import platform
def _get_versions():
@@ -64,6 +65,84 @@ def build_env(version=_pyversion[:3]):
local('sudo pip%s install nose' % version)
def build_envs():
- """ Build testing env in all support versions. """
+ """ Build testing env in all supported versions. """
for v in confirmed_versions:
build_env(v)
+
+def build_release():
+ """ Build a package for distribution. """
+ ans = prompt('Have you updated the version in both setup.py and __init__.py?', default='Y')
+ if ans.lower() == 'y':
+ local('./setup.py sdist --formats zip,gztar')
+ if platform == 'win32':
+ local('./setup.py bdist_wininst')
+ else:
+ abort('Try again after updating the version numbers.')
+
+def do_release():
+ """ Register and upload release to PyPI and Github. """
+ build_release()
+ local('./setup.py register')
+ local('./setup.py upload')
+ upload_to_github()
+
+def upload_to_github():
+ """ Upload release to Github. """
+ # We need github API v3 but no python lib exists yet. So do it manually.
+ import os
+ import urllib2
+ import base64
+ import simplejson
+ import getpass
+ # Setup Auth
+ url = 'https://api.github.com/repos/waylan/Python-Markdown/downloads'
+ user = prompt('Github username:', default=getpass.getuser())
+ password = prompt('Github password:')
+ authstring = base64.encodestring('%s:%s' % (user, password))
+ # Loop through files and upload
+ base = 'dist/'
+ for file in os.listdir(base):
+ file = os.path.join(base, file)
+ if os.path.isfile(file):
+ ans = prompt('Upload: %s' % file, default='Y')
+ if ans.lower() == 'y':
+ # Create document entry on github
+ desc = prompt('Description for %s:' % file)
+ data1 = simplejson.dumps({
+ 'name': os.path.basename(file),
+ 'size': os.path.getsize(file),
+ 'description' : desc,
+ #'content_type': 'text/plain' # <- let github determine
+ })
+ req = urllib2.Request(url, data1,
+ {'Content-type': 'application/json'})
+ req.add_header('Authorization', 'Basic %s' % authstring)
+ try:
+ response = urllib2.urlopen(req)
+ except urllib2.HTTPError, e:
+ error = simplejson.loads(e.read())
+ if error['errors'][0]['code'] == 'already_exists':
+ print 'Already_exists, skipping...'
+ continue
+ else:
+ print e.read()
+ raise
+ data2 = simplejson.loads(response.read())
+ response.close()
+ # Upload document (using curl because it is easier)
+ data2['file'] = file
+ curl = """curl \\
+ -F "key=%(path)s" \\
+ -F "acl=%(acl)s" \\
+ -F "success_action_status=201" \\
+ -F "Filename=%(name)s" \\
+ -F "AWSAccessKeyId=%(accesskeyid)s" \\
+ -F "Policy=%(policy)s" \\
+ -F "Signature=%(signature)s" \\
+ -F "Content-Type=%(mime_type)s" \\
+ -F "file=@%(file)s" \\
+ %(s3_url)s""" % data2
+ print 'Uploading...'
+ local(curl)
+ else:
+ print 'Skipping...'