Re: bison/flex (?) issue: error: cannot convert 'UserLevelRewritingContext::ParseResult*' to 'char*'

2018-09-18 Thread Andreas Tille
Hi Sergio

On Wed, Sep 19, 2018 at 12:50:37AM -0400, Sergio Durigan Junior wrote:
> On Sunday, September 16 2018, Andreas Tille wrote:
> 
> > Hi,
> >
> > in the latest version of maude[1] I get:
> >
> > ...
> > g++ -DHAVE_CONFIG_H -I. -I../..  -I../../src/Utility -I../../src/Temporal 
> > -I../../src/Interface -I../../src/Core -I../../src/Variable 
> > -I../../src/FullCompiler -I../../src/Higher -I../../src/CUI_Theory 
> > -I../../src/S_Theory -I../../src/NA_Theory -I../../src/FreeTheory 
> > -I../../src/ObjectSystem -I../../src/Mixfix -I../../src/BuiltIn 
> > -I../../src/MSCP10 -I../../src/IO_Stuff -I../../src/ACU_Persistent 
> > -I../../src/ACU_Theory -I../../src/AU_Persistent -I../../src/AU_Theory 
> > -I../../src/Meta -I../../src/3rdParty -I../../src/FullCompiler 
> > -I../../src/StrategyLanguage -I../../src/SMT -Wdate-time 
> > -D_FORTIFY_SOURCE=2  -g -O2 -fdebug-prefix-map=/build/maude-2.7.1=. 
> > -fstack-protector-strong -Wformat -Werror=format-security -fpermissive -c 
> > -o libmixfix_a-surface.o `test -f 'surface.cc' || echo './'`surface.cc
> > surface.c: In function 'int yyparse(void*, 
> > UserLevelRewritingContext::ParseResult*)':
> > surface.c:5382:16: warning: invalid conversion from 'void*' to 
> > 'UserLevelRewritingContext::ParseResult*' [-fpermissive]
> > surface.c:5382:31: error: cannot convert 
> > 'UserLevelRewritingContext::ParseResult*' to 'char*'
> > surface.yy:97:80: note:   initializing argument 2 of 'void 
> > yyerror(UserLevelRewritingContext::ParseResult*, char*)'
> >  static void yyerror(UserLevelRewritingContext::ParseResult* parseResult, 
> > char *s);
> >   
> > ~~^
> > surface.c:5526:12: warning: invalid conversion from 'void*' to 
> > 'UserLevelRewritingContext::ParseResult*' [-fpermissive]
> > surface.c:5526:27: error: cannot convert 
> > 'UserLevelRewritingContext::ParseResult*' to 'char*'
> > surface.yy:97:80: note:   initializing argument 2 of 'void 
> > yyerror(UserLevelRewritingContext::ParseResult*, char*)'
> >  static void yyerror(UserLevelRewritingContext::ParseResult* parseResult, 
> > char *s);
> >   
> > ~~^
> > surface.yy:313:12: warning: ignoring return value of 'int system(const 
> > char*)', declared with attribute warn_unused_result [-Wunused-result]
> >   system((string("ls") + $3).c_str());
> >   ~~^~
> > make[6]: *** [Makefile:1110: libmixfix_a-surface.o] Error 1
> > ...
> >
> > I suspect bison/flex might have created a broken C++ file.  Any idea how
> > to fix this?
> 
> Hey Andreas,
> 
> Short:
> 
> Yeah, if you remove debian/patches/bison-parse-param.patch, it compiles
> successfully.

Cool.  I can confirm this and pushed the change to Git.
 
> Long:
> 
> I haven't investigated a lot, but apparently the parser used
> YYPARSE_PARAM to define 'UserLevelRewritingContext::ParseResult*' as a
> possible argument for the reentrant parser.  However, at some point the
> code was rewritten to explicitly use and pass
> 'UserLevelRewritingContext::ParseResult*', without resorting to
> YYPARSE_PARAM.  For that reason, there's no need to define "%parse-param
> {void* YYPARSE_PARAM}" in the beginning of the parser code anymore.
 
Thanks a lot for the detailed explanation.

> Now, after this fix, I'm seeing another error:
> 
>   variableGenerator.cc: In member function 'CVC4::Expr 
> VariableGenerator::dagToCVC4(DagNode*)':
>   variableGenerator.cc:326:73: error: 'IFF' is not a member of 'CVC4::kind'
> return exprManager->mkExpr(((smtType == SMT_Info::BOOLEAN) ? 
> kind::IFF : kind::EQUAL), exprs[0], exprs[1]);
>^~~
> 
> CVC4 indeed doesn't have any 'kind::IFF'.  I spent some time looking at
> its source code, but couldn't find anything helpful.  I can try to work
> more later.

I admit I also have no clue.

@Scott: You initially worked on this package.  Will you continue with
this and may be you have some clue about the issue above?

Kind regards

 Andreas.

-- 
http://fam-tille.de



Bug#903904: RFS: wannier90/2.1.0 -- maximally localized Wannier functions

2018-09-18 Thread Andrius Merkys
Hi Adam,

On 09/17/2018 12:12 PM, Adam Borowski wrote:
> ! LaTeX Error: File `subfigure.sty' not found.

seems to a missing dependency again. This time I've tried dropping all 
texlive-* packages to detect ones needed. Could you please pull and try it one 
more time?

Many thanks,
Andrius

-- 
Andrius Merkys
Vilnius University Institute of Biotechnology, Saulėtekio al. 7, room V325
LT-10257 Vilnius, Lithuania



Re: bison/flex (?) issue: error: cannot convert 'UserLevelRewritingContext::ParseResult*' to 'char*'

2018-09-18 Thread Sergio Durigan Junior
On Sunday, September 16 2018, Andreas Tille wrote:

> Hi,
>
> in the latest version of maude[1] I get:
>
> ...
> g++ -DHAVE_CONFIG_H -I. -I../..  -I../../src/Utility -I../../src/Temporal 
> -I../../src/Interface -I../../src/Core -I../../src/Variable 
> -I../../src/FullCompiler -I../../src/Higher -I../../src/CUI_Theory 
> -I../../src/S_Theory -I../../src/NA_Theory -I../../src/FreeTheory 
> -I../../src/ObjectSystem -I../../src/Mixfix -I../../src/BuiltIn 
> -I../../src/MSCP10 -I../../src/IO_Stuff -I../../src/ACU_Persistent 
> -I../../src/ACU_Theory -I../../src/AU_Persistent -I../../src/AU_Theory 
> -I../../src/Meta -I../../src/3rdParty -I../../src/FullCompiler 
> -I../../src/StrategyLanguage -I../../src/SMT -Wdate-time -D_FORTIFY_SOURCE=2  
> -g -O2 -fdebug-prefix-map=/build/maude-2.7.1=. -fstack-protector-strong 
> -Wformat -Werror=format-security -fpermissive -c -o libmixfix_a-surface.o 
> `test -f 'surface.cc' || echo './'`surface.cc
> surface.c: In function 'int yyparse(void*, 
> UserLevelRewritingContext::ParseResult*)':
> surface.c:5382:16: warning: invalid conversion from 'void*' to 
> 'UserLevelRewritingContext::ParseResult*' [-fpermissive]
> surface.c:5382:31: error: cannot convert 
> 'UserLevelRewritingContext::ParseResult*' to 'char*'
> surface.yy:97:80: note:   initializing argument 2 of 'void 
> yyerror(UserLevelRewritingContext::ParseResult*, char*)'
>  static void yyerror(UserLevelRewritingContext::ParseResult* parseResult, 
> char *s);
>   
> ~~^
> surface.c:5526:12: warning: invalid conversion from 'void*' to 
> 'UserLevelRewritingContext::ParseResult*' [-fpermissive]
> surface.c:5526:27: error: cannot convert 
> 'UserLevelRewritingContext::ParseResult*' to 'char*'
> surface.yy:97:80: note:   initializing argument 2 of 'void 
> yyerror(UserLevelRewritingContext::ParseResult*, char*)'
>  static void yyerror(UserLevelRewritingContext::ParseResult* parseResult, 
> char *s);
>   
> ~~^
> surface.yy:313:12: warning: ignoring return value of 'int system(const 
> char*)', declared with attribute warn_unused_result [-Wunused-result]
>   system((string("ls") + $3).c_str());
>   ~~^~
> make[6]: *** [Makefile:1110: libmixfix_a-surface.o] Error 1
> ...
>
> I suspect bison/flex might have created a broken C++ file.  Any idea how
> to fix this?

Hey Andreas,

Short:

Yeah, if you remove debian/patches/bison-parse-param.patch, it compiles
successfully.

Long:

I haven't investigated a lot, but apparently the parser used
YYPARSE_PARAM to define 'UserLevelRewritingContext::ParseResult*' as a
possible argument for the reentrant parser.  However, at some point the
code was rewritten to explicitly use and pass
'UserLevelRewritingContext::ParseResult*', without resorting to
YYPARSE_PARAM.  For that reason, there's no need to define "%parse-param
{void* YYPARSE_PARAM}" in the beginning of the parser code anymore.



Now, after this fix, I'm seeing another error:

  variableGenerator.cc: In member function 'CVC4::Expr 
VariableGenerator::dagToCVC4(DagNode*)':
  variableGenerator.cc:326:73: error: 'IFF' is not a member of 'CVC4::kind'
return exprManager->mkExpr(((smtType == SMT_Info::BOOLEAN) ? kind::IFF 
: kind::EQUAL), exprs[0], exprs[1]);
   ^~~

CVC4 indeed doesn't have any 'kind::IFF'.  I spent some time looking at
its source code, but couldn't find anything helpful.  I can try to work
more later.

Cheers,

-- 
Sergio
GPG key ID: 237A 54B1 0287 28BF 00EF  31F4 D0EB 7628 65FC 5E36
Please send encrypted e-mail if possible
http://sergiodj.net/


signature.asc
Description: PGP signature


Bug#909117: RFS: libmd5-rfc/0.0+20020413-1 [ITP]

2018-09-18 Thread Yangfl
Adam Borowski  于2018年9月19日周三 上午3:22写道:
>
> But, with md5 thoroughly broken, do you have any reason to include this
> library?  It's unfit for cryptographic purposes, and there exist much faster
> hashes for non-crypto uses.

Actually https://codesearch.debian.net/search?q=typedef+unsigned+int+md5_word_t

But, if you think bundling is fine, I won't insist on pushing this package.



Re: Looking for a log of UploadQueue activities

2018-09-18 Thread Paul Wise
On Wed, Sep 19, 2018 at 2:10 AM, Tomas Fasth wrote:

> Is it possible to access a log of some sort for the activities on the
> UploadQueue?

Login to the upload host ssh.upload.debian.org and view:

/srv/upload.debian.org/queued/run/log

Login to the ftp-master mirror mirror.ftp-master.debian.org and view:

/srv/ftp-master.debian.org/log/current

-- 
bye,
pabs

https://wiki.debian.org/PaulWise



Bug#909134: RFS: budgie-extras/0.6.1-1

2018-09-18 Thread David Mohammed
Package: sponsorship-requests
Severity: normal

  Dear mentors,

  I am looking for a sponsor for my package "budgie-extras"

 * Package name: budgie-extras
   Version : 0.6.1-1
   Upstream Author : Ubuntu Budgie Developers
 * URL : https://github.com/ubuntubudgie/budgie-extras
 * License : GPL-3+
   Section : misc

  It builds those binary packages:

budgie-app-launcher-applet - Applet to provide an alternative
means to launch applications
 budgie-clockworks-applet - Applet to display clock across multiple time zones
 budgie-countdown-applet - Applet providing a countdown capability on
the Budgie Desktop
 budgie-dropby-applet - Applet to popup when a USB device is connected
 budgie-hotcorners-applet - Applet providing hotcorners capabilities
for the Budgie Desktop
 budgie-kangaroo-applet - Applet to allow quick file-browsing
 budgie-keyboard-autoswitch-applet - Applet adding the ability to set
a different keyboard layout per
 budgie-previews-applet - Applet providing window previews
capabilities for the Budgie Desk
 budgie-quicknote-applet - Applet providing simple notes capability
for the Budgie Desktop
 budgie-recentlyused-applet - Applet displays files recently accessed
for the Budgie Desktop
 budgie-rotation-lock-applet - Applet to lock or unlock the screen rotation
 budgie-showtime-applet - Applet displaying date and time on the Budgie Desktop
 budgie-trash-applet - Applet allows access to trash capabilities for
the Budgie Desktop
 budgie-weathershow-applet - Applet to display the weather and forecast
 budgie-window-mover-applet - Applet allows moving windows between
workspaces for the Budgie De
 budgie-workspace-overview-applet - Applet providing quick access to
workspaces for the Budgie Deskto
 budgie-workspace-wallpaper-applet - Applet providing per workspace wallpaper

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

  https://mentors.debian.net/package/budgie-extras


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

dget -x 
https://mentors.debian.net/debian/pool/main/b/budgie-extras/budgie-extras_0.6.1-1.dsc

Notes:
linitan -i -I --pedantic run on the built source and is lintian free
check-all-the-things run on the source and corrections made to the source
pbuilder-dist run to ensure builds correctly for unstable

This upload introduces new built binaries to be authorised by
archive-admins via the NEW queue:
- budgie-trash-applet
- budgie-recentlyused-applet
- budgie-app-launcher-applet
- budgie-weathershow-applet
- budgie-hotcorners-applet
- budgie-quicknote-applet

  May I request that this package be added to my debian maintainers
list of packages I'm allowed to look after (dak
fossfree...@ubuntu.com) ?

  Changes since the last upload:

(Most recent changelog)

* New upstream release
- see ChangeLog for details
- Consolidated release to resync Debian and Ubuntu versions
  * Packaging Changes:
- Bump Standards-Version - no changes required

  Regards,
   David Mohammed



Bug#909117: RFS: libmd5-rfc/0.0+20020413-1 [ITP]

2018-09-18 Thread Adam Borowski
On Wed, Sep 19, 2018 at 12:37:19AM +0800, Yangfl wrote:
>  * Package name: libmd5-rfc
>Version : 0.0+20020413
>Upstream Author : Aladdin Enterprises
>  * URL : https://sourceforge.net/projects/libmd5-rfc/

>   libmd5-rfc-dev - RFC1321-based (RSA-free) MD5 library - development headers
>  libmd5-rfc0 - RFC1321-based (RSA-free) MD5 library

>   * Initial release (Closes: #909116)

The package technically looks good (one nitpick: rm debian/clean, but this
is too minor to really bother).  I'm ready to upload at any time.

But, with md5 thoroughly broken, do you have any reason to include this
library?  It's unfit for cryptographic purposes, and there exist much faster
hashes for non-crypto uses.

Thus, I'd recommend introducing this package only if you have some actual
use -- such as another package wanting to depend on it.


喵!
-- 
⢀⣴⠾⠻⢶⣦⠀ What Would Jesus Do, MUD/MMORPG edition:
⣾⠁⢰⠒⠀⣿⡁ • multiplay with an admin char to benefit your mortal [Mt3:16-17]
⢿⡄⠘⠷⠚⠋⠀ • abuse item cloning bugs [Mt14:17-20, Mt15:34-37]
⠈⠳⣄ • use glitches to walk on water [Mt14:25-26]



Re: Looking for a log of UploadQueue activities

2018-09-18 Thread Andrey Rahmatullin
On Tue, Sep 18, 2018 at 08:10:49PM +0200, Tomas Fasth wrote:
> Dear Mentors
> 
> Is it possible to access a log of some sort for the activities on the
> UploadQueue?
> 
> I am uploading a new version of the algol68g package and do not get any
> feedback. There is obviously something wrong with my handling, but I get no
> feedback what-so-ever.
> Can someone out there give some advice on how to determine what is wrong?
> Thank you
You've uploaded it to ftp-master, so the mentors logs wouldn't help.
And you never get feedback for uploads to ftp-master not signed by valid
DD keys.

-- 
WBR, wRAR


signature.asc
Description: PGP signature


Looking for a log of UploadQueue activities

2018-09-18 Thread Tomas Fasth
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Dear Mentors

Is it possible to access a log of some sort for the activities on the
UploadQueue?

I am uploading a new version of the algol68g package and do not get any
feedback. There is obviously something wrong with my handling, but I get no
feedback what-so-ever.
Can someone out there give some advice on how to determine what is wrong?
Thank you

- -- Tomas Fasth 
-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEubzt4pWAUWrqjDTnM8H+PYHXL/gFAluhP3QACgkQM8H+PYHX
L/iHmg//R3GaScvB0uH/x7ECtI2LM4gKsJJWZzP0COe4b8C3OSUuwkV9fHA8LXDJ
hR7sHjnN5B/hLpReVeWUi1Ef7OAYk81M5qmK9C1Deg3iOy4rnRuqz1PbDeDLksGv
sWeOILtbLH4V1dNUGetotddcQ4aEKwuMd5KlHDpO4qTe5bqRXo3RwpFstL8j8fze
5BSHYw5NPjguIS+U6zCrxQ/IwulblwS73lrS8/BgYLYJzCoEEUkbLz5HoMT2lBqg
8m1lqRcKxGxqd17uzrlBqN6uJpaerK3GjTudTr6UlGWcXddu6sUf9lYJvWoe2jg7
G1v4pK50Z8Wt0TgNQ3XfMdwI3h3uSrp4ErTnBRjkPXf5e9GKnRn8coIMO4isK3/p
s9dWqTK04g1LIWnG4aRe7f5iFkpWTF4LLok1ZHqkLxFEwg7b5BaZun84kRNo//ET
lhtucYwjs/5Y2axNp6wO4sdy8nwLGoKmLFkn4ZogHpdhFRwJWVqgRaRHf8H0WZqf
iFDLssTo2Hlst62Fv+Gqh0BLQZquO9jQLb7BRFMMIU38oPJjMrk1LpxxrX0IrIFY
HYl97QiaunWVgKolt3bUfGdEffzUwpn9esPOd3TGdyCAyQI4gJt8JLvmY1eiZjFK
S8ERyygbx8iii7+Iy890vd07yPLf/d1eefLw+UYwJ6y84dSQMLs=
=ZIJB
-END PGP SIGNATURE-


Bug#909113: marked as done (RFS: libjsonparser/1.1.0-1 [ITP])

2018-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2018 18:34:06 +0200
with message-id <20180918163406.j7hkjjmtspl46...@angband.pl>
and subject line Re: Bug#909113: RFS: libjsonparser/1.1.0-1 [ITP]
has caused the Debian Bug report #909113,
regarding RFS: libjsonparser/1.1.0-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.)


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

Dear mentors,

I am looking for a sponsor for my package "libjsonparser"

 * Package name: libjsonparser
   Version : 1.1.0-1
   Upstream Author : James McLaughlin
 * URL : https://github.com/udp/json-parser
 * License : BSD
   Section : libs

It builds those binary packages:

  libjsonparser-dev - Very low footprint JSON parser written in
portable ANSI C - devel
 libjsonparser1.1 - Very low footprint JSON parser written in portable ANSI C

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

https://mentors.debian.net/package/libjsonparser


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

  dget -x 
https://mentors.debian.net/debian/pool/main/libj/libjsonparser/libjsonparser_1.1.0-1.dsc

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

Changes since the last upload:

  * Initial release (Closes: #909106)


Regards,
 Yangfl
--- End Message ---
--- Begin Message ---
On Tue, Sep 18, 2018 at 11:42:30PM +0800, Yangfl wrote:
>  * Package name: libjsonparser
>Version : 1.1.0-1

>   libjsonparser-dev - Very low footprint JSON parser written in
> portable ANSI C - devel
>  libjsonparser1.1 - Very low footprint JSON parser written in portable ANSI C

> Changes since the last upload:
> 
>   * Initial release (Closes: #909106)

In NEW.


喵!
-- 
⢀⣴⠾⠻⢶⣦⠀ What Would Jesus Do, MUD/MMORPG edition:
⣾⠁⢰⠒⠀⣿⡁ • multiplay with an admin char to benefit your mortal [Mt3:16-17]
⢿⡄⠘⠷⠚⠋⠀ • abuse item cloning bugs [Mt14:17-20, Mt15:34-37]
⠈⠳⣄ • use glitches to walk on water [Mt14:25-26]--- End Message ---


Bug#909117: RFS: libmd5-rfc/0.0+20020413-1 [ITP]

2018-09-18 Thread Yangfl
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "libmd5-rfc"

 * Package name: libmd5-rfc
   Version : 0.0+20020413
   Upstream Author : Aladdin Enterprises
 * URL : https://sourceforge.net/projects/libmd5-rfc/
 * License : zlib
   Section : libs

It builds those binary packages:

  libmd5-rfc-dev - RFC1321-based (RSA-free) MD5 library - development headers
 libmd5-rfc0 - RFC1321-based (RSA-free) MD5 library

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

https://mentors.debian.net/package/libmd5-rfc


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

  dget -x 
https://mentors.debian.net/debian/pool/main/libj/libmd5-rfc/libmd5-rfc_0.0+20020413-1.dsc

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

Changes since the last upload:

  * Initial release (Closes: #909116)


Regards,
 Yangfl



Bug#909113: RFS: libjsonparser/1.1.0-1 [ITP]

2018-09-18 Thread Yangfl
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "libjsonparser"

 * Package name: libjsonparser
   Version : 1.1.0-1
   Upstream Author : James McLaughlin
 * URL : https://github.com/udp/json-parser
 * License : BSD
   Section : libs

It builds those binary packages:

  libjsonparser-dev - Very low footprint JSON parser written in
portable ANSI C - devel
 libjsonparser1.1 - Very low footprint JSON parser written in portable ANSI C

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

https://mentors.debian.net/package/libjsonparser


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

  dget -x 
https://mentors.debian.net/debian/pool/main/libj/libjsonparser/libjsonparser_1.1.0-1.dsc

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

Changes since the last upload:

  * Initial release (Closes: #909106)


Regards,
 Yangfl



Bug#909057: Fwd: calibre_3.31.0+dfsg-1~bpo9+1_amd64.changes REJECTED

2018-09-18 Thread Chris Lamb
Dear Mattia,

> Sorry for clashing!

Not at all; my apologies for doing zero research into why this version
already existed - I was going to leave that investigation to Nicholas.

(We can close #909057 now, right? Please go-ahead if so…)


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#909057: Fwd: calibre_3.31.0+dfsg-1~bpo9+1_amd64.changes REJECTED

2018-09-18 Thread Mattia Rizzolo
Hi Chris :)

On Tue, Sep 18, 2018 at 12:04:06PM +0100, Chris Lamb wrote:
> tags 909057 - pending
> thanks
> 
> (Forwarding for completeness)
> 
> - Original message -
> From: Debian FTP Masters 
> To: la...@debian.org, Norbert Preining , Nicholas D 
> Steeves 
> Subject: calibre_3.31.0+dfsg-1~bpo9+1_amd64.changes REJECTED
> Date: Tue, 18 Sep 2018 09:04:06 +
> 
> 
> 
> Version check failed:
> Your upload included the source package calibre, version 3.31.0+dfsg-1~bpo9+1,
> however stretch-backports already has version 3.31.0+dfsg-1~bpo9+1.
> Uploads to stretch-backports must have a higher version than present in 
> stretch-backports.

Nah, it's alright, I just uploaded it 20 minutes before your mail!

Sorry for clashing!

-- 
regards,
Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540  .''`.
more about me:  https://mapreri.org : :'  :
Launchpad user: https://launchpad.net/~mapreri  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-


signature.asc
Description: PGP signature


Bug#909057: Fwd: calibre_3.31.0+dfsg-1~bpo9+1_amd64.changes REJECTED

2018-09-18 Thread Chris Lamb
tags 909057 - pending
thanks

(Forwarding for completeness)

- Original message -
From: Debian FTP Masters 
To: la...@debian.org, Norbert Preining , Nicholas D 
Steeves 
Subject: calibre_3.31.0+dfsg-1~bpo9+1_amd64.changes REJECTED
Date: Tue, 18 Sep 2018 09:04:06 +



Version check failed:
Your upload included the source package calibre, version 3.31.0+dfsg-1~bpo9+1,
however stretch-backports already has version 3.31.0+dfsg-1~bpo9+1.
Uploads to stretch-backports must have a higher version than present in 
stretch-backports.



Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#909057: RFS: calibre/3.31.0+dfsg-1~bpo9+1

2018-09-18 Thread Chris Lamb
tags 909057 + pending
thanks

Hi Nicholas,

> I am looking for a sponsor for my update to the "calibre"
> stretch-backport.

Uploaded.


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-



Bug#909057: marked as done (RFS: calibre/3.31.0+dfsg-1~bpo9+1)

2018-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2018 10:22:33 +0200
with message-id <20180918082232.gc16...@mapreri.org>
and subject line Re: Bug#909057: RFS: calibre/3.31.0+dfsg-1~bpo9+1
has caused the Debian Bug report #909057,
regarding RFS: calibre/3.31.0+dfsg-1~bpo9+1
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.)


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

Hi Chris, and dear mentors,

I am looking for a sponsor for my update to the "calibre"
stretch-backport.  It is a no-change backport, and I confirmed that it
works perfectly well with my Kobo.  This update is justified because
epub to mobi conversion was broken for a time; as I do not own a
Kindle I am not able to confirm for what versions this functionality
was broken.  Don't forget to build with -v3.26.0+dfsg-1~bpo9+1

Package name: calibre
Version : 3.31.0+dfsg-1~bpo9+1
URL : https://calibre-ebook.com/
License : GPL-3, GPL2+, BSD-3-Clause, LGPL-2.1+, MIT, BSD-2-Clause, et 
al
Section : text

It builds these binary packages:

  calibre - powerful and easy to use e-book manager
  calibre-bin - powerful and easy to use e-book manager

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

  https://mentors.debian.net/package/calibre

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

dget -x 
https://mentors.debian.net/debian/pool/main/c/calibre/calibre_3.31.0+dfsg-1~bpo9+1.dsc

Changes since the last upload:

calibre (3.31.0+dfsg-1~bpo9+1) stretch-backports; urgency=medium

  * Rebuild for stretch-backports.

 -- Nicholas D Steeves   Sun, 16 Sep 2018 21:30:02 -0400

calibre (3.31.0+dfsg-1) unstable; urgency=medium

  * New upstream version 3.31.0+dfsg

 -- Norbert Preining   Fri, 07 Sep 2018 15:06:49 +0900

calibre (3.30.0+dfsg-1) unstable; urgency=medium

  * New upstream version 3.30.0+dfsg
(probably already fixed much earlier)
- python epub to mobi conversion works (Closes: #699057)
- PyQt4 not used anymore (Closes: #771550)
- markdown patch is not used anymore (Closes: #723907)
- properly open directories (Closes: #738535)
- man pages are now available for calibre/ebook cmds (Closes: #766555)
  * add python-html5lib for recipe dependencies (Closes: #906572)
  * add depends on libjpeg-turbo-progs and optipng for image
optimization in ebook editor (Closes: #884767)

 -- Norbert Preining   Fri, 24 Aug 2018 12:50:53 +0900

calibre (3.29.0+dfsg-1) unstable; urgency=medium

  * New upstream version 3.29.0+dfsg
  * update patches

 -- Norbert Preining   Fri, 10 Aug 2018 21:22:26 +0900

calibre (3.28.0+dfsg-1) unstable; urgency=medium

  * New upstream version 3.28.0+dfsg

 -- Norbert Preining   Sat, 21 Jul 2018 13:44:07 +0900

calibre (3.27.1+dfsg-1) unstable; urgency=medium

  * New upstream version 3.27.1+dfsg

 -- Norbert Preining   Mon, 09 Jul 2018 14:06:12 +0900

calibre (3.26.1+dfsg-1) unstable; urgency=medium


Regards,
Nicholas D Steeves
--- End Message ---
--- Begin Message ---
On Mon, Sep 17, 2018 at 05:35:16PM -0400, Nicholas D Steeves wrote:
> I am looking for a sponsor for my update to the "calibre"
> stretch-backport.  It is a no-change backport, and I confirmed that it
> works perfectly well with my Kobo.  This update is justified because
> epub to mobi conversion was broken for a time; as I do not own a
> Kindle I am not able to confirm for what versions this functionality
> was broken.  Don't forget to build with -v3.26.0+dfsg-1~bpo9+1

✓

-- 
regards,
Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540  .''`.
more about me:  https://mapreri.org : :'  :
Launchpad user: https://launchpad.net/~mapreri  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-


signature.asc
Description: PGP signature
--- End Message ---