Skip to content

Commit 712202d

Browse files
committed
Alire support for liblsp*
1 parent aeb5046 commit 712202d

File tree

6 files changed

+79
-0
lines changed

6 files changed

+79
-0
lines changed

liblsp_3_16/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.objs/
2+
/.libs/
3+
/alire/
4+
/config/

liblsp_3_16/alire.toml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name = "liblsp_3_16"
2+
description = "Language Server Protocol Support, Version 3.16"
3+
version = "0.1.0-dev"
4+
5+
authors = ["Vadim Godunko"]
6+
maintainers = ["Vadim Godunko <[email protected]>"]
7+
maintainers-logins = ["godunko"]
8+
licenses = "Apache-2.0"
9+
website = ""
10+
tags = ["lsp"]
11+
12+
project-files = ["../gnat/lsp.gpr"]
13+
14+
[configuration]
15+
generate_ada = false
16+
generate_c = false
17+
generate_gpr = true
18+
19+
[[depends-on]]
20+
liblsp_base = "*"
21+
gnatcoll = "*"
22+
23+
[[pins]]
24+
liblsp_base = { path='../liblsp_base' }

liblsp_3_17/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.objs/
2+
/.libs/
3+
/alire/
4+
/config/

liblsp_3_17/alire.toml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name = "liblsp_3_17"
2+
description = "Language Server Protocol Support, Version 3.17"
3+
version = "0.1.0-dev"
4+
5+
authors = ["Vadim Godunko"]
6+
maintainers = ["Vadim Godunko <[email protected]>"]
7+
maintainers-logins = ["godunko"]
8+
licenses = "Apache-2.0"
9+
website = ""
10+
tags = ["lsp"]
11+
12+
project-files = ["../gnat/lsp_3_17.gpr"]
13+
14+
[configuration]
15+
generate_ada = false
16+
generate_c = false
17+
generate_gpr = true
18+
19+
[[depends-on]]
20+
liblsp_base = "*"
21+
22+
[[pins]]
23+
liblsp_base = { path='../liblsp_base' }

liblsp_base/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.objs/
2+
/.libs/
3+
/alire/
4+
/config/

liblsp_base/alire.toml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name = "liblsp_base"
2+
description = "Language Server Protocol Support, Base Package"
3+
version = "0.1.0-dev"
4+
5+
authors = ["Vadim Godunko"]
6+
maintainers = ["Vadim Godunko <[email protected]>"]
7+
maintainers-logins = ["godunko"]
8+
licenses = "Apache-2.0"
9+
website = ""
10+
tags = ["lsp"]
11+
12+
project-files = ["../gnat/lsp_base.gpr"]
13+
14+
[configuration]
15+
generate_ada = false
16+
generate_c = false
17+
generate_gpr = true
18+
19+
[[depends-on]]
20+
vss = "*"

0 commit comments

Comments
 (0)