tangled
alpha
login
or
join now
anil.recoil.org
/
aoah-opam-repo
0
fork
atom
The opam repository for my Advent of Agentic Humps 2025
0
fork
atom
overview
issues
pulls
pipelines
sortal
anil.recoil.org
1 month ago
154e61be
e961add8
0/1
build.yml
failed
2m 40s
+51
1 changed file
expand all
collapse all
unified
split
packages
sortal
sortal.dev
opam
+51
packages/sortal/sortal.dev/opam
reviewed
···
1
1
+
opam-version: "2.0"
2
2
+
synopsis:
3
3
+
"Contact metadata management with XDG storage and versioned schemas"
4
4
+
description: """
5
5
+
Sortal provides contact metadata management with versioned schemas,
6
6
+
XDG-compliant storage, git versioning, and CLI tools.
7
7
+
8
8
+
The library is split into two components:
9
9
+
- sortal.schema: Versioned data types with minimal dependencies
10
10
+
- sortal: Core library with storage, git integration, and CLI support"""
11
11
+
maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
12
12
+
authors: ["Anil Madhavapeddy"]
13
13
+
license: "ISC"
14
14
+
homepage: "https://tangled.org/@anil.recoil.org/sortal"
15
15
+
bug-reports: "https://tangled.org/anil.recoil.org/sortal/issues"
16
16
+
depends: [
17
17
+
"dune" {>= "3.21"}
18
18
+
"ocaml" {>= "5.1.0"}
19
19
+
"eio"
20
20
+
"eio_main"
21
21
+
"xdge"
22
22
+
"jsont"
23
23
+
"ptime"
24
24
+
"yamlt"
25
25
+
"bytesrw"
26
26
+
"fmt"
27
27
+
"cmdliner"
28
28
+
"logs"
29
29
+
"odoc" {with-doc}
30
30
+
"alcotest" {with-test & >= "1.7.0"}
31
31
+
]
32
32
+
build: [
33
33
+
["dune" "subst"] {dev}
34
34
+
[
35
35
+
"dune"
36
36
+
"build"
37
37
+
"-p"
38
38
+
name
39
39
+
"-j"
40
40
+
jobs
41
41
+
"@install"
42
42
+
"@runtest" {with-test}
43
43
+
"@doc" {with-doc}
44
44
+
]
45
45
+
]
46
46
+
x-maintenance-intent: ["(latest)"]
47
47
+
48
48
+
dev-repo: "git+https://tangled.org/@anil.recoil.org/sortal.git"
49
49
+
url {
50
50
+
src: "git+https://tangled.org/@anil.recoil.org/sortal.git#main"
51
51
+
}