Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] alacritty: remove cargo lefotver
@ 2020-04-05 15:27 m3tav3rse
  2020-04-05 15:37 ` jnbr
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: m3tav3rse @ 2020-04-05 15:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 335 bytes --]

There is a new pull request by m3tav3rse against master on the void-packages repository

https://github.com/m3tav3rse/void-packages alacritty
https://github.com/void-linux/void-packages/pull/20672

alacritty: remove cargo lefotver
Fixes #20668

A patch file from https://github.com/void-linux/void-packages/pull/20672.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-alacritty-20672.patch --]
[-- Type: text/x-diff, Size: 987 bytes --]

From 8d734f91fe73eaec555e6f8ca1a6dca307351744 Mon Sep 17 00:00:00 2001
From: m3tav3rse <n6maa10816@tuta.io>
Date: Sun, 5 Apr 2020 17:24:25 +0200
Subject: [PATCH] alacritty: remove cargo lefotver

Fixes #20668
---
 srcpkgs/alacritty/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/alacritty/template b/srcpkgs/alacritty/template
index 2efd08e9e22..740753bbd76 100644
--- a/srcpkgs/alacritty/template
+++ b/srcpkgs/alacritty/template
@@ -1,7 +1,7 @@
 # Template file for 'alacritty'
 pkgname=alacritty
 version=0.4.2
-revision=1
+revision=2
 build_style=cargo
 hostmakedepends="pkg-config python3"
 makedepends="freetype-devel fontconfig-devel libxcb-devel"
@@ -16,7 +16,7 @@ checksum=8dda9d580b9ec793cfdb336b000b73b7e98b4eba91c23ee04ee72a1728754ab2
 
 do_install() {
 	cargo install --path ${pkgname} --target ${RUST_TARGET} --root="${DESTDIR}/usr" --locked
-	rm "${DESTDIR}"/usr/.crates.toml
+	rm "${DESTDIR}"/usr/.crates*
 }
 
 post_install() {

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
@ 2020-04-05 15:37 ` jnbr
  2020-04-05 15:43 ` m3tav3rse
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jnbr @ 2020-04-05 15:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 238 bytes --]

New comment by jnbr on void-packages repository

https://github.com/void-linux/void-packages/pull/20672#issuecomment-609435945

Comment:
You could just drop the full `do_install`. It's a leftover and covered by the cargo build-style now.

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
  2020-04-05 15:37 ` jnbr
@ 2020-04-05 15:43 ` m3tav3rse
  2020-04-05 17:03 ` m3tav3rse
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: m3tav3rse @ 2020-04-05 15:43 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 170 bytes --]

New comment by m3tav3rse on void-packages repository

https://github.com/void-linux/void-packages/pull/20672#issuecomment-609436749

Comment:
Thanks, I didn't know that.

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
  2020-04-05 15:37 ` jnbr
  2020-04-05 15:43 ` m3tav3rse
@ 2020-04-05 17:03 ` m3tav3rse
  2020-04-05 17:05 ` xtraeme
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: m3tav3rse @ 2020-04-05 17:03 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 263 bytes --]

New comment by m3tav3rse on void-packages repository

https://github.com/void-linux/void-packages/pull/20672#issuecomment-609448471

Comment:
Hm, when I drop this custom do_install cargo fails beacause tarball Cargo.toml is virtual manifest and do_install fails.

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
                   ` (2 preceding siblings ...)
  2020-04-05 17:03 ` m3tav3rse
@ 2020-04-05 17:05 ` xtraeme
  2020-04-05 17:11 ` m3tav3rse
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: xtraeme @ 2020-04-05 17:05 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 157 bytes --]

New comment by xtraeme on void-packages repository

https://github.com/void-linux/void-packages/pull/20672#issuecomment-609448641

Comment:
Use post_install

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
                   ` (3 preceding siblings ...)
  2020-04-05 17:05 ` xtraeme
@ 2020-04-05 17:11 ` m3tav3rse
  2020-04-05 17:12 ` xtraeme
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: m3tav3rse @ 2020-04-05 17:11 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 328 bytes --]

New comment by m3tav3rse on void-packages repository

https://github.com/void-linux/void-packages/pull/20672#issuecomment-609449514

Comment:
> Use post_install

Why would I use it?
I think possible solution is to change build_wrksrc to alacritty since default do_install uses --path . and we need --path alacritty here.



^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
                   ` (4 preceding siblings ...)
  2020-04-05 17:11 ` m3tav3rse
@ 2020-04-05 17:12 ` xtraeme
  2020-04-05 17:15 ` m3tav3rse
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: xtraeme @ 2020-04-05 17:12 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 179 bytes --]

New comment by xtraeme on void-packages repository

https://github.com/void-linux/void-packages/pull/20672#issuecomment-609449648

Comment:
Hmm do whatever your think is OK buddy

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
                   ` (5 preceding siblings ...)
  2020-04-05 17:12 ` xtraeme
@ 2020-04-05 17:15 ` m3tav3rse
  2020-04-05 17:20 ` [PR PATCH] [Updated] " m3tav3rse
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: m3tav3rse @ 2020-04-05 17:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 240 bytes --]

New comment by m3tav3rse on void-packages repository

https://github.com/void-linux/void-packages/pull/20672#issuecomment-609450047

Comment:
I mean I don't know what would I put in post_install which isn't what is in do_install right now.

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [PR PATCH] [Updated] alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
                   ` (6 preceding siblings ...)
  2020-04-05 17:15 ` m3tav3rse
@ 2020-04-05 17:20 ` m3tav3rse
  2020-04-05 19:13 ` jnbr
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: m3tav3rse @ 2020-04-05 17:20 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 340 bytes --]

There is an updated pull request by m3tav3rse against master on the void-packages repository

https://github.com/m3tav3rse/void-packages alacritty
https://github.com/void-linux/void-packages/pull/20672

alacritty: remove cargo lefotver
Fixes #20668

A patch file from https://github.com/void-linux/void-packages/pull/20672.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-alacritty-20672.patch --]
[-- Type: text/x-diff, Size: 2336 bytes --]

From 4d42a201c567469f54c9df9c661edf1cc1a44184 Mon Sep 17 00:00:00 2001
From: m3tav3rse <n6maa10816@tuta.io>
Date: Sun, 5 Apr 2020 17:24:25 +0200
Subject: [PATCH] alacritty: remove custom do_install

Fixes #20668
---
 srcpkgs/alacritty/template | 24 ++++++++++--------------
 1 file changed, 10 insertions(+), 14 deletions(-)

diff --git a/srcpkgs/alacritty/template b/srcpkgs/alacritty/template
index 2efd08e9e22..6ca8161e1c8 100644
--- a/srcpkgs/alacritty/template
+++ b/srcpkgs/alacritty/template
@@ -1,8 +1,9 @@
 # Template file for 'alacritty'
 pkgname=alacritty
 version=0.4.2
-revision=1
+revision=2
 build_style=cargo
+build_wrksrc="${pkgname}"
 hostmakedepends="pkg-config python3"
 makedepends="freetype-devel fontconfig-devel libxcb-devel"
 depends="libXxf86vm ncurses alacritty-terminfo-${version}_${revision}"
@@ -14,20 +15,15 @@ changelog="https://raw.githubusercontent.com/jwilm/${pkgname}/v${version}/CHANGE
 distfiles="https://github.com/jwilm/${pkgname}/archive/v${version}.tar.gz"
 checksum=8dda9d580b9ec793cfdb336b000b73b7e98b4eba91c23ee04ee72a1728754ab2
 
-do_install() {
-	cargo install --path ${pkgname} --target ${RUST_TARGET} --root="${DESTDIR}/usr" --locked
-	rm "${DESTDIR}"/usr/.crates.toml
-}
-
 post_install() {
-	vinstall extra/linux/Alacritty.desktop 644 usr/share/applications
-	vinstall extra/logo/alacritty-term.svg 644 usr/share/pixmaps Alacritty.svg
-	vinstall extra/completions/alacritty.bash 644 usr/share/bash-completion/completions alacritty
-	vinstall extra/completions/_alacritty 644 usr/share/zsh/site-functions
-	vinstall extra/completions/alacritty.fish 644 usr/share/fish/vendor_completions.d
-	vinstall extra/alacritty.info 644 usr/share/terminfo/a
-	vman extra/alacritty.man alacritty.1
-	vsconf alacritty.yml
+	vinstall ../extra/linux/Alacritty.desktop 644 usr/share/applications
+	vinstall ../extra/logo/alacritty-term.svg 644 usr/share/pixmaps Alacritty.svg
+	vinstall ../extra/completions/alacritty.bash 644 usr/share/bash-completion/completions alacritty
+	vinstall ../extra/completions/_alacritty 644 usr/share/zsh/site-functions
+	vinstall ../extra/completions/alacritty.fish 644 usr/share/fish/vendor_completions.d
+	vinstall ../extra/alacritty.info 644 usr/share/terminfo/a
+	vman ../extra/alacritty.man alacritty.1
+	vsconf ../alacritty.yml
 }
 
 alacritty-terminfo_package() {

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
                   ` (7 preceding siblings ...)
  2020-04-05 17:20 ` [PR PATCH] [Updated] " m3tav3rse
@ 2020-04-05 19:13 ` jnbr
  2020-04-05 22:48 ` [PR PATCH] [Updated] " m3tav3rse
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jnbr @ 2020-04-05 19:13 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 211 bytes --]

New comment by jnbr on void-packages repository

https://github.com/void-linux/void-packages/pull/20672#issuecomment-609467111

Comment:
you could use `make_install_args` to set the path, but this works as well

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [PR PATCH] [Updated] alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
                   ` (8 preceding siblings ...)
  2020-04-05 19:13 ` jnbr
@ 2020-04-05 22:48 ` m3tav3rse
  2020-04-05 22:49 ` m3tav3rse
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: m3tav3rse @ 2020-04-05 22:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 340 bytes --]

There is an updated pull request by m3tav3rse against master on the void-packages repository

https://github.com/m3tav3rse/void-packages alacritty
https://github.com/void-linux/void-packages/pull/20672

alacritty: remove cargo lefotver
Fixes #20668

A patch file from https://github.com/void-linux/void-packages/pull/20672.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-alacritty-20672.patch --]
[-- Type: text/x-diff, Size: 2264 bytes --]

From 5125d6b6f6707d62e66025a1d0d735bc971ce434 Mon Sep 17 00:00:00 2001
From: m3tav3rse <n6maa10816@tuta.io>
Date: Sun, 5 Apr 2020 17:24:25 +0200
Subject: [PATCH] alacritty: remove custom do_install

Fixes #20668
---
 srcpkgs/alacritty/template | 24 ++++++++++--------------
 1 file changed, 10 insertions(+), 14 deletions(-)

diff --git a/srcpkgs/alacritty/template b/srcpkgs/alacritty/template
index 2efd08e9e22..65fb5690219 100644
--- a/srcpkgs/alacritty/template
+++ b/srcpkgs/alacritty/template
@@ -1,7 +1,8 @@
 # Template file for 'alacritty'
 pkgname=alacritty
 version=0.4.2
-revision=1
+revision=2
+build_wrksrc="${pkgname}"
 build_style=cargo
 hostmakedepends="pkg-config python3"
 makedepends="freetype-devel fontconfig-devel libxcb-devel"
@@ -14,20 +15,15 @@ changelog="https://raw.githubusercontent.com/jwilm/${pkgname}/v${version}/CHANGE
 distfiles="https://github.com/jwilm/${pkgname}/archive/v${version}.tar.gz"
 checksum=8dda9d580b9ec793cfdb336b000b73b7e98b4eba91c23ee04ee72a1728754ab2
 
-do_install() {
-	cargo install --path ${pkgname} --target ${RUST_TARGET} --root="${DESTDIR}/usr" --locked
-	rm "${DESTDIR}"/usr/.crates.toml
-}
-
 post_install() {
-	vinstall extra/linux/Alacritty.desktop 644 usr/share/applications
-	vinstall extra/logo/alacritty-term.svg 644 usr/share/pixmaps Alacritty.svg
-	vinstall extra/completions/alacritty.bash 644 usr/share/bash-completion/completions alacritty
-	vinstall extra/completions/_alacritty 644 usr/share/zsh/site-functions
-	vinstall extra/completions/alacritty.fish 644 usr/share/fish/vendor_completions.d
-	vinstall extra/alacritty.info 644 usr/share/terminfo/a
-	vman extra/alacritty.man alacritty.1
-	vsconf alacritty.yml
+	vinstall ../extra/linux/Alacritty.desktop 644 usr/share/applications
+	vinstall ../extra/logo/alacritty-term.svg 644 usr/share/pixmaps Alacritty.svg
+	vinstall ../extra/completions/alacritty.bash 644 usr/share/bash-completion/completions alacritty
+	vinstall ../extra/completions/_alacritty 644 usr/share/zsh/site-functions
+	vinstall ../extra/completions/alacritty.fish 644 usr/share/fish/vendor_completions.d
+	vinstall ../extra/alacritty.info 644 usr/share/terminfo/a
+	vman ../extra/alacritty.man alacritty.1
+	vsconf ../alacritty.yml
 }
 
 alacritty-terminfo_package() {

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
                   ` (9 preceding siblings ...)
  2020-04-05 22:48 ` [PR PATCH] [Updated] " m3tav3rse
@ 2020-04-05 22:49 ` m3tav3rse
  2020-04-06  7:28 ` [PR PATCH] [Merged]: " xtraeme
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: m3tav3rse @ 2020-04-05 22:49 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 399 bytes --]

New comment by m3tav3rse on void-packages repository

https://github.com/void-linux/void-packages/pull/20672#issuecomment-609497944

Comment:
> you could use `make_install_args` to set the path, but this works as well

I tried this approach but cargo doesn't accept multiple `--path` arguments.
`error: The argument '--path <PATH>' was provided more than once, but cannot be used multiple times`

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [PR PATCH] [Merged]: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
                   ` (10 preceding siblings ...)
  2020-04-05 22:49 ` m3tav3rse
@ 2020-04-06  7:28 ` xtraeme
  2020-04-06  7:40 ` travankor
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: xtraeme @ 2020-04-06  7:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 178 bytes --]

There's a merged pull request on the void-packages repository

alacritty: remove cargo lefotver
https://github.com/void-linux/void-packages/pull/20672

Description:
Fixes #20668

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
                   ` (11 preceding siblings ...)
  2020-04-06  7:28 ` [PR PATCH] [Merged]: " xtraeme
@ 2020-04-06  7:40 ` travankor
  2020-04-06  7:41 ` travankor
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: travankor @ 2020-04-06  7:40 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 196 bytes --]

New comment by travankor on void-packages repository

https://github.com/void-linux/void-packages/pull/20672#issuecomment-609628931

Comment:
@m3tav3rse does this fix the make_install_args issue?

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
                   ` (12 preceding siblings ...)
  2020-04-06  7:40 ` travankor
@ 2020-04-06  7:41 ` travankor
  2020-04-06  8:37 ` m3tav3rse
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: travankor @ 2020-04-06  7:41 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 254 bytes --]

New comment by travankor on void-packages repository

https://github.com/void-linux/void-packages/pull/20672#issuecomment-609628931

Comment:
@m3tav3rse does [this](https://github.com/void-linux/void-packages/pull/20691) fix the make_install_args issue?

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
                   ` (13 preceding siblings ...)
  2020-04-06  7:41 ` travankor
@ 2020-04-06  8:37 ` m3tav3rse
  2020-04-06  8:42 ` m3tav3rse
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: m3tav3rse @ 2020-04-06  8:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 167 bytes --]

New comment by m3tav3rse on void-packages repository

https://github.com/void-linux/void-packages/pull/20672#issuecomment-609655574

Comment:
@travankor yes, it does.

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
                   ` (14 preceding siblings ...)
  2020-04-06  8:37 ` m3tav3rse
@ 2020-04-06  8:42 ` m3tav3rse
  2020-04-06  9:39 ` travankor
  2020-04-06  9:45 ` m3tav3rse
  17 siblings, 0 replies; 19+ messages in thread
From: m3tav3rse @ 2020-04-06  8:42 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 402 bytes --]

New comment by m3tav3rse on void-packages repository

https://github.com/void-linux/void-packages/pull/20672#issuecomment-609655574

Comment:
@travankor yes, it does, however it is deprecated.
`warning: Using cargo install to install the binaries for the package in current working directory is deprecated, use cargo install --path . instead. Use cargo build if you want to simply build the package.`

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
                   ` (15 preceding siblings ...)
  2020-04-06  8:42 ` m3tav3rse
@ 2020-04-06  9:39 ` travankor
  2020-04-06  9:45 ` m3tav3rse
  17 siblings, 0 replies; 19+ messages in thread
From: travankor @ 2020-04-06  9:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 252 bytes --]

New comment by travankor on void-packages repository

https://github.com/void-linux/void-packages/pull/20672#issuecomment-609686716

Comment:
Sorry, but what is deprecated? You're using --path alacritty? `cargo install --path .` was the broken option.

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: alacritty: remove cargo lefotver
  2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
                   ` (16 preceding siblings ...)
  2020-04-06  9:39 ` travankor
@ 2020-04-06  9:45 ` m3tav3rse
  17 siblings, 0 replies; 19+ messages in thread
From: m3tav3rse @ 2020-04-06  9:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 219 bytes --]

New comment by m3tav3rse on void-packages repository

https://github.com/void-linux/void-packages/pull/20672#issuecomment-609689805

Comment:
My bad, output I posted above is from `cargo install` without path argument.

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2020-04-06  9:45 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-05 15:27 [PR PATCH] alacritty: remove cargo lefotver m3tav3rse
2020-04-05 15:37 ` jnbr
2020-04-05 15:43 ` m3tav3rse
2020-04-05 17:03 ` m3tav3rse
2020-04-05 17:05 ` xtraeme
2020-04-05 17:11 ` m3tav3rse
2020-04-05 17:12 ` xtraeme
2020-04-05 17:15 ` m3tav3rse
2020-04-05 17:20 ` [PR PATCH] [Updated] " m3tav3rse
2020-04-05 19:13 ` jnbr
2020-04-05 22:48 ` [PR PATCH] [Updated] " m3tav3rse
2020-04-05 22:49 ` m3tav3rse
2020-04-06  7:28 ` [PR PATCH] [Merged]: " xtraeme
2020-04-06  7:40 ` travankor
2020-04-06  7:41 ` travankor
2020-04-06  8:37 ` m3tav3rse
2020-04-06  8:42 ` m3tav3rse
2020-04-06  9:39 ` travankor
2020-04-06  9:45 ` m3tav3rse

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).