Re: Best/recommended way to search if a Java library or class is packaged

2015-12-04 Thread Sergio Fernández
I always use the following bash-based solution: dpkg -l | grep java | awk '{ print $2 }' | xargs -I {} dpkg -L {} | grep jar | xargs -I {} grep "javax.servlet.Servlet" {} But I'm pretty sure there is much better tolling for such tasks... On Thu, Dec 3, 2015 at 9:19 PM, Emmanuel Bourg wrote:

Re: Best/recommended way to search if a Java library or class is packaged

2015-12-04 Thread Mikołaj Izdebski
Hi Emmanuel, On 12/3/15, Emmanuel Bourg wrote: > Le 3/12/2015 19:16, Miguel Landaeta a écrit : > >> Since jar-content.txt Torsten's file is not being updated since a long >> time, I was wondering what's the current recommended way to quickly >> check if a Java library is packaged in Debian. > > M

Re: Best/recommended way to search if a Java library or class is packaged

2015-12-04 Thread Paul Wise
On Fri, Dec 4, 2015 at 2:16 AM, Miguel Landaeta wrote: > Since jar-content.txt Torsten's file is not being updated since a long > time, I was wondering what's the current recommended way to quickly > check if a Java library is packaged in Debian. The future of this sort of thing (mapping between

Re: Best/recommended way to search if a Java library or class is packaged

2015-12-04 Thread Miguel Landaeta
Thanks to everyone for the helpful answers. -- Miguel Landaeta, nomadium at debian.org secure email with PGP 0x6E608B637D8967E9 available at http://miguel.cc/key. "Faith means not wanting to know what is true." -- Nietzsche signature.asc Description: Digital signature

FastQC preconditions should be there but it does not build (Perhaps some final problems to update fastqc? (Was: libsis-jhdf5-java_14.12.1-1_amd64.changes ACCEPTED into unstable, unstable))

2015-12-04 Thread Andreas Tille
Hi Debian Java folks, I had no success with this question on Debian Med list. The new version of FastQC needed two new dependencies which arrived in unstable but the build does not work. The packaging is at git://git.debian.org/git/debian-med/fastqc.git Any help is welcome Andreas. --

Re: FastQC preconditions should be there but it does not build (Perhaps some final problems to update fastqc? (Was: libsis-jhdf5-java_14.12.1-1_amd64.changes ACCEPTED into unstable, unstable))

2015-12-04 Thread Emmanuel Bourg
Le 4/12/2015 18:28, Andreas Tille a écrit : > Any help is welcome Hi Andreas, I pushed a fix for the compilation issues to the repository. The build.xml file is still missing a target building the jar after compiling the classes. Emmanuel Bourg