-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMETA.json
49 lines (49 loc) · 1.4 KB
/
META.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "popcount",
"abstract": "Introduces the population count operation popcount() on bit(n) type.",
"description": "Provides `popcount`, `popcount32`, `popcount64`, `popcountAsm`, `popcountAsm64` and `popcount256` functions to PostgreSQL.",
"version": "1.0.0",
"maintainer": "Marcel Eschmann",
"license": "mit",
"provides": {
"popcount": {
"abstract": "Introduces popcount[|32|64|Asm|Asm64|256](bit(n)).",
"file": "sql/popcount.sql",
"docfile": "readme.md",
"version": "1.0.0"
}
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "10.0.0"
},
"recommends": {
"PostgreSQL": "10.4.0"
}
}
},
"release_status": "stable",
"resources": {
"bugtracker": {
"web": "https://github.com/eschmar/postgresql-popcount/issues"
},
"repository": {
"url": "git://github.com/eschmar/postgresql-popcount.git",
"web": "https://github.com/eschmar/postgresql-popcount",
"type": "git"
}
},
"generated_by": "Marcel Eschmann",
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"tags": [
"popcnt",
"population count",
"bit count",
"BIT_COUNT",
"bitwise"
]
}