From ecc4e65d569a23c49294c3e6ee9cbd995e74ff9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20de=20Celis=20Hern=C3=A1ndez?= Date: Mon, 8 Mar 2021 12:34:49 +0100 Subject: [PATCH 1/2] Add hook-aumbry.py --- .../hooks/stdhooks/hook-aumbry.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-aumbry.py diff --git a/src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-aumbry.py b/src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-aumbry.py new file mode 100644 index 000000000..14ef37c41 --- /dev/null +++ b/src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-aumbry.py @@ -0,0 +1,17 @@ +# ------------------------------------------------------------------ +# Copyright (c) 2020 PyInstaller Development Team. +# +# This file is distributed under the terms of the GNU General Public +# License (version 2.0 or later). +# +# The full license is available in LICENSE.GPL.txt, distributed with +# this software. +# +# SPDX-License-Identifier: GPL-2.0-or-later +# ------------------------------------------------------------------ + +# Tested with Aumbry 0.10.0 + +from PyInstaller.utils.hooks import collect_all + +datas, binaries, hiddenimports = collect_all('aumbry') From 1fd63d2ad21abd3297c44c1bb4be85a3ae4f6869 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20de=20Celis=20Hern=C3=A1ndez?= Date: Tue, 3 Aug 2021 09:37:36 +0200 Subject: [PATCH 2/2] Add hook for aumbry (#96) --- news/96.new.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/96.new.rst diff --git a/news/96.new.rst b/news/96.new.rst new file mode 100644 index 000000000..8428b7413 --- /dev/null +++ b/news/96.new.rst @@ -0,0 +1 @@ +Add a hook for ``aumbry`` to collect data, binaries and hidden imports.