Mercurial > p > roundup > code
view tools/base64 @ 7621:470e29fb36db
build: disable documention on xapian for travis-ci.
--disable-documentation passed to configure doesn't work and I have a
crash in sphinx that prevents testing.
Use -enable-documentation=no which appears to be how 1.4.14 expects it
at least.
no-github-ci to disable testing for github as this change affects
travis only at this point. If it works, I'll disable doc build on
github to to save cycles.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 11 Sep 2023 00:42:01 -0400 |
| parents | c75defc1c2f0 |
| children | 9c3ec0a5c7fc |
line wrap: on
line source
#!/usr/bin/env python from __future__ import print_function import zlib, base64, sys print(base64.encodestring(zlib.compress(sys.stdin.read())))
