mirror of
https://git.proxmox.com/git/proxmox
synced 2025-08-14 16:12:19 +00:00
apt: bump version to 0.11.4
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
272953d72d
commit
3817b3ba50
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "proxmox-apt"
|
name = "proxmox-apt"
|
||||||
description = "Proxmox library for APT"
|
description = "Proxmox library for APT"
|
||||||
version = "0.11.3"
|
version = "0.11.4"
|
||||||
|
|
||||||
exclude = ["debian"]
|
exclude = ["debian"]
|
||||||
|
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
rust-proxmox-apt (0.11.4-1) bookworm; urgency=medium
|
||||||
|
|
||||||
|
* add support for Ceph Squid repositories
|
||||||
|
|
||||||
|
-- Proxmox Support Team <support@proxmox.com> Sun, 10 Nov 2024 18:48:37 +0100
|
||||||
|
|
||||||
rust-proxmox-apt (0.11.3-1) bookworm; urgency=medium
|
rust-proxmox-apt (0.11.3-1) bookworm; urgency=medium
|
||||||
|
|
||||||
* drop unused dependency on once_cell
|
* drop unused dependency on once_cell
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
Source: rust-proxmox-apt
|
Source: rust-proxmox-apt
|
||||||
Section: rust
|
Section: rust
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Build-Depends: debhelper (>= 12),
|
Build-Depends: debhelper-compat (= 13),
|
||||||
dh-cargo (>= 25),
|
dh-sequence-cargo,
|
||||||
cargo:native <!nocheck>,
|
cargo:native <!nocheck>,
|
||||||
rustc:native <!nocheck>,
|
rustc:native <!nocheck>,
|
||||||
libstd-rust-dev <!nocheck>,
|
libstd-rust-dev <!nocheck>,
|
||||||
librust-anyhow-1+default-dev <!nocheck>,
|
librust-anyhow-1+default-dev <!nocheck>,
|
||||||
librust-hex-0.4+default-dev <!nocheck>,
|
librust-hex-0.4+default-dev <!nocheck>,
|
||||||
librust-openssl-0.10+default-dev <!nocheck>,
|
librust-openssl-0.10+default-dev <!nocheck>,
|
||||||
librust-proxmox-apt-api-types-1+default-dev (>= 1.0.1-~~) <!nocheck>,
|
librust-proxmox-apt-api-types-1+default-dev (>= 1.0.2-~~) <!nocheck>,
|
||||||
librust-proxmox-config-digest-0.1+default-dev <!nocheck>,
|
librust-proxmox-config-digest-0.1+default-dev <!nocheck>,
|
||||||
librust-proxmox-config-digest-0.1+openssl-dev <!nocheck>,
|
librust-proxmox-config-digest-0.1+openssl-dev <!nocheck>,
|
||||||
librust-proxmox-sys-0.6+default-dev <!nocheck>,
|
librust-proxmox-sys-0.6+default-dev <!nocheck>,
|
||||||
@ -18,7 +18,7 @@ Build-Depends: debhelper (>= 12),
|
|||||||
librust-serde-1+derive-dev <!nocheck>,
|
librust-serde-1+derive-dev <!nocheck>,
|
||||||
librust-serde-json-1+default-dev <!nocheck>
|
librust-serde-json-1+default-dev <!nocheck>
|
||||||
Maintainer: Proxmox Support Team <support@proxmox.com>
|
Maintainer: Proxmox Support Team <support@proxmox.com>
|
||||||
Standards-Version: 4.6.2
|
Standards-Version: 4.7.0
|
||||||
Vcs-Git: git://git.proxmox.com/git/proxmox-apt.git
|
Vcs-Git: git://git.proxmox.com/git/proxmox-apt.git
|
||||||
Vcs-Browser: https://git.proxmox.com/?p=proxmox-apt.git
|
Vcs-Browser: https://git.proxmox.com/?p=proxmox-apt.git
|
||||||
Homepage: https://proxmox.com
|
Homepage: https://proxmox.com
|
||||||
@ -33,7 +33,7 @@ Depends:
|
|||||||
librust-anyhow-1+default-dev,
|
librust-anyhow-1+default-dev,
|
||||||
librust-hex-0.4+default-dev,
|
librust-hex-0.4+default-dev,
|
||||||
librust-openssl-0.10+default-dev,
|
librust-openssl-0.10+default-dev,
|
||||||
librust-proxmox-apt-api-types-1+default-dev (>= 1.0.1-~~),
|
librust-proxmox-apt-api-types-1+default-dev (>= 1.0.2-~~),
|
||||||
librust-proxmox-config-digest-0.1+default-dev,
|
librust-proxmox-config-digest-0.1+default-dev,
|
||||||
librust-proxmox-config-digest-0.1+openssl-dev,
|
librust-proxmox-config-digest-0.1+openssl-dev,
|
||||||
librust-proxmox-sys-0.6+default-dev,
|
librust-proxmox-sys-0.6+default-dev,
|
||||||
@ -49,8 +49,8 @@ Provides:
|
|||||||
librust-proxmox-apt-0+default-dev (= ${binary:Version}),
|
librust-proxmox-apt-0+default-dev (= ${binary:Version}),
|
||||||
librust-proxmox-apt-0.11-dev (= ${binary:Version}),
|
librust-proxmox-apt-0.11-dev (= ${binary:Version}),
|
||||||
librust-proxmox-apt-0.11+default-dev (= ${binary:Version}),
|
librust-proxmox-apt-0.11+default-dev (= ${binary:Version}),
|
||||||
librust-proxmox-apt-0.11.3-dev (= ${binary:Version}),
|
librust-proxmox-apt-0.11.4-dev (= ${binary:Version}),
|
||||||
librust-proxmox-apt-0.11.3+default-dev (= ${binary:Version})
|
librust-proxmox-apt-0.11.4+default-dev (= ${binary:Version})
|
||||||
Description: Proxmox library for APT - Rust source code
|
Description: Proxmox library for APT - Rust source code
|
||||||
Source code for Debianized Rust crate "proxmox-apt"
|
Source code for Debianized Rust crate "proxmox-apt"
|
||||||
|
|
||||||
@ -68,7 +68,7 @@ Depends:
|
|||||||
Provides:
|
Provides:
|
||||||
librust-proxmox-apt-0+cache-dev (= ${binary:Version}),
|
librust-proxmox-apt-0+cache-dev (= ${binary:Version}),
|
||||||
librust-proxmox-apt-0.11+cache-dev (= ${binary:Version}),
|
librust-proxmox-apt-0.11+cache-dev (= ${binary:Version}),
|
||||||
librust-proxmox-apt-0.11.3+cache-dev (= ${binary:Version})
|
librust-proxmox-apt-0.11.4+cache-dev (= ${binary:Version})
|
||||||
Description: Proxmox library for APT - feature "cache"
|
Description: Proxmox library for APT - feature "cache"
|
||||||
This metapackage enables feature "cache" for the Rust proxmox-apt crate, by
|
This metapackage enables feature "cache" for the Rust proxmox-apt crate, by
|
||||||
pulling in any additional dependencies needed by that feature.
|
pulling in any additional dependencies needed by that feature.
|
||||||
|
@ -12,6 +12,7 @@ Build-Depends: debhelper (>= 12),
|
|||||||
librust-handlebars-3+default-dev <!nocheck>,
|
librust-handlebars-3+default-dev <!nocheck>,
|
||||||
librust-lettre-0.11+default-dev (>= 0.11.1-~~) <!nocheck>,
|
librust-lettre-0.11+default-dev (>= 0.11.1-~~) <!nocheck>,
|
||||||
librust-log-0.4+default-dev (>= 0.4.17-~~) <!nocheck>,
|
librust-log-0.4+default-dev (>= 0.4.17-~~) <!nocheck>,
|
||||||
|
librust-mail-parser-dev,
|
||||||
librust-openssl-0.10+default-dev <!nocheck>,
|
librust-openssl-0.10+default-dev <!nocheck>,
|
||||||
librust-proxmox-http-0.9+client-sync-dev (>= 0.9.2-~~) <!nocheck>,
|
librust-proxmox-http-0.9+client-sync-dev (>= 0.9.2-~~) <!nocheck>,
|
||||||
librust-proxmox-http-0.9+default-dev (>= 0.9.2-~~) <!nocheck>,
|
librust-proxmox-http-0.9+default-dev (>= 0.9.2-~~) <!nocheck>,
|
||||||
|
Loading…
Reference in New Issue
Block a user