Bug#873459: RFS: python-singa/1.1.1-1 [ITP]

2017-08-27 Thread Moaz Reyad
Package: sponsorship-requests
  Severity: wishlist

  Dear mentors,

  I am looking for a sponsor for my package "python-singa"

 * Package name: python-singa
   Version : 1.1.1-1
   Upstream Author : Apache Incubator 
 * URL : http://singa.apache.org
 * License : Apache 2.0
   Section : science

  It builds those binary packages:

python3-singa - Deep learning library

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

  https://mentors.debian.net/package/python-singa


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

dget -x 
https://mentors.debian.net/debian/pool/main/p/python-singa/python-singa_1.1.1-1.dsc

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

  Changes since the last upload:

  * Initial release (Closes: #870381)


  Regards,
   Moaz Reyad


Re: Build-dependencies for qt5

2017-08-27 Thread Gianfranco Costamagna
Hello,

>instead. From this, I take that I have to use "export QT_SELECT = 5" in
>d/rules; but what are then my required build dependencies? Just
>qtchooser? Or do I need to install any qt5 development package as well?


I think qtbase5-dev is the minimum dependency you need to install, but
I'm not sure anymore, I remember asking Lisandro a while ago and getting
his working answer back (you can have a look at src:qviaggiatreno in case)

G.



Bug#873261: marked as done (RFS: node-when/3.7.8+ds-1 [ITP])

2017-08-27 Thread Debian Bug Tracking System
Your message dated Sun, 27 Aug 2017 16:20:47 +
with message-id 
and subject line closing RFS: node-when/3.7.8+ds-1 [ITP]
has caused the Debian Bug report #873261,
regarding RFS: node-when/3.7.8+ds-1 [ITP]
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.)


-- 
873261: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=873261
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: sponsorship-requests
Severity: wishlist
Owner: Bastien Roucaries 

  Dear mentors,

  I am looking for a sponsor for my package "node-when"

 * Package name: node-when
   Version : 3.7.8+ds-1
   Upstream Author : Brian Cavalier
 * URL : https://github.com/cujojs/when/issues
 * License : Expat
   Section : javascript

  It builds those binary packages:

node-when  - Async tools and when() implementation for Node.js

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

  https://mentors.debian.net/package/node-when

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

dget -x
https://mentors.debian.net/debian/pool/main/n/node-when/node-when_3.7.8+ds-1.dsc

  It is packaged within the Debian Javascript Maintainers team:
Vcs-Git: https://anonscm.debian.org/git/pkg-javascript/node-when.git
Vcs-Browser:
https://anonscm.debian.org/cgit/pkg-javascript/node-when.git

Thanks,

Snark on #debian-js
--- End Message ---
--- Begin Message ---
Package node-when version 3.7.8+ds-1 is in NEW now,
and the package at mentors is not newer (2017-08-25) than the package in NEW 
(2017-08-25),
so there is currently no package to sponsor.

https://ftp-master.debian.org/new/node-when_3.7.8+ds-1.html
https://mentors.debian.net/package/node-when

Please remove the package from mentors or mark it "needs sponsor = no".
If for some reason you need to replace the package in NEW,
then you can upload an updated package to mentors
and feel free to reopen this RFS 873261 or open a new RFS.--- End Message ---


Re: Help needed with gcc-7 error

2017-08-27 Thread Bastien Roucaries
Use  and make signed

Le 27 août 2017 15:58:34 GMT+02:00, James Cowgill  a écrit 
:
>Hi,
>
>On 27/08/17 14:40, Andreas Tille wrote:
>> Hi,
>> 
>> when trying to build sga it results in an error:
>> 
>> ...
>> g++ -DHAVE_CONFIG_H -I. -I..  -I../Bigraph -I../Thirdparty
>-Wdate-time -D_FORTIFY_SOURCE=2 -fopenmp  -I/usr//include
>-I/usr//include/bamtools -Wall -Wextra  -Wno-unknown-pragmas -std=c++98
>-O3 -c -o libutil_a-VariantIndex.o `test -f 'VariantIndex.cpp' || echo
>'./'`VariantIndex.cpp
>> VariantIndex.cpp: In member function 'VariantRecordVector
>VariantIndex::getNearVariants(const string&, int, int) const':
>> VariantIndex.cpp:89:46: error: call of overloaded 'abs(long unsigned
>int)' is ambiguous
>>  if(abs(record.position - position) < distance)
>>   ^
>
>In C++11, you cannot call abs on an unsigned integer (which makes no
>sense anyway). Probably "record.position" needs casting to a signed
>type
>(like long).
>
>Thanks,
>James

-- 
Envoyé de mon appareil Android avec K-9 Mail. Veuillez excuser ma brièveté.

Re: Help needed with gcc-7 error

2017-08-27 Thread James Cowgill
Hi,

On 27/08/17 14:40, Andreas Tille wrote:
> Hi,
> 
> when trying to build sga it results in an error:
> 
> ...
> g++ -DHAVE_CONFIG_H -I. -I..  -I../Bigraph -I../Thirdparty -Wdate-time 
> -D_FORTIFY_SOURCE=2 -fopenmp  -I/usr//include -I/usr//include/bamtools -Wall 
> -Wextra  -Wno-unknown-pragmas -std=c++98 -O3 -c -o libutil_a-VariantIndex.o 
> `test -f 'VariantIndex.cpp' || echo './'`VariantIndex.cpp
> VariantIndex.cpp: In member function 'VariantRecordVector 
> VariantIndex::getNearVariants(const string&, int, int) const':
> VariantIndex.cpp:89:46: error: call of overloaded 'abs(long unsigned int)' is 
> ambiguous
>  if(abs(record.position - position) < distance)
>   ^

In C++11, you cannot call abs on an unsigned integer (which makes no
sense anyway). Probably "record.position" needs casting to a signed type
(like long).

Thanks,
James



signature.asc
Description: OpenPGP digital signature


Bug#873132: marked as done (RFS: dav-text/0.8.7-1 [ITA] -- minimal ncurses-based text editor)

2017-08-27 Thread Debian Bug Tracking System
Your message dated Sun, 27 Aug 2017 15:46:41 +0200
with message-id <20170827134641.w6xa64fktdd3a...@angband.pl>
and subject line Re: Updates done for new release
has caused the Debian Bug report #873132,
regarding RFS: dav-text/0.8.7-1 [ITA] -- minimal ncurses-based text editor
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.)


-- 
873132: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=873132
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: sponsorship-requests

Severity: normal


Dear mentors,

I am looking for a sponsor for my package "dav-text":


Package name: dav-text

Version: 0.8.6-2

Upstream Author: Adam Bilbrough 

URL: https://gitlab.com/atsb/dav-text

License: GPLv2

Section: text


It builds these binary packages:

  dav-text - minimal ncurses based text editor

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

  https://mentors.debian.net/package/dav-text

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

  dget -x 
https://mentors.debian.net/debian/pool/main/d/dav-text/dav-text_0.8.6-2.dsc

More information about dav-text can be obtained from:

  https://gitlab.com/atsb/dav-text


Changes since the last upload:

* Wishlist bug implemented (closes: #872848)


Regards,

Adam
--- End Message ---
--- Begin Message ---
On Sun, Aug 27, 2017 at 03:38:24PM +0200, Adam Bilbrough wrote:
> I decided on a new upstream release.
> It is uploaded on mentors.debian.net as version 0.8.7-1

✓

-- 
⢀⣴⠾⠻⢶⣦⠀ 
⣾⠁⢰⠒⠀⣿⡁ Vat kind uf sufficiently advanced technology iz dis!?
⢿⡄⠘⠷⠚⠋⠀ -- Genghis Ht'rok'din
⠈⠳⣄ --- End Message ---


Bug#873132: Updates done for new release

2017-08-27 Thread Adam Bilbrough
I decided on a new upstream release.
It is uploaded on mentors.debian.net as version 0.8.7-1
~Adam

Help needed with gcc-7 error

2017-08-27 Thread Andreas Tille
Hi,

when trying to build sga it results in an error:

...
g++ -DHAVE_CONFIG_H -I. -I..  -I../Bigraph -I../Thirdparty -Wdate-time 
-D_FORTIFY_SOURCE=2 -fopenmp  -I/usr//include -I/usr//include/bamtools -Wall 
-Wextra  -Wno-unknown-pragmas -std=c++98 -O3 -c -o libutil_a-VariantIndex.o 
`test -f 'VariantIndex.cpp' || echo './'`VariantIndex.cpp
VariantIndex.cpp: In member function 'VariantRecordVector 
VariantIndex::getNearVariants(const string&, int, int) const':
VariantIndex.cpp:89:46: error: call of overloaded 'abs(long unsigned int)' is 
ambiguous
 if(abs(record.position - position) < distance)
  ^
In file included from /usr/include/c++/7/cstdlib:75:0,
 from /usr/include/c++/7/bits/stl_algo.h:59,
 from /usr/include/c++/7/algorithm:62,
 from VariantIndex.cpp:11:
/usr/include/stdlib.h:735:12: note: candidate: int abs(int)
 extern int abs (int __x) __THROW __attribute__ ((__const__)) __wur;
^~~
In file included from /usr/include/c++/7/cstdlib:77:0,
 from /usr/include/c++/7/bits/stl_algo.h:59,
 from /usr/include/c++/7/algorithm:62,
 from VariantIndex.cpp:11:
/usr/include/c++/7/bits/std_abs.h:56:3: note: candidate: long int std::abs(long 
int)
   abs(long __i) { return __builtin_labs(__i); }
   ^~~
...


I have no idea in how far abs() is overloaded and how to fix this.

Kind regards

   Andreas.

-- 
http://fam-tille.de



Build-dependencies for qt5

2017-08-27 Thread Ole Streicher
Hi,

I am adopting a package (plplot) that depends on (Qt4 or) Qt5. The
description of the "qt5-default" package, says that this package should
not be used to build a dependent package but to look into

http://pkg-kde.alioth.debian.org/packagingqtbasedstuff.html

instead. From this, I take that I have to use "export QT_SELECT = 5" in
d/rules; but what are then my required build dependencies? Just
qtchooser? Or do I need to install any qt5 development package as well?

Best regards

Ole