From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 5FB7A823E for ; Mon, 21 Aug 2023 15:45:26 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 41B621A97 for ; Mon, 21 Aug 2023 15:44:56 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Mon, 21 Aug 2023 15:44:55 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id D1E8E42D70 for ; Mon, 21 Aug 2023 15:44:54 +0200 (CEST) From: Lukas Wagner To: pve-devel@lists.proxmox.com Date: Mon, 21 Aug 2023 15:44:42 +0200 Message-Id: <20230821134444.620021-6-l.wagner@proxmox.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230821134444.620021-1-l.wagner@proxmox.com> References: <20230821134444.620021-1-l.wagner@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.038 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [RFC proxmox 5/7] cache: add debian packaging X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2023 13:45:26 -0000 Signed-off-by: Lukas Wagner --- proxmox-cache/debian/changelog | 5 ++++ proxmox-cache/debian/control | 47 ++++++++++++++++++++++++++++++ proxmox-cache/debian/copyright | 18 ++++++++++++ proxmox-cache/debian/debcargo.toml | 7 +++++ 4 files changed, 77 insertions(+) create mode 100644 proxmox-cache/debian/changelog create mode 100644 proxmox-cache/debian/control create mode 100644 proxmox-cache/debian/copyright create mode 100644 proxmox-cache/debian/debcargo.toml diff --git a/proxmox-cache/debian/changelog b/proxmox-cache/debian/changelog new file mode 100644 index 0000000..695750d --- /dev/null +++ b/proxmox-cache/debian/changelog @@ -0,0 +1,5 @@ +rust-proxmox-cache (0.1.0-1) unstable; urgency=medium + + * initial Debian package + + -- Proxmox Support Team Thu, 04 May 2023 08:40:38 +0200 diff --git a/proxmox-cache/debian/control b/proxmox-cache/debian/control new file mode 100644 index 0000000..b01dd4a --- /dev/null +++ b/proxmox-cache/debian/control @@ -0,0 +1,47 @@ +Source: rust-proxmox-cache +Section: rust +Priority: optional +Build-Depends: debhelper (>= 12), + dh-cargo (>= 25), + cargo:native , + rustc:native , + libstd-rust-dev , + librust-anyhow-1+default-dev , + librust-proxmox-schema-2+api-types-dev , + librust-proxmox-schema-2+default-dev , + librust-proxmox-sys-0.5+default-dev , + librust-proxmox-time-1+default-dev (>= 1.1.4-~~) , + librust-serde-1+default-dev , + librust-serde-1+derive-dev , + librust-serde-json-1+default-dev +Maintainer: Proxmox Support Team +Standards-Version: 4.6.1 +Vcs-Git: https://salsa.debian.org/rust-team/debcargo-conf.git [src/proxmox-cache] +Vcs-Browser: https://salsa.debian.org/rust-team/debcargo-conf/tree/master/src/proxmox-cache +X-Cargo-Crate: proxmox-cache +Rules-Requires-Root: no + +Package: librust-proxmox-cache-dev +Architecture: any +Multi-Arch: same +Depends: + ${misc:Depends}, + librust-anyhow-1+default-dev, + librust-proxmox-schema-2+api-types-dev, + librust-proxmox-schema-2+default-dev, + librust-proxmox-sys-0.5+default-dev, + librust-proxmox-time-1+default-dev (>= 1.1.4-~~), + librust-serde-1+default-dev, + librust-serde-1+derive-dev, + librust-serde-json-1+default-dev +Provides: + librust-proxmox-cache+default-dev (= ${binary:Version}), + librust-proxmox-cache-0-dev (= ${binary:Version}), + librust-proxmox-cache-0+default-dev (= ${binary:Version}), + librust-proxmox-cache-0.1-dev (= ${binary:Version}), + librust-proxmox-cache-0.1+default-dev (= ${binary:Version}), + librust-proxmox-cache-0.1.0-dev (= ${binary:Version}), + librust-proxmox-cache-0.1.0+default-dev (= ${binary:Version}) +Description: Cache implementations - Rust source code + This package contains the source for the Rust proxmox-cache crate, packaged by + debcargo for use with cargo and dh-cargo. diff --git a/proxmox-cache/debian/copyright b/proxmox-cache/debian/copyright new file mode 100644 index 0000000..0d9eab3 --- /dev/null +++ b/proxmox-cache/debian/copyright @@ -0,0 +1,18 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ + +Files: + * +Copyright: 2019 - 2023 Proxmox Server Solutions GmbH +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 . diff --git a/proxmox-cache/debian/debcargo.toml b/proxmox-cache/debian/debcargo.toml new file mode 100644 index 0000000..14ad800 --- /dev/null +++ b/proxmox-cache/debian/debcargo.toml @@ -0,0 +1,7 @@ +overlay = "." +crate_src_path = ".." +maintainer = "Proxmox Support Team " + +[source] +#vcs_git = "git://git.proxmox.com/git/proxmox.git" +#vcs_browser = "https://git.proxmox.com/?p=proxmox.git" -- 2.39.2