internal/rosa/gnu: readline artifact
All checks were successful
Test / Sandbox (push) Successful in 3m48s
Test / Hakurei (push) Successful in 5m30s
Test / ShareFS (push) Successful in 5m24s
Test / Sandbox (race detector) (push) Successful in 6m30s
Test / Hakurei (race detector) (push) Successful in 7m40s
Test / Flake checks (push) Successful in 1m30s
Test / Create distribution (push) Successful in 35s
All checks were successful
Test / Sandbox (push) Successful in 3m48s
Test / Hakurei (push) Successful in 5m30s
Test / ShareFS (push) Successful in 5m24s
Test / Sandbox (race detector) (push) Successful in 6m30s
Test / Hakurei (race detector) (push) Successful in 7m40s
Test / Flake checks (push) Successful in 1m30s
Test / Create distribution (push) Successful in 35s
Nice to have library for command line programs. Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
@@ -130,6 +130,7 @@ const (
|
|||||||
PythonPygments
|
PythonPygments
|
||||||
QEMU
|
QEMU
|
||||||
Rdfind
|
Rdfind
|
||||||
|
Readline
|
||||||
Rsync
|
Rsync
|
||||||
Sed
|
Sed
|
||||||
Setuptools
|
Setuptools
|
||||||
|
|||||||
@@ -837,6 +837,29 @@ func init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newReadline() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "8.3"
|
||||||
|
checksum = "r-lcGRJq_MvvBpOq47Z2Y1OI2iqrmtcqhTLVXR0xWo37ZpC2uT_md7gKq5o_qTMV"
|
||||||
|
)
|
||||||
|
return t.NewPackage("readline", version, pkg.NewHTTPGetTar(
|
||||||
|
nil, "https://ftp.gnu.org/gnu/readline/readline-"+version+".tar.gz",
|
||||||
|
mustDecode(checksum),
|
||||||
|
pkg.TarGzip,
|
||||||
|
), nil, (*MakeHelper)(nil)), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Readline] = Metadata{
|
||||||
|
f: Toolchain.newReadline,
|
||||||
|
|
||||||
|
Name: "readline",
|
||||||
|
Description: "provides a set of functions for use by applications that allow users to edit command lines as they are typed in",
|
||||||
|
Website: "https://tiswww.cwru.edu/php/chet/readline/rltop.html",
|
||||||
|
|
||||||
|
ID: 4173,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (t Toolchain) newGnuTLS() (pkg.Artifact, string) {
|
func (t Toolchain) newGnuTLS() (pkg.Artifact, string) {
|
||||||
const (
|
const (
|
||||||
version = "3.8.12"
|
version = "3.8.12"
|
||||||
|
|||||||
Reference in New Issue
Block a user