An overlay for monopampam
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Sync opam files from monorepo (removed 1, updated 14 packages)

+181 -46
+1 -1
packages/agent/agent.dev/opam
··· 18 18 "eio_main" {>= "1.0"} 19 19 "logs" {>= "0.7.0"} 20 20 "fmt" {>= "0.9.0"} 21 - "nox-xdge" 21 + "nox-xdg" 22 22 "nox-yaml" 23 23 "nox-memtrace" 24 24 "monopam-info"
+1 -1
packages/bsky/bsky.dev/opam
··· 19 19 "cmdliner" {>= "1.2"} 20 20 "nox-json" {>= "0.1"} 21 21 "nox-toml" {>= "0.1"} 22 - "nox-xdge" {>= "0.1"} 22 + "nox-xdg" {>= "0.1"} 23 23 "re" {>= "1.0"} 24 24 "eio_main" 25 25 "mdx" {with-test}
+1
packages/gauth/gauth.dev/opam
··· 28 28 "requests" {>= "0.1"} 29 29 "uri" {>= "4.0"} 30 30 "nox-x509" {>= "1.0"} 31 + "nox-xdg" {>= "0.1"} 31 32 "alcotest" {with-test} 32 33 "eio_main" {with-test} 33 34 "odoc" {with-doc}
-1
packages/gdocs/gdocs.dev/opam
··· 24 24 "logs" {>= "0.7"} 25 25 "oauth" {>= "0.1"} 26 26 "requests" {>= "0.1"} 27 - "nox-xdge" {>= "0.1"} 28 27 "alcotest" {with-test} 29 28 "nox-crypto-rng" {with-test} 30 29 "odoc" {with-doc}
+53
packages/gsheets/gsheets.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Google Sheets API client for OCaml" 3 + description: """ 4 + OCaml client for the Google Sheets v4 REST API. Fetches spreadsheet 5 + metadata and cell values, with control over how formulas and dates are 6 + rendered. Uses ocaml-gauth for authentication and ocaml-requests for HTTP.""" 7 + maintainer: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 8 + authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 9 + license: "MIT" 10 + tags: ["org:blacksun" "google" "network" "http"] 11 + homepage: "https://tangled.org/gazagnaire.org/ocaml-gsheets" 12 + bug-reports: "https://tangled.org/gazagnaire.org/ocaml-gsheets/issues" 13 + depends: [ 14 + "ocaml" {>= "5.1"} 15 + "dune" {>= "3.21" & >= "3.21"} 16 + "cmdliner" {>= "1.2"} 17 + "eio" {>= "1.0"} 18 + "eio_main" {>= "1.0"} 19 + "fmt" {>= "0.9"} 20 + "gauth" {>= "0.1"} 21 + "nox-http" {>= "0.1"} 22 + "nox-json" {>= "0.2"} 23 + "logs" {>= "0.7"} 24 + "oauth" {>= "0.1"} 25 + "requests" {>= "0.1"} 26 + "alcotest" {with-test} 27 + "nox-crypto-rng" {with-test} 28 + "odoc" {with-doc} 29 + "uri" 30 + "mdx" {with-test} 31 + ] 32 + build: [ 33 + ["dune" "subst"] {dev} 34 + [ 35 + "dune" 36 + "build" 37 + "-p" 38 + name 39 + "-j" 40 + jobs 41 + "@install" 42 + "@runtest" {with-test} 43 + "@doc" {with-doc} 44 + ] 45 + ] 46 + x-maintenance-intent: ["(latest)"] 47 + x-quality-build: "2026-04-30" 48 + x-quality-test: "2026-04-30" 49 + 50 + dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-gsheets" 51 + url { 52 + src: "git+https://tangled.org/gazagnaire.org/ocaml-gsheets#main" 53 + }
+54
packages/gslides/gslides.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Google Slides API client for OCaml" 3 + description: """ 4 + OCaml client for the Google Slides v1 REST API. Fetches presentation 5 + structure -- slides, text, bullets, speaker notes -- and renders to 6 + Marp-flavored markdown or polylux-flavored Typst for version control. 7 + Uses ocaml-gauth for authentication and ocaml-requests for HTTP.""" 8 + maintainer: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 9 + authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 10 + license: "MIT" 11 + tags: ["org:blacksun" "google" "network" "http"] 12 + homepage: "https://tangled.org/gazagnaire.org/ocaml-gslides" 13 + bug-reports: "https://tangled.org/gazagnaire.org/ocaml-gslides/issues" 14 + depends: [ 15 + "ocaml" {>= "5.1"} 16 + "dune" {>= "3.21" & >= "3.21"} 17 + "cmdliner" {>= "1.2"} 18 + "eio" {>= "1.0"} 19 + "eio_main" {>= "1.0"} 20 + "fmt" {>= "0.9"} 21 + "gauth" {>= "0.1"} 22 + "nox-http" {>= "0.1"} 23 + "nox-json" {>= "0.2"} 24 + "logs" {>= "0.7"} 25 + "oauth" {>= "0.1"} 26 + "requests" {>= "0.1"} 27 + "alcotest" {with-test} 28 + "nox-crypto-rng" {with-test} 29 + "odoc" {with-doc} 30 + "uri" 31 + "mdx" {with-test} 32 + ] 33 + build: [ 34 + ["dune" "subst"] {dev} 35 + [ 36 + "dune" 37 + "build" 38 + "-p" 39 + name 40 + "-j" 41 + jobs 42 + "@install" 43 + "@runtest" {with-test} 44 + "@doc" {with-doc} 45 + ] 46 + ] 47 + x-maintenance-intent: ["(latest)"] 48 + x-quality-build: "2026-04-30" 49 + x-quality-test: "2026-04-30" 50 + 51 + dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-gslides" 52 + url { 53 + src: "git+https://tangled.org/gazagnaire.org/ocaml-gslides#main" 54 + }
+1 -1
packages/linkedin/linkedin.dev/opam
··· 28 28 "monopam-info" 29 29 "nox-tty" 30 30 "vlog" 31 - "nox-xdge" 31 + "nox-xdg" 32 32 "mdx" {with-test} 33 33 "alcotest" {with-test} 34 34 "odoc" {with-doc}
+1 -1
packages/monopam/monopam.dev/opam
··· 16 16 "eio_main" {>= "1.2"} 17 17 "nox-git" {>= "0.1.0"} 18 18 "nox-toml" {>= "0.1.0"} 19 - "nox-xdge" {>= "0.1.0"} 19 + "nox-xdg" {>= "0.1.0"} 20 20 "nox-opam" {>= "0.1.0"} 21 21 "nox-ocamlfind" {>= "0.1.0"} 22 22 "bytesrw-eio" {>= "0.1.0"}
+1 -1
packages/nox-slack/nox-slack.dev/opam
··· 26 26 "oauth" 27 27 "nox-tty" 28 28 "vlog" 29 - "nox-xdge" 29 + "nox-xdg" 30 30 "alcotest" {with-test} 31 31 "uucp" 32 32 "mdx" {with-test}
+64
packages/nox-xdg/nox-xdg.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "XDG Base Directory specification: pure resolution + Eio backend" 3 + description: """ 4 + Fork/merge of two upstream packages: 5 + 6 + - dune's internal [otherlibs/xdg] -- pure XDG Base Directory 7 + specification resolution ($XDG_CONFIG_HOME, $XDG_DATA_HOME, 8 + $XDG_CACHE_HOME, $XDG_STATE_HOME, $XDG_RUNTIME_DIR), with full 9 + parity (Unix + Windows known-folder fallbacks). 10 + - the previous [nox-xdge] package -- an Eio-aware wrapper that 11 + creates directories, validates permissions, and threads paths 12 + through Eio capabilities. 13 + 14 + Provides two libraries: 15 + 16 + - [nox-xdg] (module [Xdg]) -- the pure resolver, no Eio dep. 17 + - [nox-xdg.eio] (module [Xdge]) -- the Eio backend on top of the 18 + resolver. 19 + 20 + Forked rather than depended on so this package has no upstream dep 21 + on dune's internal xdg library, which dune doesn't promise to keep 22 + stable across releases.""" 23 + maintainer: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 24 + authors: [ 25 + "Jane Street Group, LLC <opensource@janestreet.com>" 26 + "Thomas Gazagnaire <thomas@gazagnaire.org>" 27 + ] 28 + license: "MIT" 29 + tags: ["org:blacksun" "freedesktop" "xdg" "windows" "eio"] 30 + homepage: "https://tangled.org/gazagnaire.org/ocaml-xdg" 31 + bug-reports: "https://tangled.org/gazagnaire.org/ocaml-xdg/issues" 32 + depends: [ 33 + "ocaml" {>= "5.1"} 34 + "dune" {>= "3.21" & >= "3.21"} 35 + "eio" {>= "1.1"} 36 + "cmdliner" {>= "1.2.0"} 37 + "fmt" 38 + "eio_main" {with-test} 39 + "alcotest" {with-test} 40 + "odoc" {with-doc} 41 + "mdx" {with-test} 42 + ] 43 + build: [ 44 + ["dune" "subst"] {dev} 45 + [ 46 + "dune" 47 + "build" 48 + "-p" 49 + name 50 + "-j" 51 + jobs 52 + "@install" 53 + "@runtest" {with-test} 54 + "@doc" {with-doc} 55 + ] 56 + ] 57 + x-maintenance-intent: ["(latest)"] 58 + x-quality-build: "2026-04-30" 59 + x-quality-test: "2026-04-30" 60 + 61 + dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-xdg" 62 + url { 63 + src: "git+https://tangled.org/gazagnaire.org/ocaml-xdg" 64 + }
-36
packages/nox-xdge/nox-xdge.dev/opam
··· 1 - opam-version: "2.0" 2 - synopsis: "XDG Base Directory Specification support for Eio" 3 - description: 4 - "This library implements the XDG Base Directory Specification with Eio capabilities to provide safe access to configuration, data, cache, state, and runtime directories. The library exposes Cmdliner terms that allow for proper environment variable overrides and command-line flags." 5 - maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 6 - authors: ["Anil Madhavapeddy"] 7 - license: "ISC" 8 - tags: ["org:blacksun" "eio" "system"] 9 - homepage: "https://tangled.org/anil.recoil.org/xdge" 10 - bug-reports: "https://tangled.org/anil.recoil.org/xdge/issues" 11 - depends: [ 12 - "dune" {>= "3.21"} 13 - "ocaml" {>= "5.1.0"} 14 - "eio" {>= "1.1"} 15 - "cmdliner" {>= "1.2.0"} 16 - "fmt" 17 - "xdg" 18 - "eio_main" {with-test} 19 - "odoc" {with-doc} 20 - "mdx" {with-test} 21 - "alcotest" {with-test & >= "1.7.0"} 22 - ] 23 - x-maintenance-intent: ["(latest)"] 24 - build: [ 25 - [ "dune" "subst" ] {dev} 26 - [ "dune" "build" "-p" name "-j" jobs "@install" ] 27 - [ "dune" "build" "-p" name "-j" jobs "runtest" ] {with-test & opam-version >= "2.2"} 28 - [ "dune" "build" "-p" name "-j" jobs "@doc" ] {with-doc} 29 - ] 30 - x-quality-build: "2026-04-15" 31 - x-quality-test: "2026-04-15" 32 - 33 - dev-repo: "git+https://tangled.org/gazagnaire.org/xdge" 34 - url { 35 - src: "git+https://tangled.org/gazagnaire.org/xdge" 36 - }
+1 -1
packages/oci/oci.dev/opam
··· 35 35 "nox-tty" 36 36 "uri" 37 37 "vlog" 38 - "xdg" 38 + "nox-xdg" 39 39 "osrelease" 40 40 "alcotest" {with-test} 41 41 "mdx" {with-test}
+1 -1
packages/requests/requests.dev/opam
··· 25 25 "uri" 26 26 "nox-json" 27 27 "nox-cookie" 28 - "nox-xdge" 28 + "nox-xdg" 29 29 "ptime" 30 30 "cmdliner" 31 31 "nox-tty"
+1 -1
packages/tangled/tangled.dev/opam
··· 23 23 "eio" {>= "1.0"} 24 24 "ptime" {>= "1.0"} 25 25 "nox-toml" {>= "0.1"} 26 - "nox-xdge" {>= "0.1"} 26 + "nox-xdg" {>= "0.1"} 27 27 "cmdliner" {>= "1.2"} 28 28 "eio_main" 29 29 "mdx" {with-test}
+1 -1
packages/uniboot/uniboot.dev/opam
··· 20 20 "initramfs" {>= "0.1"} 21 21 "oci" 22 22 "eio" {>= "1.0"} 23 - "nox-xdge" 23 + "nox-xdg" 24 24 "cmdliner" {>= "1.2"} 25 25 "fmt" {>= "0.9"} 26 26 "logs" {>= "0.7"}