mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 07:08:10 +00:00
Adjust how doc rendering uses mitmproxy source location
We now make sure our imports come from here too, and that we have mod cons like tilde expansion in the env variable.
This commit is contained in:
parent
7f5965225d
commit
84f57a2832
@ -84,9 +84,3 @@ palette = light
|
||||
</pre>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -4,10 +4,13 @@ import datetime
|
||||
import countershape
|
||||
from countershape import Page, Directory, markup, model
|
||||
import countershape.template
|
||||
sys.path.insert(0, "..")
|
||||
|
||||
MITMPROXY_SRC = os.path.abspath(
|
||||
os.path.expanduser(os.environ.get("MITMPROXY_SRC", ".."))
|
||||
)
|
||||
sys.path.insert(0, MITMPROXY_SRC)
|
||||
from libmproxy import filt, version
|
||||
|
||||
MITMPROXY_SRC = os.environ.get("MITMPROXY_SRC", os.path.abspath(".."))
|
||||
ns.VERSION = version.VERSION
|
||||
|
||||
if ns.options.website:
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
- Bump the version number:
|
||||
- Check the version number:
|
||||
|
||||
mitmproxy/libmproxy/version.py
|
||||
netlib/netlib/version.py
|
||||
@ -14,18 +14,10 @@
|
||||
- Build sdist packages:
|
||||
python ./setup.py sdist
|
||||
|
||||
- Test the packages by installing in a virtualenv:
|
||||
- cd dist
|
||||
- tar -xzvf pkgfile.tgz
|
||||
- virtualenv venv
|
||||
|
||||
- Build the OSX binaries
|
||||
- Follow instructions in osxbinaries
|
||||
- Package:
|
||||
cp -r ./doc /tmp/osx-mitmproxy/
|
||||
mv /tmp/osx-mitmproxy /tmp/osx-mitmproxy-VERSION
|
||||
tar -czvf /tmp/osx-mitmproxy-VERSION.tar.gz /tmp/osx-mitmproxy-VERSION
|
||||
mv /tmp/osx-mitmproxy-VERSION.tar.gz ~/mitmproxy/www.mitmproxy.org/src/download
|
||||
- Move to download dir:
|
||||
mv ./tmp/osx-mitmproxy-VERSION.tar.gz ~/mitmproxy/www.mitmproxy.org/src/download
|
||||
|
||||
- Build the sources for each project:
|
||||
python ./setup.py sdist
|
||||
@ -37,3 +29,9 @@
|
||||
|
||||
python ./setup.py sdist upload
|
||||
|
||||
- Now bump the version number to be ready for the next cycle:
|
||||
|
||||
mitmproxy/libmproxy/version.py
|
||||
netlib/netlib/version.py
|
||||
pathod/libpathod/version.py
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user