From ac58bf75debda2865f04aa8520e313fdb91e667b Mon Sep 17 00:00:00 2001 From: Kevin Adams Date: Fri, 15 May 2026 15:16:20 -0400 Subject: [PATCH] Fix DEBIAN control.j2: use binary-only format for dpkg-deb dpkg-deb --build reads a binary control file and rejects the two-stanza source+binary format. Rewrote control.j2 as a single binary-only stanza. Removed the source stanza (Source, Standards-Version, Build-Depends fields) which are only meaningful in source packages built with dpkg-buildpackage. Co-Authored-By: Claude Sonnet 4.6 --- packaging/DEBIAN/control.j2 | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/packaging/DEBIAN/control.j2 b/packaging/DEBIAN/control.j2 index d358606..c2db59b 100644 --- a/packaging/DEBIAN/control.j2 +++ b/packaging/DEBIAN/control.j2 @@ -1,18 +1,11 @@ -Source: freenas-proxmox +Package: freenas-proxmox +Version: ${VERSION} +Architecture: all +Maintainer: KSA Technologies, LLC +Depends: librest-client-perl Section: perl Priority: optional -Maintainer: KSA Technologies, LLC -Uploaders: Kevin Scott Adams -Depends: librest-client-perl -Standards-Version: 4.6.2 -Vcs-Git: https://github.com/TheGrandWazoo/freenas-proxmox.git -Vcs-Browser: https://github.com/TheGrandWazoo/freenas-proxmox Homepage: https://github.com/TheGrandWazoo/freenas-proxmox - -Package: freenas-proxmox -Architecture: all -Version: ${VERSION} -Provides: freenas-proxmox Description: TrueNAS ZFS-over-iSCSI Plugin for Proxmox VE Manages iSCSI LUNs on TrueNAS (CORE and SCALE) via the TrueNAS REST API. Supports Bearer Token and username/password authentication.