Commits

Mojca Miklavec authored bf0a5f89957
py-hgexperimental: update to 0.0.20181109

- bump version to 0.0.20181109 - mercurial-devel obsolete - temporary patch for the following build error 'register' storage class specifier is deprecated and incompatible with C++17 see upstream issue https://bitbucket.org/facebook/hg-experimental/issues/15/build-fail-on-macos-1014
No tags

python/py-hgexperimental/files/patch-setup.py.diff

Added
1 +--- setup.py.orig 2019-03-01 11:39:55.000000000 +0100
2 ++++ setup.py 2019-03-01 11:54:55.000000000 +0100
3 +@@ -10,6 +10,7 @@
4 +
5 + iswindows = os.name == 'nt'
6 + WERROR = "/WX" if iswindows else "-Werror"
7 ++WNOREGISTER = "" if iswindows else "-Wno-error=deprecated-register"
8 + WSTRICTPROTOTYPES = None if iswindows else "-Werror=strict-prototypes"
9 + WALL = "/Wall" if iswindows else "-Wall"
10 + STDC99 = "" if iswindows else "-std=c99"
11 +@@ -86,6 +87,7 @@
12 + cflags.extend([NOOPTIMIZATION, PRODUCEDEBUGSYMBOLS])
13 + else:
14 + cflags.append(WERROR)
15 ++ cflags.append(WNOREGISTER)
16 +
17 + def get_env_path_list(var_name, default=None):
18 + '''Get a path list from an environment variable. The variable is parsed as

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut