├── .clj-kondo └── config.edn ├── .gitignore ├── .lsp └── config.edn ├── README.md ├── examples ├── aws.clj ├── bbssh.clj ├── bogue1979_nats.clj ├── bootleg.clj ├── brisk.clj ├── buddy.clj ├── clj-kondo.clj ├── clojure-lsp.clj ├── conftest.clj ├── conjtest.clj ├── datalevin.clj ├── docker.clj ├── etaoin.clj ├── filewatcher.clj ├── fluree-crypto.clj ├── fswatcher.clj ├── go_sqlite3.clj ├── hsqldb.clj ├── instaparse.clj ├── jsoup.bb ├── lanterna.clj ├── mysql.clj ├── parcera.clj ├── postgresql.clj ├── spire.clj ├── stash.clj ├── tabl.clj ├── tools-deps-native.clj ├── tools-deps-native.edn ├── tzzh_aws.clj └── tzzh_mail.clj ├── manifests ├── atomisthq │ └── tools.docker │ │ └── 0.1.0 │ │ └── manifest.edn ├── bogue1979 │ └── nats │ │ └── 0.0.6 │ │ └── manifest.edn ├── borkdude │ └── clj-kondo │ │ ├── 2020.12.12 │ │ └── manifest.edn │ │ ├── 2021.02.13 │ │ └── manifest.edn │ │ └── 2021.06.18 │ │ └── manifest.edn ├── clj-kondo │ └── clj-kondo │ │ ├── 2021.10.19 │ │ └── manifest.edn │ │ ├── 2021.12.19 │ │ └── manifest.edn │ │ ├── 2022.02.09 │ │ └── manifest.edn │ │ ├── 2022.03.09 │ │ └── manifest.edn │ │ ├── 2022.05.31 │ │ └── manifest.edn │ │ ├── 2022.09.08 │ │ └── manifest.edn │ │ ├── 2022.10.05 │ │ └── manifest.edn │ │ ├── 2022.10.14 │ │ └── manifest.edn │ │ ├── 2022.11.02 │ │ └── manifest.edn │ │ ├── 2022.12.08 │ │ └── manifest.edn │ │ ├── 2022.12.10 │ │ └── manifest.edn │ │ ├── 2023.01.12 │ │ └── manifest.edn │ │ ├── 2023.01.16 │ │ └── manifest.edn │ │ ├── 2023.01.20 │ │ └── manifest.edn │ │ ├── 2023.02.17 │ │ └── manifest.edn │ │ ├── 2023.03.17 │ │ └── manifest.edn │ │ ├── 2023.04.14 │ │ └── manifest.edn │ │ ├── 2023.05.18 │ │ └── manifest.edn │ │ ├── 2023.05.26 │ │ └── manifest.edn │ │ ├── 2023.07.13 │ │ └── manifest.edn │ │ ├── 2023.09.07 │ │ └── manifest.edn │ │ ├── 2023.10.20 │ │ └── manifest.edn │ │ ├── 2023.12.15 │ │ └── manifest.edn │ │ ├── 2024.02.12 │ │ └── manifest.edn │ │ ├── 2024.03.05 │ │ └── manifest.edn │ │ ├── 2024.03.13 │ │ └── manifest.edn │ │ ├── 2024.05.22 │ │ └── manifest.edn │ │ ├── 2024.05.24 │ │ └── manifest.edn │ │ ├── 2024.08.01 │ │ └── manifest.edn │ │ ├── 2024.08.29 │ │ └── manifest.edn │ │ ├── 2024.09.26 │ │ └── manifest.edn │ │ ├── 2024.09.27 │ │ └── manifest.edn │ │ ├── 2024.11.14 │ │ └── manifest.edn │ │ ├── 2025.01.16 │ │ └── manifest.edn │ │ ├── 2025.02.20 │ │ └── manifest.edn │ │ ├── 2025.04.07 │ │ └── manifest.edn │ │ └── 2025.06.05 │ │ └── manifest.edn ├── com.fluree │ └── crypto │ │ ├── 0.1.1 │ │ └── manifest.edn │ │ └── 0.1.2 │ │ └── manifest.edn ├── com.github.clojure-lsp │ └── clojure-lsp │ │ ├── 2022.01.03-19.46.10 │ │ └── manifest.edn │ │ ├── 2022.02.01-20.02.32 │ │ └── manifest.edn │ │ ├── 2022.11.03-00.14.57 │ │ └── manifest.edn │ │ └── 2024.04.22-11.50.26 │ │ └── manifest.edn ├── com.github.jackdbd │ └── jsoup │ │ └── 0.4.0 │ │ └── manifest.edn ├── epiccastle │ ├── bbssh │ │ ├── 0.1.0 │ │ │ └── manifest.edn │ │ ├── 0.2.0 │ │ │ └── manifest.edn │ │ ├── 0.3.0 │ │ │ └── manifest.edn │ │ ├── 0.4.0 │ │ │ └── manifest.edn │ │ ├── 0.5.0 │ │ │ └── manifest.edn │ │ └── 0.6.0 │ │ │ └── manifest.edn │ └── spire │ │ ├── 0.1.0-alpha.17 │ │ └── manifest.edn │ │ ├── 0.1.0-alpha.18 │ │ └── manifest.edn │ │ ├── 0.1.1 │ │ └── manifest.edn │ │ └── 0.1.2 │ │ └── manifest.edn ├── huahaiy │ └── datalevin │ │ ├── 0.4.28 │ │ └── manifest.edn │ │ ├── 0.5.14 │ │ └── manifest.edn │ │ ├── 0.5.30 │ │ └── manifest.edn │ │ ├── 0.5.31 │ │ └── manifest.edn │ │ ├── 0.6.1 │ │ └── manifest.edn │ │ ├── 0.6.13 │ │ └── manifest.edn │ │ ├── 0.6.14 │ │ └── manifest.edn │ │ ├── 0.6.15 │ │ └── manifest.edn │ │ ├── 0.6.16 │ │ └── manifest.edn │ │ ├── 0.6.17 │ │ └── manifest.edn │ │ ├── 0.6.18 │ │ └── manifest.edn │ │ ├── 0.6.19 │ │ └── manifest.edn │ │ ├── 0.6.20 │ │ └── manifest.edn │ │ ├── 0.6.21 │ │ └── manifest.edn │ │ ├── 0.6.22 │ │ └── manifest.edn │ │ ├── 0.6.29 │ │ └── manifest.edn │ │ ├── 0.6.6 │ │ └── manifest.edn │ │ ├── 0.6.7 │ │ └── manifest.edn │ │ ├── 0.7.0 │ │ └── manifest.edn │ │ ├── 0.7.1 │ │ └── manifest.edn │ │ ├── 0.7.12 │ │ └── manifest.edn │ │ ├── 0.7.2 │ │ └── manifest.edn │ │ ├── 0.7.3 │ │ └── manifest.edn │ │ ├── 0.7.4 │ │ └── manifest.edn │ │ ├── 0.7.5 │ │ └── manifest.edn │ │ ├── 0.7.6 │ │ └── manifest.edn │ │ ├── 0.7.7 │ │ └── manifest.edn │ │ ├── 0.8.0 │ │ └── manifest.edn │ │ ├── 0.8.1 │ │ └── manifest.edn │ │ ├── 0.8.10 │ │ └── manifest.edn │ │ ├── 0.8.11 │ │ └── manifest.edn │ │ ├── 0.8.12 │ │ └── manifest.edn │ │ ├── 0.8.14 │ │ └── manifest.edn │ │ ├── 0.8.15 │ │ └── manifest.edn │ │ ├── 0.8.16 │ │ └── manifest.edn │ │ ├── 0.8.18 │ │ └── manifest.edn │ │ ├── 0.8.19 │ │ └── manifest.edn │ │ ├── 0.8.2 │ │ └── manifest.edn │ │ ├── 0.8.20 │ │ └── manifest.edn │ │ ├── 0.8.21 │ │ └── manifest.edn │ │ ├── 0.8.23 │ │ └── manifest.edn │ │ ├── 0.8.24 │ │ └── manifest.edn │ │ ├── 0.8.25 │ │ └── manifest.edn │ │ ├── 0.8.28 │ │ └── manifest.edn │ │ ├── 0.8.29 │ │ └── manifest.edn │ │ ├── 0.8.4 │ │ └── manifest.edn │ │ ├── 0.8.6 │ │ └── manifest.edn │ │ ├── 0.8.7 │ │ └── manifest.edn │ │ ├── 0.8.9 │ │ └── manifest.edn │ │ ├── 0.9.10 │ │ └── manifest.edn │ │ ├── 0.9.11 │ │ └── manifest.edn │ │ ├── 0.9.12 │ │ └── manifest.edn │ │ ├── 0.9.13 │ │ └── manifest.edn │ │ ├── 0.9.14 │ │ └── manifest.edn │ │ ├── 0.9.17 │ │ └── manifest.edn │ │ ├── 0.9.18 │ │ └── manifest.edn │ │ ├── 0.9.19 │ │ └── manifest.edn │ │ ├── 0.9.20 │ │ └── manifest.edn │ │ ├── 0.9.21 │ │ └── manifest.edn │ │ ├── 0.9.22 │ │ └── manifest.edn │ │ ├── 0.9.3 │ │ └── manifest.edn │ │ ├── 0.9.4 │ │ └── manifest.edn │ │ ├── 0.9.5 │ │ └── manifest.edn │ │ ├── 0.9.6 │ │ └── manifest.edn │ │ ├── 0.9.8 │ │ └── manifest.edn │ │ └── O.8.26 │ │ └── manifest.edn ├── ilmoraunio │ ├── conftest │ │ ├── 0.0.2 │ │ │ └── manifest.edn │ │ ├── 0.0.3 │ │ │ └── manifest.edn │ │ ├── 0.0.4 │ │ │ └── manifest.edn │ │ └── 0.1.0 │ │ │ └── manifest.edn │ └── conjtest │ │ ├── 0.0.2 │ │ └── manifest.edn │ │ ├── 0.0.3 │ │ └── manifest.edn │ │ ├── 0.0.4 │ │ └── manifest.edn │ │ ├── 0.0.5 │ │ └── manifest.edn │ │ └── 0.1.0 │ │ └── manifest.edn ├── justone │ ├── brisk │ │ ├── 0.2.0 │ │ │ └── manifest.edn │ │ ├── 0.2.1 │ │ │ └── manifest.edn │ │ └── 0.3.0 │ │ │ └── manifest.edn │ └── tabl │ │ ├── 0.2.0 │ │ └── manifest.edn │ │ └── 0.3.0 │ │ └── manifest.edn ├── lispyclouds │ └── docker │ │ └── 0.1.1 │ │ └── manifest.edn ├── org.babashka │ ├── aws │ │ ├── 0.0.1 │ │ │ └── manifest.edn │ │ ├── 0.0.2 │ │ │ └── manifest.edn │ │ ├── 0.0.3 │ │ │ └── manifest.edn │ │ ├── 0.0.4 │ │ │ └── manifest.edn │ │ ├── 0.0.5 │ │ │ └── manifest.edn │ │ ├── 0.0.6 │ │ │ └── manifest.edn │ │ ├── 0.1.0 │ │ │ └── manifest.edn │ │ ├── 0.1.1 │ │ │ └── manifest.edn │ │ └── 0.1.2 │ │ │ └── manifest.edn │ ├── buddy │ │ ├── 0.0.1 │ │ │ └── manifest.edn │ │ ├── 0.1.0 │ │ │ └── manifest.edn │ │ ├── 0.2.0 │ │ │ └── manifest.edn │ │ ├── 0.3.3 │ │ │ └── manifest.edn │ │ └── 0.3.4 │ │ │ └── manifest.edn │ ├── duckdb │ │ ├── 0.1.3 │ │ │ └── manifest.edn │ │ └── 0.1.4 │ │ │ └── manifest.edn │ ├── etaoin │ │ ├── 0.0.1 │ │ │ └── manifest.edn │ │ ├── 0.0.2 │ │ │ └── manifest.edn │ │ ├── 0.0.3 │ │ │ └── manifest.edn │ │ └── 0.1.0 │ │ │ └── manifest.edn │ ├── filewatcher │ │ └── 0.0.1 │ │ │ └── manifest.edn │ ├── fswatcher │ │ ├── 0.0.1 │ │ │ └── manifest.edn │ │ ├── 0.0.2 │ │ │ └── manifest.edn │ │ ├── 0.0.3 │ │ │ └── manifest.edn │ │ ├── 0.0.4 │ │ │ └── manifest.edn │ │ ├── 0.0.5 │ │ │ └── manifest.edn │ │ └── 0.0.6 │ │ │ └── manifest.edn │ ├── go-sqlite3 │ │ ├── 0.0.1 │ │ │ └── manifest.edn │ │ ├── 0.1.0 │ │ │ └── manifest.edn │ │ ├── 0.1.2 │ │ │ └── manifest.edn │ │ ├── 0.2.3 │ │ │ └── manifest.edn │ │ ├── 0.2.4 │ │ │ └── manifest.edn │ │ ├── 0.2.5 │ │ │ └── manifest.edn │ │ ├── 0.2.6 │ │ │ └── manifest.edn │ │ └── 0.2.7 │ │ │ └── manifest.edn │ ├── hsqldb │ │ ├── 0.0.1 │ │ │ └── manifest.edn │ │ ├── 0.0.3 │ │ │ └── manifest.edn │ │ ├── 0.0.4 │ │ │ └── manifest.edn │ │ ├── 0.0.5 │ │ │ └── manifest.edn │ │ ├── 0.0.6 │ │ │ └── manifest.edn │ │ ├── 0.0.7 │ │ │ └── manifest.edn │ │ ├── 0.0.8 │ │ │ └── manifest.edn │ │ ├── 0.1.0 │ │ │ └── manifest.edn │ │ ├── 0.1.1 │ │ │ └── manifest.edn │ │ ├── 0.1.2 │ │ │ └── manifest.edn │ │ ├── 0.1.3 │ │ │ └── manifest.edn │ │ └── 0.1.4 │ │ │ └── manifest.edn │ ├── instaparse │ │ ├── 0.0.1 │ │ │ └── manifest.edn │ │ ├── 0.0.2 │ │ │ └── manifest.edn │ │ ├── 0.0.3 │ │ │ └── manifest.edn │ │ ├── 0.0.4 │ │ │ └── manifest.edn │ │ ├── 0.0.5 │ │ │ └── manifest.edn │ │ └── 0.0.6 │ │ │ └── manifest.edn │ ├── lanterna │ │ ├── 0.0.1-SNAPSHOT │ │ │ └── manifest.edn │ │ └── 0.0.1 │ │ │ └── manifest.edn │ ├── mssql │ │ ├── 0.0.2 │ │ │ └── manifest.edn │ │ ├── 0.0.4 │ │ │ └── manifest.edn │ │ ├── 0.0.5 │ │ │ └── manifest.edn │ │ ├── 0.0.6 │ │ │ └── manifest.edn │ │ ├── 0.0.7 │ │ │ └── manifest.edn │ │ ├── 0.0.8 │ │ │ └── manifest.edn │ │ ├── 0.1.0 │ │ │ └── manifest.edn │ │ ├── 0.1.1 │ │ │ └── manifest.edn │ │ ├── 0.1.2 │ │ │ └── manifest.edn │ │ ├── 0.1.3 │ │ │ └── manifest.edn │ │ └── 0.1.4 │ │ │ └── manifest.edn │ ├── mysql │ │ ├── 0.0.6 │ │ │ └── manifest.edn │ │ ├── 0.0.7 │ │ │ └── manifest.edn │ │ ├── 0.0.8 │ │ │ └── manifest.edn │ │ ├── 0.1.0 │ │ │ └── manifest.edn │ │ ├── 0.1.1 │ │ │ └── manifest.edn │ │ ├── 0.1.2 │ │ │ └── manifest.edn │ │ ├── 0.1.3 │ │ │ └── manifest.edn │ │ └── 0.1.4 │ │ │ └── manifest.edn │ ├── oracle │ │ ├── 0.0.8 │ │ │ └── manifest.edn │ │ └── 0.1.0 │ │ │ └── manifest.edn │ ├── parcera │ │ └── 0.0.1 │ │ │ └── manifest.edn │ ├── postgresql │ │ ├── 0.0.1 │ │ │ └── manifest.edn │ │ ├── 0.0.3 │ │ │ └── manifest.edn │ │ ├── 0.0.4 │ │ │ └── manifest.edn │ │ ├── 0.0.5 │ │ │ └── manifest.edn │ │ ├── 0.0.6 │ │ │ └── manifest.edn │ │ ├── 0.0.7 │ │ │ └── manifest.edn │ │ ├── 0.0.8 │ │ │ └── manifest.edn │ │ ├── 0.1.0 │ │ │ └── manifest.edn │ │ ├── 0.1.1 │ │ │ └── manifest.edn │ │ ├── 0.1.2 │ │ │ └── manifest.edn │ │ ├── 0.1.3 │ │ │ └── manifest.edn │ │ └── 0.1.4 │ │ │ └── manifest.edn │ └── tools-deps-native │ │ ├── 0.0.4 │ │ └── manifest.edn │ │ ├── 0.0.5 │ │ └── manifest.edn │ │ ├── 0.1.0 │ │ └── manifest.edn │ │ ├── 0.1.1 │ │ └── manifest.edn │ │ ├── 0.1.2 │ │ └── manifest.edn │ │ ├── 0.1.3 │ │ └── manifest.edn │ │ ├── 0.1.4 │ │ └── manifest.edn │ │ ├── 0.1.5 │ │ └── manifest.edn │ │ ├── 0.1.6 │ │ └── manifest.edn │ │ └── 0.1.7 │ │ └── manifest.edn ├── retrogradeorbit │ └── bootleg │ │ └── 0.1.9 │ │ └── manifest.edn ├── rorokimdim │ └── stash │ │ ├── 0.2.0 │ │ └── manifest.edn │ │ ├── 0.3.1 │ │ └── manifest.edn │ │ ├── 0.3.2 │ │ └── manifest.edn │ │ ├── 0.3.3 │ │ └── manifest.edn │ │ └── 0.3.4 │ │ └── manifest.edn ├── tommy-mor │ └── go-valve-query │ │ └── 0.1.0 │ │ └── manifest.edn └── tzzh │ ├── aws │ └── 0.0.3 │ │ └── manifest.edn │ └── mail │ ├── 0.0.2 │ └── manifest.edn │ └── 0.0.3 │ └── manifest.edn └── script ├── derive-manifests.clj ├── upgrade-manifest.clj └── upgrade-sql-pods.clj /.clj-kondo/config.edn: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .clj-kondo/.cache 2 | .lsp/.cache 3 | .calva/ -------------------------------------------------------------------------------- /.lsp/config.edn: -------------------------------------------------------------------------------- 1 | {:source-paths ["examples"]} 2 | -------------------------------------------------------------------------------- /examples/aws.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods]) 4 | 5 | (pods/load-pod 'org.babashka/aws "0.1.2") 6 | 7 | (require '[pod.babashka.aws :as aws]) 8 | 9 | (def s3-client (aws/client {:api :s3})) 10 | 11 | (aws/doc s3-client :ListBuckets) 12 | -------------------------------------------------------------------------------- /examples/bbssh.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods] 4 | '[clojure.java.io :as io]) 5 | 6 | (pods/load-pod 'epiccastle/bbssh "0.6.0") 7 | 8 | (require '[pod.epiccastle.bbssh.core :as bbssh] 9 | '[pod.epiccastle.bbssh.scp :as scp]) 10 | 11 | (let [session (bbssh/ssh "remote-host" {:username "remote-user"})] 12 | 13 | ;; execute 14 | (-> (bbssh/exec session "echo 'I am running over ssh'" {:out :string}) 15 | deref 16 | :out 17 | println) 18 | 19 | ;; copy to remote 20 | (scp/scp-to 21 | 22 | ;; multiple sources 23 | [(io/file "single-file") ;; file 24 | (io/file "directory") ;; directory 25 | ["content🚀" {:filename "string"}] ;; string data 26 | [(byte-array [1 2 3 4]) 27 | {:filename "byte-array"}] ;; byte-array data 28 | [(io/input-stream (byte-array [0xf0 0x9f 0x9a 0x80 0x00])) 29 | {:filename "input-stream" 30 | :size 5 31 | }] ;; input stream 32 | ] 33 | "remote-path" ;; remote path 34 | {:session session ;; options 35 | :recurse? true}) 36 | 37 | ;; copy to local 38 | (scp/scp-from "remote-path" "local-path" {:session session})) 39 | -------------------------------------------------------------------------------- /examples/bootleg.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods]) 4 | 5 | (pods/load-pod 'retrogradeorbit/bootleg "0.1.9") 6 | 7 | (require '[pod.retrogradeorbit.bootleg.utils :as utils]) 8 | 9 | (def html 10 | (-> [:div 11 | [:h1 "Using Bootleg From Babashka"] 12 | [:p "This is a demo"]] 13 | (utils/convert-to :html))) 14 | 15 | (prn "HTML:" html) 16 | ;; "HTML:" "

Using Bootleg From Babashka

This is a demo

" 17 | 18 | (def hiccup 19 | (utils/convert-to html :hiccup)) 20 | 21 | (prn "Hiccup:" hiccup) 22 | ;; "Hiccup:" [:div [:h1 "Using Bootleg From Babashka"] [:p "This is a demo"]] 23 | 24 | (def hickory 25 | (utils/convert-to html :hickory)) 26 | 27 | (prn "Hickory:" hickory) 28 | -------------------------------------------------------------------------------- /examples/brisk.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods]) 4 | 5 | (pods/load-pod 'justone/brisk "0.3.0") 6 | 7 | (require '[pod.brisk :as brisk]) 8 | 9 | ;; from/to file 10 | (brisk/freeze-to-file "pod.nippy" {:han :solo}) 11 | (prn (brisk/thaw-from-file "pod.nippy")) 12 | 13 | ;; from/to string 14 | (let [frozen (brisk/freeze-to-string {:princess :leia})] 15 | (println "frozen:" frozen) 16 | (prn (brisk/thaw-from-string frozen))) 17 | 18 | ;; encrypted (see brisk readme for more options) 19 | (brisk/freeze-to-file "pod.encrypted.nippy" {:han :solo} {:password [:cached "my-password"]}) 20 | (prn (brisk/thaw-from-file "pod.encrypted.nippy" {:password [:cached "my-password"]})) 21 | -------------------------------------------------------------------------------- /examples/buddy.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods]) 4 | (pods/load-pod 'org.babashka/buddy "0.3.4") 5 | 6 | (require '[clojure.string :as str] 7 | '[pod.babashka.buddy.codecs :as codecs] 8 | '[pod.babashka.buddy.mac :as mac] 9 | '[pod.babashka.buddy.nonce :as nonce] 10 | '[pod.babashka.buddy.hashers :as hashers]) 11 | 12 | (def hash-algorithm :hmac+sha256) 13 | (def secret (nonce/random-bytes 64)) 14 | 15 | (let [timestamp (System/currentTimeMillis) 16 | nonce (nonce/random-bytes 64) 17 | nonce-hex (codecs/bytes->hex nonce) 18 | payload (pr-str {:nonce nonce-hex :timestamp timestamp}) 19 | signature (codecs/bytes->hex (mac/hash payload {:alg hash-algorithm :key secret}))] 20 | (prn (str/join "-" [nonce-hex timestamp signature]))) 21 | 22 | (prn (hashers/derive "SECRET PASSWORD!" {:salt "foo" :alg :pbkdf2+sha256})) 23 | -------------------------------------------------------------------------------- /examples/clj-kondo.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods]) 4 | 5 | (pods/load-pod 'clj-kondo/clj-kondo "2025.04.07") 6 | 7 | (require '[pod.borkdude.clj-kondo :as clj-kondo]) 8 | 9 | (-> (clj-kondo/run! {:lint ["examples"]}) 10 | :summary) 11 | -------------------------------------------------------------------------------- /examples/clojure-lsp.clj: -------------------------------------------------------------------------------- 1 | (ns clojure-lsp 2 | (:require 3 | [babashka.pods :as pods])) 4 | 5 | (pods/load-pod 'com.github.clojure-lsp/clojure-lsp "2024.04.22-11.50.26") 6 | 7 | (require '[clojure-lsp.api :as api]) 8 | ;; see https://cljdoc.org/d/com.github.clojure-lsp/clojure-lsp/2024.04.22-11.50.26/api/clojure-lsp.api 9 | 10 | (api/clean-ns! {}) ;; see settings in .lsp/config.edn 11 | 12 | ;; @ericdallo: somehow this isn't working, even when there are lint warnings: 13 | (defn foo [unused]) 14 | (comment unresolved-symbol) 15 | (api/diagnostics {}) 16 | -------------------------------------------------------------------------------- /examples/conftest.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods] 4 | '[babashka.fs :as fs]) 5 | (pods/load-pod 'ilmoraunio/conftest "0.1.0") 6 | (require '[pod.ilmoraunio.conftest :as conftest]) 7 | 8 | (spit "my.edn" "{:hello :world}") 9 | (spit "my.json" "{\"hello\": \"world\"}") 10 | 11 | (try 12 | (prn (conftest/parse "my.edn")) 13 | (prn (conftest/parse "my.edn" "my.json")) 14 | (prn (conftest/parse-as "edn" "my.edn")) 15 | (prn (conftest/parse-as "json" "my.json")) 16 | (finally 17 | (fs/delete "my.edn") 18 | (fs/delete "my.json"))) 19 | -------------------------------------------------------------------------------- /examples/conjtest.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods] 4 | '[babashka.fs :as fs]) 5 | (pods/load-pod 'ilmoraunio/conjtest "0.1.0") 6 | (require '[pod-ilmoraunio-conjtest.api :as conjtest]) 7 | 8 | (spit "my.edn" "{:hello :world}") 9 | (spit "my.json" "{\"hello\": \"world\"}") 10 | (spit "my.properties" "SAMPLE_VALUE=something-here\nother.value.url=https://example.com/\nsecret.value.exception=f9761ebe-d4dc-11eb-8046-1e00e20cdb95") 11 | 12 | (try 13 | (prn (conjtest/parse "my.edn")) 14 | (prn (conjtest/parse "my.edn" "my.json")) 15 | (prn (conjtest/parse-as "edn" "my.edn")) 16 | (prn (conjtest/parse-as "json" "my.json")) 17 | (prn (conjtest/parse-go "my.edn" "my.json")) 18 | (prn (conjtest/parse-go-as "edn" "my.edn")) 19 | (prn (conjtest/parse-go-as "json" "my.json")) 20 | (prn (conjtest/parse* {:keywordize? true} "my.properties")) 21 | (prn (conjtest/parse-as* {:keywordize? true} "properties" "my.properties")) 22 | (prn (conjtest/parse-go* {:keywordize? true} "my.properties")) 23 | (prn (conjtest/parse-go-as* {:keywordize? true} "properties" "my.properties")) 24 | (finally 25 | (fs/delete "my.edn") 26 | (fs/delete "my.json") 27 | (fs/delete "my.properties"))) 28 | -------------------------------------------------------------------------------- /examples/datalevin.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods]) 4 | 5 | (pods/load-pod 'huahaiy/datalevin "0.9.22") 6 | 7 | (require '[pod.huahaiy.datalevin :as d]) 8 | 9 | (def conn (d/get-conn "/tmp/mydb")) 10 | 11 | (d/transact! conn [{:greeting "Hello world!"}]) 12 | 13 | (println (d/q '[:find ?g :where [_ :greeting ?g]] (d/db conn))) 14 | 15 | (d/close conn) 16 | -------------------------------------------------------------------------------- /examples/docker.clj: -------------------------------------------------------------------------------- 1 | (require '[babashka.pods :as pods]) 2 | 3 | (pods/load-pod 'lispyclouds/docker "0.1.1") 4 | 5 | (require '[pod.lispyclouds.docker :as docker]) 6 | 7 | (def images (docker/client {:category :images 8 | :conn {:uri "unix:///var/run/docker.sock"}})) 9 | 10 | (require '[clojure.pprint :as pprint]) 11 | 12 | (pprint/pprint images) 13 | -------------------------------------------------------------------------------- /examples/etaoin.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods]) 4 | 5 | (pods/load-pod 'org.babashka/etaoin "0.1.0") 6 | 7 | (require '[pod.babashka.etaoin :as eta]) 8 | 9 | (def driver (eta/firefox)) 10 | 11 | (eta/go driver "https://clojure.org") 12 | 13 | (eta/quit driver) 14 | -------------------------------------------------------------------------------- /examples/filewatcher.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods]) 4 | (pods/load-pod 'org.babashka/filewatcher "0.0.1") 5 | 6 | (require '[pod.babashka.filewatcher :as fw]) 7 | 8 | (fw/watch "." (fn [event] (prn event)) {:delay-ms 5000}) 9 | 10 | @(promise) 11 | -------------------------------------------------------------------------------- /examples/fluree-crypto.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods]) 4 | (pods/load-pod 'com.fluree/crypto "0.1.1") 5 | 6 | (require '[pod.fluree.crypto :as crypto]) 7 | 8 | ;; sign a message with a secp256k1 key 9 | (def keys 10 | (crypto/generate-key-pair)) 11 | 12 | (def message 13 | "Babashka rocks!") 14 | 15 | (defn signature [] 16 | (let [sig (crypto/sign-message message (:private keys))] 17 | (println "Signing message:" (pr-str message)) 18 | (println "Signature:" sig) 19 | sig)) 20 | 21 | ;; verify signature 22 | (defn verify [msg sig] 23 | (let [pub-key (:public keys) 24 | valid? (crypto/verify-signature pub-key msg sig)] 25 | (if valid? 26 | (println "Signature is valid!") 27 | (println "Signature is invalid, uh oh!")))) 28 | 29 | (defn run! [] 30 | (let [sig (signature)] 31 | (verify message sig))) 32 | 33 | (run!) 34 | -------------------------------------------------------------------------------- /examples/fswatcher.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods]) 4 | (pods/load-pod 'org.babashka/fswatcher "0.0.6") 5 | 6 | (require '[pod.babashka.fswatcher :as fw]) 7 | 8 | (fw/watch "." prn {:delay-ms 5000}) 9 | 10 | (println "Watching current directory for changes... Press Ctrl-C to quit.") 11 | 12 | @(promise) 13 | -------------------------------------------------------------------------------- /examples/go_sqlite3.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (ns go-sqlite3 4 | (:require 5 | [babashka.pods :as pods])) 6 | 7 | (pods/load-pod 'org.babashka/go-sqlite3 "0.2.7") 8 | (require '[pod.babashka.go-sqlite3 :as sqlite]) 9 | 10 | (sqlite/execute! "/tmp/foo.db" ["create table foo (bar)"]) 11 | (sqlite/execute! "/tmp/foo.db" ["insert into foo (bar) values (?)" "baz"]) 12 | (sqlite/query "/tmp/foo.db" ["select * from foo"]) 13 | -------------------------------------------------------------------------------- /examples/hsqldb.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods]) 4 | 5 | (pods/load-pod 'org.babashka/hsqldb "0.1.2") 6 | 7 | (require '[pod.babashka.hsqldb :as db]) 8 | 9 | (def db "jdbc:hsqldb:mem:testdb;sql.syntax_mys=true") 10 | 11 | (db/execute! db ["create table foo ( foo int );"]) 12 | 13 | (db/execute! db ["insert into foo values (1, 2, 3);"]) 14 | 15 | (db/execute! db ["select * from foo;"]) 16 | -------------------------------------------------------------------------------- /examples/instaparse.clj: -------------------------------------------------------------------------------- 1 | (ns instaparse) 2 | 3 | (require '[babashka.pods :as pods]) 4 | 5 | (pods/load-pod 'org.babashka/instaparse "0.0.5") 6 | 7 | (require '[pod.babashka.instaparse :as insta]) 8 | 9 | (def as-and-bs 10 | (insta/parser 11 | "S = AB* 12 | AB = A B 13 | A = 'a'+ 14 | B = 'b'+")) 15 | 16 | #_(prn (as-and-bs "aaaaabbbaaaabb")) 17 | 18 | (prn (insta/parse as-and-bs "aaaaabbbaaaabb")) 19 | 20 | (def failure (insta/parse as-and-bs "xaaaaabbbaaaabb")) 21 | 22 | (prn failure) 23 | (prn :failure (insta/failure? failure)) 24 | -------------------------------------------------------------------------------- /examples/jsoup.bb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.http-client :as http]) 4 | (require '[babashka.pods :as pods]) 5 | 6 | (pods/load-pod 'com.github.jackdbd/jsoup "0.4.0") 7 | 8 | (require '[pod.jackdbd.jsoup :as jsoup]) 9 | 10 | (def text (-> (http/get "https://clojure.org") 11 | :body 12 | (jsoup/select "div p") 13 | first 14 | :text)) 15 | 16 | (println text) 17 | -------------------------------------------------------------------------------- /examples/lanterna.clj: -------------------------------------------------------------------------------- 1 | (require '[babashka.pods :refer [load-pod]]) 2 | 3 | (load-pod 'org.babashka/lanterna "0.0.1") 4 | 5 | (require '[pod.babashka.lanterna.terminal :as terminal]) 6 | 7 | (def terminal (terminal/get-terminal)) 8 | 9 | (terminal/start terminal) 10 | 11 | (terminal/put-string terminal 12 | (str "Hello TUI Babashka!") 13 | 10 5) 14 | (terminal/put-string terminal 15 | (str "The size of this terminal: " 16 | (terminal/get-size terminal)) 17 | 10 6) 18 | (terminal/put-string terminal 19 | "Press q to exit." 20 | 10 7) 21 | 22 | (terminal/flush terminal) 23 | 24 | (def k (terminal/get-key-blocking terminal)) 25 | 26 | (terminal/put-string terminal 27 | (str "You pressed: " k) 28 | 10 8) 29 | 30 | (Thread/sleep 1000) 31 | 32 | (terminal/stop terminal) 33 | 34 | -------------------------------------------------------------------------------- /examples/mysql.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods]) 4 | 5 | (pods/load-pod 'org.babashka/mysql "0.1.2") 6 | 7 | (require '[pod.babashka.mysql :as mysql]) 8 | 9 | ;; start mysql: docker run --rm --name=test-mysql -p 3306:3306 -i --env="MYSQL_ROOT_PASSWORD=mypassword" mysql 10 | 11 | (def conn {:dbtype "mysql" 12 | :user "root" 13 | :password "mypassword"}) 14 | 15 | (mysql/execute! conn ["drop database if exists mydb;"]) 16 | (mysql/execute! conn ["create database if not exists mydb;"]) 17 | 18 | (def db (assoc conn :dbname "mydb")) 19 | 20 | (mysql/execute! db ["create table mytable ( foobar datetime );"]) 21 | (mysql/execute! db ["insert into mytable (foobar) values (?);" (java.util.Date.)]) 22 | (mysql/execute! db ["select * from mytable"]) 23 | ;;=> [{:mytable/foobar #object[java.time.LocalDateTime 0x75e26b51 "2021-05-20T13:14:50"]}] 24 | -------------------------------------------------------------------------------- /examples/parcera.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods]) 4 | (pods/load-pod 'org.babashka/parcera "0.0.1") 5 | (require '[pod.babashka.parcera :as parcera]) 6 | 7 | (prn (parcera/ast "(ns foo)")) 8 | ;;=> (:code (:list (:symbol "ns") (:whitespace " ") (:symbol "foo"))) 9 | 10 | (prn (parcera/code (parcera/ast "(ns foo)"))) 11 | -------------------------------------------------------------------------------- /examples/postgresql.clj: -------------------------------------------------------------------------------- 1 | (require '[babashka.pods :as pods]) 2 | 3 | (pods/load-pod 'org.babashka/postgresql "0.1.2") 4 | 5 | (require '[pod.babashka.postgresql :as pg]) 6 | 7 | ;; start postgres: docker run --rm --name some-postgres -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword postgres 8 | 9 | (def db {:dbtype "postgresql" 10 | :user "postgres" 11 | :dbname "postgres" 12 | :password "mysecretpassword" 13 | :host "localhost" 14 | :port "5432"}) 15 | 16 | (pg/execute! db ["drop table if exists mytable;"]) 17 | (pg/execute! db ["create table mytable ( foobar int );"]) 18 | (pg/execute! db ["insert into mytable (foobar) values (3);"]) 19 | (pg/execute! db ["select * from mytable"]) 20 | ;;=> [{:mytable/foobar 3}] 21 | -------------------------------------------------------------------------------- /examples/spire.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods]) 4 | 5 | (pods/load-pod 'epiccastle/spire "0.1.2") 6 | 7 | (require '[pod.epiccastle.spire.transport :as transport] 8 | '[pod.epiccastle.spire.module.shell :as shell]) 9 | 10 | (transport/ssh {:username "remoteuser" 11 | :hostname "remotehost"} 12 | (prn (shell/shell {:cmd "whoami; hostname"}))) 13 | -------------------------------------------------------------------------------- /examples/stash.clj: -------------------------------------------------------------------------------- 1 | (require '[babashka.pods :as pods]) 2 | 3 | (pods/load-pod 'rorokimdim/stash "0.3.4") 4 | 5 | (require '[pod.rorokimdim.stash :as stash]) 6 | 7 | (stash/init {"encryption-key" "foo" 8 | "stash-path" "foo.stash" 9 | "create-stash-if-missing" true}) 10 | 11 | (prn (stash/version)) 12 | 13 | (stash/set :foo :bar "baz") 14 | 15 | (prn (stash/get :foo :bar)) 16 | -------------------------------------------------------------------------------- /examples/tabl.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (require '[babashka.pods :as pods]) 4 | (pods/load-pod 'justone/tabl "0.3.0") 5 | 6 | (require '[pod.tabl.fancy :as fancy]) 7 | (require '[pod.tabl.doric :as doric]) 8 | 9 | (fancy/print-table [{:foo 1 :bar 2} {:foo 2 :bar 3}]) 10 | (doric/print-table [{:foo 1 :bar 2} {:foo 2 :bar 3}]) 11 | -------------------------------------------------------------------------------- /examples/tools-deps-native.clj: -------------------------------------------------------------------------------- 1 | (require '[babashka.pods :as pods] 2 | #_'[babashka.fs :as fs]) 3 | 4 | (pods/load-pod 'org.babashka/tools-deps-native "0.1.7") 5 | 6 | (require '[clojure.tools.deps :as td]) 7 | 8 | (def current-file *file*) 9 | 10 | 11 | (->> (td/create-basis {:project "x.edn" 12 | :extra '{:deps {buddy/buddy-core {:mvn/version "1.10.1"}}}}) 13 | :classpath-roots 14 | (take 2) 15 | prn) 16 | 17 | ;;=> ("src" "/Users/borkdude/.m2/repository/buddy/buddy-core/1.10.1/buddy-core-1.10.1.jar") 18 | -------------------------------------------------------------------------------- /examples/tools-deps-native.edn: -------------------------------------------------------------------------------- 1 | {:deps {babashka/fs {:mvn/version "0.5.20"}}} 2 | -------------------------------------------------------------------------------- /examples/tzzh_mail.clj: -------------------------------------------------------------------------------- 1 | (require '[babashka.pods :as pods]) 2 | (pods/load-pod 'tzzh/mail "0.0.2") 3 | (require '[pod.tzzh.mail :as m]) 4 | 5 | (m/send-mail {:host "smtp.gmail.com" 6 | :port 587 7 | :username "kylian.mbappe@gmail.com" 8 | :password "kylian123" 9 | :subject "Subject of the email" 10 | :from "kylian.mbappe@gmail.com" 11 | :to ["somebody@somehwere.com"] 12 | :cc ["somebodyelse@somehwere.com"] 13 | :text "aaa" ;; for text body 14 | :html " kajfhajkfhakjs " ;; for html body 15 | :attachments ["./do-everything.clj"] ;; paths to the files to attch 16 | }) 17 | -------------------------------------------------------------------------------- /manifests/atomisthq/tools.docker/0.1.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name atomisthq/tools.docker 2 | :pod/description "docker golang utils for clojure" 3 | :pod/version "0.1.0" 4 | :pod/license "Apache" 5 | :pod/example "https://raw.githubusercontent.com/atomisthq/pod-atomisthq-tools.docker/main/dev/user.clj" 6 | :pod/language "go" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/atomisthq/pod-atomisthq-tools.docker/releases/download/v0.1.0/pod-atomisthq-tools.docker-0.1.0-linux-amd64.zip" 11 | :artifact/executable "pod-atomisthq-tools.docker"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/atomisthq/pod-atomisthq-tools.docker/releases/download/v0.1.0/pod-atomisthq-tools.docker-0.1.0-macos-x86_64.zip" 15 | :artifact/executable "pod-atomisthq-tools.docker"} 16 | {:os/name "Mac.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/atomisthq/pod-atomisthq-tools.docker/releases/download/v0.1.0/pod-atomisthq-tools.docker-0.1.0-macos-arm64.zip" 19 | :artifact/executable "pod-atomisthq-tools.docker"}]} 20 | 21 | -------------------------------------------------------------------------------- /manifests/bogue1979/nats/0.0.6/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name bogue1979/nats 2 | :pod/description "interact with NATS" 3 | :pod/version "0.0.6" 4 | :pod/license "" 5 | :pod/example "examples/bogue1979_nats.clj" 6 | :pod/language "go" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/bogue1979/pod-bogue1979-nats/releases/download/v0.0.6/pod-bogue1979-nats_0.0.6_linux_amd64.zip" 11 | :artifact/executable "pod-bogue1979-nats"} 12 | {:os/name "Mac.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/bogue1979/pod-bogue1979-nats/releases/download/v0.0.6/pod-bogue1979-nats_0.0.6_darwin_amd64.zip" 15 | :artifact/executable "pod-bogue1979-nats"} 16 | {:os/name "Windows.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/bogue1979/pod-bogue1979-nats/releases/download/v0.0.6/pod-bogue1979-nats_0.0.6_windows_amd64.zip" 19 | :artifact/executable "pod-bogue1979-nats.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/borkdude/clj-kondo/2020.12.12/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name borkdude/clj-kondo 2 | :pod/description "" 3 | :pod/version "2020.12.12" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/borkdude/clj-kondo/releases/download/v2020.12.12/clj-kondo-2020.12.12-macos-amd64.zip" 9 | :artifact/executable "clj-kondo"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/borkdude/clj-kondo/releases/download/v2020.12.12/clj-kondo-2020.12.12-linux-amd64.zip" 13 | :artifact/executable "clj-kondo"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/borkdude/clj-kondo/releases/download/v2020.12.12/clj-kondo-2020.12.12-windows-amd64.zip" 17 | :artifact/executable "clj-kondo.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/borkdude/clj-kondo/2021.02.13/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name borkdude/clj-kondo 2 | :pod/description "" 3 | :pod/version "2021.02.13" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/borkdude/clj-kondo/releases/download/v2021.02.13/clj-kondo-2021.02.13-macos-amd64.zip" 9 | :artifact/executable "clj-kondo"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/borkdude/clj-kondo/releases/download/v2021.02.13/clj-kondo-2021.02.13-linux-amd64.zip" 13 | :artifact/executable "clj-kondo"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/borkdude/clj-kondo/releases/download/v2021.02.13/clj-kondo-2021.02.13-windows-amd64.zip" 17 | :artifact/executable "clj-kondo.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/borkdude/clj-kondo/2021.06.18/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name borkdude/clj-kondo 2 | :pod/description "" 3 | :pod/version "2021.06.18" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/borkdude/clj-kondo/releases/download/v2021.06.18/clj-kondo-2021.06.18-macos-amd64.zip" 9 | :artifact/executable "clj-kondo"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/borkdude/clj-kondo/releases/download/v2021.06.18/clj-kondo-2021.06.18-linux-amd64.zip" 13 | :artifact/executable "clj-kondo"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/borkdude/clj-kondo/releases/download/v2021.06.18/clj-kondo-2021.06.18-windows-amd64.zip" 17 | :artifact/executable "clj-kondo.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/clj-kondo/clj-kondo/2021.10.19/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name borkdude/clj-kondo 2 | :pod/description "" 3 | :pod/version "2021.10.19" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2021.10.19/clj-kondo-2021.10.19-macos-amd64.zip" 9 | :artifact/executable "clj-kondo"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2021.10.19/clj-kondo-2021.10.19-linux-amd64.zip" 13 | :artifact/executable "clj-kondo"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2021.10.19/clj-kondo-2021.10.19-windows-amd64.zip" 17 | :artifact/executable "clj-kondo.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/clj-kondo/clj-kondo/2021.12.19/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name borkdude/clj-kondo 2 | :pod/description "" 3 | :pod/version "2021.12.19" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2021.12.19/clj-kondo-2021.12.19-macos-amd64.zip" 9 | :artifact/executable "clj-kondo"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2021.12.19/clj-kondo-2021.12.19-linux-amd64.zip" 13 | :artifact/executable "clj-kondo"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2021.12.19/clj-kondo-2021.12.19-windows-amd64.zip" 17 | :artifact/executable "clj-kondo.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/clj-kondo/clj-kondo/2022.02.09/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name borkdude/clj-kondo 2 | :pod/description "" 3 | :pod/version "2022.02.09" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2022.02.09/clj-kondo-2022.02.09-macos-amd64.zip" 9 | :artifact/executable "clj-kondo"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2022.02.09/clj-kondo-2022.02.09-linux-amd64.zip" 13 | :artifact/executable "clj-kondo"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2022.02.09/clj-kondo-2022.02.09-windows-amd64.zip" 17 | :artifact/executable "clj-kondo.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/clj-kondo/clj-kondo/2022.03.09/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name borkdude/clj-kondo 2 | :pod/description "" 3 | :pod/version "2022.03.09" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2022.03.09/clj-kondo-2022.03.09-macos-amd64.zip" 9 | :artifact/executable "clj-kondo"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2022.03.09/clj-kondo-2022.03.09-linux-amd64.zip" 13 | :artifact/executable "clj-kondo"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2022.03.09/clj-kondo-2022.03.09-windows-amd64.zip" 17 | :artifact/executable "clj-kondo.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/clj-kondo/clj-kondo/2022.05.31/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name borkdude/clj-kondo 2 | :pod/description "" 3 | :pod/version "2022.05.31" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2022.05.31/clj-kondo-2022.05.31-macos-amd64.zip" 9 | :artifact/executable "clj-kondo"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2022.05.31/clj-kondo-2022.05.31-linux-static-amd64.zip" 13 | :artifact/executable "clj-kondo"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2022.05.31/clj-kondo-2022.05.31-windows-amd64.zip" 17 | :artifact/executable "clj-kondo.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/clj-kondo/clj-kondo/2022.09.08/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name borkdude/clj-kondo 2 | :pod/description "A static analyzer and linter for Clojure code that sparks joy" 3 | :pod/version "2022.09.08" 4 | :pod/license "" 5 | :pod/example "examples/clj-kondo.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2022.09.08/clj-kondo-2022.09.08-macos-amd64.zip" 11 | :artifact/executable "clj-kondo"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2022.09.08/clj-kondo-2022.09.08-linux-static-amd64.zip" 15 | :artifact/executable "clj-kondo"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/clj-kondo/clj-kondo/releases/download/v2022.09.08/clj-kondo-2022.09.08-windows-amd64.zip" 19 | :artifact/executable "clj-kondo.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/com.fluree/crypto/0.1.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name com.fluree/crypto 2 | :pod/description "Fluree crypto library" 3 | :pod/version "0.1.1" 4 | :pod/license "MIT" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/fluree/pod-fluree-crypto/releases/download/v0.1.1/pod-fluree-crypto-linux-amd64.zip" 9 | :artifact/executable "pod-fluree-crypto"} 10 | {:os/name "Linux.*" 11 | :os/arch "aarch64" 12 | :artifact/url "https://github.com/fluree/pod-fluree-crypto/releases/download/v0.1.1/pod-fluree-crypto-linux-arm64.zip" 13 | :artifact/executable "pod-fluree-crypto"} 14 | {:os/name "Mac.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/fluree/pod-fluree-crypto/releases/download/v0.1.1/pod-fluree-crypto-macos-amd64.zip" 17 | :artifact/executable "pod-fluree-crypto"}]} 18 | -------------------------------------------------------------------------------- /manifests/com.fluree/crypto/0.1.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name com.fluree/crypto 2 | :pod/description "A Clojure(Script) crypto library for the Fluree graph database" 3 | :pod/version "0.1.2" 4 | :pod/license "MIT" 5 | :pod/example "examples/fluree-crypto.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/fluree/pod-fluree-crypto/releases/download/v0.1.2/pod-fluree-crypto-linux-amd64.zip" 11 | :artifact/executable "pod-fluree-crypto"} 12 | {:os/name "Linux.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/fluree/pod-fluree-crypto/releases/download/v0.1.2/pod-fluree-crypto-linux-arm64.zip" 15 | :artifact/executable "pod-fluree-crypto"} 16 | {:os/name "Mac.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/fluree/pod-fluree-crypto/releases/download/v0.1.2/pod-fluree-crypto-macos-amd64.zip" 19 | :artifact/executable "pod-fluree-crypto"}]} 20 | -------------------------------------------------------------------------------- /manifests/com.github.clojure-lsp/clojure-lsp/2022.01.03-19.46.10/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name com.github.clojure-lsp/clojure-lsp 2 | :pod/description "" 3 | :pod/version "2022.01.03-19.46.10" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/clojure-lsp/clojure-lsp/releases/download/2022.01.03-19.46.10/clojure-lsp-native-macos-amd64.zip" 9 | :artifact/executable "clojure-lsp"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/clojure-lsp/clojure-lsp/releases/download/2022.01.03-19.46.10/clojure-lsp-native-static-linux-amd64.zip" 13 | :artifact/executable "clojure-lsp"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/clojure-lsp/clojure-lsp/releases/download/2022.01.03-19.46.10/clojure-lsp-native-windows-amd64.zip" 17 | :artifact/executable "clojure-lsp.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/com.github.clojure-lsp/clojure-lsp/2022.02.01-20.02.32/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name com.github.clojure-lsp/clojure-lsp 2 | :pod/description "Language Server (LSP) for Clojure" 3 | :pod/version "2022.02.01-20.02.32" 4 | :pod/license "" 5 | :pod/example "examples/clojure-lsp.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/clojure-lsp/clojure-lsp/releases/download/2022.02.01-20.02.32/clojure-lsp-native-macos-amd64.zip" 11 | :artifact/executable "clojure-lsp"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/clojure-lsp/clojure-lsp/releases/download/2022.02.01-20.02.32/clojure-lsp-native-static-linux-amd64.zip" 15 | :artifact/executable "clojure-lsp"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/clojure-lsp/clojure-lsp/releases/download/2022.02.01-20.02.32/clojure-lsp-native-windows-amd64.zip" 19 | :artifact/executable "clojure-lsp.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/com.github.clojure-lsp/clojure-lsp/2022.11.03-00.14.57/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name com.github.clojure-lsp/clojure-lsp 2 | :pod/description "Language Server (LSP) for Clojure" 3 | :pod/version "2022.11.03-00.14.57" 4 | :pod/license "" 5 | :pod/example "examples/clojure-lsp.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/clojure-lsp/clojure-lsp/releases/download/2022.11.03-00.14.57/clojure-lsp-native-macos-amd64.zip" 11 | :artifact/executable "clojure-lsp"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/clojure-lsp/clojure-lsp/releases/download/2022.11.03-00.14.57/clojure-lsp-native-static-linux-amd64.zip" 15 | :artifact/executable "clojure-lsp"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/clojure-lsp/clojure-lsp/releases/download/2022.11.03-00.14.57/clojure-lsp-native-windows-amd64.zip" 19 | :artifact/executable "clojure-lsp.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/com.github.clojure-lsp/clojure-lsp/2024.04.22-11.50.26/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name com.github.clojure-lsp/clojure-lsp 2 | :pod/description "" 3 | :pod/version "2024.04.22-11.50.26" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/clojure-lsp/clojure-lsp/releases/download/2024.04.22-11.50.26/clojure-lsp-native-macos-amd64.zip" 9 | :artifact/executable "clojure-lsp"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/clojure-lsp/clojure-lsp/releases/download/2024.04.22-11.50.26/clojure-lsp-native-static-linux-amd64.zip" 13 | :artifact/executable "clojure-lsp"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/clojure-lsp/clojure-lsp/releases/download/2024.04.22-11.50.26/clojure-lsp-native-windows-amd64.zip" 17 | :artifact/executable "clojure-lsp.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/com.github.jackdbd/jsoup/0.4.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name com.github.jackdbd/pod.jackdbd.jsoup 2 | :pod/description "Babashka pod for parsing HTML with jsoup." 3 | :pod/example "examples/jsoup.bb" 4 | :pod/language "clojure" 5 | :pod/license "MIT" 6 | :pod/version "0.4.0" 7 | :pod/artifacts 8 | [{:os/arch "amd64" 9 | :os/name "Linux.*" 10 | :artifact/url "https://github.com/jackdbd/pod-jackdbd-jsoup/releases/download/v0.4.0/pod-jackdbd-jsoup-0.4.0-ubuntu-latest-amd64.zip" 11 | :artifact/executable "pod-jackdbd-jsoup"} 12 | {:os/arch "aarch64" 13 | :os/name "Mac.*" 14 | :artifact/url "https://github.com/jackdbd/pod-jackdbd-jsoup/releases/download/v0.4.0/pod-jackdbd-jsoup-0.4.0-macos-latest-aarch64.zip" 15 | :artifact/executable "pod-jackdbd-jsoup"} 16 | {:os/arch "amd64" 17 | :os/name "Windows.*" 18 | :artifact/url "https://github.com/jackdbd/pod-jackdbd-jsoup/releases/download/v0.4.0/pod-jackdbd-jsoup-0.4.0-windows-latest-amd64.zip" 19 | :artifact/executable "pod-jackdbd-jsoup.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/epiccastle/bbssh/0.1.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name epiccastle/bbssh 2 | :pod/description "SSH remote execution and file copy" 3 | :pod/version "0.1.0" 4 | :pod/license "EPL" 5 | :pod/options {:transport :socket} 6 | :pod/example "examples/bbssh" 7 | :pod/language "clojure" 8 | :pod/artifacts 9 | [{:os/name "Mac.*" 10 | :os/arch "x86_64" 11 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.1.0/bbssh-0.1.0-macos-amd64.tgz" 12 | :artifact/executable "bbssh"} 13 | {:os/name "Mac.*" 14 | :os/arch "aarch64" 15 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.1.0/bbssh-0.1.0-macos-aarch64.tgz" 16 | :artifact/executable "bbssh"} 17 | {:os/name "Linux.*" 18 | :os/arch "amd64" 19 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.1.0/bbssh-0.1.0-linux-amd64.tgz" 20 | :artifact/executable "bbssh"}]} 21 | -------------------------------------------------------------------------------- /manifests/epiccastle/bbssh/0.2.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name epiccastle/bbssh 2 | :pod/description "SSH remote execution and file copy" 3 | :pod/version "0.2.0" 4 | :pod/license "EPL" 5 | :pod/options {:transport :socket} 6 | :pod/example "examples/bbssh.clj" 7 | :pod/language "clojure" 8 | :pod/artifacts 9 | [{:os/name "Mac.*" 10 | :os/arch "x86_64" 11 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.2.0/bbssh-0.2.0-macos-amd64.tgz" 12 | :artifact/executable "bbssh"} 13 | {:os/name "Mac.*" 14 | :os/arch "aarch64" 15 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.2.0/bbssh-0.2.0-macos-aarch64.tgz" 16 | :artifact/executable "bbssh"} 17 | {:os/name "Linux.*" 18 | :os/arch "amd64" 19 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.2.0/bbssh-0.2.0-linux-amd64.tgz" 20 | :artifact/executable "bbssh"} 21 | {:os/name "Windows.*" 22 | :os/arch "amd64" 23 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.2.0/bbssh-0.2.0-windows-amd64.zip" 24 | :artifact/executable "bbssh.exe"}]} 25 | -------------------------------------------------------------------------------- /manifests/epiccastle/bbssh/0.3.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name epiccastle/bbssh 2 | :pod/description "SSH remote execution and file copy" 3 | :pod/version "0.3.0" 4 | :pod/license "EPL" 5 | :pod/options {:transport :socket} 6 | :pod/example "examples/bbssh.clj" 7 | :pod/language "clojure" 8 | :pod/artifacts 9 | [{:os/name "Mac.*" 10 | :os/arch "x86_64" 11 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.3.0/bbssh-0.3.0-macos-amd64.tgz" 12 | :artifact/executable "bbssh"} 13 | {:os/name "Mac.*" 14 | :os/arch "aarch64" 15 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.3.0/bbssh-0.3.0-macos-aarch64.tgz" 16 | :artifact/executable "bbssh"} 17 | {:os/name "Linux.*" 18 | :os/arch "amd64" 19 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.3.0/bbssh-0.3.0-linux-amd64.tgz" 20 | :artifact/executable "bbssh"} 21 | {:os/name "Windows.*" 22 | :os/arch "amd64" 23 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.3.0/bbssh-0.3.0-windows-amd64.zip" 24 | :artifact/executable "bbssh.exe"}]} 25 | -------------------------------------------------------------------------------- /manifests/epiccastle/bbssh/0.4.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name epiccastle/bbssh 2 | :pod/description "SSH remote execution and file copy" 3 | :pod/version "0.4.0" 4 | :pod/license "EPL" 5 | :pod/options {:transport :socket} 6 | :pod/example "examples/bbssh.clj" 7 | :pod/language "clojure" 8 | :pod/artifacts 9 | [{:os/name "Mac.*" 10 | :os/arch "x86_64" 11 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.4.0/bbssh-0.4.0-macos-amd64.tgz" 12 | :artifact/executable "bbssh"} 13 | {:os/name "Mac.*" 14 | :os/arch "aarch64" 15 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.4.0/bbssh-0.4.0-macos-aarch64.tgz" 16 | :artifact/executable "bbssh"} 17 | {:os/name "Linux.*" 18 | :os/arch "amd64" 19 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.4.0/bbssh-0.4.0-linux-amd64.tgz" 20 | :artifact/executable "bbssh"} 21 | {:os/name "Windows.*" 22 | :os/arch "amd64" 23 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.4.0/bbssh-0.4.0-windows-amd64.zip" 24 | :artifact/executable "bbssh.exe"}]} 25 | -------------------------------------------------------------------------------- /manifests/epiccastle/bbssh/0.5.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name epiccastle/bbssh 2 | :pod/description "SSH remote execution and file copy" 3 | :pod/version "0.5.0" 4 | :pod/license "EPL" 5 | :pod/options {:transport :socket} 6 | :pod/example "examples/bbssh.clj" 7 | :pod/language "clojure" 8 | :pod/artifacts 9 | [{:os/name "Mac.*" 10 | :os/arch "x86_64" 11 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.5.0/bbssh-0.5.0-macos-amd64.tgz" 12 | :artifact/executable "bbssh"} 13 | {:os/name "Mac.*" 14 | :os/arch "aarch64" 15 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.5.0/bbssh-0.5.0-macos-aarch64.tgz" 16 | :artifact/executable "bbssh"} 17 | {:os/name "Linux.*" 18 | :os/arch "amd64" 19 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.5.0/bbssh-0.5.0-linux-amd64.tgz" 20 | :artifact/executable "bbssh"} 21 | {:os/name "Windows.*" 22 | :os/arch "amd64" 23 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.5.0/bbssh-0.5.0-windows-amd64.zip" 24 | :artifact/executable "bbssh.exe"}]} 25 | -------------------------------------------------------------------------------- /manifests/epiccastle/bbssh/0.6.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name epiccastle/bbssh 2 | :pod/description "SSH remote execution and file copy" 3 | :pod/version "0.6.0" 4 | :pod/license "EPL" 5 | :pod/options {:transport :socket} 6 | :pod/example "examples/bbssh.clj" 7 | :pod/language "clojure" 8 | :pod/artifacts 9 | [{:os/name "Mac.*" 10 | :os/arch "x86_64" 11 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.6.0/bbssh-0.6.0-macos-amd64.tgz" 12 | :artifact/executable "bbssh"} 13 | {:os/name "Mac.*" 14 | :os/arch "aarch64" 15 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.6.0/bbssh-0.6.0-macos-aarch64.tgz" 16 | :artifact/executable "bbssh"} 17 | {:os/name "Linux.*" 18 | :os/arch "amd64" 19 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.6.0/bbssh-0.6.0-linux-amd64.tgz" 20 | :artifact/executable "bbssh"} 21 | {:os/name "Windows.*" 22 | :os/arch "amd64" 23 | :artifact/url "https://github.com/epiccastle/bbssh/releases/download/v0.6.0/bbssh-0.6.0-windows-amd64.zip" 24 | :artifact/executable "bbssh.exe"}]} 25 | -------------------------------------------------------------------------------- /manifests/epiccastle/spire/0.1.0-alpha.17/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name epiccastle/spire 2 | :pod/description "" 3 | :pod/version "0.1.0-alpha.17" 4 | :pod/license "" 5 | :pod/options {:transport :socket} 6 | :pod/artifacts 7 | [{:os/name "Mac.*" 8 | :os/arch "x86_64" 9 | :artifact/url "https://github.com/epiccastle/spire/releases/download/v0.1.0-alpha.17/spire-0.1.0-alpha.17-macos-amd64.zip" 10 | :artifact/executable "spire"} 11 | {:os/name "Linux.*" 12 | :os/arch "amd64" 13 | :artifact/url "https://github.com/epiccastle/spire/releases/download/v0.1.0-alpha.17/spire-0.1.0-alpha.17-linux-amd64.tgz" 14 | :artifact/executable "spire"}]} 15 | -------------------------------------------------------------------------------- /manifests/epiccastle/spire/0.1.0-alpha.18/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name epiccastle/spire 2 | :pod/description "" 3 | :pod/version "0.1.0-alpha.18" 4 | :pod/license "" 5 | :pod/options {:transport :socket} 6 | :pod/artifacts 7 | [{:os/name "Mac.*" 8 | :os/arch "x86_64" 9 | :artifact/url "https://github.com/epiccastle/spire/releases/download/v0.1.0-alpha.18/spire-0.1.0-alpha.18-macos-amd64.zip" 10 | :artifact/executable "spire"} 11 | {:os/name "Linux.*" 12 | :os/arch "amd64" 13 | :artifact/url "https://github.com/epiccastle/spire/releases/download/v0.1.0-alpha.18/spire-0.1.0-alpha.18-linux-amd64.tgz" 14 | :artifact/executable "spire"}]} 15 | -------------------------------------------------------------------------------- /manifests/epiccastle/spire/0.1.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name epiccastle/spire 2 | :pod/description "Pragmatic idempotent machine provisioning over SSH (mac and linux only)" 3 | :pod/version "0.1.1" 4 | :pod/license "EPL" 5 | :pod/options {:transport :socket} 6 | :pod/example "examples/bbssh.clj" 7 | :pod/language "clojure" 8 | :pod/artifacts 9 | [{:os/name "Mac.*" 10 | :os/arch "x86_64" 11 | :artifact/url "https://github.com/epiccastle/spire/releases/download/v0.1.1/spire-0.1.1-macos-amd64.zip" 12 | :artifact/executable "spire"} 13 | {:os/name "Linux.*" 14 | :os/arch "amd64" 15 | :artifact/url "https://github.com/epiccastle/spire/releases/download/v0.1.1/spire-0.1.1-linux-amd64.tgz" 16 | :artifact/executable "spire"}]} 17 | -------------------------------------------------------------------------------- /manifests/epiccastle/spire/0.1.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name epiccastle/spire 2 | :pod/description "Pragmatic idempotent machine provisioning over SSH (mac and linux only)" 3 | :pod/version "0.1.2" 4 | :pod/license "EPL" 5 | :pod/options {:transport :socket} 6 | :pod/example "examples/spire.clj" 7 | :pod/language "clojure" 8 | :pod/artifacts 9 | [{:os/name "Mac.*" 10 | :os/arch "x86_64" 11 | :artifact/url "https://github.com/epiccastle/spire/releases/download/v0.1.2/spire-0.1.2-macos-amd64.zip" 12 | :artifact/executable "spire"} 13 | {:os/name "Linux.*" 14 | :os/arch "amd64" 15 | :artifact/url "https://github.com/epiccastle/spire/releases/download/v0.1.2/spire-0.1.2-linux-amd64.tgz" 16 | :artifact/executable "spire"}]} 17 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.4.28/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.4.28" 4 | :pod/license "EPL" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.4.28/dtlv-0.4.28-ubuntu-latest-amd64.zip" 9 | :artifact/executable "dtlv"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.4.28/dtlv-0.4.28-macos-latest-amd64.zip" 13 | :artifact/executable "dtlv"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.4.28/dtlv-0.4.28-windows-amd64.zip" 17 | :artifact/executable "dtlv.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.5.14/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.5.14" 4 | :pod/license "EPL" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.5.14/dtlv-0.5.14-ubuntu-latest-amd64.zip" 9 | :artifact/executable "dtlv"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.5.14/dtlv-0.5.14-macos-latest-amd64.zip" 13 | :artifact/executable "dtlv"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.5.14/dtlv-0.5.14-windows-amd64.zip" 17 | :artifact/executable "dtlv.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.5.30/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.5.30" 4 | :pod/license "EPL" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.5.30/dtlv-0.5.30-ubuntu-latest-amd64.zip" 9 | :artifact/executable "dtlv"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.5.30/dtlv-0.5.30-macos-latest-amd64.zip" 13 | :artifact/executable "dtlv"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.5.30/dtlv-0.5.30-windows-amd64.zip" 17 | :artifact/executable "dtlv.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.5.31/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.5.31" 4 | :pod/license "EPL" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.5.31/dtlv-0.5.31-ubuntu-latest-amd64.zip" 9 | :artifact/executable "dtlv"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.5.31/dtlv-0.5.31-macos-latest-amd64.zip" 13 | :artifact/executable "dtlv"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.5.31/dtlv-0.5.31-windows-amd64.zip" 17 | :artifact/executable "dtlv.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.6.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.6.1" 4 | :pod/license "EPL" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.1/dtlv-0.6.1-ubuntu-latest-amd64.zip" 9 | :artifact/executable "dtlv"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.1/dtlv-0.6.1-macos-latest-amd64.zip" 13 | :artifact/executable "dtlv"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.1/dtlv-0.6.1-windows-amd64.zip" 17 | :artifact/executable "dtlv.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.6.13/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.6.13" 4 | :pod/license "EPL" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.13/dtlv-0.6.13-ubuntu-latest-amd64.zip" 9 | :artifact/executable "dtlv"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.13/dtlv-0.6.13-macos-latest-amd64.zip" 13 | :artifact/executable "dtlv"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.13/dtlv-0.6.13-windows-amd64.zip" 17 | :artifact/executable "dtlv.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.6.14/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.6.14" 4 | :pod/license "EPL" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.14/dtlv-0.6.14-ubuntu-latest-amd64.zip" 9 | :artifact/executable "dtlv"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.14/dtlv-0.6.14-macos-latest-amd64.zip" 13 | :artifact/executable "dtlv"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.14/dtlv-0.6.14-windows-amd64.zip" 17 | :artifact/executable "dtlv.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.6.15/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.6.15" 4 | :pod/license "EPL" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.15/dtlv-0.6.15-ubuntu-latest-amd64.zip" 9 | :artifact/executable "dtlv"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.15/dtlv-0.6.15-macos-latest-amd64.zip" 13 | :artifact/executable "dtlv"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.15/dtlv-0.6.15-windows-amd64.zip" 17 | :artifact/executable "dtlv.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.6.16/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.6.16" 4 | :pod/license "EPL" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.16/dtlv-0.6.16-ubuntu-latest-amd64.zip" 9 | :artifact/executable "dtlv"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.16/dtlv-0.6.16-macos-latest-amd64.zip" 13 | :artifact/executable "dtlv"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.16/dtlv-0.6.16-windows-amd64.zip" 17 | :artifact/executable "dtlv.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.6.17/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.6.17" 4 | :pod/license "EPL" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.17/dtlv-0.6.17-ubuntu-latest-amd64.zip" 9 | :artifact/executable "dtlv"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.17/dtlv-0.6.17-macos-latest-amd64.zip" 13 | :artifact/executable "dtlv"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.17/dtlv-0.6.17-windows-amd64.zip" 17 | :artifact/executable "dtlv.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.6.18/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.6.18" 4 | :pod/license "EPL" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.18/dtlv-0.6.18-ubuntu-latest-amd64.zip" 9 | :artifact/executable "dtlv"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.18/dtlv-0.6.18-macos-latest-amd64.zip" 13 | :artifact/executable "dtlv"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.18/dtlv-0.6.18-windows-amd64.zip" 17 | :artifact/executable "dtlv.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.6.19/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.6.19" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.19/dtlv-0.6.19-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.19/dtlv-0.6.19-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.19/dtlv-0.6.19-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.6.20/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.6.20" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.20/dtlv-0.6.20-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.20/dtlv-0.6.20-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.20/dtlv-0.6.20-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.6.21/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.6.21" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.21/dtlv-0.6.21-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.21/dtlv-0.6.21-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.21/dtlv-0.6.21-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.6.22/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.6.22" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.22/dtlv-0.6.22-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.22/dtlv-0.6.22-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.22/dtlv-0.6.22-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.6.29/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.6.29" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.29/dtlv-0.6.29-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.29/dtlv-0.6.29-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.29/dtlv-0.6.29-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.6.6/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.6.6" 4 | :pod/license "EPL" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.6/dtlv-0.6.6-ubuntu-latest-amd64.zip" 9 | :artifact/executable "dtlv"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.6/dtlv-0.6.6-macos-latest-amd64.zip" 13 | :artifact/executable "dtlv"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.6/dtlv-0.6.6-windows-amd64.zip" 17 | :artifact/executable "dtlv.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.6.7/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.6.7" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.7/dtlv-0.6.7-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.7/dtlv-0.6.7-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.6.7/dtlv-0.6.7-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.7.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.7.0" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.0/dtlv-0.7.0-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.0/dtlv-0.7.0-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.0/dtlv-0.7.0-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.7.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.7.1" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.1/dtlv-0.7.1-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.1/dtlv-0.7.1-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.1/dtlv-0.7.1-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.7.12/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.7.12" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.12/dtlv-0.7.12-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.12/dtlv-0.7.12-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.12/dtlv-0.7.12-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.7.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.7.2" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.2/dtlv-0.7.2-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.2/dtlv-0.7.2-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.2/dtlv-0.7.2-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.7.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.7.3" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.3/dtlv-0.7.3-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.3/dtlv-0.7.3-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.3/dtlv-0.7.3-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.7.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.7.4" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.4/dtlv-0.7.4-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.4/dtlv-0.7.4-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.4/dtlv-0.7.4-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.7.5/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.7.5" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.5/dtlv-0.7.5-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.5/dtlv-0.7.5-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.5/dtlv-0.7.5-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.7.6/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.7.6" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.6/dtlv-0.7.6-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.6/dtlv-0.7.6-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.6/dtlv-0.7.6-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.7.7/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.7.7" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.7/dtlv-0.7.7-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.7/dtlv-0.7.7-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.7.7/dtlv-0.7.7-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.0" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.0/dtlv-0.8.0-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Windows.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.0/dtlv-0.8.0-windows-amd64.zip" 15 | :artifact/executable "dtlv.exe"}]} 16 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.1" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.1/dtlv-0.8.1-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.1/dtlv-0.8.1-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.1/dtlv-0.8.1-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.10/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.10" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.10/dtlv-0.8.10-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.10/dtlv-0.8.10-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.10/dtlv-0.8.10-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.10/dtlv-0.8.10-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.11/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.11" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.11/dtlv-0.8.11-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.11/dtlv-0.8.11-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.11/dtlv-0.8.11-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.11/dtlv-0.8.11-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.12/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.12" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.12/dtlv-0.8.12-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.12/dtlv-0.8.12-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.12/dtlv-0.8.12-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.12/dtlv-0.8.12-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.14/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.14" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.14/dtlv-0.8.14-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.14/dtlv-0.8.14-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.14/dtlv-0.8.14-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.14/dtlv-0.8.14-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.15/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.15" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.15/dtlv-0.8.15-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.15/dtlv-0.8.15-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.15/dtlv-0.8.15-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.15/dtlv-0.8.15-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.16/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.16" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.16/dtlv-0.8.16-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.16/dtlv-0.8.16-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.16/dtlv-0.8.16-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.16/dtlv-0.8.16-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.18/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.18" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.18/dtlv-0.8.18-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.18/dtlv-0.8.18-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.18/dtlv-0.8.18-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.18/dtlv-0.8.18-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.19/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.19" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.19/dtlv-0.8.19-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.19/dtlv-0.8.19-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.19/dtlv-0.8.19-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.19/dtlv-0.8.19-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.2" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.2/dtlv-0.8.2-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.2/dtlv-0.8.2-macos-latest-amd64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.2/dtlv-0.8.2-windows-amd64.zip" 19 | :artifact/executable "dtlv.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.20/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.20" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.20/dtlv-0.8.20-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.20/dtlv-0.8.20-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.20/dtlv-0.8.20-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.20/dtlv-0.8.20-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.21/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.21" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.21/dtlv-0.8.21-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.21/dtlv-0.8.21-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.21/dtlv-0.8.21-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.21/dtlv-0.8.21-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.23/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.23" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.23/dtlv-0.8.23-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.23/dtlv-0.8.23-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.23/dtlv-0.8.23-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.23/dtlv-0.8.23-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.24/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.24" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.24/dtlv-0.8.24-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.24/dtlv-0.8.24-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.24/dtlv-0.8.24-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.24/dtlv-0.8.24-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.25/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.25" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.25/dtlv-0.8.25-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.25/dtlv-0.8.25-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.25/dtlv-0.8.25-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.25/dtlv-0.8.25-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.28/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.28" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.28/dtlv-0.8.28-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.28/dtlv-0.8.28-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.28/dtlv-0.8.28-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.28/dtlv-0.8.28-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.29/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.29" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.29/dtlv-0.8.29-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.29/dtlv-0.8.29-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.29/dtlv-0.8.29-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.29/dtlv-0.8.29-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.4" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.4/dtlv-0.8.4-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.4/dtlv-0.8.4-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.4/dtlv-0.8.4-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.4/dtlv-0.8.4-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.6/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.6" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.6/dtlv-0.8.6-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.6/dtlv-0.8.6-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.6/dtlv-0.8.6-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.6/dtlv-0.8.6-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.7/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.7" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.7/dtlv-0.8.7-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.7/dtlv-0.8.7-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.7/dtlv-0.8.7-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.7/dtlv-0.8.7-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.8.9/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.9" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.9/dtlv-0.8.9-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.9/dtlv-0.8.9-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.9/dtlv-0.8.9-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.9/dtlv-0.8.9-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.9.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.9.3" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.3/dtlv-0.9.3-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.3/dtlv-0.9.3-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.3/dtlv-0.9.3-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.3/dtlv-0.9.3-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.9.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.9.4" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.4/dtlv-0.9.4-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.4/dtlv-0.9.4-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.4/dtlv-0.9.4-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.4/dtlv-0.9.4-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.9.5/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.9.5" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.5/dtlv-0.9.5-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.5/dtlv-0.9.5-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.5/dtlv-0.9.5-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.5/dtlv-0.9.5-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.9.6/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.9.6" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.6/dtlv-0.9.6-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.6/dtlv-0.9.6-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.6/dtlv-0.9.6-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.6/dtlv-0.9.6-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/0.9.8/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.9.8" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.8/dtlv-0.9.8-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.8/dtlv-0.9.8-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.8/dtlv-0.9.8-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.9.8/dtlv-0.9.8-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/huahaiy/datalevin/O.8.26/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name huahaiy/datalevin 2 | :pod/description "Datalevin Database" 3 | :pod/version "0.8.26" 4 | :pod/license "EPL" 5 | :pod/example "examples/datalevin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.26/dtlv-0.8.26-ubuntu-latest-amd64.zip" 11 | :artifact/executable "dtlv"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.26/dtlv-0.8.26-macos-latest-aarch64.zip" 15 | :artifact/executable "dtlv"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.26/dtlv-0.8.26-macos-latest-amd64.zip" 19 | :artifact/executable "dtlv"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/juji-io/datalevin/releases/download/0.8.26/dtlv-0.8.26-windows-amd64.zip" 23 | :artifact/executable "dtlv.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/ilmoraunio/conftest/0.0.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name ilmoraunio/conftest 2 | :pod/description "Access Conftest internal API" 3 | :pod/version "0.0.2" 4 | :pod/license "MIT" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conftest/releases/download/v0.0.2/pod-ilmoraunio-conftest-0.0.2-linux-amd64.zip" 9 | :artifact/executable "pod-ilmoraunio-conftest"} 10 | {:os/name "Mac.*" 11 | :os/arch "aarch64" 12 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conftest/releases/download/v0.0.2/pod-ilmoraunio-conftest-0.0.2-macos-aarch64.zip" 13 | :artifact/executable "pod-ilmoraunio-conftest"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conftest/releases/download/v0.0.2/pod-ilmoraunio-conftest-0.0.2-windows-amd64.zip" 17 | :artifact/executable "pod-ilmoraunio-conftest.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/ilmoraunio/conjtest/0.0.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name ilmoraunio/conjtest 2 | :pod/description "Parse configuration files using Clojure & Go parsers" 3 | :pod/version "0.0.2" 4 | :pod/license "MIT" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conjtest/releases/download/v0.0.2/pod-ilmoraunio-conjtest-0.0.2-linux-amd64.zip" 9 | :artifact/executable "pod-ilmoraunio-conjtest"} 10 | {:os/name "Mac.*" 11 | :os/arch "aarch64" 12 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conjtest/releases/download/v0.0.2/pod-ilmoraunio-conjtest-0.0.2-macos-aarch64.zip" 13 | :artifact/executable "pod-ilmoraunio-conjtest"}]} 14 | -------------------------------------------------------------------------------- /manifests/ilmoraunio/conjtest/0.0.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name ilmoraunio/conjtest 2 | :pod/description "Parse configuration files using Clojure & Go parsers" 3 | :pod/version "0.0.3" 4 | :pod/license "MIT" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conjtest/releases/download/v0.0.3/pod-ilmoraunio-conjtest-0.0.3-linux-amd64.zip" 9 | :artifact/executable "pod-ilmoraunio-conjtest"} 10 | {:os/name "Linux.*" 11 | :os/arch "aarch64" 12 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conjtest/releases/download/v0.0.3/pod-ilmoraunio-conjtest-0.0.3-linux-arm64.zip" 13 | :artifact/executable "pod-ilmoraunio-conjtest"} 14 | {:os/name "Mac.*" 15 | :os/arch "aarch64" 16 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conjtest/releases/download/v0.0.3/pod-ilmoraunio-conjtest-0.0.3-macos-aarch64.zip" 17 | :artifact/executable "pod-ilmoraunio-conjtest"}]} 18 | -------------------------------------------------------------------------------- /manifests/ilmoraunio/conjtest/0.0.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name ilmoraunio/conjtest 2 | :pod/description "Parse configuration files using Clojure & Go parsers" 3 | :pod/version "0.0.4" 4 | :pod/license "MIT" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conjtest/releases/download/v0.0.4/pod-ilmoraunio-conjtest-0.0.4-linux-amd64.zip" 9 | :artifact/executable "pod-ilmoraunio-conjtest"} 10 | {:os/name "Linux.*" 11 | :os/arch "aarch64" 12 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conjtest/releases/download/v0.0.4/pod-ilmoraunio-conjtest-0.0.4-linux-arm64.zip" 13 | :artifact/executable "pod-ilmoraunio-conjtest"} 14 | {:os/name "Mac.*" 15 | :os/arch "aarch64" 16 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conjtest/releases/download/v0.0.4/pod-ilmoraunio-conjtest-0.0.4-macos-aarch64.zip" 17 | :artifact/executable "pod-ilmoraunio-conjtest"}]} 18 | -------------------------------------------------------------------------------- /manifests/ilmoraunio/conjtest/0.0.5/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name ilmoraunio/conjtest 2 | :pod/description "Parse configuration files using Clojure & Go parsers" 3 | :pod/version "0.0.5" 4 | :pod/license "MIT" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conjtest/releases/download/v0.0.5/pod-ilmoraunio-conjtest-0.0.5-linux-amd64.zip" 9 | :artifact/executable "pod-ilmoraunio-conjtest"} 10 | {:os/name "Linux.*" 11 | :os/arch "aarch64" 12 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conjtest/releases/download/v0.0.5/pod-ilmoraunio-conjtest-0.0.5-linux-arm64.zip" 13 | :artifact/executable "pod-ilmoraunio-conjtest"} 14 | {:os/name "Mac.*" 15 | :os/arch "aarch64" 16 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conjtest/releases/download/v0.0.5/pod-ilmoraunio-conjtest-0.0.5-macos-aarch64.zip" 17 | :artifact/executable "pod-ilmoraunio-conjtest"}]} 18 | -------------------------------------------------------------------------------- /manifests/ilmoraunio/conjtest/0.1.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name ilmoraunio/conjtest 2 | :pod/description "Parse configuration files using Clojure & Go parsers" 3 | :pod/version "0.1.0" 4 | :pod/license "MIT" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conjtest/releases/download/v0.1.0/pod-ilmoraunio-conjtest-0.1.0-linux-amd64.zip" 9 | :artifact/executable "pod-ilmoraunio-conjtest"} 10 | {:os/name "Linux.*" 11 | :os/arch "aarch64" 12 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conjtest/releases/download/v0.1.0/pod-ilmoraunio-conjtest-0.1.0-linux-arm64.zip" 13 | :artifact/executable "pod-ilmoraunio-conjtest"} 14 | {:os/name "Mac.*" 15 | :os/arch "aarch64" 16 | :artifact/url "https://github.com/ilmoraunio/pod-ilmoraunio-conjtest/releases/download/v0.1.0/pod-ilmoraunio-conjtest-0.1.0-macos-aarch64.zip" 17 | :artifact/executable "pod-ilmoraunio-conjtest"}]} 18 | -------------------------------------------------------------------------------- /manifests/justone/brisk/0.2.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name justone/brisk 2 | :pod/description "Freeze and thaw with Nippy at the command line" 3 | :pod/version "0.2.0" 4 | :pod/license "EPL" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/justone/brisk/releases/download/v0.2.0/brisk-macos-amd64.zip" 9 | :artifact/executable "brisk"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/justone/brisk/releases/download/v0.2.0/brisk-linux-amd64.zip" 13 | :artifact/executable "brisk"}]} 14 | -------------------------------------------------------------------------------- /manifests/justone/brisk/0.2.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name justone/brisk 2 | :pod/description "Freeze and thaw with Nippy at the command line" 3 | :pod/version "0.2.1" 4 | :pod/license "EPL" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/justone/brisk/releases/download/v0.2.1/brisk-macos-amd64.zip" 9 | :artifact/executable "brisk"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/justone/brisk/releases/download/v0.2.1/brisk-linux-amd64.zip" 13 | :artifact/executable "brisk"}]} 14 | -------------------------------------------------------------------------------- /manifests/justone/brisk/0.3.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name justone/brisk 2 | :pod/description "Freeze and thaw with Nippy at the command line" 3 | :pod/version "0.3.0" 4 | :pod/license "EPL" 5 | :pod/example "examples/brisk.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/justone/brisk/releases/download/v0.3.0/brisk-macos-amd64.zip" 11 | :artifact/executable "brisk"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/justone/brisk/releases/download/v0.3.0/brisk-linux-amd64.zip" 15 | :artifact/executable "brisk"}]} 16 | -------------------------------------------------------------------------------- /manifests/justone/tabl/0.2.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name justone/tabl 2 | :pod/description "Make tables from data in your terminal" 3 | :pod/version "0.2.0" 4 | :pod/license "EPL" 5 | :pod/example "examples/tabl.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/justone/tabl/releases/download/v0.2.0/tabl-0.2.0-macos-amd64.zip" 11 | :artifact/executable "tabl"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/justone/tabl/releases/download/v0.2.0/tabl-0.2.0-linux-amd64.zip" 15 | :artifact/executable "tabl"}]} 16 | -------------------------------------------------------------------------------- /manifests/justone/tabl/0.3.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name justone/tabl 2 | :pod/description "Make tables from data in your terminal" 3 | :pod/version "0.3.0" 4 | :pod/license "EPL" 5 | :pod/example "examples/tabl.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/justone/tabl/releases/download/v0.3.0/tabl-0.3.0-macos-amd64.zip" 11 | :artifact/executable "tabl"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/justone/tabl/releases/download/v0.3.0/tabl-0.3.0-linux-amd64.zip" 15 | :artifact/executable "tabl"}]} 16 | -------------------------------------------------------------------------------- /manifests/lispyclouds/docker/0.1.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name lispyclouds/docker 2 | :pod/description "A babashka pod for interacting with docker via clj-docker-client" 3 | :pod/version "0.1.1" 4 | :pod/license "LGPL 3.0+" 5 | :pod/example "examples/docker.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url 11 | "https://github.com/lispyclouds/pod-lispyclouds-docker/releases/download/0.1.1/pod-lispyclouds-docker-0.1.1-macos-amd64.zip" 12 | :artifact/executable "pod-lispyclouds-docker"} 13 | {:os/name "Linux.*" 14 | :os/arch "amd64" 15 | :artifact/url 16 | "https://github.com/lispyclouds/pod-lispyclouds-docker/releases/download/0.1.1/pod-lispyclouds-docker-0.1.1-linux-amd64.zip" 17 | :artifact/executable "pod-lispyclouds-docker"} 18 | {:os/name "Windows.*" 19 | :os/arch "amd64" 20 | :artifact/url 21 | "https://github.com/lispyclouds/pod-lispyclouds-docker/releases/download/0.1.1/pod-lispyclouds-docker-0.1.1-windows-amd64.zip" 22 | :artifact/executable "pod-lispyclouds-docker.exe"}]} 23 | -------------------------------------------------------------------------------- /manifests/org.babashka/aws/0.0.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/aws 2 | :pod/description "" 3 | :pod/version "0.0.1" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.1/pod-babashka-aws-0.0.1-linux-amd64.zip" 9 | :artifact/executable "pod-babashka-aws"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.1/pod-babashka-aws-0.0.1-macos-amd64.zip" 13 | :artifact/executable "pod-babashka-aws"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.1/pod-babashka-aws-0.0.1-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-aws"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/aws/0.0.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/aws 2 | :pod/description "" 3 | :pod/version "0.0.2" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.2/pod-babashka-aws-0.0.2-linux-amd64.zip" 9 | :artifact/executable "pod-babashka-aws"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.2/pod-babashka-aws-0.0.2-macos-amd64.zip" 13 | :artifact/executable "pod-babashka-aws"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.2/pod-babashka-aws-0.0.2-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-aws"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/aws/0.0.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/aws 2 | :pod/description "" 3 | :pod/version "0.0.3" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.3/pod-babashka-aws-0.0.3-linux-amd64.zip" 9 | :artifact/executable "pod-babashka-aws"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.3/pod-babashka-aws-0.0.3-macos-amd64.zip" 13 | :artifact/executable "pod-babashka-aws"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.3/pod-babashka-aws-0.0.3-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-aws"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/aws/0.0.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/aws 2 | :pod/description "" 3 | :pod/version "0.0.4" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.4/pod-babashka-aws-0.0.4-linux-amd64.zip" 9 | :artifact/executable "pod-babashka-aws"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.4/pod-babashka-aws-0.0.4-macos-amd64.zip" 13 | :artifact/executable "pod-babashka-aws"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.4/pod-babashka-aws-0.0.4-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-aws"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/aws/0.0.5/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/aws 2 | :pod/description "" 3 | :pod/version "0.0.5" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.5/pod-babashka-aws-0.0.5-linux-amd64.zip" 9 | :artifact/executable "pod-babashka-aws"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.5/pod-babashka-aws-0.0.5-macos-amd64.zip" 13 | :artifact/executable "pod-babashka-aws"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.5/pod-babashka-aws-0.0.5-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-aws"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/aws/0.0.6/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/aws 2 | :pod/description "" 3 | :pod/version "0.0.6" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.6/pod-babashka-aws-0.0.6-linux-amd64-static.zip" 9 | :artifact/executable "pod-babashka-aws"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.6/pod-babashka-aws-0.0.6-macos-amd64.zip" 13 | :artifact/executable "pod-babashka-aws"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.6/pod-babashka-aws-0.0.6-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-aws.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/aws/0.1.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/aws 2 | :pod/description "" 3 | :pod/version "0.1.0" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.1.0/pod-babashka-aws-0.1.0-linux-amd64-static.zip" 9 | :artifact/executable "pod-babashka-aws"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.1.0/pod-babashka-aws-0.1.0-macos-amd64.zip" 13 | :artifact/executable "pod-babashka-aws"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.1.0/pod-babashka-aws-0.1.0-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-aws.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/aws/0.1.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/aws 2 | :pod/description "" 3 | :pod/version "0.1.1" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.1.1/pod-babashka-aws-0.1.1-linux-amd64-static.zip" 9 | :artifact/executable "pod-babashka-aws"} 10 | {:os/name "Linux.*" 11 | :os/arch "aarch64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.1.1/pod-babashka-aws-0.1.1-linux-aarch64-static.zip" 13 | :artifact/executable "pod-babashka-aws"} 14 | {:os/name "Mac.*" 15 | :os/arch "x86_64" 16 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.1.1/pod-babashka-aws-0.1.1-macos-amd64.zip" 17 | :artifact/executable "pod-babashka-aws"} 18 | {:os/name "Windows.*" 19 | :os/arch "amd64" 20 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.1.1/pod-babashka-aws-0.1.1-windows-amd64.zip" 21 | :artifact/executable "pod-babashka-aws.exe"}]} 22 | -------------------------------------------------------------------------------- /manifests/org.babashka/aws/0.1.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/aws 2 | :pod/description "AWS client based on [aws-api](https://github.com/cognitect-labs/aws-api)" 3 | :pod/version "0.1.2" 4 | :pod/license "" 5 | :pod/example "examples/aws.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.1.2/pod-babashka-aws-0.1.2-linux-amd64-static.zip" 11 | :artifact/executable "pod-babashka-aws"} 12 | {:os/name "Linux.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.1.2/pod-babashka-aws-0.1.2-linux-aarch64-static.zip" 15 | :artifact/executable "pod-babashka-aws"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.1.2/pod-babashka-aws-0.1.2-macos-amd64.zip" 19 | :artifact/executable "pod-babashka-aws"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/pod-babashka-aws/releases/download/v0.1.2/pod-babashka-aws-0.1.2-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-aws.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/buddy/0.0.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/buddy 2 | :pod/description "" 3 | :pod/version "0.0.1" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-buddy/releases/download/v0.0.1/pod-babashka-buddy-0.0.1-linux-amd64.zip" 9 | :artifact/executable "pod-babashka-buddy"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-buddy/releases/download/v0.0.1/pod-babashka-buddy-0.0.1-macos-amd64.zip" 13 | :artifact/executable "pod-babashka-buddy"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/pod-babashka-buddy/releases/download/v0.0.1/pod-babashka-buddy-0.0.1-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-buddy.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/buddy/0.1.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/buddy 2 | :pod/description "" 3 | :pod/version "0.1.0" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-buddy/releases/download/v0.1.0/pod-babashka-buddy-0.1.0-linux-amd64.zip" 9 | :artifact/executable "pod-babashka-buddy"} 10 | {:os/name "Linux.*" 11 | :os/arch "aarch64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-buddy/releases/download/v0.1.0/pod-babashka-buddy-0.1.0-linux-aarch64.zip" 13 | :artifact/executable "pod-babashka-buddy"} 14 | {:os/name "Mac.*" 15 | :os/arch "x86_64" 16 | :artifact/url "https://github.com/babashka/pod-babashka-buddy/releases/download/v0.1.0/pod-babashka-buddy-0.1.0-macos-amd64.zip" 17 | :artifact/executable "pod-babashka-buddy"} 18 | {:os/name "Windows.*" 19 | :os/arch "amd64" 20 | :artifact/url "https://github.com/babashka/pod-babashka-buddy/releases/download/v0.1.0/pod-babashka-buddy-0.1.0-windows-amd64.zip" 21 | :artifact/executable "pod-babashka-buddy.exe"}]} 22 | -------------------------------------------------------------------------------- /manifests/org.babashka/buddy/0.2.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/buddy 2 | :pod/description "Cryptographic API provided by buddy" 3 | :pod/version "0.2.0" 4 | :pod/license "" 5 | :pod/example "examples/buddy.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/babashka/pod-babashka-buddy/releases/download/v0.2.0/pod-babashka-buddy-0.2.0-linux-amd64.zip" 11 | :artifact/executable "pod-babashka-buddy"} 12 | {:os/name "Linux.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/babashka/pod-babashka-buddy/releases/download/v0.2.0/pod-babashka-buddy-0.2.0-linux-aarch64.zip" 15 | :artifact/executable "pod-babashka-buddy"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/babashka/pod-babashka-buddy/releases/download/v0.2.0/pod-babashka-buddy-0.2.0-macos-amd64.zip" 19 | :artifact/executable "pod-babashka-buddy"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/pod-babashka-buddy/releases/download/v0.2.0/pod-babashka-buddy-0.2.0-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-buddy.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/duckdb/0.1.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/duckdb 2 | :pod/description "Duckdb access via next.jdbc" 3 | :pod/version "0.1.3" 4 | :pod/license "" 5 | :pod/example "examples/duckdb.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-duckdb-0.1.3-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-duckdb"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-duckdb-0.1.3-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-duckdb"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-duckdb-0.1.3-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-duckdb"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-duckdb-0.1.3-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-duckdb.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/duckdb/0.1.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/duckdb 2 | :pod/description "Duckdb access via next.jdbc" 3 | :pod/version "0.1.4" 4 | :pod/license "" 5 | :pod/example "examples/duckdb.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-duckdb-0.1.4-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-duckdb"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-duckdb-0.1.4-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-duckdb"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-duckdb-0.1.4-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-duckdb"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-duckdb-0.1.4-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-duckdb.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/etaoin/0.0.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/etaoin 2 | :pod/description "" 3 | :pod/version "0.0.1" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-etaoin/releases/download/v0.0.1/pod-babashka-etaoin-0.0.1-linux-amd64.zip" 9 | :artifact/executable "pod-babashka-etaoin"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-etaoin/releases/download/v0.0.1/pod-babashka-etaoin-0.0.1-macos-amd64.zip" 13 | :artifact/executable "pod-babashka-etaoin"}]} 14 | -------------------------------------------------------------------------------- /manifests/org.babashka/etaoin/0.0.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/etaoin 2 | :pod/description "" 3 | :pod/version "0.0.2" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-etaoin/releases/download/v0.0.2/pod-babashka-etaoin-0.0.2-linux-amd64.zip" 9 | :artifact/executable "pod-babashka-etaoin"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-etaoin/releases/download/v0.0.2/pod-babashka-etaoin-0.0.2-macos-amd64.zip" 13 | :artifact/executable "pod-babashka-etaoin"}]} 14 | -------------------------------------------------------------------------------- /manifests/org.babashka/etaoin/0.0.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/etaoin 2 | :pod/description "" 3 | :pod/version "0.0.3" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-etaoin/releases/download/v0.0.3/pod-babashka-etaoin-0.0.3-linux-amd64.zip" 9 | :artifact/executable "pod-babashka-etaoin"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-etaoin/releases/download/v0.0.3/pod-babashka-etaoin-0.0.3-macos-amd64.zip" 13 | :artifact/executable "pod-babashka-etaoin"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/pod-babashka-etaoin/releases/download/v0.0.3/pod-babashka-etaoin-0.0.3-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-etaoin.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/etaoin/0.1.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/etaoin 2 | :pod/description "Etaoin, a pure Clojure webdriver protocol implementation" 3 | :pod/version "0.1.0" 4 | :pod/license "" 5 | :pod/example "examples/etaoin.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/babashka/pod-babashka-etaoin/releases/download/v0.1.0/pod-babashka-etaoin-0.1.0-linux-amd64.zip" 11 | :artifact/executable "pod-babashka-etaoin"} 12 | {:os/name "Linux.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/babashka/pod-babashka-etaoin/releases/download/v0.1.0/pod-babashka-etaoin-0.1.0-linux-aarch64.zip" 15 | :artifact/executable "pod-babashka-etaoin"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/babashka/pod-babashka-etaoin/releases/download/v0.1.0/pod-babashka-etaoin-0.1.0-macos-amd64.zip" 19 | :artifact/executable "pod-babashka-etaoin"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/pod-babashka-etaoin/releases/download/v0.1.0/pod-babashka-etaoin-0.1.0-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-etaoin.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/filewatcher/0.0.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/filewatcher 2 | :pod/description "Filewatcher based on Rust notify" 3 | :pod/version "0.0.1" 4 | :pod/license "" 5 | :pod/example "examples/filewatcher.clj" 6 | :pod/language "rust" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/babashka/pod-babashka-filewatcher/releases/download/v0.0.1/pod-babashka-filewatcher-0.0.1-linux-amd64.zip" 11 | :artifact/executable "pod-babashka-filewatcher"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/babashka/pod-babashka-filewatcher/releases/download/v0.0.1/pod-babashka-filewatcher-0.0.1-macos-amd64.zip" 15 | :artifact/executable "pod-babashka-filewatcher"}]} 16 | -------------------------------------------------------------------------------- /manifests/org.babashka/fswatcher/0.0.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/fswatcher 2 | :pod/description "" 3 | :pod/version "0.0.1" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-fswatcher/releases/download/v0.0.1/pod-babashka-fswatcher-0.0.1-linux-amd64.zip" 9 | :artifact/executable "pod-babashka-fswatcher"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-fswatcher/releases/download/v0.0.1/pod-babashka-fswatcher-0.0.1-macos-amd64.zip" 13 | :artifact/executable "pod-babashka-fswatcher"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/pod-babashka-fswatcher/releases/download/v0.0.1/pod-babashka-fswatcher-0.0.1-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-fswatcher"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/fswatcher/0.0.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/fswatcher 2 | :pod/description "" 3 | :pod/version "0.0.2" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-fswatcher/releases/download/v0.0.2/pod-babashka-fswatcher-0.0.2-linux-amd64.zip" 9 | :artifact/executable "pod-babashka-fswatcher"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-fswatcher/releases/download/v0.0.2/pod-babashka-fswatcher-0.0.2-macos-amd64.zip" 13 | :artifact/executable "pod-babashka-fswatcher"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/pod-babashka-fswatcher/releases/download/v0.0.2/pod-babashka-fswatcher-0.0.2-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-fswatcher.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/fswatcher/0.0.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/fswatcher 2 | :pod/description "Filewatcher based on Go fsnotify" 3 | :pod/version "0.0.3" 4 | :pod/license "" 5 | :pod/example "examples/fswatcher.clj" 6 | :pod/language "go" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/babashka/pod-babashka-fswatcher/releases/download/v0.0.3/pod-babashka-fswatcher-0.0.3-linux-amd64.zip" 11 | :artifact/executable "pod-babashka-fswatcher"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/babashka/pod-babashka-fswatcher/releases/download/v0.0.3/pod-babashka-fswatcher-0.0.3-macos-amd64.zip" 15 | :artifact/executable "pod-babashka-fswatcher"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/babashka/pod-babashka-fswatcher/releases/download/v0.0.3/pod-babashka-fswatcher-0.0.3-windows-amd64.zip" 19 | :artifact/executable "pod-babashka-fswatcher.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/org.babashka/fswatcher/0.0.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/fswatcher 2 | :pod/description "Filewatcher based on Go fsnotify" 3 | :pod/version "0.0.4" 4 | :pod/license "" 5 | :pod/example "examples/fswatcher.clj" 6 | :pod/language "go" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/babashka/pod-babashka-fswatcher/releases/download/v0.0.4/pod-babashka-fswatcher-0.0.4-linux-amd64.zip" 11 | :artifact/executable "pod-babashka-fswatcher"} 12 | {:os/name "Linux.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/babashka/pod-babashka-fswatcher/releases/download/v0.0.4/pod-babashka-fswatcher-0.0.4-linux-aarch64.zip" 15 | :artifact/executable "pod-babashka-fswatcher"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/babashka/pod-babashka-fswatcher/releases/download/v0.0.4/pod-babashka-fswatcher-0.0.4-macos-amd64.zip" 19 | :artifact/executable "pod-babashka-fswatcher"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/pod-babashka-fswatcher/releases/download/v0.0.4/pod-babashka-fswatcher-0.0.4-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-fswatcher.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/go-sqlite3/0.0.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/go-sqlite3 2 | :pod/description "" 3 | :pod/version "0.0.1" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.0.1/pod-babashka-go-sqlite3-0.0.1-linux-amd64.zip" 9 | :artifact/executable "pod-babashka-go-sqlite3"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.0.1/pod-babashka-go-sqlite3-0.0.1-macos-amd64.zip" 13 | :artifact/executable "pod-babashka-go-sqlite3"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.0.1/pod-babashka-go-sqlite3-0.0.1-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-go-sqlite3.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/go-sqlite3/0.1.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/go-sqlite3 2 | :pod/description "Interact with sqlite3" 3 | :pod/version "0.1.0" 4 | :pod/license "" 5 | :pod/example "examples/go_sqlite3.clj" 6 | :pod/language "go" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.1.0/pod-babashka-go-sqlite3-0.1.0-linux-amd64.zip" 11 | :artifact/executable "pod-babashka-go-sqlite3"} 12 | {:os/name "Linux.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.1.0/pod-babashka-go-sqlite3-0.1.0-linux-aarch64.zip" 15 | :artifact/executable "pod-babashka-go-sqlite3"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.1.0/pod-babashka-go-sqlite3-0.1.0-macos-amd64.zip" 19 | :artifact/executable "pod-babashka-go-sqlite3"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.1.0/pod-babashka-go-sqlite3-0.1.0-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-go-sqlite3.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/go-sqlite3/0.1.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/go-sqlite3 2 | :pod/description "Interact with sqlite3" 3 | :pod/version "0.1.2" 4 | :pod/license "" 5 | :pod/example "examples/go_sqlite3.clj" 6 | :pod/language "go" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.1.2/pod-babashka-go-sqlite3-0.1.2-linux-amd64.zip" 11 | :artifact/executable "pod-babashka-go-sqlite3"} 12 | {:os/name "Linux.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.1.2/pod-babashka-go-sqlite3-0.1.2-linux-aarch64.zip" 15 | :artifact/executable "pod-babashka-go-sqlite3"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.1.2/pod-babashka-go-sqlite3-0.1.2-macos-amd64.zip" 19 | :artifact/executable "pod-babashka-go-sqlite3"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.1.2/pod-babashka-go-sqlite3-0.1.2-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-go-sqlite3.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/go-sqlite3/0.2.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/go-sqlite3 2 | :pod/description "Interact with sqlite3" 3 | :pod/version "0.2.3" 4 | :pod/license "" 5 | :pod/example "examples/go_sqlite3.clj" 6 | :pod/language "go" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.3/pod-babashka-go-sqlite3-0.2.3-linux-amd64.zip" 11 | :artifact/executable "pod-babashka-go-sqlite3"} 12 | {:os/name "Linux.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.3/pod-babashka-go-sqlite3-0.2.3-linux-aarch64.zip" 15 | :artifact/executable "pod-babashka-go-sqlite3"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.3/pod-babashka-go-sqlite3-0.2.3-macos-amd64.zip" 19 | :artifact/executable "pod-babashka-go-sqlite3"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.3/pod-babashka-go-sqlite3-0.2.3-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-go-sqlite3.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/go-sqlite3/0.2.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/go-sqlite3 2 | :pod/description "Interact with sqlite3" 3 | :pod/version "0.2.4" 4 | :pod/license "" 5 | :pod/example "examples/go_sqlite3.clj" 6 | :pod/language "go" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.4/pod-babashka-go-sqlite3-0.2.4-linux-amd64.zip" 11 | :artifact/executable "pod-babashka-go-sqlite3"} 12 | {:os/name "Linux.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.4/pod-babashka-go-sqlite3-0.2.4-linux-aarch64.zip" 15 | :artifact/executable "pod-babashka-go-sqlite3"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.4/pod-babashka-go-sqlite3-0.2.4-macos-amd64.zip" 19 | :artifact/executable "pod-babashka-go-sqlite3"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.4/pod-babashka-go-sqlite3-0.2.4-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-go-sqlite3.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/go-sqlite3/0.2.5/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/go-sqlite3 2 | :pod/description "Interact with sqlite3" 3 | :pod/version "0.2.5" 4 | :pod/license "" 5 | :pod/example "examples/go_sqlite3.clj" 6 | :pod/language "go" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.5/pod-babashka-go-sqlite3-0.2.5-linux-amd64.zip" 11 | :artifact/executable "pod-babashka-go-sqlite3"} 12 | {:os/name "Linux.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.5/pod-babashka-go-sqlite3-0.2.5-linux-aarch64.zip" 15 | :artifact/executable "pod-babashka-go-sqlite3"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.5/pod-babashka-go-sqlite3-0.2.5-macos-amd64.zip" 19 | :artifact/executable "pod-babashka-go-sqlite3"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.5/pod-babashka-go-sqlite3-0.2.5-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-go-sqlite3.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/go-sqlite3/0.2.6/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/go-sqlite3 2 | :pod/description "Interact with sqlite3" 3 | :pod/version "0.2.6" 4 | :pod/license "" 5 | :pod/example "examples/go_sqlite3.clj" 6 | :pod/language "go" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.6/pod-babashka-go-sqlite3-0.2.6-linux-amd64.zip" 11 | :artifact/executable "pod-babashka-go-sqlite3"} 12 | {:os/name "Linux.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.6/pod-babashka-go-sqlite3-0.2.6-linux-aarch64.zip" 15 | :artifact/executable "pod-babashka-go-sqlite3"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.6/pod-babashka-go-sqlite3-0.2.6-macos-amd64.zip" 19 | :artifact/executable "pod-babashka-go-sqlite3"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.6/pod-babashka-go-sqlite3-0.2.6-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-go-sqlite3.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/go-sqlite3/0.2.7/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/go-sqlite3 2 | :pod/description "Interact with sqlite3" 3 | :pod/version "0.2.7" 4 | :pod/license "" 5 | :pod/example "examples/go_sqlite3.clj" 6 | :pod/language "go" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.7/pod-babashka-go-sqlite3-0.2.7-linux-amd64.zip" 11 | :artifact/executable "pod-babashka-go-sqlite3"} 12 | {:os/name "Linux.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.7/pod-babashka-go-sqlite3-0.2.7-linux-aarch64.zip" 15 | :artifact/executable "pod-babashka-go-sqlite3"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.7/pod-babashka-go-sqlite3-0.2.7-macos-amd64.zip" 19 | :artifact/executable "pod-babashka-go-sqlite3"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/pod-babashka-go-sqlite3/releases/download/v0.2.7/pod-babashka-go-sqlite3-0.2.7-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-go-sqlite3.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/hsqldb/0.0.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/hsqldb 2 | :pod/description "" 3 | :pod/version "0.0.1" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.1/pod-babashka-hsqldb-0.0.1-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-hsqldb"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.1/pod-babashka-hsqldb-0.0.1-linux-amd64.zip" 13 | :artifact/executable "pod-babashka-hsqldb"} 14 | #_{:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/borkdude/babashka/releases/download/v0.2.2/babashka-0.2.2-windows-amd64.zip" 17 | :artifact/hash "sha256:AAMks+jCr5JbeU4jHwaGxPHG22jyfvB5lzVEaRTpcHE=" 18 | :artifact/executable "bb.exe"}]} 19 | -------------------------------------------------------------------------------- /manifests/org.babashka/hsqldb/0.0.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/hsqldb 2 | :pod/description "" 3 | :pod/version "0.0.3" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.3/pod-babashka-hsqldb-0.0.3-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-hsqldb"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.3/pod-babashka-hsqldb-0.0.3-linux-amd64.zip" 13 | :artifact/executable "pod-babashka-hsqldb"} 14 | #_{:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/borkdude/babashka/releases/download/v0.2.2/babashka-0.2.2-windows-amd64.zip" 17 | :artifact/hash "sha256:AAMks+jCr5JbeU4jHwaGxPHG22jyfvB5lzVEaRTpcHE=" 18 | :artifact/executable "bb.exe"}]} 19 | -------------------------------------------------------------------------------- /manifests/org.babashka/hsqldb/0.0.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/hsqldb 2 | :pod/description "" 3 | :pod/version "0.0.4" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.4/pod-babashka-hsqldb-0.0.4-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-hsqldb"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.4/pod-babashka-hsqldb-0.0.4-linux-amd64.zip" 13 | :artifact/executable "pod-babashka-hsqldb"} 14 | #_{:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/borkdude/babashka/releases/download/v0.2.2/babashka-0.2.2-windows-amd64.zip" 17 | :artifact/hash "sha256:AAMks+jCr5JbeU4jHwaGxPHG22jyfvB5lzVEaRTpcHE=" 18 | :artifact/executable "bb.exe"}]} 19 | -------------------------------------------------------------------------------- /manifests/org.babashka/hsqldb/0.0.5/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/hsqldb 2 | :pod/description "" 3 | :pod/version "0.0.5" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.5/pod-babashka-hsqldb-0.0.5-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-hsqldb"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.5/pod-babashka-hsqldb-0.0.5-linux-amd64.zip" 13 | :artifact/executable "pod-babashka-hsqldb"} 14 | #_{:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/borkdude/babashka/releases/download/v0.2.2/babashka-0.2.2-windows-amd64.zip" 17 | :artifact/hash "sha256:AAMks+jCr5JbeU4jHwaGxPHG22jyfvB5lzVEaRTpcHE=" 18 | :artifact/executable "bb.exe"}]} 19 | -------------------------------------------------------------------------------- /manifests/org.babashka/hsqldb/0.0.6/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/hsqldb 2 | :pod/description "" 3 | :pod/version "0.0.6" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.6/pod-babashka-hsqldb-0.0.6-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-hsqldb"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.6/pod-babashka-hsqldb-0.0.6-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-hsqldb"}]} 14 | -------------------------------------------------------------------------------- /manifests/org.babashka/hsqldb/0.0.7/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/hsqldb 2 | :pod/description "" 3 | :pod/version "0.0.7" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.7/pod-babashka-hsqldb-0.0.7-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-hsqldb"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.7/pod-babashka-hsqldb-0.0.7-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-hsqldb"}]} 14 | -------------------------------------------------------------------------------- /manifests/org.babashka/hsqldb/0.0.8/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/hsqldb 2 | :pod/description "" 3 | :pod/version "0.0.8" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.8/pod-babashka-hsqldb-0.0.8-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-hsqldb"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.8/pod-babashka-hsqldb-0.0.8-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-hsqldb"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.8/pod-babashka-hsqldb-0.0.8-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-hsqldb.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/hsqldb/0.1.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/hsqldb 2 | :pod/description "" 3 | :pod/version "0.1.0" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.0/pod-babashka-hsqldb-0.1.0-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-hsqldb"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.0/pod-babashka-hsqldb-0.1.0-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-hsqldb"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.0/pod-babashka-hsqldb-0.1.0-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-hsqldb.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/hsqldb/0.1.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/hsqldb 2 | :pod/description "HSQLDB access via next.jdbc" 3 | :pod/version "0.1.1" 4 | :pod/license "" 5 | :pod/example "examples/hsqldb.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-hsqldb-0.1.1-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-hsqldb"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-hsqldb-0.1.1-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-hsqldb"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-hsqldb-0.1.1-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-hsqldb"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-hsqldb-0.1.1-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-hsqldb.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/hsqldb/0.1.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/hsqldb 2 | :pod/description "HSQLDB access via next.jdbc" 3 | :pod/version "0.1.2" 4 | :pod/license "" 5 | :pod/example "examples/hsqldb.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-hsqldb-0.1.2-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-hsqldb"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-hsqldb-0.1.2-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-hsqldb"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-hsqldb-0.1.2-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-hsqldb"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-hsqldb-0.1.2-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-hsqldb.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/hsqldb/0.1.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/hsqldb 2 | :pod/description "HSQLDB access via next.jdbc" 3 | :pod/version "0.1.3" 4 | :pod/license "" 5 | :pod/example "examples/hsqldb.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-hsqldb-0.1.3-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-hsqldb"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-hsqldb-0.1.3-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-hsqldb"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-hsqldb-0.1.3-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-hsqldb"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-hsqldb-0.1.3-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-hsqldb.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/hsqldb/0.1.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/hsqldb 2 | :pod/description "HSQLDB access via next.jdbc" 3 | :pod/version "0.1.4" 4 | :pod/license "" 5 | :pod/example "examples/hsqldb.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-hsqldb-0.1.4-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-hsqldb"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-hsqldb-0.1.4-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-hsqldb"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-hsqldb-0.1.4-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-hsqldb"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-hsqldb-0.1.4-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-hsqldb.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/lanterna/0.0.1-SNAPSHOT/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/lanterna 2 | :pod/description "A Clojurey wrapper around the Lanterna terminal output library." 3 | :pod/version "0.0.1-SNAPSHOT" 4 | :pod/license "" 5 | :pod/options {:transport :socket} 6 | :pod/example "examples/lanterna.clj" 7 | :pod/language "clojure" 8 | :pod/artifacts 9 | [{:os/name "Mac.*" 10 | :os/arch "x86_64" 11 | :artifact/url "https://14-303520083-gh.circle-artifacts.com/0/release/pod-babashka-lanterna-0.0.1-SNAPSHOT-macos-amd64.zip" 12 | :artifact/executable "pod-babashka-lanterna"} 13 | {:os/name "Linux.*" 14 | :os/arch "amd64" 15 | :artifact/url "https://13-303520083-gh.circle-artifacts.com/0/release/pod-babashka-lanterna-0.0.1-SNAPSHOT-linux-amd64.zip" 16 | :artifact/executable "pod-babashka-lanterna"} 17 | #_{:os/name "Windows.*" 18 | :os/arch "amd64" 19 | :artifact/url "https://github.com/borkdude/babashka/releases/download/v0.2.2/babashka-0.2.2-windows-amd64.zip" 20 | :artifact/hash "sha256:AAMks+jCr5JbeU4jHwaGxPHG22jyfvB5lzVEaRTpcHE=" 21 | :artifact/executable "bb.exe"}]} 22 | -------------------------------------------------------------------------------- /manifests/org.babashka/lanterna/0.0.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/lanterna 2 | :pod/description "A Clojurey wrapper around the Lanterna terminal output library." 3 | :pod/version "0.0.1" 4 | :pod/license "" 5 | :pod/options {:transport :socket} 6 | :pod/example "examples/lanterna.clj" 7 | :pod/language "clojure" 8 | :pod/artifacts 9 | [{:os/name "Mac.*" 10 | :os/arch "x86_64" 11 | :artifact/url "https://github.com/babashka/pod-babashka-lanterna/releases/download/v0.0.1/pod-babashka-lanterna-0.0.1-macos-amd64.zip" 12 | :artifact/executable "pod-babashka-lanterna"} 13 | {:os/name "Linux.*" 14 | :os/arch "amd64" 15 | :artifact/url "https://github.com/babashka/pod-babashka-lanterna/releases/download/v0.0.1/pod-babashka-lanterna-0.0.1-linux-amd64.zip" 16 | :artifact/executable "pod-babashka-lanterna"} 17 | #_{:os/name "Windows.*" 18 | :os/arch "amd64" 19 | :artifact/url "https://github.com/borkdude/babashka/releases/download/v0.2.2/babashka-0.2.2-windows-amd64.zip" 20 | :artifact/hash "sha256:AAMks+jCr5JbeU4jHwaGxPHG22jyfvB5lzVEaRTpcHE=" 21 | :artifact/executable "bb.exe"}]} 22 | -------------------------------------------------------------------------------- /manifests/org.babashka/mssql/0.0.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mssql 2 | :pod/description "" 3 | :pod/version "0.0.2" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.2/pod-babashka-mssql-0.0.2-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-mssql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.2/pod-babashka-mssql-0.0.2-linux-amd64.zip" 13 | :artifact/executable "pod-babashka-mssql"}]} 14 | -------------------------------------------------------------------------------- /manifests/org.babashka/mssql/0.0.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mssql 2 | :pod/description "" 3 | :pod/version "0.0.4" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.4/pod-babashka-mssql-0.0.4-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-mssql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.4/pod-babashka-mssql-0.0.4-linux-amd64.zip" 13 | :artifact/executable "pod-babashka-mssql"}]} 14 | -------------------------------------------------------------------------------- /manifests/org.babashka/mssql/0.0.5/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mssql 2 | :pod/description "" 3 | :pod/version "0.0.5" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.5/pod-babashka-mssql-0.0.5-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-mssql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.5/pod-babashka-mssql-0.0.5-linux-amd64.zip" 13 | :artifact/executable "pod-babashka-mssql"}]} 14 | -------------------------------------------------------------------------------- /manifests/org.babashka/mssql/0.0.6/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mssql 2 | :pod/description "" 3 | :pod/version "0.0.6" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.6/pod-babashka-mssql-0.0.6-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-mssql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.6/pod-babashka-mssql-0.0.6-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-mssql"}]} 14 | -------------------------------------------------------------------------------- /manifests/org.babashka/mssql/0.0.7/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mssql 2 | :pod/description "" 3 | :pod/version "0.0.7" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.7/pod-babashka-mssql-0.0.7-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-mssql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.7/pod-babashka-mssql-0.0.7-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-mssql"}]} 14 | -------------------------------------------------------------------------------- /manifests/org.babashka/mssql/0.0.8/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mssql 2 | :pod/description "" 3 | :pod/version "0.0.8" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.8/pod-babashka-mssql-0.0.8-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-mssql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.8/pod-babashka-mssql-0.0.8-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-mssql"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.8/pod-babashka-mssql-0.0.8-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-mssql.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/mssql/0.1.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mssql 2 | :pod/description "" 3 | :pod/version "0.1.0" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.0/pod-babashka-mssql-0.1.0-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-mssql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.0/pod-babashka-mssql-0.1.0-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-mssql"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.0/pod-babashka-mssql-0.1.0-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-mssql.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/mssql/0.1.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mssql 2 | :pod/description "MSSQL access via next.jdbc" 3 | :pod/version "0.1.1" 4 | :pod/license "" 5 | :pod/example "examples/hsqldb.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-mssql-0.1.1-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-mssql"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-mssql-0.1.1-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-mssql"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-mssql-0.1.1-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-mssql"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-mssql-0.1.1-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-mssql.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/mssql/0.1.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mssql 2 | :pod/description "MSSQL access via next.jdbc" 3 | :pod/version "0.1.2" 4 | :pod/license "" 5 | :pod/example "examples/hsqldb.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-mssql-0.1.2-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-mssql"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-mssql-0.1.2-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-mssql"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-mssql-0.1.2-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-mssql"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-mssql-0.1.2-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-mssql.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/mssql/0.1.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mssql 2 | :pod/description "MSSQL access via next.jdbc" 3 | :pod/version "0.1.3" 4 | :pod/license "" 5 | :pod/example "examples/hsqldb.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-mssql-0.1.3-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-mssql"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-mssql-0.1.3-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-mssql"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-mssql-0.1.3-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-mssql"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-mssql-0.1.3-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-mssql.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/mssql/0.1.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mssql 2 | :pod/description "MSSQL access via next.jdbc" 3 | :pod/version "0.1.4" 4 | :pod/license "" 5 | :pod/example "examples/hsqldb.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-mssql-0.1.4-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-mssql"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-mssql-0.1.4-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-mssql"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-mssql-0.1.4-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-mssql"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-mssql-0.1.4-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-mssql.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/mysql/0.0.6/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mysql 2 | :pod/description "" 3 | :pod/version "0.0.6" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.6/pod-babashka-mysql-0.0.6-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-mysql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.6/pod-babashka-mysql-0.0.6-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-mysql"}]} 14 | -------------------------------------------------------------------------------- /manifests/org.babashka/mysql/0.0.7/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mysql 2 | :pod/description "" 3 | :pod/version "0.0.7" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.7/pod-babashka-mysql-0.0.7-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-mysql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.7/pod-babashka-mysql-0.0.7-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-mysql"}]} 14 | -------------------------------------------------------------------------------- /manifests/org.babashka/mysql/0.0.8/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mysql 2 | :pod/description "" 3 | :pod/version "0.0.8" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.8/pod-babashka-mysql-0.0.8-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-mysql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.8/pod-babashka-mysql-0.0.8-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-mysql"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.8/pod-babashka-mysql-0.0.8-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-mysql.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/mysql/0.1.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mysql 2 | :pod/description "" 3 | :pod/version "0.1.0" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.0/pod-babashka-mysql-0.1.0-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-mysql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.0/pod-babashka-mysql-0.1.0-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-mysql"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.0/pod-babashka-mysql-0.1.0-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-mysql.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/mysql/0.1.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mysql 2 | :pod/description "MySQL access via next.jdbc" 3 | :pod/version "0.1.1" 4 | :pod/license "" 5 | :pod/example "examples/mysql.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-mysql-0.1.1-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-mysql"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-mysql-0.1.1-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-mysql"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-mysql-0.1.1-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-mysql"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-mysql-0.1.1-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-mysql.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/mysql/0.1.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mysql 2 | :pod/description "MySQL access via next.jdbc" 3 | :pod/version "0.1.2" 4 | :pod/license "" 5 | :pod/example "examples/mysql.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-mysql-0.1.2-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-mysql"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-mysql-0.1.2-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-mysql"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-mysql-0.1.2-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-mysql"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-mysql-0.1.2-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-mysql.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/mysql/0.1.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mysql 2 | :pod/description "MySQL access via next.jdbc" 3 | :pod/version "0.1.3" 4 | :pod/license "" 5 | :pod/example "examples/mysql.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-mysql-0.1.3-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-mysql"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-mysql-0.1.3-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-mysql"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-mysql-0.1.3-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-mysql"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-mysql-0.1.3-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-mysql.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/mysql/0.1.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/mysql 2 | :pod/description "MySQL access via next.jdbc" 3 | :pod/version "0.1.4" 4 | :pod/license "" 5 | :pod/example "examples/mysql.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-mysql-0.1.4-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-mysql"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-mysql-0.1.4-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-mysql"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-mysql-0.1.4-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-mysql"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-mysql-0.1.4-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-mysql.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/oracle/0.0.8/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/oracle 2 | :pod/description "Oracle access via next.jdbc" 3 | :pod/version "0.0.8" 4 | :pod/license "" 5 | :pod/example "" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.8/pod-babashka-oracle-0.0.8-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-oracle"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.8/pod-babashka-oracle-0.0.8-linux-static-amd64.zip" 15 | :artifact/executable "pod-babashka-oracle"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.8/pod-babashka-oracle-0.0.8-windows-amd64.zip" 19 | :artifact/executable "pod-babashka-oracle.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/org.babashka/oracle/0.1.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/oracle 2 | :pod/description "Oracle access via next.jdbc" 3 | :pod/version "0.1.0" 4 | :pod/license "" 5 | :pod/example "" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.0/pod-babashka-oracle-0.1.0-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-oracle"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.0/pod-babashka-oracle-0.1.0-linux-static-amd64.zip" 15 | :artifact/executable "pod-babashka-oracle"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.0/pod-babashka-oracle-0.1.0-windows-amd64.zip" 19 | :artifact/executable "pod-babashka-oracle.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/org.babashka/parcera/0.0.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/parcera 2 | :pod/description "Grammar-based Clojure(script) parser " 3 | :pod/version "0.0.1" 4 | :pod/license "" 5 | :pod/example "examples/parcera.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/babashka/pod-babashka-parcera/releases/download/v0.0.1/pod-babashka-parcera-0.0.1-linux-amd64.zip" 11 | :artifact/executable "pod-babashka-parcera"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/babashka/pod-babashka-parcera/releases/download/v0.0.1/pod-babashka-parcera-0.0.1-macos-amd64.zip" 15 | :artifact/executable "pod-babashka-parcera"}]} 16 | -------------------------------------------------------------------------------- /manifests/org.babashka/postgresql/0.0.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/postgresql 2 | :pod/description "" 3 | :pod/version "0.0.1" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.1/pod-babashka-postgresql-0.0.1-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-postgresql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.1/pod-babashka-postgresql-0.0.1-linux-amd64.zip" 13 | :artifact/executable "pod-babashka-postgresql"} 14 | #_{:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/borkdude/babashka/releases/download/v0.2.2/babashka-0.2.2-windows-amd64.zip" 17 | :artifact/hash "sha256:AAMks+jCr5JbeU4jHwaGxPHG22jyfvB5lzVEaRTpcHE=" 18 | :artifact/executable "bb.exe"}]} 19 | -------------------------------------------------------------------------------- /manifests/org.babashka/postgresql/0.0.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/postgresql 2 | :pod/description "" 3 | :pod/version "0.0.3" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.3/pod-babashka-postgresql-0.0.3-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-postgresql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.3/pod-babashka-postgresql-0.0.3-linux-amd64.zip" 13 | :artifact/executable "pod-babashka-postgresql"} 14 | #_{:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/borkdude/babashka/releases/download/v0.2.2/babashka-0.2.2-windows-amd64.zip" 17 | :artifact/hash "sha256:AAMks+jCr5JbeU4jHwaGxPHG22jyfvB5lzVEaRTpcHE=" 18 | :artifact/executable "bb.exe"}]} 19 | -------------------------------------------------------------------------------- /manifests/org.babashka/postgresql/0.0.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/postgresql 2 | :pod/description "" 3 | :pod/version "0.0.4" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.4/pod-babashka-postgresql-0.0.4-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-postgresql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.4/pod-babashka-postgresql-0.0.4-linux-amd64.zip" 13 | :artifact/executable "pod-babashka-postgresql"} 14 | #_{:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/borkdude/babashka/releases/download/v0.2.2/babashka-0.2.2-windows-amd64.zip" 17 | :artifact/hash "sha256:AAMks+jCr5JbeU4jHwaGxPHG22jyfvB5lzVEaRTpcHE=" 18 | :artifact/executable "bb.exe"}]} 19 | -------------------------------------------------------------------------------- /manifests/org.babashka/postgresql/0.0.5/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/postgresql 2 | :pod/description "" 3 | :pod/version "0.0.5" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.5/pod-babashka-postgresql-0.0.5-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-postgresql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.5/pod-babashka-postgresql-0.0.5-linux-amd64.zip" 13 | :artifact/executable "pod-babashka-postgresql"} 14 | #_{:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/borkdude/babashka/releases/download/v0.2.2/babashka-0.2.2-windows-amd64.zip" 17 | :artifact/hash "sha256:AAMks+jCr5JbeU4jHwaGxPHG22jyfvB5lzVEaRTpcHE=" 18 | :artifact/executable "bb.exe"}]} 19 | -------------------------------------------------------------------------------- /manifests/org.babashka/postgresql/0.0.6/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/postgresql 2 | :pod/description "" 3 | :pod/version "0.0.6" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.6/pod-babashka-postgresql-0.0.6-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-postgresql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.6/pod-babashka-postgresql-0.0.6-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-postgresql"}]} 14 | -------------------------------------------------------------------------------- /manifests/org.babashka/postgresql/0.0.7/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/postgresql 2 | :pod/description "" 3 | :pod/version "0.0.7" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.7/pod-babashka-postgresql-0.0.7-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-postgresql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.7/pod-babashka-postgresql-0.0.7-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-postgresql"}]} 14 | -------------------------------------------------------------------------------- /manifests/org.babashka/postgresql/0.0.8/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/postgresql 2 | :pod/description "" 3 | :pod/version "0.0.8" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.8/pod-babashka-postgresql-0.0.8-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-postgresql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.8/pod-babashka-postgresql-0.0.8-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-postgresql"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.0.8/pod-babashka-postgresql-0.0.8-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-postgresql.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/postgresql/0.1.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/postgresql 2 | :pod/description "" 3 | :pod/version "0.1.0" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.0/pod-babashka-postgresql-0.1.0-macos-amd64.zip" 9 | :artifact/executable "pod-babashka-postgresql"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.0/pod-babashka-postgresql-0.1.0-linux-static-amd64.zip" 13 | :artifact/executable "pod-babashka-postgresql"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.0/pod-babashka-postgresql-0.1.0-windows-amd64.zip" 17 | :artifact/executable "pod-babashka-postgresql.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/postgresql/0.1.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/postgresql 2 | :pod/description "Postgresql access via next.jdbc" 3 | :pod/version "0.1.1" 4 | :pod/license "" 5 | :pod/example "examples/postgresql.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-postgresql-0.1.1-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-postgresql"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-postgresql-0.1.1-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-postgresql"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-postgresql-0.1.1-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-postgresql"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.1/pod-babashka-postgresql-0.1.1-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-postgresql.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/postgresql/0.1.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/postgresql 2 | :pod/description "Postgresql access via next.jdbc" 3 | :pod/version "0.1.2" 4 | :pod/license "" 5 | :pod/example "examples/postgresql.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-postgresql-0.1.2-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-postgresql"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-postgresql-0.1.2-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-postgresql"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-postgresql-0.1.2-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-postgresql"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.2/pod-babashka-postgresql-0.1.2-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-postgresql.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/postgresql/0.1.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/postgresql 2 | :pod/description "Postgresql access via next.jdbc" 3 | :pod/version "0.1.3" 4 | :pod/license "" 5 | :pod/example "examples/postgresql.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-postgresql-0.1.3-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-postgresql"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-postgresql-0.1.3-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-postgresql"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-postgresql-0.1.3-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-postgresql"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.3/pod-babashka-postgresql-0.1.3-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-postgresql.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/postgresql/0.1.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/postgresql 2 | :pod/description "Postgresql access via next.jdbc" 3 | :pod/version "0.1.4" 4 | :pod/license "" 5 | :pod/example "examples/postgresql.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-postgresql-0.1.4-macos-amd64.zip" 11 | :artifact/executable "pod-babashka-postgresql"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-postgresql-0.1.4-linux-amd64.zip" 15 | :artifact/executable "pod-babashka-postgresql"} 16 | {:os/name "Linux.*" 17 | :os/arch "aarch64" 18 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-postgresql-0.1.4-linux-aarch64.zip" 19 | :artifact/executable "pod-babashka-postgresql"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/babashka-sql-pods/releases/download/v0.1.4/pod-babashka-postgresql-0.1.4-windows-amd64.zip" 23 | :artifact/executable "pod-babashka-postgresql.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/org.babashka/tools-deps-native/0.0.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/tools-deps-native 2 | :pod/description "" 3 | :pod/version "0.0.4" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Mac.*" 7 | :os/arch "x86_64" 8 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.0.4/tools-deps-native-0.0.4-macos-amd64.zip" 9 | :artifact/executable "tools-deps-native"} 10 | {:os/name "Linux.*" 11 | :os/arch "amd64" 12 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.0.4/tools-deps-native-0.0.4-linux-amd64.zip" 13 | :artifact/executable "tools-deps-native"} 14 | {:os/name "Windows.*" 15 | :os/arch "amd64" 16 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.0.4/tools-deps-native-0.0.4-windows-amd64.zip" 17 | :artifact/executable "tools-deps-native.exe"}]} 18 | -------------------------------------------------------------------------------- /manifests/org.babashka/tools-deps-native/0.0.5/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/tools-deps-native 2 | :pod/description "Tools deps alpha as a pod " 3 | :pod/version "0.0.5" 4 | :pod/license "" 5 | :pod/example "examples/tools-deps-native.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.0.5/tools-deps-native-0.0.5-macos-amd64.zip" 11 | :artifact/executable "tools-deps-native"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.0.5/tools-deps-native-0.0.5-linux-amd64.zip" 15 | :artifact/executable "tools-deps-native"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.0.5/tools-deps-native-0.0.5-windows-amd64.zip" 19 | :artifact/executable "tools-deps-native.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/org.babashka/tools-deps-native/0.1.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/tools-deps-native 2 | :pod/description "Tools deps alpha as a pod " 3 | :pod/version "0.1.0" 4 | :pod/license "" 5 | :pod/example "examples/tools-deps-native.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.1.0/tools-deps-native-0.1.0-macos-amd64.zip" 11 | :artifact/executable "tools-deps-native"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.1.0/tools-deps-native-0.1.0-linux-amd64.zip" 15 | :artifact/executable "tools-deps-native"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.1.0/tools-deps-native-0.1.0-windows-amd64.zip" 19 | :artifact/executable "tools-deps-native.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/org.babashka/tools-deps-native/0.1.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/tools-deps-native 2 | :pod/description "Tools deps alpha as a pod " 3 | :pod/version "0.1.1" 4 | :pod/license "" 5 | :pod/example "examples/tools-deps-native.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.1.1/tools-deps-native-0.1.1-macos-amd64.zip" 11 | :artifact/executable "tools-deps-native"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.1.1/tools-deps-native-0.1.1-linux-amd64.zip" 15 | :artifact/executable "tools-deps-native"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.1.1/tools-deps-native-0.1.1-windows-amd64.zip" 19 | :artifact/executable "tools-deps-native.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/org.babashka/tools-deps-native/0.1.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name org.babashka/tools-deps-native 2 | :pod/description "Tools deps alpha as a pod " 3 | :pod/version "0.1.2" 4 | :pod/license "" 5 | :pod/example "examples/tools-deps-native.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "aarch64" 10 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.1.2/tools-deps-native-0.1.2-macos-aarch64.tar.gz" 11 | :artifact/executable "tools-deps-native"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.1.2/tools-deps-native-0.1.2-macos-amd64.zip" 15 | :artifact/executable "tools-deps-native"} 16 | {:os/name "Linux.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.1.2/tools-deps-native-0.1.2-linux-amd64.zip" 19 | :artifact/executable "tools-deps-native"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/babashka/tools-deps-native/releases/download/v0.1.2/tools-deps-native-0.1.2-windows-amd64.zip" 23 | :artifact/executable "tools-deps-native.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/retrogradeorbit/bootleg/0.1.9/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name retrogradeorbit/bootleg 2 | :pod/description "Template processing command line tool to help build static websites. Inbuilt support for html, hiccup, hickory, selmer, mustache, markdown, enlive, json, yaml and edn." 3 | :pod/version "0.1.9" 4 | :pod/license "" 5 | :pod/example "examples/bootleg.clj" 6 | :pod/language "clojure" 7 | :pod/artifacts 8 | [{:os/name "Mac.*" 9 | :os/arch "x86_64" 10 | :artifact/url "https://github.com/retrogradeorbit/bootleg/releases/download/v0.1.9/bootleg-0.1.9-macos-amd64.zip" 11 | :artifact/executable "bootleg"} 12 | {:os/name "Linux.*" 13 | :os/arch "amd64" 14 | :artifact/url "https://github.com/retrogradeorbit/bootleg/releases/download/v0.1.9/bootleg-0.1.9-linux-amd64.tgz" 15 | :artifact/executable "bootleg"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/retrogradeorbit/bootleg/releases/download/v0.1.9/bootleg-0.1.9-windows-amd64.zip" 19 | :artifact/executable "bootleg.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/rorokimdim/stash/0.2.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name rorokimdim/stash 2 | :pod/description "" 3 | :pod/version "0.2.0" 4 | :pod/license "" 5 | :pod/artifacts 6 | [{:os/name "Linux.*" 7 | :os/arch "amd64" 8 | :artifact/url "https://github.com/rorokimdim/stash/releases/download/v0.2.0/stash-x86_64-linux.zip" 9 | :artifact/executable "stash-x86_64-linux/stash"} 10 | {:os/name "Mac.*" 11 | :os/arch "x86_64" 12 | :artifact/url "https://github.com/rorokimdim/stash/releases/download/v0.2.0/stash-mac-os.zip" 13 | :artifact/executable "stash-mac-os/stash"}]} 14 | -------------------------------------------------------------------------------- /manifests/rorokimdim/stash/0.3.1/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name rorokimdim/stash 2 | :pod/description "Encrypted text storage" 3 | :pod/version "0.3.1" 4 | :pod/license "" 5 | :pod/example "examples/stash.clj" 6 | :pod/language "haskell" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/rorokimdim/stash/releases/download/v0.3.1/stash-Linux.zip" 11 | :artifact/executable "stash"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/rorokimdim/stash/releases/download/v0.3.1/stash-macOS.zip" 15 | :artifact/executable "stash"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/rorokimdim/stash/releases/download/v0.3.1/stash-Windows.zip" 19 | :artifact/executable "stash.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/rorokimdim/stash/0.3.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name rorokimdim/stash 2 | :pod/description "Encrypted text storage" 3 | :pod/version "0.3.2" 4 | :pod/license "" 5 | :pod/example "examples/stash.clj" 6 | :pod/language "haskell" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/rorokimdim/stash/releases/download/v0.3.2/stash-Linux.zip" 11 | :artifact/executable "stash"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/rorokimdim/stash/releases/download/v0.3.2/stash-macOS.zip" 15 | :artifact/executable "stash"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/rorokimdim/stash/releases/download/v0.3.2/stash-Windows.zip" 19 | :artifact/executable "stash.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/rorokimdim/stash/0.3.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name rorokimdim/stash 2 | :pod/description "Encrypted text storage" 3 | :pod/version "0.3.3" 4 | :pod/license "" 5 | :pod/example "examples/stash.clj" 6 | :pod/language "haskell" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/rorokimdim/stash/releases/download/v0.3.3/stash-Linux.zip" 11 | :artifact/executable "stash"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/rorokimdim/stash/releases/download/v0.3.3/stash-macOS.zip" 15 | :artifact/executable "stash"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/rorokimdim/stash/releases/download/v0.3.3/stash-Windows.zip" 19 | :artifact/executable "stash.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/rorokimdim/stash/0.3.4/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name rorokimdim/stash 2 | :pod/description "Encrypted text storage" 3 | :pod/version "0.3.4" 4 | :pod/license "" 5 | :pod/example "examples/stash.clj" 6 | :pod/language "haskell" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/rorokimdim/stash/releases/download/v0.3.4/stash-ubuntu-latest.zip" 11 | :artifact/executable "stash"} 12 | {:os/name "Mac.*" 13 | :os/arch "aarch64" 14 | :artifact/url "https://github.com/rorokimdim/stash/releases/download/v0.3.4/stash-macOS-latest.zip" 15 | :artifact/executable "stash"} 16 | {:os/name "Mac.*" 17 | :os/arch "x86_64" 18 | :artifact/url "https://github.com/rorokimdim/stash/releases/download/v0.3.4/stash-macOS-13.zip" 19 | :artifact/executable "stash"} 20 | {:os/name "Windows.*" 21 | :os/arch "amd64" 22 | :artifact/url "https://github.com/rorokimdim/stash/releases/download/v0.3.4/stash-windows-latest.zip" 23 | :artifact/executable "stash.exe"}]} 24 | -------------------------------------------------------------------------------- /manifests/tommy-mor/go-valve-query/0.1.0/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name tommy-mor/go-valve-query 2 | :pod/description "query/rcon valve source engine servers" 3 | :pod/version "0.1.1" 4 | :pod/license "" 5 | :pod/language "go" 6 | :pod/artifacts 7 | [{:os/name "Linux.*" 8 | :os/arch "amd64" 9 | :artifact/url "https://github.com/tommy-mor/go-valve-query/releases/download/v0.1.1/go-valve-query_0.1.1_Linux_x86_64.zip" 10 | :artifact/executable "go-valve-query"} 11 | {:os/name "Mac.*" 12 | :os/arch "x86_64" 13 | :artifact/url "https://github.com/tommy-mor/go-valve-query/releases/download/v0.1.1/go-valve-query_0.1.1_Darwin_x86_64.zip" 14 | :artifact/executable "go-valve-query"} 15 | {:os/name "Windows.*" 16 | :os/arch "amd64" 17 | :artifact/url "https://github.com/tommy-mor/go-valve-query/releases/download/v0.1.1/go-valve-query_0.1.1_Windows_x86_64.zip" 18 | :artifact/executable "go-valve-query.exe"}]} 19 | -------------------------------------------------------------------------------- /manifests/tzzh/aws/0.0.3/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name tzzh/aws 2 | :pod/description "Interact with AWS" 3 | :pod/version "0.0.3" 4 | :pod/license "" 5 | :pod/example "examples/tzzh_aws.clj" 6 | :pod/language "go" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/tzzh/pod-tzzh-aws/releases/download/v0.0.3/pod-tzzh-aws_0.0.3_Linux_x86_64.zip" 11 | :artifact/executable "pod-tzzh-aws"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/tzzh/pod-tzzh-aws/releases/download/v0.0.3/pod-tzzh-aws_0.0.3_Darwin_x86_64.zip" 15 | :artifact/executable "pod-tzzh-aws"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/tzzh/pod-tzzh-aws/releases/download/v0.0.3/pod-tzzh-aws_0.0.3_Windows_x86_64.zip" 19 | :artifact/executable "pod-tzzh-aws.exe"}]} 20 | -------------------------------------------------------------------------------- /manifests/tzzh/mail/0.0.2/manifest.edn: -------------------------------------------------------------------------------- 1 | {:pod/name tzzh/mail 2 | :pod/description "Send emails" 3 | :pod/version "0.0.2" 4 | :pod/license "" 5 | :pod/example "examples/tzzh_mail.clj" 6 | :pod/language "go" 7 | :pod/artifacts 8 | [{:os/name "Linux.*" 9 | :os/arch "amd64" 10 | :artifact/url "https://github.com/tzzh/pod-tzzh-mail/releases/download/v0.0.2/pod-tzzh-mail_0.0.2_Linux_x86_64.zip" 11 | :artifact/executable "pod-tzzh-mail"} 12 | {:os/name "Mac.*" 13 | :os/arch "x86_64" 14 | :artifact/url "https://github.com/tzzh/pod-tzzh-mail/releases/download/v0.0.2/pod-tzzh-mail_0.0.2_Darwin_x86_64.zip" 15 | :artifact/executable "pod-tzzh-mail"} 16 | {:os/name "Windows.*" 17 | :os/arch "amd64" 18 | :artifact/url "https://github.com/tzzh/pod-tzzh-mail/releases/download/v0.0.2/pod-tzzh-mail_0.0.2_Windows_x86_64.zip" 19 | :artifact/executable "pod-tzzh-mail.exe"}]} 20 | -------------------------------------------------------------------------------- /script/upgrade-sql-pods.clj: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bb 2 | 3 | (ns upgrade-sql-pods 4 | (:require [clojure.string :as str])) 5 | 6 | (load-file "script/upgrade-manifest.clj") 7 | (require 'upgrade-manifest) 8 | 9 | (def version (first *command-line-args*)) 10 | (assert version "No version") 11 | 12 | (def latest (upgrade-manifest/latest-version "org.babashka/hsqldb")) 13 | 14 | (upgrade-manifest/upgrade-manifest "org.babashka/hsqldb" version) 15 | (upgrade-manifest/upgrade-manifest "org.babashka/postgresql" version) 16 | (upgrade-manifest/upgrade-manifest "org.babashka/mssql" version) 17 | (upgrade-manifest/upgrade-manifest "org.babashka/mysql" version) 18 | (upgrade-manifest/upgrade-manifest "org.babashka/duckdb" version) 19 | 20 | (doseq [example ["examples/hsqldb.clj" "examples/mysql.clj" "examples/postgresql.clj"]] 21 | (spit example 22 | (str/replace (slurp example) 23 | latest version))) 24 | --------------------------------------------------------------------------------