this repo has no description
0
fork

Configure Feed

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

Merge pull request #19796 from jrochel/opam-publish-ocsipersist-ocsipersist-dbm-ocsipersist-lib-ocsipersist-pgsql-ocsipersist-sqlite.1.0

5 packages from jrochel/ocsipersist at 1.0

authored by

Kate and committed by
GitHub
2b4b9092 c1047f7a

+132
+28
packages/ocsipersist-dbm/ocsipersist-dbm.1.0/opam
··· 1 + opam-version: "2.0" 2 + authors: "The Ocsigen team <dev@ocsigen.org>" 3 + maintainer: "Jan Rochel <jan@besport.com>" 4 + license: "LGPL-2.1-only with OCaml-LGPL-linking-exception" 5 + synopsis: "Persistent key/value storage (for Ocsigen) using DBM" 6 + description: "This library provides a DBM backend for the unified key/value storage frontend as defined in the ocsipersist package. Ocsipersist is used pervasively in Eliom/Ocsigen to handle sessions and references. It can be used as an extension for ocsigenserver or as a library." 7 + 8 + homepage: "https://github.com/ocsigen/ocsipersist" 9 + bug-reports: "https://github.com/ocsigen/ocsipersist/issues" 10 + dev-repo: "git+https://github.com/ocsigen/ocsipersist.git" 11 + build: [ "dune" "build" "-p" name "-j" jobs ] 12 + 13 + depends: [ 14 + "dune" {>= "2.9"} 15 + "lwt" {>= "4.2.0"} 16 + "lwt_log" 17 + "xml-light" 18 + "ocsigenserver" {>= "3.0.0"} 19 + "ocsipersist-lib" 20 + "dbm" 21 + ] 22 + url { 23 + src: "https://github.com/jrochel/ocsipersist/archive/1.0.tar.gz" 24 + checksum: [ 25 + "md5=d07413b0b7802b88e7bf7d52d141a48d" 26 + "sha512=4205748b93a9f74e8e2c1f7ddfc4a2a90f054abadeda5a0cf020eeabbf4d429d57b9b8a9d1a5b6fed733f48e414bbcdef88893e829c3925c755abea7fe5b67a0" 27 + ] 28 + }
+23
packages/ocsipersist-lib/ocsipersist-lib.1.0/opam
··· 1 + opam-version: "2.0" 2 + authors: "The Ocsigen team <dev@ocsigen.org>" 3 + maintainer: "Jan Rochel <jan@besport.com>" 4 + license: "LGPL-2.1-only with OCaml-LGPL-linking-exception" 5 + synopsis: "Persistent key/value storage (for Ocsigen) - support library" 6 + description: "This library defines signatures and auxiliary tools for defining backends for the Ocsipersist frontent. Ocsipersist is used pervasively in Eliom/Ocsigen to handle sessions and references. It can be used as an extension for ocsigenserver or as a library. Implementations of the following backends currently exist: DBM database, PostgreSQL, SQLite." 7 + 8 + homepage: "https://github.com/ocsigen/ocsipersist" 9 + bug-reports: "https://github.com/ocsigen/ocsipersist/issues" 10 + dev-repo: "git+https://github.com/ocsigen/ocsipersist.git" 11 + build: [ "dune" "build" "-p" name "-j" jobs ] 12 + 13 + depends: [ 14 + "dune" {>= "2.9"} 15 + "lwt" {>= "4.2.0"} 16 + ] 17 + url { 18 + src: "https://github.com/jrochel/ocsipersist/archive/1.0.tar.gz" 19 + checksum: [ 20 + "md5=d07413b0b7802b88e7bf7d52d141a48d" 21 + "sha512=4205748b93a9f74e8e2c1f7ddfc4a2a90f054abadeda5a0cf020eeabbf4d429d57b9b8a9d1a5b6fed733f48e414bbcdef88893e829c3925c755abea7fe5b67a0" 22 + ] 23 + }
+28
packages/ocsipersist-pgsql/ocsipersist-pgsql.1.0/opam
··· 1 + opam-version: "2.0" 2 + authors: "The Ocsigen team <dev@ocsigen.org>" 3 + maintainer: "Jan Rochel <jan@besport.com>" 4 + license: "LGPL-2.1-only with OCaml-LGPL-linking-exception" 5 + synopsis: "Persistent key/value storage (for Ocsigen) using PostgreSQL" 6 + description: "This library provides a PostgreSQL backend for the unified key/value storage frontend as defined in the ocsipersist package. Ocsipersist is used pervasively in Eliom/Ocsigen to handle sessions and references. It can be used as an extension for ocsigenserver or as a library." 7 + 8 + homepage: "https://github.com/ocsigen/ocsipersist" 9 + bug-reports: "https://github.com/ocsigen/ocsipersist/issues" 10 + dev-repo: "git+https://github.com/ocsigen/ocsipersist.git" 11 + build: [ "dune" "build" "-p" name "-j" jobs ] 12 + 13 + depends: [ 14 + "dune" {>= "2.9"} 15 + "lwt" {>= "4.2.0"} 16 + "lwt_log" 17 + "xml-light" 18 + "ocsigenserver" {>= "3.0.0"} 19 + "ocsipersist-lib" 20 + "pgocaml" 21 + ] 22 + url { 23 + src: "https://github.com/jrochel/ocsipersist/archive/1.0.tar.gz" 24 + checksum: [ 25 + "md5=d07413b0b7802b88e7bf7d52d141a48d" 26 + "sha512=4205748b93a9f74e8e2c1f7ddfc4a2a90f054abadeda5a0cf020eeabbf4d429d57b9b8a9d1a5b6fed733f48e414bbcdef88893e829c3925c755abea7fe5b67a0" 27 + ] 28 + }
+28
packages/ocsipersist-sqlite/ocsipersist-sqlite.1.0/opam
··· 1 + opam-version: "2.0" 2 + authors: "The Ocsigen team <dev@ocsigen.org>" 3 + maintainer: "Jan Rochel <jan@besport.com>" 4 + license: "LGPL-2.1-only with OCaml-LGPL-linking-exception" 5 + synopsis: "Persistent key/value storage (for Ocsigen) using SQLite" 6 + description: "This library provides a SQLite backend for the unified key/value storage frontend as defined in the ocsipersist package. Ocsipersist is used pervasively in Eliom/Ocsigen to handle sessions and references. It can be used as an extension for ocsigenserver or as a library." 7 + 8 + homepage: "https://github.com/ocsigen/ocsipersist" 9 + bug-reports: "https://github.com/ocsigen/ocsipersist/issues" 10 + dev-repo: "git+https://github.com/ocsigen/ocsipersist.git" 11 + build: [ "dune" "build" "-p" name "-j" jobs ] 12 + 13 + depends: [ 14 + "dune" {>= "2.9"} 15 + "lwt" {>= "4.2.0"} 16 + "lwt_log" 17 + "xml-light" 18 + "ocsigenserver" {>= "3.0.0"} 19 + "ocsipersist-lib" 20 + "sqlite3" 21 + ] 22 + url { 23 + src: "https://github.com/jrochel/ocsipersist/archive/1.0.tar.gz" 24 + checksum: [ 25 + "md5=d07413b0b7802b88e7bf7d52d141a48d" 26 + "sha512=4205748b93a9f74e8e2c1f7ddfc4a2a90f054abadeda5a0cf020eeabbf4d429d57b9b8a9d1a5b6fed733f48e414bbcdef88893e829c3925c755abea7fe5b67a0" 27 + ] 28 + }
+25
packages/ocsipersist/ocsipersist.1.0/opam
··· 1 + opam-version: "2.0" 2 + authors: "The Ocsigen team <dev@ocsigen.org>" 3 + maintainer: "Jan Rochel <jan@besport.com>" 4 + license: "LGPL-2.1-only with OCaml-LGPL-linking-exception" 5 + synopsis: "Persistent key/value storage (for Ocsigen) using multiple backends" 6 + description: "This is an virtual library defining a unified frontend for a number of key/value storage implementations. Ocsipersist is used pervasively in Eliom/Ocsigen to handle sessions and references. It can be used as an extension for ocsigenserver or as a library. Implementations of the following backends currently exist: DBM database, PostgreSQL, SQLite." 7 + 8 + homepage: "https://github.com/ocsigen/ocsipersist" 9 + bug-reports: "https://github.com/ocsigen/ocsipersist/issues" 10 + dev-repo: "git+https://github.com/ocsigen/ocsipersist.git" 11 + build: [ "dune" "build" "-p" name "-j" jobs ] 12 + 13 + depends: [ 14 + "dune" {>= "2.9"} 15 + "lwt" {>= "4.2.0"} 16 + "ocsigenserver" {>= "3.0.0"} 17 + "ocsipersist-lib" 18 + ] 19 + url { 20 + src: "https://github.com/jrochel/ocsipersist/archive/1.0.tar.gz" 21 + checksum: [ 22 + "md5=d07413b0b7802b88e7bf7d52d141a48d" 23 + "sha512=4205748b93a9f74e8e2c1f7ddfc4a2a90f054abadeda5a0cf020eeabbf4d429d57b9b8a9d1a5b6fed733f48e414bbcdef88893e829c3925c755abea7fe5b67a0" 24 + ] 25 + }