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 E959060FAC for ; Mon, 12 Oct 2020 12:25:38 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id D64B724665 for ; Mon, 12 Oct 2020 12:25:08 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [212.186.127.180]) (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 2693B24659 for ; Mon, 12 Oct 2020 12:25:07 +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 DFE7E45CB2 for ; Mon, 12 Oct 2020 12:25:06 +0200 (CEST) Date: Mon, 12 Oct 2020 12:24:54 +0200 (CEST) From: =?UTF-8?Q?Fabian_Gr=C3=BCnbichler?= To: Stefan Reiter , pbs-devel@lists.proxmox.com Message-ID: <456942113.593.1602498294142@webmail.proxmox.com> In-Reply-To: <354d4db1-1fe2-7851-0446-a49609b744f4@proxmox.com> References: <20201012101029.2613067-1-f.gruenbichler@proxmox.com> <354d4db1-1fe2-7851-0446-a49609b744f4@proxmox.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Priority: 3 Importance: Normal X-Mailer: Open-Xchange Mailer v7.10.4-Rev10 X-Originating-Client: open-xchange-appsuite X-SPAM-LEVEL: Spam detection results: 0 AWL 0.034 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: Re: [pbs-devel] [PATCH proxmox-backup] fix #3070: replace internal with public URLs X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Oct 2020 10:25:39 -0000 > Stefan Reiter hat am 12.10.2020 12:21 geschrieben: >=20 > =20 > On 10/12/20 12:10 PM, Fabian Gr=C3=BCnbichler wrote: > > Signed-off-by: Fabian Gr=C3=BCnbichler > > --- > > maybe we should drop the git variant from Cargo.toml altogether? obviously :-/ > >=20 > > README.rst | 4 ++-- > > Cargo.toml | 2 +- > > 2 files changed, 3 insertions(+), 3 deletions(-) > >=20 > > diff --git a/README.rst b/README.rst > > index 76aad1ec..e2dbf466 100644 > > --- a/README.rst > > +++ b/README.rst > > @@ -13,7 +13,7 @@ Versioning of proxmox helper crates > > =20 > > To use current git master code of the proxmox* helper crates, add:: > > =20 > > - git =3D "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox" > > + git =3D "ssh://git.proxmox.com/git/proxmox" >=20 > protocol should be git:// >=20 > > =20 > > or:: > > =20 > > @@ -43,7 +43,7 @@ Build > > on Debian Buster > > =20 > > Setup: > > - 1. add 'deb http://repo.proxmox.com/staging/devel/ buster devel-10' = to your sources.list > > + 1. add 'deb http://download.proxmox.com/debian/devel/ buster main' t= o your sources.list > > 2. [sudo] wget http://download.proxmox.com/debian/proxmox-ve-releas= e-6.x.gpg -O /etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg > > 3. [sudo] apt update > > 4. [sudo] apt install devscripts debcargo > > diff --git a/Cargo.toml b/Cargo.toml > > index c4ab3335..abdc85e0 100644 > > --- a/Cargo.toml > > +++ b/Cargo.toml > > @@ -39,7 +39,7 @@ percent-encoding =3D "2.1" > > pin-utils =3D "0.1.0" > > pathpatterns =3D "0.1.2" > > proxmox =3D { version =3D "0.4.3", features =3D [ "sortable-macro", "= api-macro", "websocket" ] } > > -#proxmox =3D { git =3D "ssh://gitolite3@proxdev.maurer-it.com/rust/pro= xmox", version =3D "0.1.2", features =3D [ "sortable-macro", "api-macro" ] = } > > +#proxmox =3D { git =3D "git://git.proxmox.com/git/proxmox", version = =3D "0.1.2", features =3D [ "sortable-macro", "api-macro" ] } > > #proxmox =3D { path =3D "../proxmox/proxmox", features =3D [ "sortabl= e-macro", "api-macro", "websocket" ] } > > proxmox-fuse =3D "0.1.0" > > pxar =3D { version =3D "0.6.1", features =3D [ "tokio-io", "futures-i= o" ] } > >