From 0d57828de3d56a028b274e8e8a2c56c35a0a0114 Mon Sep 17 00:00:00 2001 From: Riccardo Bernardini <31954634+fintatarta@users.noreply.github.com> Date: Tue, 14 Sep 2021 09:23:08 +0200 Subject: [PATCH] get_password PR (#353) --- .../get_password/get_password-1.0.0-rc.toml | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 index/ge/get_password/get_password-1.0.0-rc.toml diff --git a/index/ge/get_password/get_password-1.0.0-rc.toml b/index/ge/get_password/get_password-1.0.0-rc.toml new file mode 100644 index 00000000..224cb5c5 --- /dev/null +++ b/index/ge/get_password/get_password-1.0.0-rc.toml @@ -0,0 +1,26 @@ +name = "get_password" +description = "Read a string without echo, in password-like style" +version = "1.0.0-rc" +long-description = "This is a small Ada library that provides a procedure Get_Password that reads a string from the terminal replacing each character with a *. The input can be terminated both by the user pressing end-of-line or when the buffer is filled. Currently it works only on POSIX-based system. This version was checked with Spark" +licenses = "MIT" +website = "https://gitlab.com/my-ada-library/get_password" + +authors = ["Riccardo Bernardini"] +maintainers = ["Riccardo Bernardini "] +maintainers-logins = ["fintatarta"] +tags = ["password", "echo", "textio"] + +[gpr-set-externals.'case(os)'] +linux = { OS_FOR_GPR = "posix" } +windows = { OS_FOR_GPR = "windows" } +macos = { OS_FOR_GPR = "posix" } + +[available.'case(os)'] +linux = true +windows = false +macos = false + +[origin] +commit = "0999eb5b4890649c73fc0327ef7514de4fb73df7" +url = "git+https://gitlab.com/my-ada-library/get_password.git" +