Help needed to fix gcc 4.7 bug in jellyfish package

2012-05-02 Thread Andreas Tille
Hi,

I tried to fix the problem in the jellyfish package but the general
hints given did not helped me really.  Any more precise help to fix
this problem:

parse_dna.cc:97:3: error: narrowing conversion of '-3' from 'int' to 'const 
uint_t {aka const long unsigned int}' inside { } is ill-formed in C++11 
[-Werror=narrowing]

My first idea was to do

--- jellyfish.orig/jellyfish/parse_dna.cc
+++ jellyfish/jellyfish/parse_dna.cc
@@ -57,7 +57,7 @@
 }
   }

-  const uint_t parse_dna::codes[256] = {
+  const int parse_dna::codes[256] = {
 -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -2, -3, -3, -3, -3, -3,
 -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3,
 -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -1, -3, -3,
--- jellyfish.orig/jellyfish/parse_dna.hpp
+++ jellyfish/jellyfish/parse_dna.hpp
@@ -55,7 +55,7 @@
 static uint64_t mer_string_to_binary(const char *in, uint_t klen) {
   uint64_t res = 0;
   for(uint_t i = 0; i  klen; i++) {
-const uint_t c = parse_dna::codes[(uint_t)*in++];
+const int c = parse_dna::codes[(int)*in++];
 if(c  CODE_NOT_DNA)
   return 0;
 res = (res  2) | c;


because it makes no sense to initialise uint with negative numbers but
this did not changed the error message which sounds totally strange to
me.

Kind regards

Andreas.

-- 
http://fam-tille.de


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



Re: Help needed to fix gcc 4.7 bug in jellyfish package

2012-05-02 Thread Sune Vuorela
On 2012-05-02, Andreas Tille andr...@an3as.eu wrote:
 Hi,

 I tried to fix the problem in the jellyfish package but the general
 hints given did not helped me really.  Any more precise help to fix
 this problem:

 parse_dna.cc:97:3: error: narrowing conversion of '-3' from 'int' to 'const 
 uint_t {aka const long unsigned int}' inside { } is ill-formed in C++11 
 [-Werror=narrowing]

 --- jellyfish.orig/jellyfish/parse_dna.cc
 +++ jellyfish/jellyfish/parse_dna.cc
 @@ -57,7 +57,7 @@

It looks like you aren't the right place. It complains about line 97 and
you have edits in line 60 ?

/Sune


-- 
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/slrnjq1op2.p7v.nos...@sshway.ssh.pusling.com



Bug#671184: RFS: usbmuxd/1.0.8-1 (new upstream release)

2012-05-02 Thread Julien Lavergne
Package: sponsorship-requests
Severity: normal

Dear mentors,

  I am looking for a sponsor for my package usbmuxd

 * Package name: usbmuxd
   Version : 1.0.8-1
 * URL : http://www.libimobiledevice.org/
 * License : LGPL 2.1  GPL 2
   Section : utils

  It builds those binary packages:

libusbmuxd-dev - USB multiplexor daemon for iPhone and iPod Touch devices - 
devel
 libusbmuxd2 - USB multiplexor daemon for iPhone and iPod Touch devices - librar
 libusbmuxd2-dbg - USB multiplexor daemon for iPhone and iPod Touch devices - 
debug
 usbmuxd- USB multiplexor daemon for iPhone and iPod Touch devices

  To access further information about this package, please visit the following 
URL:

  http://mentors.debian.net/package/usbmuxd


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/u/usbmuxd/usbmuxd_1.0.8-1.dsc

  More information about hello can be obtained from http://www.example.com.

  Changes since the last upload:

usbmuxd (1.0.8-1) experimental; urgency=low

  * New upstream release.
  * debian/patches:
   - 90-cve-2012-0065.patch: Remove, merged upstream.
   - 02-udev-usbmux-owner.patch: Refreshed.
   - 03-revert-ifdef-USBMUXD_DAEMON.patch: Refreshed.
  * debian/compat
   - Update to 9.
  * debian/control:
   - Update to match new SONAME.
   - Update Standards-Version to 3.9.3 (no change needed).
   - Build-depend on debhelper (= 9).
  * debian/rules:
   - Update to match new SONAME.
   - Use DEB_*_MAINT_APPEND.
  * debian/libusbmuxd*.install  debian/libusbmuxd*.symbols
   - Update to match new SONAME.
  * debian/libusbmuxd2.symbols:
   - Update with new symbols.
  * debian/watch:
   - Update location of the tarballs.
  * debian/copyright:
   - Update with new license on common/*.

  Regards,
   Julien Lavergne

-- System Information:
Debian Release: wheezy/sid
  APT prefers precise-updates
  APT policy: (500, 'precise-updates'), (500, 'precise-security'), (500, 
'precise')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-22-generic (SMP w/8 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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



*.dirs and *.install files

2012-05-02 Thread Christopher Howard
Hello. I've created a number of Debs for single-binary packages in the
past, but now I am getting into packaging libraries. For the most part
it has not been difficult to figure out how to package a library, but I
am not quite clear on a certain point: could some one explain to me what
are the precise purposes of the *.dirs and *.install files in the
debian/ directory? There are four of these files in my debian/ directory:

* libcsv3.dirs
* libcsv3.install
* libcsv-dev.dirs
* libcsv-dev.install

-- 
frigidcode.com
indicium.us



signature.asc
Description: OpenPGP digital signature


Re: *.dirs and *.install files

2012-05-02 Thread Andrey Rahmatullin
On Wed, May 02, 2012 at 11:27:20AM -0800, Christopher Howard wrote:
 Hello. I've created a number of Debs for single-binary packages in the
 past, but now I am getting into packaging libraries. For the most part
 it has not been difficult to figure out how to package a library, but I
 am not quite clear on a certain point: could some one explain to me what
 are the precise purposes of the *.dirs and *.install files in the
 debian/ directory? There are four of these files in my debian/ directory:
 
 * libcsv3.dirs
 * libcsv3.install
 * libcsv-dev.dirs
 * libcsv-dev.install
man dh_install
man dh_installdirs



-- 
WBR, wRAR


signature.asc
Description: Digital signature


Bug#671272: RFS: pyswisseph/1.77.00.0+dfsg-2 [ITP]

2012-05-02 Thread Paul Elliott
Package: sponsorship-requests
Severity: normal

Package: sponsorship-requests
  Severity: normal 

  Dear mentors,

  I am looking for a sponsor for my package pyswisseph

 * Package name: pyswisseph
   Version : 1.77.00.0+dfsg-2
   Upstream Author : Stanislas Marquis stn...@gmail.com
 * URL : http://pyswisseph.chaosorigin.com/
   : http://pypi.python.org/pypi/pyswisseph
 * License : GPLV2+
   Section : python

  It builds those binary packages:

python-swisseph - Python extension to the Swiss Ephemeris
python-swisseph-docs - Python extension to the Swiss Ephemeris 
 (common documentation)
python3-swisseph - Python extension to the Swiss Ephemeris (Python 3)

  To access further information about this package, please visit the following 
URL:
  http://mentors.debian.net/package/pyswisseph

  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/p/pyswisseph/pyswisseph_1.77.00.0+dfsg-2.dsc

  More information about pyswisseph can be obtained from 
  http://pypi.python.org/pypi/pyswisseph
  http://git.debian.org/?p=collab-maint/pyswisseph.git
  git://git.debian.org/git/collab-maint/pyswisseph.git

  This python extension module can be tested using openastro.org,
  a python program that is also being RFSed:
  http://mentors.debian.net/package/openastro.org


  Changes since the last upload:

  * switch to dfsg package
  * change copyright to dep-5, fix copyright file
  * Remove ${python:Breaks}, nothing generates this substitution variable 
  - anymore.
  * simplify description.
  * remove --buildsystem=python_distutils from debian/rules
  - dh is able to detect the build system automatically.
  * email message id in Forwarded: line.
  * add newline to override file.
  * change name to python-swisseph
  * rebuild pydoc from source.
  * create a documentation package
  * create a python3 version of this extension
  - using recommendations in:
  - http://wiki.debian.org/Python/LibraryStyleGuide


  Regards,
   Paul Elliott


signature.asc
Description: Digital signature


Bug#671277: RFS: openastro.org/1.1.25+dfsg-4 [ITP]

2012-05-02 Thread Paul Elliott
Package: sponsorship-requests
Severity: normal

  Dear mentors,

  I am looking for a sponsor for my package openastro.org

 * Package name: openastro.org
   Version : 1.1.25+dfsg-4
   Upstream Author : Pelle van der Scheer pellesi...@gmail.com
 * URL : http://openastro.org/
   : https://launchpad.net/~pellesimon/+archive/ppa
 * License : GPLV3+
   Section : graphics

  It builds those binary packages:

openastro.org - Fully featured Open Source Astrology software

  To access further information about this package, please visit 
  the following URL:

  http://mentors.debian.net/package/openastro.org
  http://git.debian.org/?p=collab-maint/openastro.git
  git://git.debian.org/git/collab-maint/openastro.git

  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/o/openastro.org/openastro.org_1.1.25+dfsg-4.dsc

  More information about hello can be obtained from http://openastro.org/

  This python program depends on the python extension module pyswisseph
  which is also being RFSed:
  http://mentors.debian.net/package/pyswisseph

  Changes since the last upload:

  * create dfsg package
  - delete pyswisseph/pyswisseph-1.75.01/doc
  * change bad permissions before build; use a- in command
  * restore source directory by deleting openastro
  * upgrade debian/copyright to dep-5
  * debhelper (= 7.0.50~) instead of debhelper (= 7.0.50)
  * use X-Python-Version, not XS-Python-Version
  * remove XB-Python-Version.
  * make openastromod private; move /usr/share/openastro.org


  Regards,
   Paul Elliott


signature.asc
Description: Digital signature


Re: RFS: pidgin-privacy-please

2012-05-02 Thread Stefan Ott
Dear mentors

On Thu, Apr 12, 2012 at 4:34 AM, Stefan Ott ste...@ott.net wrote:
 Dear mentors,

 I am looking for a sponsor for my package pidgin-privacy-please.

  * Package name    : pidgin-privacy-please
  Version         : 0.7.1-1
  Upstream Author : Stefan Ott
  * URL             : http://pidgin-privacy-please.googlecode.com/
  * License         : GNU GPLv3
  Section         : net

 It builds those binary packages:

 pidgin-privacy-please - plugin for enhanced privacy in pidgin

 To access further information about this package, please visit the
 following URL:

  http://mentors.debian.net/package/pidgin-privacy-please

 Alternatively, one can download the package with dget using this command:

  dget -x 
 http://mentors.debian.net/debian/pool/main/p/pidgin-privacy-please/pidgin-privacy-please_0.7.1-1.dsc

I am still looking for a sponsor for this one (or some feedback), any
help would be highly appreciated.

cheers
-- 
Stefan Ott
http://www.ott.net/

You are not Grey Squirrel?


--
To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAOk=tprdter6ernbgmvpgqsvh8vjpkg18qvcmym1n9si+i3...@mail.gmail.com