caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] Async_core and core in conflict
@ 2015-08-28 18:46 Kenneth Adam Miller
  2015-08-28 19:18 ` Anil Madhavapeddy
  0 siblings, 1 reply; 4+ messages in thread
From: Kenneth Adam Miller @ 2015-08-28 18:46 UTC (permalink / raw)
  To: caml users

[-- Attachment #1: Type: text/plain, Size: 1828 bytes --]

So, in opam I've hit this problem - I need a package, but it's requirements
conflict with another package that I have. Just typing opam install
the_package will fail with "No package matches the_package". the_package is
async_core

I used the cudf solver farm remotely after hunting  the bug, but as far as
this goes, I don't know what to do because I don't have control over those
packages or their versions. I can maybe update my version of core (if the
upgrade is compatible with a package that I have that uses it).

Any advise for the error below?


The following dependencies couldn't be met:
  - async_core -> core = 109.35.00 | core = 109.36.00 | core = 109.37.00 |
core = 109.38.00 | core = 109.40.00 | core = 109.41.00 | core = 109.42.00 |
core = 109.45.00 | core = 109.47.00 | core = 109.53.01 | core =
<unavailable version> | core < 109.31.00 | core <= 109.31.00 -> pa_test =
109.53.00 -> core_kernel < 111.25.00
  - async_core -> core = 109.35.00 | core = 109.36.00 | core = 109.37.00 |
core = 109.38.00 | core = 109.40.00 | core = 109.41.00 | core = 109.42.00 |
core = 109.45.00 | core = 109.47.00 | core = 109.53.01 | core =
<unavailable version> | core < 109.31.00 | core <= 109.31.00 ->
custom_printf = <unavailable version>
  - async_core -> pa_test = 109.53.00 | pa_test <= 109.53.02 -> core_kernel
= <unavailable version> | core_kernel < 111.25.00
  - async_core -> zero = 109.21.00 -> core < 109.31.00
Your request can't be satisfied:
  - No package matches core.<unavailable version>.
  - No package matches core_kernel.<unavailable version>.
  - No package matches custom_printf.<unavailable version>.
  - core<109.31.00 is not available because it requires OCaml >= 4.00.1 & <
4.01.0.
  - core_kernel<111.25.00 is not available because it requires OCaml >=
4.01.0 & < 4.02.1.

No solution found, exiting

[-- Attachment #2: Type: text/html, Size: 2234 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Caml-list] Async_core and core in conflict
  2015-08-28 18:46 [Caml-list] Async_core and core in conflict Kenneth Adam Miller
@ 2015-08-28 19:18 ` Anil Madhavapeddy
  2015-09-01  2:42   ` Yaron Minsky
  0 siblings, 1 reply; 4+ messages in thread
From: Anil Madhavapeddy @ 2015-08-28 19:18 UTC (permalink / raw)
  To: Kenneth Adam Miller; +Cc: caml users

On 28 Aug 2015, at 19:46, Kenneth Adam Miller <kennethadammiller@gmail.com> wrote:
> 
> So, in opam I've hit this problem - I need a package, but it's requirements conflict with another package that I have. Just typing opam install the_package will fail with "No package matches the_package". the_package is async_core
> 
> I used the cudf solver farm remotely after hunting  the bug, but as far as this goes, I don't know what to do because I don't have control over those packages or their versions. I can maybe update my version of core (if the upgrade is compatible with a package that I have that uses it).
> 
> Any advise for the error below?

Async_core was deprecated some time ago, and is no longer part of the Core suit as far as I know.  Have you tried simply uninstalling Async_core to remove the dependency, and then install the package you want?

-anil


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Caml-list] Async_core and core in conflict
  2015-08-28 19:18 ` Anil Madhavapeddy
@ 2015-09-01  2:42   ` Yaron Minsky
  2015-09-01  2:59     ` Kenneth Adam Miller
  0 siblings, 1 reply; 4+ messages in thread
From: Yaron Minsky @ 2015-09-01  2:42 UTC (permalink / raw)
  To: Anil Madhavapeddy; +Cc: Kenneth Adam Miller, caml users

In particular, Async_kernel has supplanted Async_core.

y

On Fri, Aug 28, 2015 at 3:18 PM, Anil Madhavapeddy <anil@recoil.org> wrote:
> On 28 Aug 2015, at 19:46, Kenneth Adam Miller <kennethadammiller@gmail.com> wrote:
>>
>> So, in opam I've hit this problem - I need a package, but it's requirements conflict with another package that I have. Just typing opam install the_package will fail with "No package matches the_package". the_package is async_core
>>
>> I used the cudf solver farm remotely after hunting  the bug, but as far as this goes, I don't know what to do because I don't have control over those packages or their versions. I can maybe update my version of core (if the upgrade is compatible with a package that I have that uses it).
>>
>> Any advise for the error below?
>
> Async_core was deprecated some time ago, and is no longer part of the Core suit as far as I know.  Have you tried simply uninstalling Async_core to remove the dependency, and then install the package you want?
>
> -anil
>
>
> --
> Caml-list mailing list.  Subscription management and archives:
> https://sympa.inria.fr/sympa/arc/caml-list
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Caml-list] Async_core and core in conflict
  2015-09-01  2:42   ` Yaron Minsky
@ 2015-09-01  2:59     ` Kenneth Adam Miller
  0 siblings, 0 replies; 4+ messages in thread
From: Kenneth Adam Miller @ 2015-09-01  2:59 UTC (permalink / raw)
  To: Yaron Minsky; +Cc: Anil Madhavapeddy, caml users

[-- Attachment #1: Type: text/plain, Size: 1473 bytes --]

Oh, I forgot to tell everybody that I got it working by doing what anil
said.

On Mon, Aug 31, 2015 at 10:42 PM, Yaron Minsky <yminsky@janestreet.com>
wrote:

> In particular, Async_kernel has supplanted Async_core.
>
> y
>
> On Fri, Aug 28, 2015 at 3:18 PM, Anil Madhavapeddy <anil@recoil.org>
> wrote:
> > On 28 Aug 2015, at 19:46, Kenneth Adam Miller <
> kennethadammiller@gmail.com> wrote:
> >>
> >> So, in opam I've hit this problem - I need a package, but it's
> requirements conflict with another package that I have. Just typing opam
> install the_package will fail with "No package matches the_package".
> the_package is async_core
> >>
> >> I used the cudf solver farm remotely after hunting  the bug, but as far
> as this goes, I don't know what to do because I don't have control over
> those packages or their versions. I can maybe update my version of core (if
> the upgrade is compatible with a package that I have that uses it).
> >>
> >> Any advise for the error below?
> >
> > Async_core was deprecated some time ago, and is no longer part of the
> Core suit as far as I know.  Have you tried simply uninstalling Async_core
> to remove the dependency, and then install the package you want?
> >
> > -anil
> >
> >
> > --
> > Caml-list mailing list.  Subscription management and archives:
> > https://sympa.inria.fr/sympa/arc/caml-list
> > Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> > Bug reports: http://caml.inria.fr/bin/caml-bugs
>

[-- Attachment #2: Type: text/html, Size: 2391 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-09-01  2:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-28 18:46 [Caml-list] Async_core and core in conflict Kenneth Adam Miller
2015-08-28 19:18 ` Anil Madhavapeddy
2015-09-01  2:42   ` Yaron Minsky
2015-09-01  2:59     ` Kenneth Adam Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).