Re: Detecting dependencies

2011-09-18 Thread Lawrence Stewart
On 09/17/11 18:09, b. f. wrote: On 09/15/11 07:06, chukharev at mail.ru wrote: Hi, There have been a discussion about finding interdependencies of ports. I have a relatively simple Python script for that. There is a pr ports/160007 to add its early version. Unfortunately, I missed a reply to

Re: Detecting dependencies

2011-09-17 Thread b. f.
On 09/15/11 07:06, chukharev at mail.ru wrote: Hi, There have been a discussion about finding interdependencies of ports. I have a relatively simple Python script for that. There is a pr ports/160007 to add its early version. Unfortunately, I missed a reply to it, so there is an

Re: Detecting dependencies

2011-09-16 Thread Oliver Fromme
Jason Hellenthal wrote: On Thu, Sep 15, 2011 at 12:06:03AM +0300, chukha...@mail.ru wrote: There have been a discussion about finding interdependencies of ports. I have a relatively simple Python script for that. There is a pr ports/160007 to add its early version. Unfortunately, I

Re: Detecting dependencies

2011-09-16 Thread Michel Talon
Oliver Fromme wrote: That's what a script of mine does (it's also in Python): http://www.secnetix.de/olli/scripts/pkg_dep_view Waooh! this is very cute. While we are in python i have something which draws graphviz dependency graphs for ports here

Re: Detecting dependencies

2011-09-16 Thread Oliver Fromme
Michel Talon wrote: Oliver Fromme wrote: That's what a script of mine does (it's also in Python): http://www.secnetix.de/olli/scripts/pkg_dep_view Waooh! this is very cute. While we are in python i have something which draws graphviz dependency graphs for ports here

Re: Detecting dependencies

2011-09-16 Thread Lawrence Stewart
On 09/15/11 07:06, chukha...@mail.ru wrote: Hi, There have been a discussion about finding interdependencies of ports. I have a relatively simple Python script for that. There is a pr ports/160007 to add its early version. Unfortunately, I missed a reply to it, so there is an issue which I have

Re: Detecting dependencies

2011-09-15 Thread Shaun Amott
/ If there will be interest, scanning packages interdependencies could also be added. This looks like a useful tool. However, as Doug pointed out in another thread (Detecting dependencies), its method is inadequate when it comes to finding dependencies for shared library bumps. Specifically

Detecting dependencies

2011-09-14 Thread Doug Barton
Howdy, A couple of recent threads have mentioned clever ways to search for dependencies. One problem ... there aren't any. :) The *only* safe way to make sure you have found all possible references to a dependency is to grep the entire ports tree (grep -r category/portname /usr/ports/*). There

Detecting dependencies

2011-09-14 Thread chukharev
Hi, There have been a discussion about finding interdependencies of ports. I have a relatively simple Python script for that. There is a pr ports/160007 to add its early version. Unfortunately, I missed a reply to it, so there is an issue which I have not yet addressed... Since that time, I