alpha
Login
or
Join now
patrick.sirref.org
/
glob
Star
0
Fork
1
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
An OCaml implementation of glob(3)
Star
0
Fork
1
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Update metadata
author
Patrick Ferris
date
1 week ago
(Jul 14, 2026, 9:54 AM +0100)
commit
5115367e
5115367ec5a68e0227b7a9b5eb664c3b41576b26
parent
12b322d7
12b322d7b5fa8437d613f3cdb06ba65148b15cc0
+28
-3
2 changed files
Expand all
Collapse all
Unified
Split
dune-project
glob.opam
+18
-2
dune-project
View file
Reviewed
···
1
1
(lang dune 3.19)
2
2
(using mdx 0.4)
3
3
+
4
4
+
(source
5
5
+
(uri "git+https://git.sirref.org/glob.git"))
6
6
+
7
7
+
(homepage "https://patrick.sirref.org/bib")
8
8
+
(bug_reports "https://tangled.org/patrick.sirref.org/glob/issues")
9
9
+
10
10
+
(authors "Patrick Ferris <patrick@sirref.org>")
11
11
+
(maintainers "Patrick Ferris <patrick@sirref.org>")
12
12
+
13
13
+
(license ISC)
14
14
+
15
15
+
(documentation https://patrick.sirref.org/software/glob/docs/)
16
16
+
3
17
(generate_opam_files true)
4
18
5
19
(package
6
20
(name glob)
7
7
-
(description "")
8
21
(synopsis "A pure OCaml implementation of glob(3)")
22
22
+
(description "Glob provides a simple implementation of glob(3).")
9
23
(depends
10
10
-
fmt))
24
24
+
fmt
25
25
+
(alcotest :with-test)
26
26
+
(eio_main :with-test)))
+10
-1
glob.opam
View file
Reviewed
···
1
1
# This file is generated by dune, edit dune-project instead
2
2
opam-version: "2.0"
3
3
synopsis: "A pure OCaml implementation of glob(3)"
4
4
-
description: ""
4
4
+
description: "Glob provides a simple implementation of glob(3)."
5
5
+
maintainer: ["Patrick Ferris <patrick@sirref.org>"]
6
6
+
authors: ["Patrick Ferris <patrick@sirref.org>"]
7
7
+
license: "ISC"
8
8
+
homepage: "https://patrick.sirref.org/bib"
9
9
+
doc: "https://patrick.sirref.org/software/glob/docs/"
10
10
+
bug-reports: "https://tangled.org/patrick.sirref.org/glob/issues"
5
11
depends: [
6
12
"dune" {>= "3.19"}
7
13
"fmt"
14
14
+
"alcotest" {with-test}
15
15
+
"eio_main" {with-test}
8
16
"odoc" {with-doc}
9
17
]
10
18
build: [
···
21
29
"@doc" {with-doc}
22
30
]
23
31
]
32
32
+
dev-repo: "git+https://git.sirref.org/glob.git"
24
33
x-maintenance-intent: ["(latest)"]