From e1c6018f5b2236960f11297c4e22d3030cb130bf Mon Sep 17 00:00:00 2001 From: robojerk Date: Mon, 4 Aug 2025 00:06:49 +0000 Subject: [PATCH] fix debhelper compatibility conflict and add examples directory to git --- .forgejo/workflows/test.yml | 8 +++++++- debian/control | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 6731269..aba3f0e 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -18,8 +18,14 @@ jobs: # Verify all files are copied echo "Checking repository contents:" ls -la - echo "Checking examples directory:" + echo "Checking for examples directory:" + find . -name "examples" -type d || echo "examples directory not found" + echo "Checking examples directory contents:" ls -la examples/ || echo "examples directory not found" + echo "Git status:" + git status + echo "Git log:" + git log --oneline -5 - name: Set up Python run: | diff --git a/debian/control b/debian/control index 4c489de..0057ee1 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: deb-mock Section: devel Priority: optional Maintainer: Deb-Mock Team -Build-Depends: debhelper-compat (= 13), dh-python, python3-all, python3-setuptools +Build-Depends: debhelper (>= 13), dh-python, python3-all, python3-setuptools Standards-Version: 4.6.2 Homepage: https://git.raines.xyz/robojerk/deb-mock Vcs-Git: https://git.raines.xyz/robojerk/deb-mock.git