this repo has no description
0
fork

Configure Feed

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

Added conf-postgresql.2 and associated mingw configuration packages

+88
+19
packages/conf-mingw-w64-postgresql-i686/conf-mingw-w64-postgresql-i686.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "postgresql for i686 mingw-w64 (32-bit x86)" 3 + description: "Ensures the i686 version of postgresql for the mingw-w64 project is available" 4 + maintainer: "David Allsopp <david@tarides.com>" 5 + authors: "Markus Mottl" 6 + license: "blessing" 7 + homepage: "http://www.postgresql.org" 8 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 9 + flags: conf 10 + available: os = "win32" 11 + build: ["pkgconf" "--personality=i686-w64-mingw32" "postgresql"] 12 + depends: [ 13 + "conf-pkg-config" {build} 14 + "conf-mingw-w64-gcc-i686" {build} 15 + ] 16 + depexts: [ 17 + ["mingw64-i686-postgresql"] {os = "win32" & os-distribution = "cygwin"} 18 + ["mingw-w64-i686-postgresql"] {os = "win32" & os-distribution = "msys2"} 19 + ]
+19
packages/conf-mingw-w64-postgresql-x86_64/conf-mingw-w64-postgresql-x86_64.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "postgresql for x86_64 mingw-w64 (64-bit x86_64)" 3 + description: "Ensures the x86_64 version of postgresql for the mingw-w64 project is available" 4 + maintainer: "David Allsopp <david@tarides.com>" 5 + authors: "Markus Mottl" 6 + license: "blessing" 7 + homepage: "http://www.postgresql.org" 8 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 9 + flags: conf 10 + available: os = "win32" 11 + build: ["pkgconf" "--personality=x86_64-w64-mingw32" "postgresql"] 12 + depends: [ 13 + "conf-pkg-config" {build} 14 + "conf-mingw-w64-gcc-x86_64" {build} 15 + ] 16 + depexts: [ 17 + ["mingw64-x86_64-postgresql"] {os = "win32" & os-distribution = "cygwin"} 18 + ["mingw-w64-x86_64-postgresql"] {os = "win32" & os-distribution = "msys2"} 19 + ]
+50
packages/conf-postgresql/conf-postgresql.2/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Markus Mottl <markus.mottl@gmail.com>" 3 + authors: "Markus Mottl <markus.mottl@gmail.com>" 4 + homepage: "https://www.postgresql.org" 5 + dev-repo: "git+https://github.com/mmottl/postgresql-ocaml.git" 6 + license: "blessing" 7 + build: [ 8 + ["pkgconf" {os = "win32" & os-distribution != "cygwinports"} 9 + "--personality=i686-w64-mingw32" {os = "win32" & os-distribution != "cygwinports" & host-arch-x86_32:installed} 10 + "--personality=x86_64-w64-mingw32" {os = "win32" & os-distribution != "cygwinports" & host-arch-x86_64:installed} 11 + "pkg-config" {os != "win32" | os-distribution != "cygwin"} 12 + "libpq"] 13 + ] 14 + depends: [ 15 + "conf-pkg-config" {build} 16 + ("host-arch-x86_32" {os = "win32" & os-distribution != "cygwinports"} & "conf-mingw-w64-postgresql-i686" {os = "win32" & os-distribution != "cygwinports"} | 17 + "host-arch-x86_64" {os = "win32" & os-distribution != "cygwinports"} & "conf-mingw-w64-postgresql-x86_64" {os = "win32" & os-distribution != "cygwinports"}) 18 + ] 19 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 20 + 21 + depexts: [ 22 + ["libpq-dev"] {os-family = "debian"} 23 + ["libpq-dev"] {os-family = "ubuntu"} 24 + ["libpq-devel"] {os-distribution = "centos" & os-version >= "8"} 25 + ["libpq-devel"] {os-distribution = "rhel" & os-version >= "8"} 26 + ["libpq-devel"] {os-distribution = "ol" & os-version >= "8"} 27 + ["libpq-devel"] {os-distribution = "fedora" & os-version >= "30"} 28 + ["postgresql15-client"] {os-distribution = "freebsd" & os-version >= "13"} 29 + ["postgresql96-client"] {os-distribution = "freebsd" & os-version < "13"} 30 + ["postgresql96-client"] {os-distribution = "openbsd"} 31 + ["postgresql-devel"] {os-distribution = "centos" & os-version < "8"} 32 + ["postgresql-devel"] {os-distribution = "rhel" & os-version < "8"} 33 + ["postgresql-devel"] {os-distribution = "ol" & os-version < "8"} 34 + ["postgresql-devel"] {os-distribution = "fedora" & os-version < "30"} 35 + ["postgresql-server-devel"] {os-family = "suse" | os-family = "opensuse"} 36 + ["postgresql-dev"] {os-distribution = "alpine" & os-version < "3.15"} 37 + ["postgresql14-dev"] {os-distribution = "alpine" & os-version >= "3.15"} 38 + ["postgresql"] {os = "win32" & os-distribution = "cygwinports"} 39 + ["postgresql-libs"] {os-family = "arch"} 40 + ["libpq"] {os = "macos" & os-distribution = "homebrew"} 41 + ["postgresql96"] {os = "macos" & os-distribution = "macports"} 42 + ["postgresql"] {os-distribution = "nixos"} 43 + ] 44 + post-messages: [ 45 + """If this package failed with "Command not found: pg_config", you might need to call "brew link postgresql@15" and retry to install this package afterwards.""" {failure & os = "macos" & os-distribution = "homebrew"} 46 + ] 47 + synopsis: "Virtual package relying on a PostgreSQL system installation" 48 + description: 49 + "This package can only install if PostgreSQL is installed on the system." 50 + flags: conf