Package Details: mksh 59.c-7

Git Clone URL: https://aur.archlinux.org/mksh.git (read-only, click to copy)
Package Base: mksh
Description: MirBSD Korn Shell
Upstream URL: https://www.mirbsd.org/mksh.htm
Licenses: custom
Submitter: arojas
Maintainer: stefanwimmer128
Last Packager: None
Votes: 15
Popularity: 0.24
First Submitted: 2021-05-08 09:18 (UTC)
Last Updated: 2023-10-14 15:17 (UTC)

Latest Comments

« First ‹ Previous 1 2

shuall commented on 2023-01-12 17:30 (UTC)

There's a github mirror with release tags as well, if you'd prefer to still use https. Though it is listed as "unofficial" in the docs so not sure if signatures or checksums match.

bhyoo commented on 2022-12-29 07:48 (UTC)

@jonathon Please replace https as http of source. The server has outdated SSL so curl reject to download the source.

Lancia commented on 2022-11-29 17:25 (UTC)

The https download link doesn't work, you have to change it to http

bhyoo commented on 2022-11-18 13:15 (UTC)

Failed to build with curl: (35) error:0A000152:SSL routines::unsafe legacy renegotiation disabled

kseistrup commented on 2022-09-17 20:15 (UTC)

This package (mksh 59.c-1) does not currently build because two tests are failing. This happens because ArchLinux' current versions of egrep and fgrep are complaining that the commands are obsolete and that we should use grep -E resp. grep -F instead. The fgrep command is used in the tests and no output is expected. However, the test runner sees the warning from ArchLinux' scripts and believe that the tests have failed.

The fgrep command is only used in the check.t file:

6731:   } | fgrep FNORD
8644:   set | fgrep PIPESTATUS
8645:   echo 8 $(set | fgrep PIPESTATUS) .

This file should be patched/edited to use grep -F instead. E.g.:

sed -i 's/fgrep/grep -F/g' check.t

Then the package will build as expected.