Bug#670353: Some (minimal?) Java help needed (Was: Bug#670353: ITP: fastqc -- quality control for next generation sequencing data)

2012-11-08 Thread Olivier Sallou

Le 11/8/12 8:40 AM, Olivier Sallou a écrit :
 Le 11/7/12 3:29 PM, Andreas Tille a écrit :
 Hi,

 I stumbled upon this one and did some work on it in

Vcs-Svn: 
 http://svn.debian.org/debian-med/trunk/packages/babraham/fastqc/trunk/

 It is close to lintian clean now but there is some CLASSPATH issue
 which is probably very easy for Java experts:

 $ fastqc 
 Exception in thread main java.lang.NoClassDefFoundError: 
 uk/ac/babraham/FastQC/FastQCApplication
 Caused by: java.lang.ClassNotFoundException: 
 uk.ac.babraham.FastQC.FastQCApplication
 at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:321)
 at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:266)
 Could not find the main class: uk.ac.babraham.FastQC.FastQCApplication. 
 Program will exit.

 or when trying manually what the wrapper tries to do

 $ java -jar /usr/share/fastqc/fastqc.jar 
 uk.ac.babraham.FastQC.FastQCApplication
 Skipping 'uk.ac.babraham.FastQC.FastQCApplication' which didn't exist, or 
 couldn't be read
By the way, should not fastqc.jar be placed in /usr/share/java with
version symlink ?
 I will have a look but:
 It seems that the file with  structure
 uk/ac/babraham/FastQC/FastQCApplication.class is missing in the jar file
 /usr/share/fastqc/fastqc.jar (you can check content with jar -tf
 /usr/share/fastqc/fastqc.jar)

 My suspicion is that simply specifying the Main-Class in debian/manifest
 is not sufficient.  Something might be wrong with the Debian home brewn
 Makefile as quilt patch and ant+built.xml might do a better job to build
 the Jar functionally.  Any hint for doing this properly?
 Main-Class in manifest gives the default class to call when using java
 -jar myjarfile.
 If the jar needs other jar files, they need to be specified in Manifest
 too or at command line in the classpath parameter.

 Olivier
 Note to obtain the source as easy as possible:  Just use the uscan from


 http://anonscm.debian.org/gitweb/?p=users/tille/devscripts.git;a=blob;f=scripts/uscan.pl

 to call

uscan.pl --verbose --force-download --repack-compression xz

 which gives you a properly stripped source tarball.

 Kind regards and thanks for any help

Andreas.

 On Wed, Apr 25, 2012 at 01:08:54AM +0200, Steffen Moeller wrote:
 Package: wnpp
 Severity: wishlist
 Owner: Steffen Moeller steffen_moel...@gmx.de

 * Package name: fastqc
 * URL : 
 http://www.bioinformatics.babraham.ac.uk/projects/fastqc/
 * License : GPL-3
   Programming Lang: Java
   Description : quality control for next generation sequencing data

 The Debian Med source code repository has some functional (not lintian 
 clean) package in
 trunk/packages/babraham/fastqc.


-- 
Olivier Sallou
IRISA / University of Rennes 1
Campus de Beaulieu, 35000 RENNES - FRANCE
Tel: 02.99.84.71.95

gpg key id: 4096R/326D8438  (keyring.debian.org)
Key fingerprint = 5FB4 6F83 D3B9 5204 6335  D26D 78DC 68DB 326D 8438


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/509b66e5.2060...@irisa.fr



Bug#670353: Some (minimal?) Java help needed (Was: Bug#670353: ITP: fastqc -- quality control for next generation sequencing data)

2012-11-08 Thread Olivier Sallou

Le 11/8/12 8:40 AM, Olivier Sallou a écrit :
 Le 11/7/12 3:29 PM, Andreas Tille a écrit :
 Hi,

 I stumbled upon this one and did some work on it in

Vcs-Svn: 
 http://svn.debian.org/debian-med/trunk/packages/babraham/fastqc/trunk/

 It is close to lintian clean now but there is some CLASSPATH issue
 which is probably very easy for Java experts:

 $ fastqc 
 Exception in thread main java.lang.NoClassDefFoundError: 
 uk/ac/babraham/FastQC/FastQCApplication
 Caused by: java.lang.ClassNotFoundException: 
 uk.ac.babraham.FastQC.FastQCApplication
 at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:321)
 at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:266)
 Could not find the main class: uk.ac.babraham.FastQC.FastQCApplication. 
 Program will exit.

 or when trying manually what the wrapper tries to do

 $ java -jar /usr/share/fastqc/fastqc.jar 
 uk.ac.babraham.FastQC.FastQCApplication
 Skipping 'uk.ac.babraham.FastQC.FastQCApplication' which didn't exist, or 
 couldn't be read
 I will have a look but:
 It seems that the file with  structure
 uk/ac/babraham/FastQC/FastQCApplication.class is missing in the jar file
 /usr/share/fastqc/fastqc.jar (you can check content with jar -tf
 /usr/share/fastqc/fastqc.jar)
To get it work, you should fix the /usr/bin/fastq line 183 on exec to get:

exec $java_bin,@java_args,-jar,/usr/share/fastqc/fastqc.jar, @files;

instead of

exec $java_bin,@java_args, uk.ac.babraham.FastQC.FastQCApplication,
@files;

and same thing for system call.



 My suspicion is that simply specifying the Main-Class in debian/manifest
 is not sufficient.  Something might be wrong with the Debian home brewn
 Makefile as quilt patch and ant+built.xml might do a better job to build
 the Jar functionally.  Any hint for doing this properly?
 Main-Class in manifest gives the default class to call when using java
 -jar myjarfile.
 If the jar needs other jar files, they need to be specified in Manifest
 too or at command line in the classpath parameter.

 Olivier
 Note to obtain the source as easy as possible:  Just use the uscan from


 http://anonscm.debian.org/gitweb/?p=users/tille/devscripts.git;a=blob;f=scripts/uscan.pl

 to call

uscan.pl --verbose --force-download --repack-compression xz

 which gives you a properly stripped source tarball.

 Kind regards and thanks for any help

Andreas.

 On Wed, Apr 25, 2012 at 01:08:54AM +0200, Steffen Moeller wrote:
 Package: wnpp
 Severity: wishlist
 Owner: Steffen Moeller steffen_moel...@gmx.de

 * Package name: fastqc
 * URL : 
 http://www.bioinformatics.babraham.ac.uk/projects/fastqc/
 * License : GPL-3
   Programming Lang: Java
   Description : quality control for next generation sequencing data

 The Debian Med source code repository has some functional (not lintian 
 clean) package in
 trunk/packages/babraham/fastqc.


-- 
Olivier Sallou
IRISA / University of Rennes 1
Campus de Beaulieu, 35000 RENNES - FRANCE
Tel: 02.99.84.71.95

gpg key id: 4096R/326D8438  (keyring.debian.org)
Key fingerprint = 5FB4 6F83 D3B9 5204 6335  D26D 78DC 68DB 326D 8438

Index: fastqc-0.10.1+dfsg.orig/fastqc
===
--- fastqc-0.10.1+dfsg.orig.orig/fastqc 2012-11-08 08:55:51.0 +0100
+++ fastqc-0.10.1+dfsg.orig/fastqc  2012-11-08 09:24:41.0 +0100
@@ -177,10 +177,10 @@
 
 
 if ($java_bin ne 'java') {
-   system $java_bin,@java_args, uk.ac.babraham.FastQC.FastQCApplication, 
@files;
+   system $java_bin,@java_args,-jar,/usr/share/fastqc/fastqc.jar, 
@files;
 }
 else {
-   exec $java_bin,@java_args, uk.ac.babraham.FastQC.FastQCApplication, 
@files;
+   exec $java_bin,@java_args,-jar,/usr/share/fastqc/fastqc.jar, @files;
 }
 
 __DATA__
@@ -273,4 +273,4 @@
 Any bugs in fastqc should be reported either to 
simon.andr...@babraham.ac.uk
 or in www.bioinformatics.babraham.ac.uk/bugzilla/

-
\ No newline at end of file
+  


Bug#654750: marked as done (ITA: kbibtex -- BibTeX editor for KDE)

2012-11-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Nov 2012 10:32:30 +
with message-id e1twpps-00063h...@franck.debian.org
and subject line Bug#654750: fixed in kbibtex 0.4-3
has caused the Debian Bug report #654750,
regarding ITA: kbibtex -- BibTeX editor for KDE
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
654750: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=654750
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: wnpp
Severity: normal

I intend to orphan the kbibtex package. I do not have enough time to
take care of this package properly. It is in pretty good shape (3.0,
quilt, 1 open bug, minimal patches), popcon 1800. The packaging is in
Git (pkg-exppsy on git.debian.org).

The primary task right now would be to investigate some spurious FTBFS
and get this latest upstream release to migrate into testing.

I'm willing to sponsor any non-DD taking over this package.


The package description is:
 An application to manage bibliography databases in the BibTeX format. KBibTeX
 can be used as a standalone program, but can also be embedded into other KDE
 applications (e.g. as bibliography editor into Kile).
 .
 KBibTeX can query online ressources (e.g. Google scholar) via customizable
 search URLs. It is also able to import complete datasets from NCBI Pubmed.
 It also supports tagging references with keywords and manages references to
 local files.
 .
 BibTeX files can be exported into HTML, XML, PDF, PS and RTF format using a
 number of citation styles.


---End Message---
---BeginMessage---
Source: kbibtex
Source-Version: 0.4-3

We believe that the bug you reported is fixed in the latest version of
kbibtex, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 654...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bastien Roucariès roucaries.bastien+deb...@gmail.com (supplier of updated 
kbibtex package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 05 Nov 2012 11:46:07 +0100
Source: kbibtex
Binary: kbibtex
Architecture: source amd64
Version: 0.4-3
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Bastien Roucariès roucaries.bastien+deb...@gmail.com
Description: 
 kbibtex- BibTeX editor for KDE
Closes: 644024 654750 687353
Changes: 
 kbibtex (0.4-3) unstable; urgency=low
 .
   * Adopt kbibtex (Closes: #654750)
   * Bug fix: New kbibtex destroys localfile information (Closes: #644024).
   * Bug fix: Spelling error in control file (ressources  resources) in
   control file, thanks to Clayton Casciato (Closes: #687353).
Checksums-Sha1: 
 f15325f7cd4304e7a36f2d84e14b4117bc8e6f04 2062 kbibtex_0.4-3.dsc
 d56dd75d1fa35d2740569b196b58494ccc30d795 6089 kbibtex_0.4-3.debian.tar.gz
 05501afdf6338eae2d548a00660c072fa7f692f2 579064 kbibtex_0.4-3_amd64.deb
Checksums-Sha256: 
 a5f33a7309af3dc4c08a6b8c89eda3431a1216febd2d933c95dbb7b2991c785b 2062 
kbibtex_0.4-3.dsc
 4a7742e2e8d4388d8f98771afb07f374f3cc8e32ac53c03b0e8c32c6abb195b3 6089 
kbibtex_0.4-3.debian.tar.gz
 5575cae1f75826e2cc7147e9d39af83a7786d1159a50d5e51109a9a4e2fb683d 579064 
kbibtex_0.4-3_amd64.deb
Files: 
 fa60a03d8fe4457a4f3d8150b3389000 2062 kde optional kbibtex_0.4-3.dsc
 02a1adc107106e7472a0a554b7029088 6089 kde optional kbibtex_0.4-3.debian.tar.gz
 6a358072d558f27cacb291367c751877 579064 kde optional kbibtex_0.4-3_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJQm4UrAAoJEJOUU0jg3ChA4OcP/iyzIrqmPCxAeRaghq27IGf3
QSkm9msQnGzr18kVjAkKDB66OgBOtIboYMHYQq6JyouyUX2m/+EBr8EeRvdW19BS
yrqDa6Pi98pUiWWIce3O+uJuFQzJASCdkxnDZup1oUnLjd3k8wAGL17vTiI7OSkN
So+Mzm/m07xllIa7EHBVSDe4HqKo21Rz8Fllgl9qV568TznhPQdi5ySfzdD8GBg2
pZ/mMmkVCJk+lMEIPkiTKMeCuPLmBOkKStJqnQ6ur2EZQZKATuCkOpFC9uMtBK5/
XZRv38ugUTmpx/yyjVQycxkrSVOj/o/Ww1ARAYJLaUaFXs8HXwCJQFZl6UZ3/KV0
3FC6feHMmi+JZPrOzZe5Z3kxaG07OFpTYmIurQI1RMatQekf0QJT05LU5NUgBFLa
R6KrdhFo006vaAphhpZqS+n1nBLUMBgCkqykWvbdFzYrBpZQija+ug9Xjmo0S5aX
WIOhoQRhP0666VXgSzZ/+T8ERDRTbl2iGH3LcRKYAAVPNE/VeW3A/rR9re/52dUt
ciJ+14XIi2QxzkQfahvFJbLShWVdEcD9GvUH8OpO6jqIJJmOaeADzVkNE5yPtXEp

Bug#602034: libjpeg-turbo

2012-11-08 Thread John Paul Adrian Glaubitz
Hi,

just a short heads-up to motivate the packaging of libjpeg-turbo.

The Steam for Linux package [1] has a dependency on libjpeg8-turbo,
hence the unavailability of libjpeg-turbo currently means Debian users
cannot install Steam (besides the fact that libc6 is too old, too).

Cheers,

Adrian

 [1] http://media.steampowered.com/client/installer/steam.deb


signature.asc
Description: Digital signature


Bug#670353: FastQC read for testing (Was: Some (minimal?) Java help needed)

2012-11-08 Thread Andreas Tille
On Thu, Nov 08, 2012 at 01:22:52PM +0100, Olivier Sallou wrote:
 Looking at the code, I would expect to get something like:

 
 new HelpDialog(application,new 
 File(URLDecoder.decode(/usr/share/fastqc/Help,UTF-8)));
 or
 new HelpDialog(application,new File(/usr/share/fastqc/Help);
 
 Olivier 

I can confirm that this works (see SVN).

Any volunteer to test the lintian clean package with some real data
before I upload?  Steffen?

Kind regards

  Andreas.

-- 
http://fam-tille.de


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121108130059.gl17...@an3as.eu



Bug#692568: RFP: wkhtmltopdf -- Convert HTML to PDF using the WebKit rendering engine and Qt

2012-11-08 Thread Alexander Wirt
Raphaël Hertzog schrieb am Wednesday, den 07. November 2012:

 Package: wnpp
 Severity: wishlist
 
 * Package name: wkhtmltopdf
   Version : 0.11.0~rc1
   Upstream Author : Jan Habermann, Christian Sciberras and Jakob Truelsen
 * URL : http://code.google.com/p/wkhtmltopdf/
 * License : LGPL-3+
   Programming Lang: C++
   Description : Convert HTML to PDF using the WebKit rendering engine and 
 Qt
 
 Simple command line tool to convert HTML to PDF with WebKit. Publican
 (which I am maintaining) can make use of this tool to generate PDF files.
 But I would really prefer if someone else could maintain this tool.
mh?
 wkhtmltopdf | 0.9.9-1| squeeze | source, amd64, armel, i386, ia64, 
kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, sparc
 wkhtmltopdf | 0.9.9-4+b1 | sid | hurd-i386
 wkhtmltopdf | 0.9.9-4| sid | source, amd64, armel, armhf, i386, ia64, 
kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, s390x, sparc
 wkhtmltopdf | 0.9.9-4| wheezy  | source, amd64, armel, armhf, i386, ia64, 
kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, s390, s390x, sparc

Alex
 


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121108131940.gg2...@hawking.credativ.lan



Bug#629531: ITP: racktables - Datacenter asset management system

2012-11-08 Thread Bas Roos

Hi David,

Do you still intend to package racktables for Debian? I, for one, use 
this software and would love to see it in Debian.


If you don't have the time, or don't want to package it anymore, please 
let me know. I'd be more than happy to package it :)


Cheers!

Bas Roos


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/509bc3fb.9080...@gatlan.nl



Bug#692578: RFA: shinken

2012-11-08 Thread Sylvestre Ledru
On 07/11/2012 18:19, Bart Martens wrote:
 Hi Sylvestre,
 
 If the package is no longer maintained, shouldn't this bug be an O-bug instead
 of an RFA-bug ?  I don't object against removing it, but maybe Vincent and
 Raphael in cc are interested to keep it in Debian.
Probably but I didn't want to be mean with Arthur ;)

Sylvestre


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/509b7e3b.4040...@debian.org



Processed: Retitle

2012-11-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 retitle 500106 RFP: bigsdb - Bacterial Isolate Genome Sequence Database
Bug #500106 [wnpp] RFP: agdbnet -- antigen sequence database software for 
web-based bacterial typing
Changed Bug title to 'RFP: bigsdb - Bacterial Isolate Genome Sequence Database' 
from 'RFP: agdbnet -- antigen sequence database software for web-based 
bacterial typing'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
500106: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=500106
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.13523894647228.transcr...@bugs.debian.org



Bug#692617: marked as done (ITA: aaphoto)

2012-11-08 Thread Debian Bug Tracking System
Your message dated Thu, 08 Nov 2012 16:20:19 +
with message-id e1twuq3-0006hh...@quantz.debian.org
and subject line closing ITA: aaphoto
has caused the Debian Bug report #692617,
regarding ITA: aaphoto
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
692617: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=692617
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: wnpp
Severity: normal
---End Message---
---BeginMessage---
Please retitle bug 673231 from O to ITA and set yourself as the owner.---End Message---


Bug#692774: ITP: throttle -- bandwidth limiting pipe

2012-11-08 Thread Martin Steghöfer

Package: wnpp
Severity: wishlist
Owner: Martin Steghöfer mar...@steghoefer.de


* Package name: throttle
  Version : 1.2
  Upstream Author : James Klicman ja...@klicman.org
* URL : http://klicman.org/throttle/
* License : GPL
  Programming Lang: C
  Description : bandwidth limiting pipe

throttle copies the standard input to the standard output while limiting 
bandwidth to the specified maximum. This is useful to limit resources 
(bandwidth, CPU time,...) when using it together with programs that 
don't support throttling natively.



--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/509bef1a.2070...@steghoefer.de



Bug#692778: ITP: libtins -- C++ library for manipulating raw network packets

2012-11-08 Thread Raúl Benencia
Package: wnpp
Severity: wishlist

* Package name: libtins
  Version : 0.2
  Upstream author : Matías Fontanini mfontan...@nasel.com.ar
* URL : http://libtins.sourceforge.net/
* License : BSD
  Programming Lang: C++
  Description : C++ library for manipulating raw network packets

This library main purpose is to provide the C++ developer an easy,
efficient, platform and endianess-independent way to create tools which
need to send, receive and manipulate specially crafted packets. Forging
packets using libtins is as simple as stacking different Protocol Data
Units objects. It depends on libpcap.


signature.asc
Description: Digital signature


Bug#639311:

2012-11-08 Thread Pau Garcia i Quiles
As of version 2.1, Veracity still depends on patches to SpiderMonkey
8.0. Not only that, when building, it wants to download the original
SpiderMonkey 8.0.

In order to package Veracity, I'd need to add SpiderMonkey 8.0 to the
required tarballs (DebFormat 3.0 should make this easier)


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/cakcboku6edw6nc9v2fe61qx7jzzego_7+10jfpmdznb3dp9...@mail.gmail.com



Bug#692786: ITP: libunix-configfile-perl -- Perl interface to various Unix configuration files

2012-11-08 Thread Florian Schlichting
Package: wnpp
Severity: wishlist
Owner: Florian Schlichting fschl...@zedat.fu-berlin.de

* Package name: libunix-configfile-perl
  Version : 0.06
  Upstream Author : Steve Snodgrass ssnod...@fore.com
* URL : http://search.cpan.org/dist/Unix-ConfigFile/
* License : GPL-1+, Artistic
  Programming Lang: Perl
  Description : Perl interface to various Unix configuration files

Unix::ConfigFile, and the modules derived from it (Unix::AliasFile,
Unix::AutomountFile, Unix::GroupFile, Unix::PasswdFile are included in
this package) provide an abstract interface to reading and writing files
in the format of some well-known Unix system files. They automatically
handle file locking, getting colons and commas in the right places, and
all the other niggling details.


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121108201412.15105.24569.reportbug@thinkpad



Bug#692788: ITP: ruby-pry-editline(1.1.1) -- A gem to load the current command line into an editor with `C-x C-e` on the pry (or irb) line

2012-11-08 Thread Manu Krishnan T.V

package: wnpp
severity: wishlist
owner: Manu Krishnan T.V t...@bizzard.info

* Package name: pry-editline
  version: 1.1.1
  Upstream Author: Tim Pope c...@tpope.net
* URL: https://github.com/tpope/pry-editline
* License: MIT
* Description: A gem to load the current command line into an editor with `C-x 
C-e` on the pry (or irb) line. It is a runtime dependency for utils, which is 
in turn a dependency for diaspora.


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/509c15b4.3040...@bizzard.info



Bug#692774: ITP: throttle -- bandwidth limiting pipe

2012-11-08 Thread Jonas Smedegaard
Quoting Martin Steghöfer (2012-11-08 18:42:50)
 throttle copies the standard input to the standard output while 
 limiting bandwidth to the specified maximum. This is useful to limit 
 resources (bandwidth, CPU time,...) when using it together with 
 programs that don't support throttling natively.

How is this tool different from cstream, trickle, iprelay and shaperd?

Kind regards,

 - Jonas


signature.asc
Description: signature


Processed (with 1 errors): ITP: ruby-pry-editline -- A gem to load the current command line into an editor with `C-x C-e` on the pry (or irb) line

2012-11-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 retitle 692788 ITP: ruby-pry-editline -- A gem to load the current command 
 line into an editor with `C-x C-e` on the pry (or irb) line
Bug #692788 [wnpp] ITP: ruby-pry-editline(1.1.1) -- A gem to load the current 
command line into an editor with `C-x C-e` on the pry (or irb) line
Changed Bug title to 'ITP: ruby-pry-editline -- A gem to load the current 
command line into an editor with `C-x C-e` on the pry (or irb) line' from 'ITP: 
ruby-pry-editline(1.1.1) -- A gem to load the current command line into an 
editor with `C-x C-e` on the pry (or irb) line'
 Removed version number from subject.
Unknown command or malformed arguments to command.

End of message, stopping processing here.

Please contact me if you need assistance.
-- 
692788: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=692788
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.135240704529574.transcr...@bugs.debian.org



Bug#692789: ITP: hybserv -- IRC services for IRCD-Hybrid

2012-11-08 Thread Dominic Hargreaves
Package: wnpp
Severity: wishlist
Owner: Dominic Hargreaves d...@earth.li

* Package name: hybserv
  Version : 1.9.2
  Upstream Author : Patrick Alken and Dinko Korunic
* URL : http://sourceforge.net/projects/hybserv2/
* License : GPL
  Programming Lang: C
  Description : IRC services for IRCD-Hybrid

HybServ is a daemon that connects to your IRCD-Hybrid server and
automagically provides nickname, channel, memo, and oper services to your
entire network if it is configured correctly to talk with your IRC server.

In short, these allow users to register nicknames and channels to prevent
EFnet-style takeovers thereof, allow opers to easily manage glines, klines,
and other server settings, and allow users with registered nicknames to
leave messages for others.

HybServ is the services package of choice on IRC networks such as Aniverse.

Note: this would be a reintroduction of the package which was removed
from testing and unstable earlier this year; please see

https://lists.debian.org/debian-qa/2012/11/msg5.html
or the same message:
https://lists.debian.org/debian-release/2012/11/msg00041.html


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20121108212620.6228.27194.report...@callisto.larted.org.uk



Bug#692789: ITP: hybserv -- IRC services for IRCD-Hybrid

2012-11-08 Thread Peter Samuelson

[Dominic Hargreaves]
 HybServ is a daemon that connects to your IRCD-Hybrid server and
 automagically provides nickname, channel, memo, and oper services to your
 entire network if it is configured correctly to talk with your IRC server.

Automagically?  When you install a server package, configure it, and
start it, and it then provides services, would you really describe that
as not only automated, but like magic?

It seems to me that that's a pretty pessimistic view of server software
in general.  My own expectation is that if I install, configure and
start a daemon - any daemon - it will provide whatever services it is
supposed to provide.  And if it does, I don't see anything especially
automatic or magical about it.  I mean, _all_ software is automatic
in a sense, and very little software is really magic.

All of which is to say, I would drop the word 'automagically'.  And not
just because I dislike neologisms, although I do.

Peter


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121108215120.gi4...@p12n.org



Bug#692789: ITP: hybserv -- IRC services for IRCD-Hybrid

2012-11-08 Thread Dominic Hargreaves
On Thu, Nov 08, 2012 at 03:51:20PM -0600, Peter Samuelson wrote:
 
 [Dominic Hargreaves]
  HybServ is a daemon that connects to your IRCD-Hybrid server and
  automagically provides nickname, channel, memo, and oper services to your
  entire network if it is configured correctly to talk with your IRC server.
 
 Automagically?  When you install a server package, configure it, and
 start it, and it then provides services, would you really describe that
 as not only automated, but like magic?
 
 It seems to me that that's a pretty pessimistic view of server software
 in general.  My own expectation is that if I install, configure and
 start a daemon - any daemon - it will provide whatever services it is
 supposed to provide.  And if it does, I don't see anything especially
 automatic or magical about it.  I mean, _all_ software is automatic
 in a sense, and very little software is really magic.
 
 All of which is to say, I would drop the word 'automagically'.  And not
 just because I dislike neologisms, although I do.

I agree with everything you said :) ITP just has the details from the
existing package, but I have removed the word from my git repository.

Cheers,
Dominic.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20121108215413.ge4...@urchin.earth.li



Bug#659069: getting retroshare in Debian

2012-11-08 Thread Antoine Beaupré
Another DD suggested the following patch to workaround the problem:

--- libretroshare/src/libretroshare.pro.orig2012-11-07 10:10:37.323894907 
-0500
+++ libretroshare/src/libretroshare.pro 2012-11-07 10:11:08.048213807 -0500
@@ -218,7 +218,7 @@
 
#CONFIG += version_detail_bash_script
 
-   DEFINES *= UBUNTU
+   DEFINES *= UBUNTU DEBIAN
INCLUDEPATH += /usr/include/glib-2.0/ /usr/lib/glib-2.0/include
LIBS *= -lgnome-keyring
 }

It allows the package to compile libupnp, but i got stuck later. I
eventually gave up on this.

A.

-- 
You Are What You Is
- Frank Zappa


pgp8BR6MEpgJ4.pgp
Description: PGP signature


Processed: ITP: libtins -- C++ library for manipulating raw network packets

2012-11-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 owner 692778 Raúl Benencia r...@kalgan.cc
Bug #692778 [wnpp] ITP: libtins -- C++ library for manipulating raw network 
packets
Owner recorded as Raúl Benencia r...@kalgan.cc.
 stop
Stopping processing here.

Please contact me if you need assistance.
-- 
692778: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=692778
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.135243480610925.transcr...@bugs.debian.org



Bug#668870: Offer of help

2012-11-08 Thread Dave Cheney
Hello,

My name is David. I am a committer on the Go project, and active
maintainer of the 5g arm compiler. I would be glad to offer my time to
help maintain the golang package on debian, including making it work
properly on armel and armhf.

Cheers

Dave


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CANp9fE-X29HQBPSk+=bjjephodwnyghagu5gwe5_j_etghj...@mail.gmail.com



Processed: tagging as pending bugs that are closed by packages in NEW

2012-11-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # Friday 9 November  07:03:11 UTC 2012
 # Tagging as pending bugs that are closed by packages in NEW
 # http://ftp-master.debian.org/new.html
 #
 # Source package in NEW: libunix-configfile-perl
 tags 692786 + pending
Bug #692786 [wnpp] ITP: libunix-configfile-perl -- Perl interface to various 
Unix configuration files
Added tag(s) pending.

End of message, stopping processing here.

Please contact me if you need assistance.
-- 
692786: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=692786
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.13524445958470.transcr...@bugs.debian.org



Bug#692774: marked as done (ITP: throttle -- bandwidth limiting pipe)

2012-11-08 Thread Debian Bug Tracking System
Your message dated Fri, 9 Nov 2012 07:52:43 +
with message-id 20121109075243.ga26...@master.debian.org
and subject line ITP: throttle -- bandwidth limiting pipe
has caused the Debian Bug report #692774,
regarding ITP: throttle -- bandwidth limiting pipe
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
692774: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=692774
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---

Package: wnpp
Severity: wishlist
Owner: Martin Steghöfer mar...@steghoefer.de


* Package name: throttle
  Version : 1.2
  Upstream Author : James Klicman ja...@klicman.org
* URL : http://klicman.org/throttle/
* License : GPL
  Programming Lang: C
  Description : bandwidth limiting pipe

throttle copies the standard input to the standard output while limiting 
bandwidth to the specified maximum. This is useful to limit resources 
(bandwidth, CPU time,...) when using it together with programs that 
don't support throttling natively.
---End Message---
---BeginMessage---
Hi Martin,

Please retitle bug 426891 and set yourself as the owner.

Regards,

Bart Martens---End Message---