forked from jcgregorio/httplib2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
32 lines (29 loc) · 1.18 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
tests:
cd python2 && python2.4 httplib2test.py
-cd python2 && python2.5 httplib2test.py
cd python2 && python2.6 httplib2test.py
cd python2 && python2.7 httplib2test.py
cd python3 && python3.2 httplib2test.py
VERSION = $(shell python setup.py --version)
DST = dist/httplib2-$(VERSION)
release:
-find . -name "*.pyc" | xargs rm
-find . -name "*.orig" | xargs rm
-rm -rf python2/.cache
-rm -rf python3/.cache
-mkdir dist
-rm -rf dist/httplib2-$(VERSION)
-rm dist/httplib2-$(VERSION).tar.gz
-rm dist/httplib2-$(VERSION).zip
-mkdir dist/httplib2-$(VERSION)
cp -r python2 $(DST)
cp -r python3 $(DST)
cp setup.py README MANIFEST CHANGELOG $(DST)
cd dist && tar -czv -f httplib2-$(VERSION).tar.gz httplib2-$(VERSION)
cd dist && zip httplib2-$(VERSION).zip -r httplib2-$(VERSION)
python setup.py register
wget "http://support.googlecode.com/svn/trunk/scripts/googlecode_upload.py" -O googlecode_upload.py
python googlecode_upload.py --summary="Version $(shell python setup.py --version)" --project=httplib2 dist/*.tar.gz
python googlecode_upload.py --summary="Version $(shell python setup.py --version)" --project=httplib2 dist/*.zip
doc:
#pudge -v -f --modules=httplib2 --dest=build/doc