b8aaa0d216
Mainly, change dependencies from "^" to ">=". Also, the test/ crate is updated to 1.4.1-2 to cope with CI issues. * index/xi/xia/xia-1.4.1.toml: new. Co-authored-by: Alejandro R. Mosteo <amosteo@unizar.es>
30 lines
875 B
TOML
30 lines
875 B
TOML
name = "xia"
|
|
description = "Implements XPath 1.0 in Ada"
|
|
long-description = """
|
|
XIA is a native Ada implementation of the XPath 1.0 specification. XIA is built using the DOM component of AdaCore's XML/Ada implementation and code generated by AdaGOOP.
|
|
|
|
Submitting XPath queries is done via the XIA.XPath_Query function. The function returns a Dom.Core.Node_List, whose contents can be accessed with the function DOM.Core.Nodes.Item.
|
|
"""
|
|
version = "1.4.1"
|
|
licenses= "GPL-3.0-or-later"
|
|
|
|
authors = ["Simon Wright"]
|
|
maintainers = ["Simon Wright <simon@pushface.org>"]
|
|
maintainers-logins = ["simonjwright"]
|
|
|
|
project-files = ["XIA.gpr"]
|
|
|
|
tags = ["xml"]
|
|
|
|
[[depends-on]]
|
|
gnat = ">11.0.0"
|
|
xmlada = ">=21.0.0"
|
|
|
|
[gpr-externals]
|
|
LIBRARY_TYPE = ["static", "relocatable"]
|
|
|
|
[origin]
|
|
commit = "b3cee557eb22c80a01b621a08c643e005e6ee886"
|
|
url = "git+https://github.com/simonjwright/xia.git"
|
|
|