We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need zeromq-devel, contained in epel-release, not the standard CentOS7 repository. I tried editing https://github.com/ocaml/opam-repository/blob/master/packages/conf-zmq/conf-zmq.0.1/opam like
epel-release
opam-version: "1" maintainer: "francois.berenger@inria.fr" homepage: "http://zeromq.org/" license: "LGPL" build: [ ["cc" "test.c" "-I/usr/local/include" "-L/usr/local/lib" "-lzmq"] ] depexts: [ [["debian"] ["libzmq3-dev"]] [["ubuntu"] ["libzmq3-dev"]] [["osx" "homebrew"] ["zeromq"]] [["alpine"] ["zeromq-dev"]] [["centos"] ["epel-release" "zeromq-devel"]] # added epel-release ]
However, zeromq-devel cannot be installed because epel-release must be installed before zeromq-devel, i.e.,
$ yum install epel-release zeromq-devel
says that zeromq-devel is not found, while
$ yum install epel-release $ yum install zeromq-devel
succeeds to install zeromq-devel.
I hope that depext supports such order-dependent installation. Some packages in https://github.com/ocaml/opam-repository require epel-release.
The text was updated successfully, but these errors were encountered:
Add support for the epel-release yum-package
92b3e16
See issues ocaml-opam#70 and ocaml-opam#76.
2930031
No branches or pull requests
I need zeromq-devel, contained in
epel-release
, not the standard CentOS7 repository. I tried editing https://github.com/ocaml/opam-repository/blob/master/packages/conf-zmq/conf-zmq.0.1/opam likeHowever, zeromq-devel cannot be installed because
epel-release
must be installed before zeromq-devel, i.e.,$ yum install epel-release zeromq-devel
says that zeromq-devel is not found, while
succeeds to install zeromq-devel.
I hope that depext supports such order-dependent installation. Some packages in https://github.com/ocaml/opam-repository require epel-release.
The text was updated successfully, but these errors were encountered: