* [pve-devel] [PATCH backup-qemu] Bump build dependencies to bookworm updates
@ 2023-09-12 9:25 Filip Schauer
2023-09-15 14:26 ` [pve-devel] applied: " Thomas Lamprecht
0 siblings, 1 reply; 2+ messages in thread
From: Filip Schauer @ 2023-09-12 9:25 UTC (permalink / raw)
To: pve-devel
This fixes dependency installation errors when running
`mk-build-deps --install` against the proxmox devel bookworm repository.
Signed-off-by: Filip Schauer <f.schauer@proxmox.com>
---
Cargo.toml | 2 +-
debian/control | 23 ++++++++++++-----------
submodules/proxmox-backup | 2 +-
3 files changed, 14 insertions(+), 13 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index f357f49..2d19add 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -33,7 +33,7 @@ openssl = "0.10"
proxmox-async = "0.4"
proxmox-lang = "1"
-proxmox-schema = { version = "1", features = [ "api-macro" ] }
+proxmox-schema = { version = "2", features = [ "api-macro" ] }
proxmox-sortable-macro = "0.1.2"
proxmox-sys = "0.5"
diff --git a/debian/control b/debian/control
index bfe6a02..39a2a11 100644
--- a/debian/control
+++ b/debian/control
@@ -32,30 +32,31 @@ Build-Depends: cargo:native,
librust-nom-7+default-dev,
librust-once-cell-1+default-dev (>= 1.5-~~),
librust-openssl-0.10+default-dev (>= 0.10.40-~~),
- librust-pathpatterns-0.1+default-dev (>= 0.1.2-~~),
+ librust-pathpatterns-0.2+default-dev,
librust-percent-encoding-2+default-dev (>= 2.1-~~),
librust-pin-project-lite-0.2+default-dev,
librust-proxmox-async-0.4+default-dev,
- librust-proxmox-auth-api-0.2+api-dev,
- librust-proxmox-auth-api-0.2+api-types-dev,
- librust-proxmox-auth-api-0.2+default-dev,
- librust-proxmox-auth-api-0.2+pam-authenticator-dev,
+ librust-proxmox-auth-api-0.3+api-dev,
+ librust-proxmox-auth-api-0.3+api-types-dev,
+ librust-proxmox-auth-api-0.3+default-dev,
+ librust-proxmox-auth-api-0.3+pam-authenticator-dev,
librust-proxmox-borrow-1+default-dev,
librust-proxmox-compression-0.2+default-dev (>= 0.2~),
librust-proxmox-http-0.9+client-dev,
librust-proxmox-http-0.9+default-dev,
librust-proxmox-http-0.9+http-helpers-dev,
librust-proxmox-http-0.9+websocket-dev,
+ librust-proxmox-human-byte-0.1+default-dev,
librust-proxmox-io-1+default-dev (>= 1.0.1-~~),
librust-proxmox-io-1+tokio-dev (>= 1.0.1-~~),
librust-proxmox-lang-1+default-dev (>= 1.1-~~),
librust-proxmox-metrics-0.3+default-dev,
- librust-proxmox-router-1+cli-dev (>= 1.3-~~),
- librust-proxmox-router-1+default-dev (>= 1.3-~~),
- librust-proxmox-router-1+server-dev (>= 1.3-~~),
- librust-proxmox-schema-1+api-macro-dev (>= 1.3.1-~~),
- librust-proxmox-schema-1+default-dev (>= 1.3.1-~~),
- librust-proxmox-section-config-1+default-dev,
+ librust-proxmox-router-2+cli-dev,
+ librust-proxmox-router-2+default-dev,
+ librust-proxmox-router-2+server-dev,
+ librust-proxmox-schema-2+api-macro-dev,
+ librust-proxmox-schema-2+default-dev,
+ librust-proxmox-section-config-2+default-dev,
librust-proxmox-serde-0.1+default-dev (>= 0.1.1-~~),
librust-proxmox-serde-0.1+serde-json-dev (>= 0.1.1-~~),
librust-proxmox-shared-memory-0.3+default-dev (>= 0.2.3-~~),
diff --git a/submodules/proxmox-backup b/submodules/proxmox-backup
index 5e2664f..a8f60bd 160000
--- a/submodules/proxmox-backup
+++ b/submodules/proxmox-backup
@@ -1 +1 @@
-Subproject commit 5e2664f18e1aecd066ffd22d343e0c705bd46571
+Subproject commit a8f60bd1287b7b2c7e50d3f7e1def79a01a1babc
--
2.39.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* [pve-devel] applied: [PATCH backup-qemu] Bump build dependencies to bookworm updates
2023-09-12 9:25 [pve-devel] [PATCH backup-qemu] Bump build dependencies to bookworm updates Filip Schauer
@ 2023-09-15 14:26 ` Thomas Lamprecht
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Lamprecht @ 2023-09-15 14:26 UTC (permalink / raw)
To: Proxmox VE development discussion, Filip Schauer
Am 12/09/2023 um 11:25 schrieb Filip Schauer:
> This fixes dependency installation errors when running
> `mk-build-deps --install` against the proxmox devel bookworm repository.
>
> Signed-off-by: Filip Schauer <f.schauer@proxmox.com>
> ---
> Cargo.toml | 2 +-
> debian/control | 23 ++++++++++++-----------
> submodules/proxmox-backup | 2 +-
> 3 files changed, 14 insertions(+), 13 deletions(-)
>
>
applied, thanks!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-09-15 14:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-12 9:25 [pve-devel] [PATCH backup-qemu] Bump build dependencies to bookworm updates Filip Schauer
2023-09-15 14:26 ` [pve-devel] applied: " Thomas Lamprecht
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal