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 2714F74090; Mon, 31 May 2021 15:17:40 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 158CF1F9BF; Mon, 31 May 2021 15:17:10 +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 id 9B3AC1F9B1; Mon, 31 May 2021 15:17:09 +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 72F03439A2; Mon, 31 May 2021 15:17:09 +0200 (CEST) To: Wolfgang Bumiller Cc: pve-devel@lists.proxmox.com, pbs-devel@lists.proxmox.com References: <20210528143002.16190-1-f.ebner@proxmox.com> <20210528143002.16190-17-f.ebner@proxmox.com> <20210531125532.atzmoncampdjl3f6@olga.proxmox.com> From: Fabian Ebner Message-ID: <63100925-6816-1088-01ed-ca6219a5450a@proxmox.com> Date: Mon, 31 May 2021 15:17:08 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.10.0 MIME-Version: 1.0 In-Reply-To: <20210531125532.atzmoncampdjl3f6@olga.proxmox.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.303 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment NICE_REPLY_A -0.618 Looks like a legit reply (A) SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: Re: [pve-devel] [pbs-devel] [RFC v5 pve-rs 16/23] add perlmod crate with initial APT module 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, 31 May 2021 13:17:40 -0000 Am 31.05.21 um 14:55 schrieb Wolfgang Bumiller: > Please don't use 'perlmod' as the name of a crate which also depends on > a different 'perlmod' crate, that won't be fun for long. > > Call it pve-rs ;-) > I called it perlmod, because that's what was suggested in the (outdated) README. Should it even be a sub-crate then, or organized like pmg-rs? > On Fri, May 28, 2021 at 04:29:55PM +0200, Fabian Ebner wrote: >> and disable diskmanage for now, whose Cargo.toml references local paths. >> >> Signed-off-by: Fabian Ebner >> --- >> >> New in v5. >> >> Cargo.toml | 3 +- >> perlmod/Cargo.toml | 17 ++++++++++ >> perlmod/src/apt/mod.rs | 1 + >> perlmod/src/apt/repositories.rs | 55 +++++++++++++++++++++++++++++++++ >> perlmod/src/lib.rs | 1 + >> 5 files changed, 76 insertions(+), 1 deletion(-) >> create mode 100644 perlmod/Cargo.toml >> create mode 100644 perlmod/src/apt/mod.rs >> create mode 100644 perlmod/src/apt/repositories.rs >> create mode 100644 perlmod/src/lib.rs