From 75808db17caf8b960b351e3408e74142f4c85aac Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 14 Apr 2024 15:42:30 +0200 Subject: Adding upstream version 2.117.0. Signed-off-by: Daniel Baumann --- .../menus/menus-foo-calls-bar/build-spec/debian/postinst | 7 +++++++ .../menus/menus-foo-calls-bar/build-spec/debian/postrm | 12 ++++++++++++ .../menus/menus-foo-calls-bar/build-spec/debian/preinst | 12 ++++++++++++ .../checks/menus/menus-foo-calls-bar/build-spec/debian/prerm | 12 ++++++++++++ .../checks/menus/menus-foo-calls-bar/build-spec/fill-values | 3 +++ 5 files changed, 46 insertions(+) create mode 100644 t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/postinst create mode 100644 t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/postrm create mode 100644 t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/preinst create mode 100644 t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/prerm create mode 100644 t/recipes/checks/menus/menus-foo-calls-bar/build-spec/fill-values (limited to 't/recipes/checks/menus/menus-foo-calls-bar/build-spec') diff --git a/t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/postinst b/t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/postinst new file mode 100644 index 0000000..ed633f7 --- /dev/null +++ b/t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/postinst @@ -0,0 +1,7 @@ +#!/bin/sh +set -e + +install-docs +update-menus + +#DEBHELPER# diff --git a/t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/postrm b/t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/postrm new file mode 100644 index 0000000..d3027f5 --- /dev/null +++ b/t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/postrm @@ -0,0 +1,12 @@ +#!/bin/sh +set -e + +if which install-docs >/dev/null 2>&1 ; then + install-docs +fi + +if which update-menus >/dev/null 2>&1 ; then + update-menus +fi + +#DEBHELPER# diff --git a/t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/preinst b/t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/preinst new file mode 100644 index 0000000..d3027f5 --- /dev/null +++ b/t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/preinst @@ -0,0 +1,12 @@ +#!/bin/sh +set -e + +if which install-docs >/dev/null 2>&1 ; then + install-docs +fi + +if which update-menus >/dev/null 2>&1 ; then + update-menus +fi + +#DEBHELPER# diff --git a/t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/prerm b/t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/prerm new file mode 100644 index 0000000..d3027f5 --- /dev/null +++ b/t/recipes/checks/menus/menus-foo-calls-bar/build-spec/debian/prerm @@ -0,0 +1,12 @@ +#!/bin/sh +set -e + +if which install-docs >/dev/null 2>&1 ; then + install-docs +fi + +if which update-menus >/dev/null 2>&1 ; then + update-menus +fi + +#DEBHELPER# diff --git a/t/recipes/checks/menus/menus-foo-calls-bar/build-spec/fill-values b/t/recipes/checks/menus/menus-foo-calls-bar/build-spec/fill-values new file mode 100644 index 0000000..cbf8555 --- /dev/null +++ b/t/recipes/checks/menus/menus-foo-calls-bar/build-spec/fill-values @@ -0,0 +1,3 @@ +Skeleton: upload-native +Testname: menus-foo-calls-bar +Description: check for installdocs and updatemenus calls -- cgit v1.2.3