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- `empty` 34- `not-empty` 35 36If multiple `-t TYPE` are specified, they are connected by `and` (conjunction), 37i.e. directory must satisfy all TYPE requirements to be listed 38""" 39maintainer: "Darren Ldl <darrenldldev@gmail.com>" 40authors: "Darren Ldl" 41license: "MIT" 42homepage: "https://github.com/darrenldl/dirsift" 43bug-reports: "https://github.com/darrenldl/dirsift/issues" 44dev-repo: "git+https://github.com/darrenldl/dirsift" 45depends: [ 46 "ocaml" {>= "4.08.1"} 47 "dune" {>= "2.7.0"} 48 "containers" {>= "3.4"} 49 "fileutils" 50 "cmdliner" 51 "otoml" {>= "0.9.1"} 52 "timedesc" {>= "0.5.1" & < "0.6.0"} 53 "timere" {>= "0.6.0"} 54 "timere-parse" {>= "0.0.5"} 55 "dune-build-info" 56] 57build: [ 58 ["dune" "build" "-p" name "-j" jobs] 59] 60url { 61 src: 62 "https://github.com/darrenldl/dirsift/releases/download/v0.0.5/v0.0.5.tar.gz" 63 checksum: 64 "sha256=2d75af27a10ae570f503dd7ab26892ab50a00cb63faeb971dada3d25f6f36f80" 65}