The opam repository for my Advent of Agentic Humps 2025

Add owntracks and owntracks-cli dev packages

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+84
+46
packages/owntracks-cli/owntracks-cli.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "OwnTracks MQTT client and CLI tools" 3 + description: """ 4 + Command-line tools for subscribing to OwnTracks location updates over MQTT. 5 + Includes commands for real-time monitoring, GeoJSON export, and querying 6 + the OwnTracks Recorder HTTP API for historical data.""" 7 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 8 + authors: ["Anil Madhavapeddy <anil@recoil.org>"] 9 + license: "ISC" 10 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-owntracks" 11 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-owntracks/issues" 12 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-owntracks.git" 13 + depends: [ 14 + "dune" {>= "3.20"} 15 + "ocaml" {>= "5.1"} 16 + "owntracks" {= version} 17 + "mqtte" {>= "0.1"} 18 + "eio" {>= "1.0"} 19 + "eio_main" {>= "1.0"} 20 + "xdge" 21 + "tomlt" 22 + "cmdliner" {>= "1.2"} 23 + "logs" {>= "0.7"} 24 + "fmt" {>= "0.9"} 25 + "mirage-crypto-rng" 26 + "requests" 27 + "odoc" {with-doc} 28 + ] 29 + build: [ 30 + ["dune" "subst"] {dev} 31 + [ 32 + "dune" 33 + "build" 34 + "-p" 35 + name 36 + "-j" 37 + jobs 38 + "@install" 39 + "@runtest" {with-test} 40 + "@doc" {with-doc} 41 + ] 42 + ] 43 + url { 44 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-owntracks.git#main" 45 + } 46 + x-maintenance-intent: ["(latest)"]
+38
packages/owntracks/owntracks.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "OwnTracks message types and JSON codecs" 3 + description: """ 4 + Types and jsont codecs for parsing OwnTracks MQTT location messages. 5 + OwnTracks is an open-source location tracking application that publishes 6 + GPS coordinates, accuracy, speed, battery, and other device state over MQTT. 7 + This library provides type-safe parsing and serialization of all OwnTracks 8 + message types including locations, transitions, waypoints, and cards.""" 9 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 10 + authors: ["Anil Madhavapeddy <anil@recoil.org>"] 11 + license: "ISC" 12 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-owntracks" 13 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-owntracks/issues" 14 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-owntracks.git" 15 + depends: [ 16 + "dune" {>= "3.20"} 17 + "ocaml" {>= "5.1"} 18 + "jsont" {>= "0.1.0"} 19 + "odoc" {with-doc} 20 + ] 21 + build: [ 22 + ["dune" "subst"] {dev} 23 + [ 24 + "dune" 25 + "build" 26 + "-p" 27 + name 28 + "-j" 29 + jobs 30 + "@install" 31 + "@runtest" {with-test} 32 + "@doc" {with-doc} 33 + ] 34 + ] 35 + url { 36 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-owntracks.git#main" 37 + } 38 + x-maintenance-intent: ["(latest)"]