Package Details: mksh 59c-1

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: stefanwimmer128
Votes: 16
Popularity: 0.25
First Submitted: 2021-05-08 09:18 (UTC)
Last Updated: 2024-07-21 13:31 (UTC)

Pinned Comments

stefanwimmer128 commented on 2024-07-18 07:35 (UTC)

Pre-built packages are available here or in my repository.

Latest Comments

« First ‹ Previous 1 2

<deleted-account> commented on 2023-01-31 12:34 (UTC)

@FrederickZh I generate the checksum by hand to all my AUR packages to make sure checksum is correct, unless they've changed the source code package itself.

FrederickZh commented on 2023-01-31 07:48 (UTC)

It seems GitHub reverted: https://github.com/orgs/community/discussions/45830#discussioncomment-4823799

AndyRTR commented on 2023-01-30 21:36 (UTC)

This one now fails the checksum check after changing the source here.

jbouter commented on 2023-01-28 10:18 (UTC)

The newly updated version fails on the following:

pass ./check.t:duffs-device
FAIL ./check.t:xtrace-1
        Description:
                Check that "set -x" doesn't redirect too quickly
        unexpected stdout - first difference: line 1, char 2 (wanted 0x47 ('G'), got 0x2F ('/')
        wanted:
                =GNU bash, version 2.05b.0(1)-release (i386-ecce-mirbsd10)=
        got:
                =/home/jbouter/.cache/paru/clone/mksh/src/mksh/mksh: ./bash: can't execute: Permission denied=
pass ./check.t:xtrace-2
pass ./check.t:fksh-flags

Is there anything I've done wrong?

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.