Bug#905398: RFS: wolfssl/3.15.3+dfsg-2 [RC]

2018-08-03 Thread Chris Lamb
Hi Felix,

> I am looking for a sponsor for my package "wolfssl"

Uploaded.

In future, please use X-Debbugs-CC instead of an explicit BCC,
otherwise I must find the bug number myself in order to respond here.


Regards,

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



Re: bison help needed

2018-08-03 Thread Andreas Tille
Hi Dan,

On Fri, Aug 03, 2018 at 09:50:03PM -0700, Dan Kegel wrote:
> Try
> 
> --- a/debian/rules
> +++ b/debian/rules
> @@ -1,6 +1,7 @@
>  #!/usr/bin/make -f
>  # debian/rules file for maude
>  export DH_VERBOSE=1
> +export DEB_CXXFLAGS_MAINT_APPEND=-fpermissive

I tried this but the error remains exactly the same.
 
>  %:
> dh $@
> 
> but I wonder how many arguments yyparse and yyerror are really
> supposed to have; there may be a bit of confusion there.

Sorry, I do not understand this.

Kind regards

 Andreas.


> On Fri, Aug 3, 2018 at 7:17 AM, Andreas Tille  wrote:
> > On Fri, Aug 03, 2018 at 03:29:49PM +0500, Andrey Rahmatullin wrote:
> >> > flex -t -p -p ./lexer.ll > lexer.cc
> >> > -I (interactive) entails a minor performance penalty
> >> > mv surface.c surface.cc
> >> > mv: cannot stat 'surface.c': No such file or directory
> >>
> >> surface.cc surface.h: surface.yy
> >>   $(BISON) -dv surface.yy -o surface.c
> >>   mv surface.c surface.cc
> >>
> >> Looks like this target is executed twice in parallel?
> >
> > Ahhh, thanks for pointing this out.  I added the --no-parallel option
> > which brought me further away until:
> >
> > ...
> > 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 -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: error: 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: error: 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:1066: libmixfix_a-surface.o] Error 1
> > make[6]: Leaving directory '/build/maude-2.7.1/src/Mixfix'
> > make[5]: *** [Makefile:484: all] Error 2
> > ...
> >
> >
> > Any further hint?
> >
> > Kind regards
> >
> >  Andreas.
> >
> >
> > --
> > http://fam-tille.de
> >
> >
> >
> 
> 

-- 
http://fam-tille.de



Bug#905398: RFS: wolfssl/3.15.3+dfsg-2 [RC]

2018-08-03 Thread Felix Lechner
Package: sponsorship-requests
Severity: important

Dear mentors,

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

* Package name: wolfssl
  Version : 3.15.3+dfsg-2
  Upstream Author : wolfSSL, Inc.
* URL : https://www.wolfssl.com/products/wolfssl/
* License : GPL-2+ et al.
  Section : libs

It builds those binary packages:

 libwolfssl-dev - Development files for the wolfSSL encryption library
 libwolfssl18 - wolfSSL encryption library

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

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


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

  dget -x 
https://mentors.debian.net/debian/pool/main/w/wolfssl/wolfssl_3.15.3+dfsg-2.dsc

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

Changes since the last upload:

* Ship wolfssl/control.h (Closes: #904711)
* Enabled TLS 1.3 (Closes: #904710)

Regards,
 Felix Lechner



Re: bison help needed

2018-08-03 Thread Andreas Tille
On Fri, Aug 03, 2018 at 03:29:49PM +0500, Andrey Rahmatullin wrote:
> > flex -t -p -p ./lexer.ll > lexer.cc
> > -I (interactive) entails a minor performance penalty
> > mv surface.c surface.cc
> > mv: cannot stat 'surface.c': No such file or directory
> 
> surface.cc surface.h: surface.yy
>   $(BISON) -dv surface.yy -o surface.c
>   mv surface.c surface.cc
> 
> Looks like this target is executed twice in parallel?

Ahhh, thanks for pointing this out.  I added the --no-parallel option
which brought me further away until:

...
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 -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: error: 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: error: 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:1066: libmixfix_a-surface.o] Error 1
make[6]: Leaving directory '/build/maude-2.7.1/src/Mixfix'
make[5]: *** [Makefile:484: all] Error 2
...


Any further hint?

Kind regards

 Andreas.


-- 
http://fam-tille.de




Bug#905374: marked as done (RFS: ipmiutil/3.1.2-1)

2018-08-03 Thread Debian Bug Tracking System
Your message dated Fri, 03 Aug 2018 22:20:26 +
with message-id 
and subject line closing RFS: ipmiutil/3.1.2-1
has caused the Debian Bug report #905374,
regarding RFS: ipmiutil/3.1.2-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.)


-- 
905374: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=905374
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Package: sponsorship-requests
Severity: normal


Dear mentors,

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

   Package name: ipmiutil
   Version : 3.1.2-1
   Upstream Author : Andy Cress 
   URL : https://sourceforge.net/projects/ipmiutil/
   License : BSD-2-clause, BSD-3-clause, GPL-2+,
 GPL-2+ with OpenSSL exception, Zlib, Artistic-2.0
   Section : utils

It builds those binary packages:

ipmiutil   - IPMI management utilities

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

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


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

dget -x 
https://mentors.debian.net/debian/pool/main/i/ipmiutil/ipmiutil_3.1.2-1.dsc

 
Changes since the last upload:

  * New upstream release.
- Refresh patches.


Regards,
   Jörg Frings-Fürst


- -- 
New:
GPG Fingerprint: 63E0 075F C8D4 3ABB 35AB  30EE 09F8 9F3C 8CA1 D25D
GPG key (long) : 09F89F3C8CA1D25D
GPG Key: 8CA1D25D
CAcert Key S/N : 0E:D4:56

Old pgp Key: BE581B6E (revoked since 2014-12-31).

Jörg Frings-Fürst
D-54470 Lieser


git:  https://jff.email/cgit/

Threema:  SYR8SJXB
Wire: @joergfringsfuerst
Skype:joergpenguin
Ring: jff
Telegram: @joergfringsfuerst


My wish list: 
 - Please send me a picture from the nature at your home.
-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEY+AHX8jUOrs1qzDuCfifPIyh0l0FAltkiF4ACgkQCfifPIyh
0l0GKxAAuzs7BQaf6hCWBhelExZhPkjturjP+cdZijZUtB+lRn/29InSas7O2x9G
GlavP44Pi2erI5LjAIfcHBWw2n/sGU2WrHFM/xaKctTBtvmkcA1klemhM17kRDY8
sC1PiPCHvvv2DBuguSRolb2jV7amIjgIVbs6llsatDpAnqmBPgV4hCjKJa9+vugy
2taMTeByUTRKqD5n2KoCyeS5I5/YHMamXC+RbE9dOj8Li8bMpn/ldBlEVCQseo1P
gclGLbJhgpslA25Xp+zY7u+L/LiYZk/jn+G0obPkhwCIyHpN3TWCXmsxuAPHD4YY
Ouz8BIt9oW7gPBIg7RyYqI6+UTBXvnIwOIwBsDZTp5u/UtAR/wM+Y9jM1LJp+V+s
MPHPiFXSdJs+oDRpcsDehAA4xKIsOrgf9A+y6kOwX6HtCHvWJiVsKEciexNDomZO
6HyKfOTpUQRNcMdUroR3Bz88IouSu58P0fEu0rAcLv4Hii+q3lMH8gMULkyMNHuY
aeGQbgPYcI3qPLzTiEwVcTumhxWpheabsDV/H7J1ndd4tBb0GW/OG/ln12b9Sr0t
kJTv++oLNfQE/Xa29Zn39nCQymnbB3f690oZG8uG/GGC5v6jN7jyXWNb4Hu0can/
AsIAzQ9mikMQ9Y8HqWdtXSqPAq/zK5M515zNapuOa78aB5cU2Tw=
=gU64
-END PGP SIGNATURE-
--- End Message ---
--- Begin Message ---
Package ipmiutil version 3.1.2-1 is in unstable now.
https://packages.qa.debian.org/ipmiutil--- End Message ---


Bug#905375: RFS: bitz-server/2.0.1-1

2018-08-03 Thread Jörg Frings-Fürst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

retitle 905375 RFS: bitz-server/2.0.1-1
thanks

Hi,

sorry for the wrong title.

CU
Jörg

- -- 
New:
GPG Fingerprint: 63E0 075F C8D4 3ABB 35AB  30EE 09F8 9F3C 8CA1 D25D
GPG key (long) : 09F89F3C8CA1D25D
GPG Key: 8CA1D25D
CAcert Key S/N : 0E:D4:56

Old pgp Key: BE581B6E (revoked since 2014-12-31).

Jörg Frings-Fürst
D-54470 Lieser


git:  https://jff.email/cgit/

Threema:  SYR8SJXB
Wire: @joergfringsfuerst
Skype:joergpenguin
Ring: jff
Telegram: @joergfringsfuerst


My wish list: 
 - Please send me a picture from the nature at your home.
-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEY+AHX8jUOrs1qzDuCfifPIyh0l0FAltkmS8ACgkQCfifPIyh
0l2LJQ/+MSHoiazDTtBtH1/KVYV44lm/yzzIj5VUvyZXIiCZWAGawZqimMwHgPdX
0dkEzn/PvBweFeS25pg9rbl+bdgHT3Ez+okl3DuqpXIkKjMssoJv+RosE8vZPaI1
fFa9lgNi9vS+T81T+X0fMG5cAWr5rbo0OM9neAvfcOVQ1CH4YMbB2Ml22ogOVB/A
VndZZPEb/nVX1g59w6FGJl1jWoFMW1tVJOCa7vYTUT+HXSYyqWmyVr3aJWmeQ/2W
MB0rkrjY+GPeewDk47sERHgngBrR8tu1K6DrB04xGjSgs39L7rmMC83zyYQLHwlh
tPmfFKvQeY0AIgJqBkg+HR4NjVlizIRJPPa9Uyth1EKDRkFVaSO48KFjkr0cdn6W
dw2j2kc//e8unBxfBBPkeVxWG6CrPlt2pUX8dm+sY/PWxKgzd7bibYFDWBw6PyGJ
lWt165fNI8gl+kw62CYlkFh8Xw1OY9rlil3dkYGjefc/MTUwd893B5lF/z2o19fv
LDfiRot0M2dgkly46Lsp7GxnJv5QVtGpbQssyFd/Wwb7+NvBHyV2wlNiqK5S6FNb
6jVVUeyrmsQ8MehWhULfSAAUtO3ae9sZw89peyAFml4NeEa00jjb11ALvBy4cIoY
QZz+YCcoTn85QWVT6ex8vOuxGJ3JmbD3YQ6/H2oX1nuifdIdWLk=
=6zlc
-END PGP SIGNATURE-



Bug#905375: sub...@bugs.debian.org

2018-08-03 Thread Jörg Frings-Fürst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Package: sponsorship-requests
Severity: normal

Dear mentors,

  I am looking for a sponsor for my package "bitz-server"

   Package name: bitz-server
   Version : 2.0.1-1
   Upstream Author : Uditha Atukorala 
   URL : https://github.com/uditha-atukorala/bitz-server
   License : GPL-3+, MIT, BSD-2 
   Section : net

  It builds those binary packages:

bitz-server - ICAP server (RFC 3507) implementation in C++
bitz-server-doc - ICAP server (RFC 3507) implementation in C++ (Documentation)
libicap-dev - ICAP server (RFC 3507) implementation in C++ (development 
files)
libicap1- ICAP server (RFC 3507) implementation in C++ (library files)

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

  https://mentors.debian.net/package/bitz-server


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

dget -x 
https://mentors.debian.net/debian/pool/main/b/bitz-server/bitz-server_2.0.1-1.dsc

 
  Changes since the last upload:

* New upstream release:
- Remove upstream applied patches 0600-man_page_spelling.patch and
  0100-spelling.patch

  Regards,
   Jörg Frings-Fürst


- -- 
New:
GPG Fingerprint: 63E0 075F C8D4 3ABB 35AB  30EE 09F8 9F3C 8CA1 D25D
GPG key (long) : 09F89F3C8CA1D25D
GPG Key: 8CA1D25D
CAcert Key S/N : 0E:D4:56

Old pgp Key: BE581B6E (revoked since 2014-12-31).

Jörg Frings-Fürst
D-54470 Lieser


git:  https://jff.email/cgit/

Threema:  SYR8SJXB
Wire: @joergfringsfuerst
Skype:joergpenguin
Ring: jff
Telegram: @joergfringsfuerst


My wish list: 
 - Please send me a picture from the nature at your home.
-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEY+AHX8jUOrs1qzDuCfifPIyh0l0FAltklosACgkQCfifPIyh
0l1eMQ/+Pg35yozvcMixFVgNKk0zdioyJXqPbGieug2xsR6mjjC1VLe7tC9m1g9k
3w8aAEy7zmoNajSDP8qRbfPLXFWi+0IFFdjD5pSm0Qi575bBQOQNs/w+ag0+oQdQ
5L9WzmpzZjCIF8+Sl60jJA40F/vJii/o8QKYY1TCs6khK8t60aE3nPrfQ0DdBnP4
d69QDj03b3FVP2ksLnWTwIb7lrvSDe9BLNR+HbIkVXZcRyYdPGghbeyT++6DC0WK
Av/FDLsq6X53b/ddJzJe8MSqDB1dHH3naRjElZHuVaW2QF8yzp+Jr+qdWa+v9zFg
KdVAR+oeT2o5O3ca2/dbVcORJXYgEAu3aRgOrH/bD8I5lyn+xYN8M+tykuY6rjCn
lUQrDXe7CGrwgjJUwR/7cMsT7CNaB4zZ4PmpYX8/M83LHPeuHOt1TOzeMGlL1kEN
jbxYg4aWxgGIx6ysOnaWS6VsxjwhMbJjKteLprUW3y0AZgTfLf0Nzmj2nV/IjpVd
gKy+EcWOwymaqxSuWlHYI1SuxSO1yf26KMYHQcijxoW1TwW1U537Z00FkLQXTUJ1
3nR0MRhSZeONmxPSdA8StqhYWf+z3f9CaRkI8f0NIafMUz0iogNG9RXX6ExjBD60
U/ndCnlh3TLVESB6mBYOZUDz6oUnjEjkl+LUec7XH7Sa4I5RPJU=
=VV33
-END PGP SIGNATURE-



Bug#905374: RFS: ipmiutil/3.1.2-1

2018-08-03 Thread Jörg Frings-Fürst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Package: sponsorship-requests
Severity: normal


Dear mentors,

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

   Package name: ipmiutil
   Version : 3.1.2-1
   Upstream Author : Andy Cress 
   URL : https://sourceforge.net/projects/ipmiutil/
   License : BSD-2-clause, BSD-3-clause, GPL-2+,
 GPL-2+ with OpenSSL exception, Zlib, Artistic-2.0
   Section : utils

It builds those binary packages:

ipmiutil   - IPMI management utilities

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

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


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

dget -x 
https://mentors.debian.net/debian/pool/main/i/ipmiutil/ipmiutil_3.1.2-1.dsc

 
Changes since the last upload:

  * New upstream release.
- Refresh patches.


Regards,
   Jörg Frings-Fürst


- -- 
New:
GPG Fingerprint: 63E0 075F C8D4 3ABB 35AB  30EE 09F8 9F3C 8CA1 D25D
GPG key (long) : 09F89F3C8CA1D25D
GPG Key: 8CA1D25D
CAcert Key S/N : 0E:D4:56

Old pgp Key: BE581B6E (revoked since 2014-12-31).

Jörg Frings-Fürst
D-54470 Lieser


git:  https://jff.email/cgit/

Threema:  SYR8SJXB
Wire: @joergfringsfuerst
Skype:joergpenguin
Ring: jff
Telegram: @joergfringsfuerst


My wish list: 
 - Please send me a picture from the nature at your home.
-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEY+AHX8jUOrs1qzDuCfifPIyh0l0FAltkiF4ACgkQCfifPIyh
0l0GKxAAuzs7BQaf6hCWBhelExZhPkjturjP+cdZijZUtB+lRn/29InSas7O2x9G
GlavP44Pi2erI5LjAIfcHBWw2n/sGU2WrHFM/xaKctTBtvmkcA1klemhM17kRDY8
sC1PiPCHvvv2DBuguSRolb2jV7amIjgIVbs6llsatDpAnqmBPgV4hCjKJa9+vugy
2taMTeByUTRKqD5n2KoCyeS5I5/YHMamXC+RbE9dOj8Li8bMpn/ldBlEVCQseo1P
gclGLbJhgpslA25Xp+zY7u+L/LiYZk/jn+G0obPkhwCIyHpN3TWCXmsxuAPHD4YY
Ouz8BIt9oW7gPBIg7RyYqI6+UTBXvnIwOIwBsDZTp5u/UtAR/wM+Y9jM1LJp+V+s
MPHPiFXSdJs+oDRpcsDehAA4xKIsOrgf9A+y6kOwX6HtCHvWJiVsKEciexNDomZO
6HyKfOTpUQRNcMdUroR3Bz88IouSu58P0fEu0rAcLv4Hii+q3lMH8gMULkyMNHuY
aeGQbgPYcI3qPLzTiEwVcTumhxWpheabsDV/H7J1ndd4tBb0GW/OG/ln12b9Sr0t
kJTv++oLNfQE/Xa29Zn39nCQymnbB3f690oZG8uG/GGC5v6jN7jyXWNb4Hu0can/
AsIAzQ9mikMQ9Y8HqWdtXSqPAq/zK5M515zNapuOa78aB5cU2Tw=
=gU64
-END PGP SIGNATURE-



Bug#905349: RFS: kcm-fcitx/0.5.5-2 [RC]

2018-08-03 Thread Boyuan Yang
Package: sponsorship-requests
Severity: important
X-Debbugs-CC: debian-input-met...@lists.debian.org

  Dear mentors and debian-input-method team members,

  I am looking for a sponsor for team package "kcm-fcitx".

 * Package name: kcm-fcitx
   Version : 0.5.5-2
   Upstream Author : Weng Xuetian 
 * URL : https://gitlab.com/fcitx/kcm-fcitx
 * License : GPL-2+
   Section : kde

  It builds those binary packages:

kde-config-fcitx - KDE configuration module for Fcitx

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

  https://mentors.debian.net/package/kcm-fcitx


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

dget -x 
https://mentors.debian.net/debian/pool/main/k/kcm-fcitx/kcm-fcitx_0.5.5-2.dsc

 Git packaging repository:

https://salsa.debian.org/input-method-team/kcm-fcitx.git

  Changes since the last upload:

 kcm-fcitx (0.5.5-2) unstable; urgency=medium
 .
   * Team upload.
   * debian/control:
 + Apply "wrap-and-sort -abst".
 + Set maintainer to debian-input-method mailing list (Closes: #899561).
 + Update YunQiang Su's email address and use the @debian.org one.
 + debian/control: Bump debhelper compat to v11.
 + Bump Standards-Version to 4.2.0 (no changes needed).
 + Update Vcs fields and use git repo under Salsa platform.
 + Update homepage field and use the repo on gitlab.com.
   * debian/rules: Modernize rules file and explicitly include architecture.mk.


  Regards,
   Boyuan Yang



Bug#904408: RFS: pidgin-gmchess/0.02-2 [QA]

2018-08-03 Thread Adam Borowski
On Tue, Jul 24, 2018 at 01:35:37AM -0300, Paulo Henrique de Lima Santana wrote:
> Please **don't sponsor and upload** this package because my AM (Mike Gabriel)
> will review it.

I guess the reason you posted it here is that you still want some external
review, right?

>  * Package name: pidgin-gmchess
>Version : 0.02-2

> https://mentors.debian.net/debian/pool/main/p/pidgin-gmchess/pidgin-gmchess_0.02-2.dsc

Why would you introduce a bogus watch file instead of simply providing none?
If the package doesn't have an upstream anymore, there's nothing to watch.
Adding requests to some fake URL that reports no news sounds
counterproductive to me.

I see no other problems.


Meow!
-- 
// If you believe in so-called "intellectual property", please immediately
// cease using counterfeit alphabets.  Instead, contact the nearest temple
// of Amon, whose priests will provide you with scribal services for all
// your writing needs, for Reasonable And Non-Discriminatory prices.



Re: bison help needed

2018-08-03 Thread Jose Gutierrez de la Concha
On Fri, Aug 3, 2018 at 12:30 PM Andrey Rahmatullin  wrote:

> On Fri, Aug 03, 2018 at 12:10:45PM +0200, Andreas Tille wrote:
> > make[4]: Entering directory '/build/maude-2.7.1/src/Mixfix'
> > cat \
> > ./top.yy \
> > ./modules.yy \
> > ./commands.yy \
> > ./bottom.yy \
> > > surface.yy
> > bison -dv surface.yy -o surface.c
> > bison -dv surface.yy -o surface.c
> > mv surface.c surface.cc
> > flex -t -p -p ./lexer.ll > lexer.cc
> > -I (interactive) entails a minor performance penalty
> > mv surface.c surface.cc
> > mv: cannot stat 'surface.c': No such file or directory
>
> surface.cc surface.h: surface.yy
> $(BISON) -dv surface.yy -o surface.c
> mv surface.c surface.cc
>
> Looks like this target is executed twice in parallel?
>

You can try

surface.h: surface.cc
surface.cc: surface.yy
$(BISON) -dv surface.yy -o surface.cc


>
> --
> WBR, wRAR
>


-- 
José Gutiérrez de la Concha
ZeroC, Inc.


Re: bison help needed

2018-08-03 Thread Andrey Rahmatullin
On Fri, Aug 03, 2018 at 12:10:45PM +0200, Andreas Tille wrote:
> make[4]: Entering directory '/build/maude-2.7.1/src/Mixfix'
> cat \
> ./top.yy \
> ./modules.yy \
> ./commands.yy \
> ./bottom.yy \
> > surface.yy
> bison -dv surface.yy -o surface.c
> bison -dv surface.yy -o surface.c
> mv surface.c surface.cc
> flex -t -p -p ./lexer.ll > lexer.cc
> -I (interactive) entails a minor performance penalty
> mv surface.c surface.cc
> mv: cannot stat 'surface.c': No such file or directory

surface.cc surface.h: surface.yy
$(BISON) -dv surface.yy -o surface.c
mv surface.c surface.cc

Looks like this target is executed twice in parallel?

-- 
WBR, wRAR


signature.asc
Description: PGP signature


bison help needed

2018-08-03 Thread Andreas Tille
Hi,

I intend to upgrade maude[1] to its latest upstream version.  Unfortunately
I was running into:

...
Making all in Mixfix
make[4]: Entering directory '/build/maude-2.7.1/src/Mixfix'
cat \
./top.yy \
./modules.yy \
./commands.yy \
./bottom.yy \
> surface.yy
bison -dv surface.yy -o surface.c
bison -dv surface.yy -o surface.c
mv surface.c surface.cc
flex -t -p -p ./lexer.ll > lexer.cc
-I (interactive) entails a minor performance penalty
mv surface.c surface.cc
mv: cannot stat 'surface.c': No such file or directory
...


So something might be wrong with bison but I have no idea how to fix
this.  Any ideas?

Kind regards

Andreas.

[1] https://salsa.debian.org/med-team/maude

-- 
http://fam-tille.de