Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] [wip] New package: lsd-0.15.1
@ 2019-07-19  6:22 voidlinux-github
  2019-07-19 13:45 ` voidlinux-github
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: voidlinux-github @ 2019-07-19  6:22 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mustaqimM/void-packages new_package_lsd
https://github.com/void-linux/void-packages/pull/13219

[wip] New package: lsd-0.15.1
```zsh
error: process didn't exit successfully: `rustc -vV` (exit code: 1)
--- stdout
rustc 1.36.0
binary: rustc
commit-hash: unknown
commit-date: unknown
host: x86_64-unknown-linux-gnu
release: 1.36.0

--- stderr
error: couldn't load codegen backend "/usr/lib64/rustlib/x86_64-unknown-linux-gnu/codegen-backends/librustc_codegen_llvm-llvm.so": "/usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.26\' not found (required by /usr/lib/libLLVM-8.so)"


=> ERROR: lsd-0.15.1_1: do_build: '${make_cmd} build --release --target ${RUST_TARGET} ${configure_args}' exited with 101
=> ERROR:   in do_build() at common/build-style/cargo.sh:8
```

Hmm. Has this something to do with the rust library not linked against the same llvm? Or that it's not the same `libstdc++` version?

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

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

From 206030765291021cfd296f21d6dd2a4538ad440b Mon Sep 17 00:00:00 2001
From: mustaqim <mustaqim@pm.me>
Date: Fri, 19 Jul 2019 08:08:03 +0200
Subject: [PATCH] New package: lsd-0.15.1

---
 srcpkgs/lsd/template | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 srcpkgs/lsd/template

diff --git a/srcpkgs/lsd/template b/srcpkgs/lsd/template
new file mode 100644
index 00000000000..2db1afcc9a5
--- /dev/null
+++ b/srcpkgs/lsd/template
@@ -0,0 +1,12 @@
+# Template file for 'lsd'
+pkgname=lsd
+version=0.15.1
+revision=1
+build_style=cargo
+build_helper=rust
+short_desc="Next gen ls command"
+maintainer="mustaqim <mustaqim@pm.me>"
+license="Apache-2.0"
+homepage="https://github.com/Peltoche/lsd"
+distfiles="https://github.com/Peltoche/lsd/archive/${version}.tar.gz"
+checksum=849ad168171737ef1ca74b762b3d9fb885c936cb9a753eca07426886478ad2de

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

* Re: [wip] New package: lsd-0.15.1
  2019-07-19  6:22 [PR PATCH] [wip] New package: lsd-0.15.1 voidlinux-github
@ 2019-07-19 13:45 ` voidlinux-github
  2019-07-19 13:50 ` voidlinux-github
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-07-19 13:45 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/13219#issuecomment-513234424
Comment:
I have a local template for lsd[1], it compiles cleanly and the only major difference from yours is lack of `build_helper=rust`. The problems is that lsd needs more than itself to work correctly - it needs a way to use symbolic fonts (octicons, awesome etc.). Arch solves this[2],[3], by using awesome-terminal-fonts[4].
__________________________________
[1] https://termbin.com/8lq2
[2] https://git.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/lsd
[3] https://git.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/awesome-terminal-fonts
[4] https://github.com/gabrielelana/awesome-terminal-fonts

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

* Re: [wip] New package: lsd-0.15.1
  2019-07-19  6:22 [PR PATCH] [wip] New package: lsd-0.15.1 voidlinux-github
  2019-07-19 13:45 ` voidlinux-github
@ 2019-07-19 13:50 ` voidlinux-github
  2019-07-19 13:51 ` voidlinux-github
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-07-19 13:50 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/13219#issuecomment-513234424
Comment:
I have a local template for lsd[1], it compiles cleanly and the only major difference from yours is lack of `build_helper=rust`. The problems is that lsd needs more than itself to work correctly - it needs a way to use symbol/vector fonts (octicons, awesome etc.). Arch solves this[2],[3], by using awesome-terminal-fonts[4].
__________________________________
[1] https://termbin.com/8lq2
[2] https://git.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/lsd
[3] https://git.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/awesome-terminal-fonts
[4] https://github.com/gabrielelana/awesome-terminal-fonts

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

* Re: [wip] New package: lsd-0.15.1
  2019-07-19  6:22 [PR PATCH] [wip] New package: lsd-0.15.1 voidlinux-github
  2019-07-19 13:45 ` voidlinux-github
  2019-07-19 13:50 ` voidlinux-github
@ 2019-07-19 13:51 ` voidlinux-github
  2019-07-19 13:58 ` voidlinux-github
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-07-19 13:51 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/13219#issuecomment-513234424
Comment:
I have a local template for lsd[1], it compiles cleanly and the only major difference from yours is lack of `build_helper=rust`. The problems is that lsd needs more than itself to work correctly - it needs a way to use symbol/vector fonts (octicons, awesome etc.) with your preferred font. Arch solves this[2],[3], by using awesome-terminal-fonts[4].
__________________________________
[1] https://termbin.com/8lq2
[2] https://git.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/lsd
[3] https://git.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/awesome-terminal-fonts
[4] https://github.com/gabrielelana/awesome-terminal-fonts

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

* Re: [wip] New package: lsd-0.15.1
  2019-07-19  6:22 [PR PATCH] [wip] New package: lsd-0.15.1 voidlinux-github
                   ` (2 preceding siblings ...)
  2019-07-19 13:51 ` voidlinux-github
@ 2019-07-19 13:58 ` voidlinux-github
  2019-07-19 18:50 ` voidlinux-github
  2019-10-23 12:06 ` [PR PATCH] [Closed]: " voidlinux-github
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-07-19 13:58 UTC (permalink / raw)
  To: ml

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

New comment by jnbr on void-packages repository

https://github.com/void-linux/void-packages/pull/13219#issuecomment-513238668
Comment:
> Hmm. Has this something to do with the rust library not linked against the same llvm?

First, make sure the versions for rust and rust-std match. (This should be fixed in the rust template).

> the only major difference from yours is lack of build_helper=rust

`build_style=cargo` implies `build_helper=rust`: https://github.com/void-linux/void-packages/blob/master/common/environment/build-style/cargo.sh#L7
So this doesn't make a difference.

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

* Re: [wip] New package: lsd-0.15.1
  2019-07-19  6:22 [PR PATCH] [wip] New package: lsd-0.15.1 voidlinux-github
                   ` (3 preceding siblings ...)
  2019-07-19 13:58 ` voidlinux-github
@ 2019-07-19 18:50 ` voidlinux-github
  2019-10-23 12:06 ` [PR PATCH] [Closed]: " voidlinux-github
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-07-19 18:50 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/13219#issuecomment-513234424
Comment:
I have a local template for lsd[1], it compiles cleanly and the only major difference from yours is lack of `build_helper=rust`. The problems is that lsd needs more than itself to work correctly - it needs a way to use symbol/vector fonts (octicons, awesome etc.) with your preferred font. The arch package solves this[2],[3], by using awesome-terminal-fonts[4].
__________________________________
[1] https://termbin.com/8lq2
[2] https://git.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/lsd
[3] https://git.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/awesome-terminal-fonts
[4] https://github.com/gabrielelana/awesome-terminal-fonts

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

* Re: [PR PATCH] [Closed]: [wip] New package: lsd-0.15.1
  2019-07-19  6:22 [PR PATCH] [wip] New package: lsd-0.15.1 voidlinux-github
                   ` (4 preceding siblings ...)
  2019-07-19 18:50 ` voidlinux-github
@ 2019-10-23 12:06 ` voidlinux-github
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-10-23 12:06 UTC (permalink / raw)
  To: ml

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

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

[wip] New package: lsd-0.15.1
https://github.com/void-linux/void-packages/pull/13219

Description:
```zsh
error: process didn't exit successfully: `rustc -vV` (exit code: 1)
--- stdout
rustc 1.36.0
binary: rustc
commit-hash: unknown
commit-date: unknown
host: x86_64-unknown-linux-gnu
release: 1.36.0

--- stderr
error: couldn't load codegen backend "/usr/lib64/rustlib/x86_64-unknown-linux-gnu/codegen-backends/librustc_codegen_llvm-llvm.so": "/usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.26\' not found (required by /usr/lib/libLLVM-8.so)"


=> ERROR: lsd-0.15.1_1: do_build: '${make_cmd} build --release --target ${RUST_TARGET} ${configure_args}' exited with 101
=> ERROR:   in do_build() at common/build-style/cargo.sh:8
```

Hmm. Has this something to do with the rust library not linked against the same llvm? Or that it's not the same `libstdc++` version?

```zsh
$> strings /usr/lib/libstdc++.so.6 | grep GLIBCXX
GLIBCXX_3.4
GLIBCXX_3.4.1
GLIBCXX_3.4.2
GLIBCXX_3.4.3
GLIBCXX_3.4.4
GLIBCXX_3.4.5
GLIBCXX_3.4.6
GLIBCXX_3.4.7
GLIBCXX_3.4.8
GLIBCXX_3.4.9
GLIBCXX_3.4.10
GLIBCXX_3.4.11
GLIBCXX_3.4.12
GLIBCXX_3.4.13
GLIBCXX_3.4.14
GLIBCXX_3.4.15
GLIBCXX_3.4.16
GLIBCXX_3.4.17
GLIBCXX_3.4.18
GLIBCXX_3.4.19
GLIBCXX_3.4.20
GLIBCXX_3.4.21
GLIBCXX_3.4.22
GLIBCXX_3.4.23
GLIBCXX_3.4.24
GLIBCXX_3.4.25
GLIBCXX_3.4.26
GLIBCXX_DEBUG_MESSAGE_LENGTH

```

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

end of thread, other threads:[~2019-10-23 12:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-19  6:22 [PR PATCH] [wip] New package: lsd-0.15.1 voidlinux-github
2019-07-19 13:45 ` voidlinux-github
2019-07-19 13:50 ` voidlinux-github
2019-07-19 13:51 ` voidlinux-github
2019-07-19 13:58 ` voidlinux-github
2019-07-19 18:50 ` voidlinux-github
2019-10-23 12:06 ` [PR PATCH] [Closed]: " voidlinux-github

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).