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
Sync opam files from monorepo (updated 1 packages)
anil.recoil.org
2 months ago
f6673499
d09defd7
+101
2 changed files
expand all
collapse all
unified
split
packages
bushel
bushel.dev
opam
init
init.dev
opam
+60
packages/bushel/bushel.dev/opam
reviewed
···
1
1
+
opam-version: "2.0"
2
2
+
synopsis: "Personal knowledge base and research entry management"
3
3
+
description: """
4
4
+
Bushel is a library for managing structured research entries including
5
5
+
notes, papers, projects, ideas, videos, and contacts. It provides typed
6
6
+
access to markdown files with YAML frontmatter and supports link graphs,
7
7
+
markdown processing with custom extensions, and search integration.
8
8
+
Right now this is a fairly specific workflow used by Anil Madhavapeddy,
9
9
+
but it may generalise in the future.
10
10
+
11
11
+
Subpackages:
12
12
+
- bushel.eio: Eio-based directory loading
13
13
+
- bushel.config: XDG-compliant TOML configuration
14
14
+
- bushel.sync: Sync pipeline for images and thumbnails
15
15
+
- bushel.typesense: Typesense search integration"""
16
16
+
maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
17
17
+
authors: ["Anil Madhavapeddy <anil@recoil.org>"]
18
18
+
license: "ISC"
19
19
+
depends: [
20
20
+
"dune" {>= "3.18"}
21
21
+
"ocaml" {>= "5.2"}
22
22
+
"frontmatter" {>= "0.1"}
23
23
+
"frontmatter-eio" {>= "0.1"}
24
24
+
"cmarkit" {>= "0.3"}
25
25
+
"jsont" {>= "0.1"}
26
26
+
"bytesrw"
27
27
+
"ptime" {>= "1.2"}
28
28
+
"re" {>= "1.11"}
29
29
+
"uri" {>= "4.4"}
30
30
+
"fmt" {>= "0.9"}
31
31
+
"eio" {>= "1.2"}
32
32
+
"tomlt" {>= "0.1"}
33
33
+
"typesense" {>= "0.1"}
34
34
+
"astring" {>= "0.8"}
35
35
+
"logs" {>= "0.7"}
36
36
+
"yamlrw"
37
37
+
"cmdliner"
38
38
+
"eio_main"
39
39
+
"odoc" {with-doc}
40
40
+
]
41
41
+
build: [
42
42
+
["dune" "subst"] {dev}
43
43
+
[
44
44
+
"dune"
45
45
+
"build"
46
46
+
"-p"
47
47
+
name
48
48
+
"-j"
49
49
+
jobs
50
50
+
"@install"
51
51
+
"@runtest" {with-test}
52
52
+
"@doc" {with-doc}
53
53
+
]
54
54
+
]
55
55
+
x-maintenance-intent: ["(latest)"]
56
56
+
57
57
+
dev-repo: "git+https://tangled.org/anil.recoil.org/ocaml-bushel"
58
58
+
url {
59
59
+
src: "git+https://tangled.org/anil.recoil.org/ocaml-bushel#main"
60
60
+
}
+41
packages/init/init.dev/opam
reviewed
···
1
1
+
opam-version: "2.0"
2
2
+
synopsis: "Declarative INI data manipulation for OCaml"
3
3
+
description: """
4
4
+
Init provides bidirectional codecs for INI files following Python's
5
5
+
configparser semantics. Features include multiline values, interpolation,
6
6
+
DEFAULT section inheritance, and layout preservation.
7
7
+
8
8
+
The core init library has no dependencies. The init.bytesrw
9
9
+
sub-library provides parsing/encoding with bytesrw. The init.eio
10
10
+
sub-library provides Eio file system integration."""
11
11
+
maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
12
12
+
authors: ["Anil Madhavapeddy <anil@recoil.org>"]
13
13
+
license: "ISC"
14
14
+
depends: [
15
15
+
"dune" {>= "3.0"}
16
16
+
"ocaml" {>= "4.14.0"}
17
17
+
"bytesrw" {>= "0.1.0"}
18
18
+
"eio" {>= "1.0"}
19
19
+
"bytesrw-eio" {>= "0.1.0"}
20
20
+
"alcotest" {with-test & >= "1.7.0"}
21
21
+
"odoc" {with-doc}
22
22
+
]
23
23
+
build: [
24
24
+
["dune" "subst"] {dev}
25
25
+
[
26
26
+
"dune"
27
27
+
"build"
28
28
+
"-p"
29
29
+
name
30
30
+
"-j"
31
31
+
jobs
32
32
+
"@install"
33
33
+
"@runtest" {with-test}
34
34
+
"@doc" {with-doc}
35
35
+
]
36
36
+
]
37
37
+
38
38
+
dev-repo: "git+https://tangled.org/anil.recoil.org/ocaml-init"
39
39
+
url {
40
40
+
src: "git+https://tangled.org/anil.recoil.org/ocaml-init#main"
41
41
+
}