* [pbs-devel] [PATCH proxmox-backup] fix #3070: replace internal with public URLs
@ 2020-10-12 10:10 Fabian Grünbichler
2020-10-12 10:21 ` Stefan Reiter
2020-10-12 11:37 ` [pbs-devel] applied: " Thomas Lamprecht
0 siblings, 2 replies; 4+ messages in thread
From: Fabian Grünbichler @ 2020-10-12 10:10 UTC (permalink / raw)
To: pbs-devel
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
---
maybe we should drop the git variant from Cargo.toml altogether?
README.rst | 4 ++--
Cargo.toml | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
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
To use current git master code of the proxmox* helper crates, add::
- git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox"
+ git = "ssh://git.proxmox.com/git/proxmox"
or::
@@ -43,7 +43,7 @@ Build
on Debian Buster
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' to your sources.list
2. [sudo] wget http://download.proxmox.com/debian/proxmox-ve-release-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 = "2.1"
pin-utils = "0.1.0"
pathpatterns = "0.1.2"
proxmox = { version = "0.4.3", features = [ "sortable-macro", "api-macro", "websocket" ] }
-#proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
+#proxmox = { git = "git://git.proxmox.com/git/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
#proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "websocket" ] }
proxmox-fuse = "0.1.0"
pxar = { version = "0.6.1", features = [ "tokio-io", "futures-io" ] }
--
2.20.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [pbs-devel] [PATCH proxmox-backup] fix #3070: replace internal with public URLs
2020-10-12 10:10 [pbs-devel] [PATCH proxmox-backup] fix #3070: replace internal with public URLs Fabian Grünbichler
@ 2020-10-12 10:21 ` Stefan Reiter
2020-10-12 10:24 ` Fabian Grünbichler
2020-10-12 11:37 ` [pbs-devel] applied: " Thomas Lamprecht
1 sibling, 1 reply; 4+ messages in thread
From: Stefan Reiter @ 2020-10-12 10:21 UTC (permalink / raw)
To: pbs-devel, Fabian Grünbichler
On 10/12/20 12:10 PM, Fabian Grünbichler wrote:
> Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
> ---
> maybe we should drop the git variant from Cargo.toml altogether?
>
> README.rst | 4 ++--
> Cargo.toml | 2 +-
> 2 files changed, 3 insertions(+), 3 deletions(-)
>
> 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
>
> To use current git master code of the proxmox* helper crates, add::
>
> - git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox"
> + git = "ssh://git.proxmox.com/git/proxmox"
protocol should be git://
>
> or::
>
> @@ -43,7 +43,7 @@ Build
> on Debian Buster
>
> 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' to your sources.list
> 2. [sudo] wget http://download.proxmox.com/debian/proxmox-ve-release-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 = "2.1"
> pin-utils = "0.1.0"
> pathpatterns = "0.1.2"
> proxmox = { version = "0.4.3", features = [ "sortable-macro", "api-macro", "websocket" ] }
> -#proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
> +#proxmox = { git = "git://git.proxmox.com/git/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
> #proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "websocket" ] }
> proxmox-fuse = "0.1.0"
> pxar = { version = "0.6.1", features = [ "tokio-io", "futures-io" ] }
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [pbs-devel] [PATCH proxmox-backup] fix #3070: replace internal with public URLs
2020-10-12 10:21 ` Stefan Reiter
@ 2020-10-12 10:24 ` Fabian Grünbichler
0 siblings, 0 replies; 4+ messages in thread
From: Fabian Grünbichler @ 2020-10-12 10:24 UTC (permalink / raw)
To: Stefan Reiter, pbs-devel
> Stefan Reiter <s.reiter@proxmox.com> hat am 12.10.2020 12:21 geschrieben:
>
>
> On 10/12/20 12:10 PM, Fabian Grünbichler wrote:
> > Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
> > ---
> > maybe we should drop the git variant from Cargo.toml altogether?
obviously :-/
> >
> > README.rst | 4 ++--
> > Cargo.toml | 2 +-
> > 2 files changed, 3 insertions(+), 3 deletions(-)
> >
> > 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
> >
> > To use current git master code of the proxmox* helper crates, add::
> >
> > - git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox"
> > + git = "ssh://git.proxmox.com/git/proxmox"
>
> protocol should be git://
>
> >
> > or::
> >
> > @@ -43,7 +43,7 @@ Build
> > on Debian Buster
> >
> > 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' to your sources.list
> > 2. [sudo] wget http://download.proxmox.com/debian/proxmox-ve-release-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 = "2.1"
> > pin-utils = "0.1.0"
> > pathpatterns = "0.1.2"
> > proxmox = { version = "0.4.3", features = [ "sortable-macro", "api-macro", "websocket" ] }
> > -#proxmox = { git = "ssh://gitolite3@proxdev.maurer-it.com/rust/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
> > +#proxmox = { git = "git://git.proxmox.com/git/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
> > #proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "websocket" ] }
> > proxmox-fuse = "0.1.0"
> > pxar = { version = "0.6.1", features = [ "tokio-io", "futures-io" ] }
> >
^ permalink raw reply [flat|nested] 4+ messages in thread
* [pbs-devel] applied: [PATCH proxmox-backup] fix #3070: replace internal with public URLs
2020-10-12 10:10 [pbs-devel] [PATCH proxmox-backup] fix #3070: replace internal with public URLs Fabian Grünbichler
2020-10-12 10:21 ` Stefan Reiter
@ 2020-10-12 11:37 ` Thomas Lamprecht
1 sibling, 0 replies; 4+ messages in thread
From: Thomas Lamprecht @ 2020-10-12 11:37 UTC (permalink / raw)
To: Proxmox Backup Server development discussion, Fabian Grünbichler
On 12.10.20 12:10, Fabian Grünbichler wrote:
> Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
> ---
> maybe we should drop the git variant from Cargo.toml altogether?
>
> README.rst | 4 ++--
> Cargo.toml | 2 +-
> 2 files changed, 3 insertions(+), 3 deletions(-)
>
>
applied, thanks!
with s/ssh:/git:/ and some changes to make the commands easier to copy+past+executable
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-10-12 11:38 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-12 10:10 [pbs-devel] [PATCH proxmox-backup] fix #3070: replace internal with public URLs Fabian Grünbichler
2020-10-12 10:21 ` Stefan Reiter
2020-10-12 10:24 ` Fabian Grünbichler
2020-10-12 11:37 ` [pbs-devel] applied: " Thomas Lamprecht
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox