this repo has no description
1opam-version: "2.0" 2maintainer: "Issuu" 3authors: "Google" 4license: "BSD-3-Clause" 5homepage: "https://developers.google.com/protocol-buffers/" 6bug-reports: "https://github.com/protocolbuffers/protobuf/issues" 7dev-repo: "git+https://github.com/protocolbuffers/protobuf.git" 8build: [ "protoc" "--version" ] 9 10depexts: [ 11 ["libprotobuf-dev" "protobuf-compiler"] {os-family = "debian"} 12 ["libprotobuf-dev" "protobuf-compiler"] {os-family = "ubuntu"} 13 ["libprotobuf-devel" "protobuf-compiler"] {os-distribution = "mageia"} 14 ["protobuf-devel" "protobuf-compiler"] {os-distribution = "centos"} 15 ["protobuf-devel" "protobuf-compiler"] {os-distribution = "fedora"} 16 ["protobuf-devel" "protobuf-compiler"] {os-distribution = "rhel"} 17 ["protobuf" "protobuf-dev"] {os-family = "alpine"} 18 ["protobuf"] {os-family = "arch"} 19 ["protobuf-devel"] {os-family = "suse" | os-family = "opensuse"} 20 ["protobuf"] {os = "freebsd"} 21 ["protobuf"] {os = "macos" & os-distribution = "homebrew"} 22] 23 24x-ci-accept-failures: [ 25 "oraclelinux-7" # Package not available by default 26 "oraclelinux-8" # Package not available by default 27 "oraclelinux-9" # Package not available by default 28] 29 30available: (os-distribution != "ubuntu" | os-version >= "18.04") & (os-distribution != "centos" | os-version >= "8") 31synopsis: "Virtual package to install protoc compiler" 32description: 33 "This package will install the protoc compiler if invoked via `opam depext`" 34flags: conf