]> git.proxmox.com Git - proxmox.git/commit
systemd: debcargo: add libsystemd-dev to dependencies
authorMaximiliano Sandoval <m.sandoval@proxmox.com>
Fri, 23 Aug 2024 13:01:30 +0000 (15:01 +0200)
committerWolfgang Bumiller <w.bumiller@proxmox.com>
Wed, 28 Aug 2024 12:18:22 +0000 (14:18 +0200)
commita41da1f37171ddec6aaaeae62940da4cb8eed803
tree41451765feda5e5271c9cd27fe97c8773f34c771
parentde004f736d72f916c411f5230b9f30bc611ebeb3
systemd: debcargo: add libsystemd-dev to dependencies

`Build-Depends` and `Depends` in d/control are missing `libsystemd-dev`,
resulting in mk-build-deps not being able to install all dependencies
needed by `make deb`.

After running `make deb` the control file looks:

```diff
modified   proxmox-systemd/debian/control
@@ -6,7 +6,8 @@ Build-Depends: debhelper (>= 12),
  cargo:native <!nocheck>,
  rustc:native <!nocheck>,
  libstd-rust-dev <!nocheck>,
- librust-libc-0.2+default-dev (>= 0.2.107-~~) <!nocheck>
+ librust-libc-0.2+default-dev (>= 0.2.107-~~) <!nocheck>,
+ libsystemd-dev <!nocheck>
 Maintainer: Proxmox Support Team <support@proxmox.com>
 Standards-Version: 4.6.2
 Vcs-Git: git://git.proxmox.com/git/proxmox.git
@@ -19,7 +20,8 @@ Architecture: any
 Multi-Arch: same
 Depends:
  ${misc:Depends},
- librust-libc-0.2+default-dev (>= 0.2.107-~~)
+ librust-libc-0.2+default-dev (>= 0.2.107-~~),
+ libsystemd-dev
 Provides:
  librust-proxmox-systemd+default-dev (= ${binary:Version}),
  librust-proxmox-systemd-0-dev (= ${binary:Version}),
```

Suggested-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
proxmox-systemd/debian/debcargo.toml