From: Tupone Alfredo Date: Thu, 26 Mar 2020 19:50:28 +0000 (+0100) Subject: dev-ada/langkit: fix usage of pyyaml X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9581a0b568efbe0f22efde7bf54d66024e159ebc;p=gentoo.git dev-ada/langkit: fix usage of pyyaml Closes: https://bugs.gentoo.org/713340 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Alfredo Tupone --- diff --git a/dev-ada/langkit/files/langkit-2019-pyyaml.patch b/dev-ada/langkit/files/langkit-2019-pyyaml.patch new file mode 100644 index 000000000000..58a64992a7c9 --- /dev/null +++ b/dev-ada/langkit/files/langkit-2019-pyyaml.patch @@ -0,0 +1,11 @@ +--- a/testsuite/testsuite_support/polyfill.py 2020-03-26 20:43:40.861154768 +0100 ++++ b/testsuite/testsuite_support/polyfill.py 2020-03-26 20:44:07.874675123 +0100 +@@ -376,7 +376,7 @@ + # First load data provided by this testcase + try: + with open(os.path.join(test_dir, 'test.yaml'), 'r') as f: +- test_data = yaml.load(f) ++ test_data = yaml.safe_load(f) + except (IOError, yaml.error.YAMLError) as exc: + status = 'PROBLEM' + message = 'Invalid test.yaml: {}'.format(exc) diff --git a/dev-ada/langkit/langkit-2018.ebuild b/dev-ada/langkit/langkit-2018.ebuild index 348ef449845a..743c42e819dd 100644 --- a/dev-ada/langkit/langkit-2018.ebuild +++ b/dev-ada/langkit/langkit-2018.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -24,7 +24,6 @@ DEPEND="${PYTHON_DEPS} dev-ada/gnatcoll-bindings[iconv,shared] dev-python/mako dev-python/pyyaml -