##// END OF EJS Templates
phabricator: add custom vcr matcher to match request bodies...
phabricator: add custom vcr matcher to match request bodies Currently when the phabricator extension's conduit output changes the tests don't notice since the default vcr matcher only matches on 'method' and 'uri', not the body. Add a custom matcher that checks the same params are in the body (ignoring ordering). vcr's in-built body matcher can't be used since it fails under py3 with a "UnicodeEncodeError" on the "€ in commit message" tests. The DREV ids have decreased since the recordings were generated against a different phabricator instance to avoid spamming mercurial-devel. Differential Revision: https://phab.mercurial-scm.org/D6347

File last commit:

r42260:57645939 default
r42454:af13e208 default
Show More
build.py
84 lines | 3.0 KiB | text/x-python | PythonLexer
Gregory Szorc
wix: functionality to automate building WiX installers...
r42087 #!/usr/bin/env python3
# Copyright 2019 Gregory Szorc <gregory.szorc@gmail.com>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
# no-check-code because Python 3 native.
"""Code to build Mercurial WiX installer."""
import argparse
import os
import pathlib
import sys
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--name',
help='Application name',
default='Mercurial')
parser.add_argument('--python',
help='Path to Python executable to use',
required=True)
parser.add_argument('--sign-sn',
help='Subject name (or fragment thereof) of certificate '
'to use for signing')
parser.add_argument('--sign-cert',
help='Path to certificate to use for signing')
parser.add_argument('--sign-password',
help='Password for signing certificate')
parser.add_argument('--sign-timestamp-url',
help='URL of timestamp server to use for signing')
parser.add_argument('--version',
help='Version string to use')
Augie Fackler
wix: add a hook for a prebuild script to inject extra libraries...
r42214 parser.add_argument('--extra-packages-script',
help=('Script to execute to include extra packages in '
'py2exe binary.'))
Augie Fackler
wix: add support for additional wxs files...
r42215 parser.add_argument('--extra-wxs',
help='CSV of path_to_wxs_file=working_dir_for_wxs_file')
Augie Fackler
wix: add functionality to inject additional Features into installer...
r42216 parser.add_argument('--extra-features',
help=('CSV of extra feature names to include '
'in the installer from the extra wxs files'))
Gregory Szorc
wix: functionality to automate building WiX installers...
r42087
args = parser.parse_args()
here = pathlib.Path(os.path.abspath(os.path.dirname(__file__)))
source_dir = here.parent.parent.parent
sys.path.insert(0, str(source_dir / 'contrib' / 'packaging'))
from hgpackaging.wix import (
build_installer,
build_signed_installer,
)
fn = build_installer
kwargs = {
'source_dir': source_dir,
'python_exe': pathlib.Path(args.python),
'version': args.version,
}
Matt Harbison
packaging: ensure that --python is an absolute path when building on Windows...
r42260 if not os.path.isabs(args.python):
raise Exception('--python arg must be an absolute path')
Augie Fackler
wix: add a hook for a prebuild script to inject extra libraries...
r42214 if args.extra_packages_script:
kwargs['extra_packages_script'] = args.extra_packages_script
Augie Fackler
wix: add support for additional wxs files...
r42215 if args.extra_wxs:
kwargs['extra_wxs'] = dict(
thing.split("=") for thing in args.extra_wxs.split(','))
Augie Fackler
wix: add functionality to inject additional Features into installer...
r42216 if args.extra_features:
kwargs['extra_features'] = args.extra_features.split(',')
Augie Fackler
wix: add a hook for a prebuild script to inject extra libraries...
r42214
Gregory Szorc
wix: functionality to automate building WiX installers...
r42087 if args.sign_sn or args.sign_cert:
fn = build_signed_installer
kwargs['name'] = args.name
kwargs['subject_name'] = args.sign_sn
kwargs['cert_path'] = args.sign_cert
kwargs['cert_password'] = args.sign_password
kwargs['timestamp_url'] = args.sign_timestamp_url
fn(**kwargs)