From cbffab246997fb5a06211dfb706b54e5ae5bb59f Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 16:58:51 +0200 Subject: Adding upstream version 1.21.22. Signed-off-by: Daniel Baumann --- tests/t-dir-leftover-parents/Makefile | 16 ++++++++++++++++ .../pkg-dir-shared-notempty/DEBIAN/control | 7 +++++++ .../pkg-dir-shared-notempty/DEBIAN/postinst | 7 +++++++ .../pkg-dir-shared-notempty/DEBIAN/postrm | 7 +++++++ .../test-dir/subdir/subsubdir/.keep | 0 .../t-dir-leftover-parents/pkg-dir-shared/DEBIAN/control | 7 +++++++ .../pkg-dir-shared/test-dir/subdir/.keep | 0 7 files changed, 44 insertions(+) create mode 100644 tests/t-dir-leftover-parents/Makefile create mode 100644 tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/control create mode 100755 tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postinst create mode 100755 tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postrm create mode 100644 tests/t-dir-leftover-parents/pkg-dir-shared-notempty/test-dir/subdir/subsubdir/.keep create mode 100644 tests/t-dir-leftover-parents/pkg-dir-shared/DEBIAN/control create mode 100644 tests/t-dir-leftover-parents/pkg-dir-shared/test-dir/subdir/.keep (limited to 'tests/t-dir-leftover-parents') diff --git a/tests/t-dir-leftover-parents/Makefile b/tests/t-dir-leftover-parents/Makefile new file mode 100644 index 0000000..35e2718 --- /dev/null +++ b/tests/t-dir-leftover-parents/Makefile @@ -0,0 +1,16 @@ +TESTS_DEB := pkg-dir-shared pkg-dir-shared-notempty + +include ../Test.mk + +test-case: + $(DPKG_INSTALL) pkg-dir-shared.deb + $(DPKG_INSTALL) pkg-dir-shared-notempty.deb + $(DPKG_REMOVE) pkg-dir-shared-notempty + $(DPKG_PURGE) pkg-dir-shared + $(DPKG_PURGE) pkg-dir-shared-notempty + test ! -d "$(DPKG_INSTDIR)/test-dir" + +test-clean: + $(DPKG_PURGE) pkg-dir-shared + $(DPKG_PURGE) pkg-dir-shared-notempty + $(BEROOT) rm -rf "$(DPKG_INSTDIR)/test-dir" diff --git a/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/control b/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/control new file mode 100644 index 0000000..e904178 --- /dev/null +++ b/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/control @@ -0,0 +1,7 @@ +Package: pkg-dir-shared-notempty +Version: 0 +Section: test +Priority: extra +Maintainer: Dpkg Developers +Architecture: all +Description: test package - shared directory with a config file diff --git a/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postinst b/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postinst new file mode 100755 index 0000000..d3cc9ef --- /dev/null +++ b/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postinst @@ -0,0 +1,7 @@ +#!/bin/sh + +case "$1" in +configure) + touch "$DPKG_ROOT/test-dir/subdir/subsubdir/file" + ;; +esac diff --git a/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postrm b/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postrm new file mode 100755 index 0000000..7906c69 --- /dev/null +++ b/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/DEBIAN/postrm @@ -0,0 +1,7 @@ +#!/bin/sh + +case "$1" in +purge) + rm "$DPKG_ROOT/test-dir/subdir/subsubdir/file" + ;; +esac diff --git a/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/test-dir/subdir/subsubdir/.keep b/tests/t-dir-leftover-parents/pkg-dir-shared-notempty/test-dir/subdir/subsubdir/.keep new file mode 100644 index 0000000..e69de29 diff --git a/tests/t-dir-leftover-parents/pkg-dir-shared/DEBIAN/control b/tests/t-dir-leftover-parents/pkg-dir-shared/DEBIAN/control new file mode 100644 index 0000000..03b3029 --- /dev/null +++ b/tests/t-dir-leftover-parents/pkg-dir-shared/DEBIAN/control @@ -0,0 +1,7 @@ +Package: pkg-dir-shared +Version: 0 +Section: test +Priority: extra +Maintainer: Dpkg Developers +Architecture: all +Description: test package - shared directory diff --git a/tests/t-dir-leftover-parents/pkg-dir-shared/test-dir/subdir/.keep b/tests/t-dir-leftover-parents/pkg-dir-shared/test-dir/subdir/.keep new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3