Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Fix error when running stack
@ 2022-08-09 13:20 AndreaBressan
  2022-08-09 13:44 ` classabbyamp
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: AndreaBressan @ 2022-08-09 13:20 UTC (permalink / raw)
  To: ml

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

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

https://github.com/AndreaBressan/void-packages patch-1
https://github.com/void-linux/void-packages/pull/38554

Fix error when running stack
without ncurses-libtinfo-libs I get the error below at any invocation:

No setup information found for ghc-9.0.2 on your platform.
This probably means a GHC bindist has not yet been added for OS key 'linux64-ncurses6'.


#### Testing the changes
- I tested the changes in this PR:  **NO**, and I feel a bit sorry, but I am not practical with void packages
- anyway it is a runtime issue that was solved installing the missing library


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

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

From c7d38a9e951cb81bb574789c9653e90d4e98a0d9 Mon Sep 17 00:00:00 2001
From: AndreaBressan <43222414+AndreaBressan@users.noreply.github.com>
Date: Tue, 9 Aug 2022 15:02:06 +0200
Subject: [PATCH] Update template

without ncurses-libtinfo-libs I get the following error at any invocation:

No setup information found for ghc-9.0.2 on your platform.
This probably means a GHC bindist has not yet been added for OS key 'linux64-ncurses6'.
---
 srcpkgs/stack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stack/template b/srcpkgs/stack/template
index b6c1f1578ed9..ec370761692c 100644
--- a/srcpkgs/stack/template
+++ b/srcpkgs/stack/template
@@ -5,7 +5,7 @@ revision=2
 _stackage="lts-19.0"
 hostmakedepends="cabal-install pkg-config unzip"
 makedepends="zlib-devel pcre-devel"
-depends="git gmp-devel iana-etc"
+depends="git gmp-devel iana-etc ncurses-libtinfo-libs"
 short_desc="Cross-platform program for developing Haskell projects"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="BSD-3-Clause"

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

* Re: Fix error when running stack
  2022-08-09 13:20 [PR PATCH] Fix error when running stack AndreaBressan
@ 2022-08-09 13:44 ` classabbyamp
  2022-08-09 20:05 ` [PR PATCH] [Updated] " AndreaBressan
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: classabbyamp @ 2022-08-09 13:44 UTC (permalink / raw)
  To: ml

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

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/38554#issuecomment-1209402910

Comment:
the revision should be bumped

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

* Re: [PR PATCH] [Updated] Fix error when running stack
  2022-08-09 13:20 [PR PATCH] Fix error when running stack AndreaBressan
  2022-08-09 13:44 ` classabbyamp
@ 2022-08-09 20:05 ` AndreaBressan
  2022-10-06 11:53 ` AndreaBressan
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: AndreaBressan @ 2022-08-09 20:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/AndreaBressan/void-packages patch-1
https://github.com/void-linux/void-packages/pull/38554

Fix error when running stack
without ncurses-libtinfo-libs I get the error below at any invocation:

No setup information found for ghc-9.0.2 on your platform.
This probably means a GHC bindist has not yet been added for OS key 'linux64-ncurses6'.


#### Testing the changes
- I tested the changes in this PR:  **NO**, and I feel a bit sorry, but I am not practical with void packages
- anyway it is a runtime issue that was solved installing the missing library


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

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

From c7d38a9e951cb81bb574789c9653e90d4e98a0d9 Mon Sep 17 00:00:00 2001
From: AndreaBressan <43222414+AndreaBressan@users.noreply.github.com>
Date: Tue, 9 Aug 2022 15:02:06 +0200
Subject: [PATCH 1/2] Update template

without ncurses-libtinfo-libs I get the following error at any invocation:

No setup information found for ghc-9.0.2 on your platform.
This probably means a GHC bindist has not yet been added for OS key 'linux64-ncurses6'.
---
 srcpkgs/stack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stack/template b/srcpkgs/stack/template
index b6c1f1578ed9..ec370761692c 100644
--- a/srcpkgs/stack/template
+++ b/srcpkgs/stack/template
@@ -5,7 +5,7 @@ revision=2
 _stackage="lts-19.0"
 hostmakedepends="cabal-install pkg-config unzip"
 makedepends="zlib-devel pcre-devel"
-depends="git gmp-devel iana-etc"
+depends="git gmp-devel iana-etc ncurses-libtinfo-libs"
 short_desc="Cross-platform program for developing Haskell projects"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="BSD-3-Clause"

From 4d037b6dfc5b1735c628764239be78082812b74c Mon Sep 17 00:00:00 2001
From: AndreaBressan <43222414+AndreaBressan@users.noreply.github.com>
Date: Tue, 9 Aug 2022 22:05:02 +0200
Subject: [PATCH 2/2] bump revision

---
 srcpkgs/stack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stack/template b/srcpkgs/stack/template
index ec370761692c..ddc63451da4d 100644
--- a/srcpkgs/stack/template
+++ b/srcpkgs/stack/template
@@ -1,7 +1,7 @@
 # Template file for 'stack'
 pkgname=stack
 version=2.7.5
-revision=2
+revision=3
 _stackage="lts-19.0"
 hostmakedepends="cabal-install pkg-config unzip"
 makedepends="zlib-devel pcre-devel"

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

* Re: [PR PATCH] [Updated] Fix error when running stack
  2022-08-09 13:20 [PR PATCH] Fix error when running stack AndreaBressan
  2022-08-09 13:44 ` classabbyamp
  2022-08-09 20:05 ` [PR PATCH] [Updated] " AndreaBressan
@ 2022-10-06 11:53 ` AndreaBressan
  2022-10-07  9:15 ` leahneukirchen
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: AndreaBressan @ 2022-10-06 11:53 UTC (permalink / raw)
  To: ml

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

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

https://github.com/AndreaBressan/void-packages patch-1
https://github.com/void-linux/void-packages/pull/38554

Fix error when running stack
without ncurses-libtinfo-libs I get the error below at any invocation:

No setup information found for ghc-9.0.2 on your platform.
This probably means a GHC bindist has not yet been added for OS key 'linux64-ncurses6'.


#### Testing the changes
- I tested the changes in this PR:  **NO**, and I feel a bit sorry, but I am not practical with void packages
- anyway it is a runtime issue that was solved installing the missing library


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

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

From c7d38a9e951cb81bb574789c9653e90d4e98a0d9 Mon Sep 17 00:00:00 2001
From: AndreaBressan <43222414+AndreaBressan@users.noreply.github.com>
Date: Tue, 9 Aug 2022 15:02:06 +0200
Subject: [PATCH 1/2] Update template

without ncurses-libtinfo-libs I get the following error at any invocation:

No setup information found for ghc-9.0.2 on your platform.
This probably means a GHC bindist has not yet been added for OS key 'linux64-ncurses6'.
---
 srcpkgs/stack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stack/template b/srcpkgs/stack/template
index b6c1f1578ed9..ec370761692c 100644
--- a/srcpkgs/stack/template
+++ b/srcpkgs/stack/template
@@ -5,7 +5,7 @@ revision=2
 _stackage="lts-19.0"
 hostmakedepends="cabal-install pkg-config unzip"
 makedepends="zlib-devel pcre-devel"
-depends="git gmp-devel iana-etc"
+depends="git gmp-devel iana-etc ncurses-libtinfo-libs"
 short_desc="Cross-platform program for developing Haskell projects"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="BSD-3-Clause"

From 4d037b6dfc5b1735c628764239be78082812b74c Mon Sep 17 00:00:00 2001
From: AndreaBressan <43222414+AndreaBressan@users.noreply.github.com>
Date: Tue, 9 Aug 2022 22:05:02 +0200
Subject: [PATCH 2/2] bump revision

---
 srcpkgs/stack/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/stack/template b/srcpkgs/stack/template
index ec370761692c..ddc63451da4d 100644
--- a/srcpkgs/stack/template
+++ b/srcpkgs/stack/template
@@ -1,7 +1,7 @@
 # Template file for 'stack'
 pkgname=stack
 version=2.7.5
-revision=2
+revision=3
 _stackage="lts-19.0"
 hostmakedepends="cabal-install pkg-config unzip"
 makedepends="zlib-devel pcre-devel"

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

* Re: Fix error when running stack
  2022-08-09 13:20 [PR PATCH] Fix error when running stack AndreaBressan
                   ` (2 preceding siblings ...)
  2022-10-06 11:53 ` AndreaBressan
@ 2022-10-07  9:15 ` leahneukirchen
  2023-01-06  2:00 ` github-actions
  2023-01-20  2:01 ` [PR PATCH] [Closed]: " github-actions
  5 siblings, 0 replies; 7+ messages in thread
From: leahneukirchen @ 2022-10-07  9:15 UTC (permalink / raw)
  To: ml

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

New comment by leahneukirchen on void-packages repository

https://github.com/void-linux/void-packages/pull/38554#issuecomment-1271335218

Comment:
This shouldn't be a stack dependency, sorry.

We don't officially support running binary ghc releases.

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

* Re: Fix error when running stack
  2022-08-09 13:20 [PR PATCH] Fix error when running stack AndreaBressan
                   ` (3 preceding siblings ...)
  2022-10-07  9:15 ` leahneukirchen
@ 2023-01-06  2:00 ` github-actions
  2023-01-20  2:01 ` [PR PATCH] [Closed]: " github-actions
  5 siblings, 0 replies; 7+ messages in thread
From: github-actions @ 2023-01-06  2:00 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/38554#issuecomment-1373039494

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Closed]: Fix error when running stack
  2022-08-09 13:20 [PR PATCH] Fix error when running stack AndreaBressan
                   ` (4 preceding siblings ...)
  2023-01-06  2:00 ` github-actions
@ 2023-01-20  2:01 ` github-actions
  5 siblings, 0 replies; 7+ messages in thread
From: github-actions @ 2023-01-20  2:01 UTC (permalink / raw)
  To: ml

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

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

Fix error when running stack
https://github.com/void-linux/void-packages/pull/38554

Description:
without ncurses-libtinfo-libs I get the error below at any invocation:

No setup information found for ghc-9.0.2 on your platform.
This probably means a GHC bindist has not yet been added for OS key 'linux64-ncurses6'.


#### Testing the changes
- I tested the changes in this PR:  **NO**, and I feel a bit sorry, but I am not practical with void packages
- anyway it is a runtime issue that was solved installing the missing library


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

end of thread, other threads:[~2023-01-20  2:01 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-09 13:20 [PR PATCH] Fix error when running stack AndreaBressan
2022-08-09 13:44 ` classabbyamp
2022-08-09 20:05 ` [PR PATCH] [Updated] " AndreaBressan
2022-10-06 11:53 ` AndreaBressan
2022-10-07  9:15 ` leahneukirchen
2023-01-06  2:00 ` github-actions
2023-01-20  2:01 ` [PR PATCH] [Closed]: " github-actions

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