Skip to content

Commit 7b35d72

Browse files
committed
Updated test files to be package names and regenerated expected JSON.
1 parent 0df06c6 commit 7b35d72

10 files changed

Lines changed: 912 additions & 0 deletions
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
-- Source: https://github.com/S1M0N38/claude.nvim/blob/main/claude.nvim-scm-1.rockspec
2+
3+
---@diagnostic disable: lowercase-global
4+
5+
local _MODREV, _SPECREV = "scm", "-1"
6+
rockspec_format = "3.0"
7+
version = _MODREV .. _SPECREV
8+
9+
local user = "S1M0N38"
10+
package = "claude.nvim"
11+
12+
description = {
13+
summary = "A simple plugin to integrate Claude Code in Neovim",
14+
detailed = [[
15+
claude.nvim is a simple plugin to integrate Claude Code in Neovim.
16+
]],
17+
labels = { "neovim", "plugin", "lua", "claude", "ai" },
18+
homepage = "https://github.com/" .. user .. "/" .. package,
19+
license = "MIT",
20+
}
21+
22+
dependencies = {
23+
"lua >= 5.1",
24+
}
25+
26+
27+
source = {
28+
url = "git://github.com/" .. user .. "/" .. package,
29+
}
30+
31+
build = {
32+
type = "builtin",
33+
copy_directories = { "plugin", "doc", "scripts" },
34+
}
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
[
2+
{
3+
"type": "luarocks",
4+
"namespace": null,
5+
"name": "claude.nvim",
6+
"version": "scm-1",
7+
"qualifiers": {},
8+
"subpath": null,
9+
"primary_language": "Lua",
10+
"description": "A simple plugin to integrate Claude Code in Neovim\nclaude.nvim is a simple plugin to integrate Claude Code in Neovim.",
11+
"release_date": null,
12+
"parties": [],
13+
"keywords": [],
14+
"homepage_url": "https://github.com/S1M0N38/claude.nvim",
15+
"download_url": null,
16+
"size": null,
17+
"sha1": null,
18+
"md5": null,
19+
"sha256": null,
20+
"sha512": null,
21+
"bug_tracking_url": null,
22+
"code_view_url": null,
23+
"vcs_url": "git://github.com/S1M0N38/claude.nvim",
24+
"copyright": null,
25+
"holder": null,
26+
"declared_license_expression": "mit",
27+
"declared_license_expression_spdx": "MIT",
28+
"license_detections": [
29+
{
30+
"license_expression": "mit",
31+
"license_expression_spdx": "MIT",
32+
"matches": [
33+
{
34+
"license_expression": "mit",
35+
"license_expression_spdx": "MIT",
36+
"from_file": null,
37+
"start_line": 1,
38+
"end_line": 1,
39+
"matcher": "1-spdx-id",
40+
"score": 100.0,
41+
"matched_length": 1,
42+
"match_coverage": 100.0,
43+
"rule_relevance": 100,
44+
"rule_identifier": "spdx-license-identifier-mit-5da48780aba670b0860c46d899ed42a0f243ff06",
45+
"rule_url": null,
46+
"matched_text": "MIT"
47+
}
48+
],
49+
"identifier": "mit-a822f434-d61f-f2b1-c792-8b8cb9e7b9bf"
50+
}
51+
],
52+
"other_license_expression": null,
53+
"other_license_expression_spdx": null,
54+
"other_license_detections": [],
55+
"extracted_license_statement": "MIT",
56+
"notice_text": null,
57+
"source_packages": [],
58+
"file_references": [],
59+
"is_private": false,
60+
"is_virtual": false,
61+
"extra_data": {
62+
"rockspec_format": "3.0"
63+
},
64+
"dependencies": [
65+
{
66+
"purl": "pkg:luarocks/lua",
67+
"extracted_requirement": ">= 5.1",
68+
"scope": "dependencies",
69+
"is_runtime": true,
70+
"is_optional": false,
71+
"is_pinned": false,
72+
"is_direct": true,
73+
"resolved_package": {},
74+
"extra_data": {}
75+
}
76+
],
77+
"repository_homepage_url": null,
78+
"repository_download_url": null,
79+
"api_data_url": null,
80+
"datasource_id": "luarocks_rockspec",
81+
"purl": "pkg:luarocks/claude.nvim@scm-1"
82+
}
83+
]
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
-- Source: https://github.com/Kong/kong/blob/master/kong-latest.rockspec
2+
3+
package = "kong"
4+
version = "3.3.0-0"
5+
rockspec_format = "3.0"
6+
supported_platforms = {"linux", "macosx"}
7+
source = {
8+
url = "git+https://github.com/Kong/kong.git",
9+
tag = "3.3.0"
10+
}
11+
description = {
12+
summary = "Kong is a scalable and customizable API Management Layer built on top of Nginx.",
13+
homepage = "https://konghq.com",
14+
license = "Apache 2.0"
15+
}
16+
dependencies = {
17+
"inspect == 3.1.3",
18+
"luasec == 1.3.1",
19+
"luasocket == 3.0-rc1",
20+
"penlight == 1.13.1",
21+
"lua-resty-http == 0.17.1",
22+
"lua-resty-jit-uuid == 0.0.7",
23+
"lua-ffi-zlib == 0.5",
24+
"multipart == 0.5.9",
25+
"version == 1.0.1",
26+
"kong-lapis == 1.8.3.1",
27+
"lua-cassandra == 1.5.2",
28+
"pgmoon == 1.16.0",
29+
"luatz == 0.4",
30+
"lua_system_constants == 0.1.4",
31+
"lyaml == 6.2.8",
32+
"luasyslog == 2.0.1",
33+
"lua_pack == 2.0.0",
34+
"binaryheap >= 0.4",
35+
"luaxxhash >= 1.0",
36+
"lua-protobuf == 0.5.0",
37+
"lua-resty-healthcheck == 1.6.2",
38+
"lua-resty-mlcache == 2.6.0",
39+
"lua-messagepack == 0.5.2",
40+
"lua-resty-openssl == 0.8.20",
41+
"lua-resty-counter == 0.2.1",
42+
"lua-resty-ipmatcher == 0.6.1",
43+
"lua-resty-acme == 0.11.0",
44+
"lua-resty-session == 4.0.3",
45+
"lua-resty-timer-ng == 0.2.5",
46+
"lpeg == 1.0.2",
47+
}
48+
build = {
49+
type = "builtin"
50+
}

0 commit comments

Comments
 (0)