The opam repository for my Advent of Agentic Humps 2025

peertube

+42
+42
packages/peertube/peertube.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "PeerTube API client for OCaml using Eio" 3 + description: 4 + "An OCaml client library for the PeerTube video platform API, built on Eio for effect-based I/O. Includes a command-line client (opeertube) for browsing videos, channels, accounts, and playlists." 5 + maintainer: ["anil@recoil.org"] 6 + authors: ["Anil Madhavapeddy"] 7 + license: "ISC" 8 + homepage: "https://github.com/avsm/ocaml-peertube" 9 + doc: "https://avsm.github.io/ocaml-peertube/" 10 + bug-reports: "https://github.com/avsm/ocaml-peertube/issues" 11 + depends: [ 12 + "dune" {>= "3.16"} 13 + "ocaml" {>= "5.1.0"} 14 + "eio" {>= "1.0"} 15 + "eio_main" {>= "1.0"} 16 + "requests" {>= "0.1"} 17 + "jsont" {>= "0.1"} 18 + "ptime" {>= "1.0"} 19 + "fmt" {>= "0.9"} 20 + "logs" {>= "0.7"} 21 + "cmdliner" {>= "1.2"} 22 + "odoc" {with-doc} 23 + ] 24 + build: [ 25 + ["dune" "subst"] {dev} 26 + [ 27 + "dune" 28 + "build" 29 + "-p" 30 + name 31 + "-j" 32 + jobs 33 + "@install" 34 + "@runtest" {with-test} 35 + "@doc" {with-doc} 36 + ] 37 + ] 38 + dev-repo: "git+https://github.com/avsm/ocaml-peertube.git" 39 + url { 40 + src: "git+https://github.com/avsm/ocaml-peertube.git#main" 41 + } 42 + x-maintenance-intent: ["(latest)"]