Search Criteria
Package Details: idris2 0.7.0-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/idris2.git (read-only, click to copy) |
---|---|
Package Base: | idris2 |
Description: | Functional Programming Language with Dependent Types |
Upstream URL: | https://idris-lang.github.io/ |
Licenses: | BSD-3-Clause |
Submitter: | mb64 |
Maintainer: | mb64 (CodingCellist) |
Last Packager: | CodingCellist |
Votes: | 8 |
Popularity: | 0.40 |
First Submitted: | 2020-05-27 02:28 (UTC) |
Last Updated: | 2024-06-04 10:48 (UTC) |
Dependencies (3)
- chez-schemeAUR (chez-scheme-gitAUR)
- nodejs (nodejs-gitAUR, python-nodejs-wheelAUR, nodejs-lts-hydrogen, nodejs-lts-iron, nodejs-lts-jod) (optional) – for the node backend
- racket (racket-gitAUR, racket-minimal) (optional) – for the racket backend
Latest Comments
« First ‹ Previous 1 2
ulidtko commented on 2021-12-28 11:46 (UTC)
Hi @CodingCellist, just noticed a typo in the package Description field: Lanugage → Language
Hope that helps :) Merry xmas and happy new year
CodingCellist commented on 2021-11-29 09:37 (UTC)
As of 2021-11-24, the aur chez-scheme package installs Chez Scheme as "chez" rather than "scheme":
https://aur.archlinux.org/packages/chez-scheme/#comment-837425
The latest release of this package (0.5.1-2) now reflects this, meaning installing with an up-to-date chez-scheme aur package should work. If there is a problem, lmk : )
mb64 commented on 2021-09-21 05:24 (UTC)
The latest version includes the
idris2api
package in the install, as well as installing packages with their source code, with the goal of supporting the new LSP server out of the box. However, this makes the install a lot bigger: it's roughly grown from 28MB to 128MB. If this is a problem for you, LMK.slbtty commented on 2021-09-13 16:43 (UTC) (edited on 2021-09-13 16:50 (UTC) by slbtty)
According to this line, which was modified a few mouthes ago
https://github.com/idris-lang/Idris2/blob/70ac0f41015bc4f2738df0003651665ba1f5cc0c/src/Compiler/Scheme/Chez.idr#L42
Acceptable scheme names are
"chez", "chezscheme", "chezscheme9.5", "scheme"
.chez-scheme is not one of them, thus result the build fails.
I think the chez package can safely change name to chezshcme or simply
chez
now.KozRoss commented on 2020-09-14 18:56 (UTC)
I am now back to the same failing test breaking the build:
chez/chez014: FAILURE Expected: "Received: hello world!\nReceived: echo: hello world!\n1/1: Building Echo (Echo.idr)\nMain> Main> Bye for now!\n" Given: "[server] Failed to bind socket with error: 99\n1/1: Building Echo (Echo.idr)\nMain> Main> Bye for now!\n"
taekyung commented on 2020-09-11 04:02 (UTC)
@KozRoss, I am a maintainer of chez-scheme package and sorry for abrupt name change. Currently I reverted the chez-scheme binary name to
scheme
, so please re-install chez-scheme and build idris2 again. Sorry.CodingCellist commented on 2020-09-10 13:53 (UTC)
@KozRoss, this is due to a recent renaming in the chez-scheme package. They renamed the executable from
scheme
tochez-scheme
because someone complained about a clash with MIT/GNU Scheme (which also calls its executablescheme
)Simply changing the PKGBUILD to
export SCHEME=chez-scheme
doesn't fix the problem as the build then fails with/usr/bin/env: ‘scheme’: No such file or directory
. I currently don't know what the best solution would be.KozRoss commented on 2020-09-07 18:38 (UTC)
I now get a build failure:
make[1]: Entering directory '/tmp/yaourt-tmp-koz/aur-idris2/src/Idris2-0.2.1/support/c' cc -Wall -Wall -march=native -O2 -pipe -fno-plt -fPIC -fPIC -O2 -D_FORTIFY_SOURCE=2 -c -o getline.o getline.c cc -Wall -Wall -march=native -O2 -pipe -fno-plt -fPIC -fPIC -O2 -D_FORTIFY_SOURCE=2 -c -o idris_buffer.o idris_buffer.c cc -Wall -Wall -march=native -O2 -pipe -fno-plt -fPIC -fPIC -O2 -D_FORTIFY_SOURCE=2 -c -o idris_directory.o idris_directory.c cc -Wall -Wall -march=native -O2 -pipe -fno-plt -fPIC -fPIC -O2 -D_FORTIFY_SOURCE=2 -c -o idris_file.o idris_file.c cc -Wall -Wall -march=native -O2 -pipe -fno-plt -fPIC -fPIC -O2 -D_FORTIFY_SOURCE=2 -c -o idris_net.o idris_net.c cc -Wall -Wall -march=native -O2 -pipe -fno-plt -fPIC -fPIC -O2 -D_FORTIFY_SOURCE=2 -c -o idris_support.o idris_support.c ar rc libidris2_support.a getline.o idris_buffer.o idris_directory.o idris_file.o idris_net.o idris_support.o ranlib libidris2_support.a cc -shared -o libidris2_support.so getline.o idris_buffer.o idris_directory.o idris_file.o idris_net.o idris_support.o -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now make[1]: Leaving directory '/tmp/yaourt-tmp-koz/aur-idris2/src/Idris2-0.2.1/support/c' cp support/c/libidris2_support.so bootstrap/idris2_app sed s/libidris2_support.so/libidris2_support.so/g bootstrap/idris2_app/idris2.ss > bootstrap/idris2_app/idris2-boot.ss sed -i 's|PREFIX|/tmp/yaourt-tmp-koz/aur-idris2/src/Idris2-0.2.1/bootstrap|g' bootstrap/idris2_app/idris2-boot.ss sh ./bootstrap.sh bootstrapping SCHEME=scheme IDRIS2_VERSION=0.2.1 Building idris2-boot from idris2-boot.ss ./bootstrap.sh: line 20: scheme: command not found make: *** [Makefile:146: bootstrap-build] Error 127
KozRoss commented on 2020-08-25 04:40 (UTC)
This currently fails to build due to a failing test:
chez/chez014: FAILURE Expected: "Received: hello world!\nReceived: echo: hello world!\n1/1: Building Echo (Echo.idr)\nMain> Main> Bye for now!\n" Given: "[server] Failed to bind socket with error: 99\n1/1: Building Echo (Echo.idr)\nMain> Main> Bye for now!\n"
ulidtko commented on 2020-08-18 09:25 (UTC)
This patch fixes the package after upstream release 0.2.1.
The reordering of
contrib
andnetwork
fixes this error inpackage()
:« First ‹ Previous 1 2