add debian packaging for proxmox-rrd
Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
This commit is contained in:
parent
5cbc8a4b66
commit
4d150d35c7
5
proxmox-rrd/debian/changelog
Normal file
5
proxmox-rrd/debian/changelog
Normal file
@ -0,0 +1,5 @@
|
||||
rust-proxmox-rrd (0.1.0-1) bookworm; urgency=medium
|
||||
|
||||
* Initial release - imported from proxmox-backup repository
|
||||
|
||||
-- Proxmox Support Team <support@proxmox.com> Wed, 31 Jan 2024 13:07:36 +0100
|
56
proxmox-rrd/debian/control
Normal file
56
proxmox-rrd/debian/control
Normal file
@ -0,0 +1,56 @@
|
||||
Source: rust-proxmox-rrd
|
||||
Section: rust
|
||||
Priority: optional
|
||||
Build-Depends: debhelper (>= 12),
|
||||
dh-cargo (>= 25),
|
||||
cargo:native <!nocheck>,
|
||||
rustc:native <!nocheck>,
|
||||
libstd-rust-dev <!nocheck>,
|
||||
librust-anyhow-1+default-dev <!nocheck>,
|
||||
librust-bitflags-1+default-dev (>= 1.2.1-~~) <!nocheck>,
|
||||
librust-crossbeam-channel-0.5+default-dev <!nocheck>,
|
||||
librust-libc-0.2+default-dev (>= 0.2.107-~~) <!nocheck>,
|
||||
librust-log-0.4+default-dev (>= 0.4.17-~~) <!nocheck>,
|
||||
librust-nix-0.26+default-dev (>= 0.26.1-~~) <!nocheck>,
|
||||
librust-proxmox-schema-2+api-macro-dev <!nocheck>,
|
||||
librust-proxmox-schema-2+default-dev <!nocheck>,
|
||||
librust-proxmox-sys-0.5+default-dev (>= 0.5.1-~~) <!nocheck>,
|
||||
librust-proxmox-time-1+default-dev (>= 1.1.6-~~) <!nocheck>,
|
||||
librust-serde-1+default-dev <!nocheck>,
|
||||
librust-serde-cbor-0.11+default-dev (>= 0.11.1-~~) <!nocheck>,
|
||||
librust-serde-json-1+default-dev <!nocheck>
|
||||
Maintainer: Proxmox Support Team <support@proxmox.com>
|
||||
Standards-Version: 4.6.2
|
||||
Vcs-Git: git://git.proxmox.com/git/proxmox.git
|
||||
Vcs-Browser: https://git.proxmox.com/?p=proxmox.git
|
||||
X-Cargo-Crate: proxmox-rrd
|
||||
Rules-Requires-Root: no
|
||||
|
||||
Package: librust-proxmox-rrd-dev
|
||||
Architecture: any
|
||||
Multi-Arch: same
|
||||
Depends:
|
||||
${misc:Depends},
|
||||
librust-anyhow-1+default-dev,
|
||||
librust-bitflags-1+default-dev (>= 1.2.1-~~),
|
||||
librust-crossbeam-channel-0.5+default-dev,
|
||||
librust-libc-0.2+default-dev (>= 0.2.107-~~),
|
||||
librust-log-0.4+default-dev (>= 0.4.17-~~),
|
||||
librust-nix-0.26+default-dev (>= 0.26.1-~~),
|
||||
librust-proxmox-schema-2+api-macro-dev,
|
||||
librust-proxmox-schema-2+default-dev,
|
||||
librust-proxmox-sys-0.5+default-dev (>= 0.5.1-~~),
|
||||
librust-proxmox-time-1+default-dev (>= 1.1.6-~~),
|
||||
librust-serde-1+default-dev,
|
||||
librust-serde-cbor-0.11+default-dev (>= 0.11.1-~~),
|
||||
librust-serde-json-1+default-dev
|
||||
Provides:
|
||||
librust-proxmox-rrd+default-dev (= ${binary:Version}),
|
||||
librust-proxmox-rrd-0-dev (= ${binary:Version}),
|
||||
librust-proxmox-rrd-0+default-dev (= ${binary:Version}),
|
||||
librust-proxmox-rrd-0.1-dev (= ${binary:Version}),
|
||||
librust-proxmox-rrd-0.1+default-dev (= ${binary:Version}),
|
||||
librust-proxmox-rrd-0.1.0-dev (= ${binary:Version}),
|
||||
librust-proxmox-rrd-0.1.0+default-dev (= ${binary:Version})
|
||||
Description: Simple RRD database implementation - Rust source code
|
||||
Source code for Debianized Rust crate "proxmox-rrd"
|
18
proxmox-rrd/debian/copyright
Normal file
18
proxmox-rrd/debian/copyright
Normal file
@ -0,0 +1,18 @@
|
||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
|
||||
Files:
|
||||
*
|
||||
Copyright: 2019 - 2023 Proxmox Server Solutions GmbH <support@proxmox.com>
|
||||
License: AGPL-3.0-or-later
|
||||
This program is free software: you can redistribute it and/or modify it under
|
||||
the terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option) any
|
||||
later version.
|
||||
.
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
details.
|
||||
.
|
||||
You should have received a copy of the GNU Affero General Public License along
|
||||
with this program. If not, see <https://www.gnu.org/licenses/>.
|
7
proxmox-rrd/debian/debcargo.toml
Normal file
7
proxmox-rrd/debian/debcargo.toml
Normal file
@ -0,0 +1,7 @@
|
||||
overlay = "."
|
||||
crate_src_path = ".."
|
||||
maintainer = "Proxmox Support Team <support@proxmox.com>"
|
||||
|
||||
[source]
|
||||
vcs_git = "git://git.proxmox.com/git/proxmox.git"
|
||||
vcs_browser = "https://git.proxmox.com/?p=proxmox.git"
|
Loading…
Reference in New Issue
Block a user