this repo has no description
1opam-version: "2.0"
2synopsis: "Search for directories by type"
3description: """
4```
5dirsift -t TYPE [PATH]
6```
7
8Subdirectories of PATH which satisfy specified TYPE requirements are listed
9
10PATH defaults to `.` if unspecified
11
12TYPE can be one of
13- `git`
14 - Directory identified as git repository
15- `not-git`
16- `borg`
17 - Directory identified as BorgBackup backup program repository
18- `not-borg`
19- `restic`
20 - Directory identified as Restic backup program repository
21- `not-restic`
22- `hidden`
23 - Name of directory begins with `.`
24- `not-hidden`
25- `hot`
26 - Directory contains >=1 file last modified within past 7 days (7 x 24 hours)
27 - User configurable
28- `warm`
29 - Directory contains >=1 file last modified within past 30 days (30 x 24 hours), but not `hot`
30 - User configurable
31- `cold`
32 - Directory is neither `hot` nor `warm`
33
34If multiple `-t TYPE` are specified, they are connected by `and` (conjunction),
35i.e. directory must satisfy all TYPE requirements to be listed
36"""
37maintainer: "Darren Ldl <darrenldldev@gmail.com>"
38authors: "Darren Ldl"
39license: "MIT"
40homepage: "https://github.com/darrenldl/dirsift"
41bug-reports: "https://github.com/darrenldl/dirsift/issues"
42dev-repo: "git+https://github.com/darrenldl/dirsift"
43depends: [
44 "ocaml" {>= "4.08.1"}
45 "dune" {>= "2.7.0"}
46 "containers" {>= "3.4"}
47 "fileutils"
48 "cmdliner"
49 "otoml" {>= "0.9.1"}
50 "timedesc" {>= "0.5.1" & < "0.6.0"}
51 "timere" {>= "0.6.0"}
52 "timere-parse" {>= "0.0.5"}
53 "dune-build-info"
54]
55build: [
56 ["dune" "build" "-p" name "-j" jobs]
57]
58url {
59 src:
60 "https://github.com/darrenldl/dirsift/releases/download/v0.0.4/v0.0.4.tar.gz"
61 checksum:
62 "sha256=ba8b000313793f9ac4a75413d0fe7c8e1236599dd2f02ab30a175d801bb5b922"
63}