Re: debian package creation: how to specify a version range in Depends: field

2009-08-03 Thread Tiago Saboga
Please don't cc me; I am subscribed. Unfortunately I don't have the time to do tests here, but I am sure you are quite close to your answer. Good luck, Tiago. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.d

Re: debian package creation: how to specify a version range in Depends: field

2009-08-03 Thread Peter Van Biesen
Hi, FYI , I have a 10.0 and a 11.5 version of B in my repository. I added a Conflicts line with B (>= 11.0), the error: The following packages have unmet dependencies: A: Depends: B (>= 10.0) but it is not going to be installed I tried the Depends: B (>= 10.0), B (<< 11.0), the error: The fo

Re: debian package creation: how to specify a version range in Depends: field

2009-07-31 Thread Sven Joachim
On 2009-07-31 16:34 +0200, Peter Van Biesen wrote: > Hi, > > I'm building a package that depends on another package but this package needs > to be a in a specific version range. > > My package "A" depends on package "B" but the version of B needs to be 10.* . > > I tried > Depends: B(>>10.0), B(

Re: debian package creation: how to specify a version range in Depends: field

2009-07-31 Thread Tiago Saboga
What about Depends: B(>=10.0) Conflicts: B(>=11.0) ? Cheers, Tiago. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

debian package creation: how to specify a version range in Depends: field

2009-07-31 Thread Peter Van Biesen
Hi, I'm building a package that depends on another package but this package needs to be a in a specific version range. My package "A" depends on package "B" but the version of B needs to be 10.* . I tried Depends: B(>>10.0), B(<<11.0) Depends: B(>>10.0,<<11.0) Depends: B(=10.*) Both just inst