this repo has no description
0
fork

Configure Feed

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

Merge pull request #26097 from yawaramin/release-fun-sql-v0.2.3

[new release] fun-sql (3 packages) (0.2.3)

authored by

Raphaël Proust and committed by
GitHub
e06bf2b8 3cf30a1f

+120
+40
packages/fun-postgresql/fun-postgresql.0.2.3/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "PostgreSQL query support" 3 + description: "Use this package for running PostgreSQL queries." 4 + maintainer: ["Yawar Amin <yawar.amin@gmail.com>"] 5 + authors: ["Yawar Amin <yawar.amin@gmail.com>"] 6 + license: "GPL-3.0-or-later" 7 + tags: ["org:yawaramin"] 8 + homepage: "https://github.com/yawaramin/fun-sql" 9 + doc: "https://yawaramin.github.io/fun-sql/fun-postgresql/Fun_postgresql/" 10 + bug-reports: "https://github.com/yawaramin/fun-sql/issues" 11 + depends: [ 12 + "dune" {>= "2.7"} 13 + "fun-sql" {= version} 14 + "postgresql" {>= "5.0.0" & < "6.0.0"} 15 + "odoc" {with-doc} 16 + ] 17 + build: [ 18 + ["dune" "subst"] {dev} 19 + [ 20 + "dune" 21 + "build" 22 + "-p" 23 + name 24 + "-j" 25 + jobs 26 + "@install" 27 + "@runtest" {with-test} 28 + "@doc" {with-doc} 29 + ] 30 + ] 31 + dev-repo: "git+https://github.com/yawaramin/fun-sql.git" 32 + url { 33 + src: 34 + "https://github.com/yawaramin/fun-sql/releases/download/v0.2.3/fun-sql-0.2.3.tbz" 35 + checksum: [ 36 + "sha256=9403585482c0327877d89a0640f7f8163ae708d2b8031d4d39e067d744bb7528" 37 + "sha512=cc1871892ce7900c8b88413e0d3f1c692521d098b4ac3dd42dc3018c6321fe3f9bf2a3ef999397974eee75f3441737d5241b958e117fb4461bc69efc2bd8a876" 38 + ] 39 + } 40 + x-commit-hash: "4b7e05759f12e4b4ae919b93f417700e0f000359"
+40
packages/fun-sql/fun-sql.0.2.3/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Shared code for SQL libraries" 3 + description: 4 + "Shared code for SQL packages, use fun-sqlite or fun-postgresql directly depending on which database you are using." 5 + maintainer: ["Yawar Amin <yawar.amin@gmail.com>"] 6 + authors: ["Yawar Amin <yawar.amin@gmail.com>"] 7 + license: "GPL-3.0-or-later" 8 + tags: ["org:yawaramin"] 9 + homepage: "https://github.com/yawaramin/fun-sql" 10 + doc: "https://yawaramin.github.io/fun-sql/fun-sql/Fun_sql/" 11 + bug-reports: "https://github.com/yawaramin/fun-sql/issues" 12 + depends: [ 13 + "dune" {>= "2.7"} 14 + "ocaml" {>= "4.14.0"} 15 + "odoc" {with-doc} 16 + ] 17 + build: [ 18 + ["dune" "subst"] {dev} 19 + [ 20 + "dune" 21 + "build" 22 + "-p" 23 + name 24 + "-j" 25 + jobs 26 + "@install" 27 + "@runtest" {with-test} 28 + "@doc" {with-doc} 29 + ] 30 + ] 31 + dev-repo: "git+https://github.com/yawaramin/fun-sql.git" 32 + url { 33 + src: 34 + "https://github.com/yawaramin/fun-sql/releases/download/v0.2.3/fun-sql-0.2.3.tbz" 35 + checksum: [ 36 + "sha256=9403585482c0327877d89a0640f7f8163ae708d2b8031d4d39e067d744bb7528" 37 + "sha512=cc1871892ce7900c8b88413e0d3f1c692521d098b4ac3dd42dc3018c6321fe3f9bf2a3ef999397974eee75f3441737d5241b958e117fb4461bc69efc2bd8a876" 38 + ] 39 + } 40 + x-commit-hash: "4b7e05759f12e4b4ae919b93f417700e0f000359"
+40
packages/fun-sqlite/fun-sqlite.0.2.3/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "SQLite query support" 3 + description: "Use this package for running SQLite queries." 4 + maintainer: ["Yawar Amin <yawar.amin@gmail.com>"] 5 + authors: ["Yawar Amin <yawar.amin@gmail.com>"] 6 + license: "GPL-3.0-or-later" 7 + tags: ["org:yawaramin"] 8 + homepage: "https://github.com/yawaramin/fun-sql" 9 + doc: "https://yawaramin.github.io/fun-sql/fun-sqlite/Fun_sqlite/" 10 + bug-reports: "https://github.com/yawaramin/fun-sql/issues" 11 + depends: [ 12 + "dune" {>= "2.7"} 13 + "fun-sql" {= version} 14 + "sqlite3" {>= "5.1.0" & < "6.0.0"} 15 + "odoc" {with-doc} 16 + ] 17 + build: [ 18 + ["dune" "subst"] {dev} 19 + [ 20 + "dune" 21 + "build" 22 + "-p" 23 + name 24 + "-j" 25 + jobs 26 + "@install" 27 + "@runtest" {with-test} 28 + "@doc" {with-doc} 29 + ] 30 + ] 31 + dev-repo: "git+https://github.com/yawaramin/fun-sql.git" 32 + url { 33 + src: 34 + "https://github.com/yawaramin/fun-sql/releases/download/v0.2.3/fun-sql-0.2.3.tbz" 35 + checksum: [ 36 + "sha256=9403585482c0327877d89a0640f7f8163ae708d2b8031d4d39e067d744bb7528" 37 + "sha512=cc1871892ce7900c8b88413e0d3f1c692521d098b4ac3dd42dc3018c6321fe3f9bf2a3ef999397974eee75f3441737d5241b958e117fb4461bc69efc2bd8a876" 38 + ] 39 + } 40 + x-commit-hash: "4b7e05759f12e4b4ae919b93f417700e0f000359"