From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 5FF621FF17C for ; Wed, 17 Sep 2025 14:18:56 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 718822A04; Wed, 17 Sep 2025 14:19:10 +0200 (CEST) From: Shannon Sterz To: pdm-devel@lists.proxmox.com Date: Wed, 17 Sep 2025 14:18:31 +0200 Message-ID: <20250917121834.52821-1-s.sterz@proxmox.com> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1758111508837 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.049 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 RCVD_IN_VALIDITY_CERTIFIED_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_RPBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_SAFE_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [pbs3to4.rs, lib.rs] Subject: [pdm-devel] [PATCH datacenter-manager/proxmox{, -backup} 0/3] move upgrade checks to a common crate under proxmox-rs X-BeenThere: pdm-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Datacenter Manager development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox Datacenter Manager development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pdm-devel-bounces@lists.proxmox.com Sender: "pdm-devel" these three patches move the largely identical upgrade checks between pbs and pdm to a common crate in the proxmox repository. the first check adds the `proxmox-upgrade-checks` crate there. following are two commits adapting the pbs3to4 script to use the new common crate and change pdm's dependencies to use the common crate. i did not adapt pdm2to3 as pbs 2 is eol for over a year now and we may want to think about removing pbs2to3 from the master branch outright. proxmox: Shannon Sterz (1): upgrade-checks: add upgrade checker crate Cargo.toml | 3 + proxmox-upgrade-checks/Cargo.toml | 21 + proxmox-upgrade-checks/debian/changelog | 5 + proxmox-upgrade-checks/debian/control | 45 ++ proxmox-upgrade-checks/debian/copyright | 18 + proxmox-upgrade-checks/debian/debcargo.toml | 7 + proxmox-upgrade-checks/src/lib.rs | 847 ++++++++++++++++++++ 7 files changed, 946 insertions(+) create mode 100644 proxmox-upgrade-checks/Cargo.toml create mode 100644 proxmox-upgrade-checks/debian/changelog create mode 100644 proxmox-upgrade-checks/debian/control create mode 100644 proxmox-upgrade-checks/debian/copyright create mode 100644 proxmox-upgrade-checks/debian/debcargo.toml create mode 100644 proxmox-upgrade-checks/src/lib.rs proxmox-backup: Shannon Sterz (1): pbs3to4: move upgrade check script to use the new common crate Cargo.toml | 3 + src/bin/pbs3to4.rs | 738 ++------------------------------------------- 2 files changed, 20 insertions(+), 721 deletions(-) proxmox-datacenter-manager: Shannon Sterz (1): lib: move proxmox-upgrade-checks into common crate and depend on that Cargo.toml | 4 +- lib/proxmox-upgrade-checks/Cargo.toml | 19 - lib/proxmox-upgrade-checks/src/lib.rs | 847 -------------------------- 3 files changed, 2 insertions(+), 868 deletions(-) delete mode 100644 lib/proxmox-upgrade-checks/Cargo.toml delete mode 100644 lib/proxmox-upgrade-checks/src/lib.rs Summary over all repositories: 12 files changed, 968 insertions(+), 1589 deletions(-) -- Generated by git-murpp 0.8.1 _______________________________________________ pdm-devel mailing list pdm-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel