{
  "authors": [
    "Stephane.Carrez@gmail.com"
  ],
  "available": {
    "case(os)": {
      "...": false,
      "linux": true
    }
  },
  "configuration": {
    "disabled": true
  },
  "depends-on": [
    {
      "libglib": "*",
      "libsecret": "*"
    }
  ],
  "description": "Secret service Ada binding",
  "gpr-externals": {
    "SECRETADA_BUILD": [
      "distrib",
      "debug",
      "optimize",
      "profile",
      "coverage"
    ],
    "SECRETADA_LIBRARY_TYPE": [
      "relocatable",
      "static",
      "static-pic"
    ]
  },
  "licenses": "Apache-2.0",
  "long-description": "\nThe [libsecret](https://wiki.gnome.org/Projects/Libsecret) is a library for storing\nand retrieving passwords and others secrets.  The library uses the\n[Secret Service API](https://standards.freedesktop.org/secret-service/) provided\nby Gnome Keyring or KDE Wallet.  This library provides an Ada binding\nto the [Secret Service API](https://standards.freedesktop.org/secret-service/).\n\nYou can store a secret by using the following code extract:\n\n```\nwith Secret.Services;\nwith Secret.Attributes;\nwith Secret.Values;\n...\n   Service : Secret.Services.Service_Type;\n   List    : Secret.Attributes.Map;\n   Value   : Secret.Values.Secret_Type;\n...\n      Service.Initialize;\n      List.Insert (\"secret identification key\", \"secret identification value\");\n      Value := Secret.Values.Create (\"the-secret-to-store\");\n      Service.Store (List, \"The secret label (for the keyring manager)\", Value);\n```\n\nAnd you will retrieve it with:\n\n```\n   Value := Service.Lookup (List);\n   if not Value.Is_Null then\n      Ada.Text_IO.Put_Line (Value.Get_Value);\n   end if;\n```\n\n",
  "maintainers": [
    "Stephane.Carrez@gmail.com"
  ],
  "maintainers-logins": [
    "stcarrez"
  ],
  "name": "secretada",
  "origin": {
    "commit": "6f859734729cb7720c0e82f45be3808a87a7ccfa",
    "url": "git+https://github.com/stcarrez/ada-libsecret.git"
  },
  "tags": [
    "secret",
    "bindings"
  ],
  "version": "1.0.0",
  "website": "https://gitlab.com/stcarrez/ada-libsecret"
}
