summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2012-02-11 13:54:36 -0800
committerJeff Forcier <jeff@bitprophet.org>2012-09-23 16:10:26 -0700
commitc3e9b76d513e67f7091b6366911d581633db0936 (patch)
treea33fee7849cbb781ff565861d31e0084125e06f3
parentac7f513ee8b73612353c180b38065fe53bb456c4 (diff)
Clean up Makefile, ensure release is useful again
(cherry picked from commit 3e4632979faf16d09fa60fd6b645451813ebc790) Conflicts: Makefile
-rw-r--r--Makefile69
1 files changed, 2 insertions, 67 deletions
diff --git a/Makefile b/Makefile
index 78ca4b2b..3c12990c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,60 +1,8 @@
-# releases:
-# aerodactyl (13sep03)
-# bulbasaur (18sep03)
-# charmander (10nov03)
-# doduo (04jan04) - 0.9
-# eevee (08mar04)
-# fearow (23apr04)
-# gyarados (31may04)
-# horsea (27jun04)
-# ivysaur (22oct04)
-# jigglypuff (6nov04) - 1.0
-# kabuto (12dec04) - 1.1
-# lapras (28feb05) - 1.2
-# marowak (9apr05) - 1.3
-# nidoran (28jun05) - 1.3.1
-# oddish (17jul05) - 1.4
-# paras (2oct05) - 1.5
-# quilava (31oct05) - 1.5.1
-# rhydon (04dec05) - 1.5.2
-# squirtle (19feb06) - 1.5.3
-# tentacool (11mar06) - 1.5.4
-# umbreon (10may06) - 1.6
-# vulpix (10jul06) - 1.6.1
-# weedle (16aug06) - 1.6.2
-# xatu (14oct06) - 1.6.3
-# yanma (19nov06) - 1.6.4
-# zubat (18feb07) - 1.7
-# amy (10jun07) - 1.7.1
-# basil (21jan08) - 1.7.2
-# clara (23mar08) - 1.7.3
-# desmond (06jul08) - 1.7.4
-# ernest (19jul09) - 1.7.5
-# fanny (1nov09) - 1.7.6
-# george (21may11) - 1.7.7.1
-# 16 May 2012 - 1.7.7.2
-
-
-ifeq ($(wildcard /sbin/md5),/sbin/md5)
-# os x
-MD5SUM := /sbin/md5
-else
-MD5SUM := md5sum
-endif
-
release: docs
- python ./setup.py sdist --formats=zip
- python ./setup.py sdist --formats=gztar
- python ./setup.py bdist_egg
- zip -r dist/docs.zip docs && rm -rf docs
- cd dist && $(MD5SUM) paramiko*.zip *.gz > md5-sums
- cd dist && gpg -ba paramiko*.zip
- cd dist && gpg -ba paramiko*.gz
+ python setup.py sdist register upload
-
-docs: always
+docs:
epydoc --no-private -o docs/ paramiko
-always:
clean:
rm -rf build dist docs
@@ -65,16 +13,3 @@ clean:
test:
python ./test.py
-
-# places where the version number is stored:
-#
-# setup.py
-# __init__.py
-# README
-# transport.py
-#
-# TRY on windows vm
-# POST gpg sig on website!
-# POST md5sum on website!
-# RUN setup.py
-# DO the push to pypy