The opam repository for my Advent of Agentic Humps 2025

+srcsetter

+82
+48
packages/srcsetter-cmd/srcsetter-cmd.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Image processing tool to generate responsive images" 3 + description: 4 + "Srcsetter is a CLI tool that processes a directory of images and outputs a directory of responsive images suitable for embedding as `<img srcset` tags in a website. It uses the ImageMagick CLI tool to handle the actual processing of images." 5 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 6 + authors: ["Anil Madhavapeddy"] 7 + license: "ISC" 8 + homepage: "https://tangled.org/@anil.recoil.org/srcsetter" 9 + bug-reports: "https://tangled.org/@anil.recoil.org/srcsetter/issues" 10 + dev-repo: "git+https://tangled.org/@anil.recoil.org/srcsetter.git" 11 + depends: [ 12 + "dune" {>= "3.17"} 13 + "ocaml" {>= "5.1"} 14 + "srcsetter" {= version} 15 + "fpath" 16 + "progress" 17 + "cmdliner" 18 + "eio" 19 + "eio_main" 20 + "odoc" {with-doc} 21 + ] 22 + build: [ 23 + ["dune" "subst"] {dev} 24 + [ 25 + "dune" 26 + "build" 27 + "-p" 28 + name 29 + "-j" 30 + jobs 31 + "@install" 32 + "@runtest" {with-test} 33 + "@doc" {with-doc} 34 + ] 35 + ] 36 + depexts: [ 37 + ["imagemagick"] {os-distribution = "homebrew"} 38 + ["imagemagick"] {os-family = "debian"} 39 + ["imagemagick"] {os-family = "fedora"} 40 + ["imagemagick"] {os-family = "arch"} 41 + ["imagemagick"] {os-family = "alpine"} 42 + ] 43 + post-messages: [ 44 + "This package requires ImageMagick to be installed for image processing." 45 + ] 46 + url { 47 + src: "git+https://tangled.org/@anil.recoil.org/srcsetter.git#main" 48 + }
+34
packages/srcsetter/srcsetter.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Image srcset library for webp images" 3 + description: 4 + "Srcsetter is a library that allows for handling a directory of responsive images suitable for embedding as `<img srcset` tags in a website. It uses the ImageMagick CLI tool to handle the actual processing of images, and the `srcsetter-cmd` package to generate the input to this library." 5 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 6 + authors: ["Anil Madhavapeddy"] 7 + license: "ISC" 8 + homepage: "https://tangled.org/@anil.recoil.org/srcsetter" 9 + bug-reports: "https://tangled.org/@anil.recoil.org/srcsetter/issues" 10 + dev-repo: "git+https://tangled.org/@anil.recoil.org/srcsetter.git" 11 + depends: [ 12 + "dune" {>= "3.17"} 13 + "ocaml" {>= "5.1"} 14 + "jsont" 15 + "bytesrw" 16 + "odoc" {with-doc} 17 + ] 18 + build: [ 19 + ["dune" "subst"] {dev} 20 + [ 21 + "dune" 22 + "build" 23 + "-p" 24 + name 25 + "-j" 26 + jobs 27 + "@install" 28 + "@runtest" {with-test} 29 + "@doc" {with-doc} 30 + ] 31 + ] 32 + url { 33 + src: "git+https://tangled.org/@anil.recoil.org/srcsetter.git#main" 34 + }