Re: cython/bison issue (Was: acedb: FTBFS: acein.c:2045:15: error: implicit declaration of function ‘add_history’ [-Werror=implicit-function-declaration])

2024-04-13 Thread Andreas Tille
Hi Jeremy,

Am Sat, Apr 13, 2024 at 10:46:17PM +0100 schrieb Jeremy Sowden:
> 
> The one after this looks like a GTK problem, and that's the point at
> which I bow out.

Thanks a lot for your help so far.  Your patches are pushed to Git.

Kind regards
   Andreas.

-- 
https://fam-tille.de



Bug#1068564: closing 1068564

2024-04-13 Thread Sean Whitton
close 1068564 
thanks
-- 
Sean Whitton



Bug#1063531: RFS: mplayer/2:1.5+svn38446-2 -- movie player for Unix-like systems

2024-04-13 Thread Lorenzo
Hi,

On Sat, 13 Apr 2024 12:54:19 +0200 Tobias Frost  wrote:
> Uploaded, thanks for your contribution.
Thanks :)

> 
> Some remark:
> - On the BTS are quite a number of open bugs. Should they be triaged
> to see if they still have merit, reported upstream or otherwise
> handled?

Yes, I'm *very slowly* processing old bugs (for example #418855,
#753991 or other recently fixed) while dealing with the stream
of new ones ; for many of those (old bugs) there is not much I can do
apart from tagging though..
Besides from fixing frequent FTBFS, top priority on my TODO list are
#1038513, maybe #967643 and the quilt patch for CVE-2016-4352 (it's
reported as fixed upstream in 2016 but it still apply??)

Cheers,
Lorenzo
 
> 
> Cheers,
> tobi
> 
> On Fri, Feb 09, 2024 at 02:28:51PM +0100, Lorenzo wrote:
> > Package: sponsorship-requests
> > Severity: normal
> > 
> > Dear mentors,
> > 
> > I am looking for a sponsor for my package "mplayer":
> > 
> >  * Package name : mplayer
> >Version  : 2:1.5+svn38446-2
> >Upstream contact : [fill in name and email of upstream]
> >  * URL  : https://mplayerhq.hu
> >  * License  : LGPL-2.1+, Expat, ISC, public-domain-tom,
> > GPL-2+, BSD-2-Clause, other-2, other-1
> >  * Vcs  :
> > https://salsa.debian.org/multimedia-team/mplayer Section  :
> > video
> > 
> > The source builds the following binary packages:
> > 
> >   mplayer-gui - movie player for Unix-like systems (GUI variant)
> >   mencoder - MPlayer's Movie Encoder
> >   mplayer - movie player for Unix-like systems
> >   mplayer-doc - documentation for MPlayer
> > 
> > To access further information about this package, please visit the
> > following URL:
> > 
> >   https://mentors.debian.net/package/mplayer/
> > 
> > Alternatively, you can download the package with 'dget' using this
> > command:
> > 
> >   dget -x
> >   
> > https://mentors.debian.net/debian/pool/main/m/mplayer/mplayer_1.5+svn38446-2.dsc
> > 
> > Git repo:
> > 
> >   
> > https://salsa.debian.org/multimedia-team/mplayer/-/tree/next?ref_type=heads
> > 
> > Changes since the last upload:
> > 
> >  mplayer (2:1.5+svn38446-2) unstable; urgency=medium
> >  .
> >* build a noaltivec variant of mplayer for powerpc
> >* install alternatives for mplayer-altivec and
> >   mplayer-noaltivec on powerpc; the altivec
> >   variant has the highest priority (Closes: #410962)
> >* d/control: B-D:
> >- add dh-exec
> >- replace obsolete pkg-config with pkgconf
> > 



Bug#1067126: RFS: lighttpd/1.4.76-1 -- light, fast, functional web server

2024-04-13 Thread gs-bugs . debian . org
lighttpd-1.4.76-1 passes autopkgtests and expected CI tests,
and is tagged.  (This is a non-DD maintainer upload.)

 * Package name : lighttpd
   Version  : 1.4.76-1
   Upstream contact : team+light...@tracker.debian.org
 * URL  : https://lighttpd.net/
 * License  : BSD-3-Clause
 * Vcs  : https://git.lighttpd.net/lighttpd/lighttpd1.4


lighttpd (1.4.76-1) unstable; urgency=medium
  * New upstream version 1.4.76
  * Detect VU#421644 HTTP/2 CONTINUATION Flood
  * Avoid CVE-2024-3094 xz supply chain attack



Re: cython/bison issue (Was: acedb: FTBFS: acein.c:2045:15: error: implicit declaration of function ‘add_history’ [-Werror=implicit-function-declaration])

2024-04-13 Thread Jeremy Sowden
On 2024-04-13, at 21:48:10 +0100, Jeremy Sowden wrote:
> On 2024-04-13, at 09:31:07 +0200, Andreas Tille wrote:
> > Control: tags -1 help
> > thanks
> > 
> > Hi,
> > 
> > while I was able to fix the origininal cause of the failure I'm now blocked 
> > by
> > some issue that cython seems to miss adding some
> >#include 
> > but I have no idea how to accomplish this.  The Salsa CI build log[1] says:
> > 
> > ...
> > y.tab.c: In function 'yyparse':
> > y.tab.c:1409:16: error: implicit declaration of function 'yylex' 
> > [-Werror=implicit-function-declaration]
> > y.tab.c:2185:7: error: implicit declaration of function 'yyerror'; did you 
> > mean 'YYerror'? [-Werror=implicit-function-declaration]
> > In file included from aqlparse.y:335:
> > aqlparse.l: In function 'yylex':
> > ...
> > 
> > Any help would be welcome
> > Andreas.
> 
> You are missing declarations:
> 
>  * `yylex`   - this needs to be added to the yacc source
>  * `yyerror` - this is present but hidden by a CPP conditional
>  * `yywrap`  - this is not needed (grep for "YY_SKIP_YYWRAP") and can be
>disabled
> 
> Patch attached.

I attach a fix for the next error:

  gcc -g -Wall  -DACEDB4 `../w3rdparty/include-config glib-2.0 gtk+-2.0`  -I.. 
-I../wh -I../wstaden -DACEDB_GTK -DLINUX -c -o sigsubs.o sigsubs.c
  sigsubs.c: In function 'getSignalText':
  sigsubs.c:486:30: error: '_sys_siglist' undeclared (first use in this 
function)
486 |   char **signal_textlist = &(_sys_siglist[0]) ;
|  ^~~~
  sigsubs.c:486:30: note: each undeclared identifier is reported only once for 
each function it appears in

The one after this looks like a GTK problem, and that's the point at
which I bow out.

J.
diff --git a/w4/sigsubs.c b/w4/sigsubs.c
index 2fd0c6ce9155..9d2942df1642 100644
--- a/w4/sigsubs.c
+++ b/w4/sigsubs.c
@@ -467,6 +467,10 @@ static char *getSignalText(int sig_num)
 
   return "unknown";
 
+#elif defined(LINUX)
+
+  return strsignal(sig_num);
+
 #else
 
   char *sig_text = NULL ;
@@ -485,7 +489,7 @@ static char *getSignalText(int sig_num)
 
   char **signal_textlist = &(_sys_siglist[0]) ;
 
-#if defined(LINUX) || defined(OPTERON) || defined(HP)
+#if defined(OPTERON) || defined(HP)
   int   signal_max= _NSIG ;
 #else
   int   signal_max= _sys_nsig ;


signature.asc
Description: PGP signature


Re: cython/bison issue (Was: acedb: FTBFS: acein.c:2045:15: error: implicit declaration of function ‘add_history’ [-Werror=implicit-function-declaration])

2024-04-13 Thread Jeremy Sowden
On 2024-04-13, at 09:31:07 +0200, Andreas Tille wrote:
> Control: tags -1 help
> thanks
> 
> Hi,
> 
> while I was able to fix the origininal cause of the failure I'm now blocked by
> some issue that cython seems to miss adding some
>#include 
> but I have no idea how to accomplish this.  The Salsa CI build log[1] says:
> 
> ...
> y.tab.c: In function 'yyparse':
> y.tab.c:1409:16: error: implicit declaration of function 'yylex' 
> [-Werror=implicit-function-declaration]
> y.tab.c:2185:7: error: implicit declaration of function 'yyerror'; did you 
> mean 'YYerror'? [-Werror=implicit-function-declaration]
> In file included from aqlparse.y:335:
> aqlparse.l: In function 'yylex':
> ...
> 
> Any help would be welcome
> Andreas.

You are missing declarations:

 * `yylex`   - this needs to be added to the yacc source
 * `yyerror` - this is present but hidden by a CPP conditional
 * `yywrap`  - this is not needed (grep for "YY_SKIP_YYWRAP") and can be
   disabled

Patch attached.

You can find more info about all three in the flex and bison manuals.

J.
diff --git a/waql/aql_.h b/waql/aql_.h
index cde94a97896b..dd3b89116280 100644
--- a/waql/aql_.h
+++ b/waql/aql_.h
@@ -448,7 +448,7 @@ char* aqlNodeTypeName (AqlNodeType inType);
 char* aqlOpTypeName (AqlOpType inType);
 char* aqlLocSourceTypeName (AqlLocSourceType inType);
 
-#if defined(IBM)
+#if defined(IBM) || defined(LINUX)
 /* predeclare lex.yy.c fns */
 void yyerror (char *s);
 #endif
diff --git a/waql/aqlparse.l b/waql/aqlparse.l
index 313375027957..bc232e0a4c48 100644
--- a/waql/aqlparse.l
+++ b/waql/aqlparse.l
@@ -102,6 +102,8 @@
 
 %}
 
+%option			noyywrap
+
 letter			[A-Za-z]
 digit			[0-9]
 id			{letter}({letter}|{digit}|"_")*
diff --git a/waql/aqlparse.y b/waql/aqlparse.y
index 9989831a4838..975ae325c14c 100644
--- a/waql/aqlparse.y
+++ b/waql/aqlparse.y
@@ -77,6 +77,8 @@ static int tokPos[1024];
 
 /**/
 
+int yylex(void);
+
 %}
  
 %union  {


signature.asc
Description: PGP signature


Bug#1063531: marked as done (RFS: mplayer/2:1.5+svn38446-2 -- movie player for Unix-like systems)

2024-04-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Apr 2024 12:54:19 +0200
with message-id 
and subject line Re: Bug#1063531: RFS: mplayer/2:1.5+svn38446-2 -- movie player 
for Unix-like systems
has caused the Debian Bug report #1063531,
regarding RFS: mplayer/2:1.5+svn38446-2 -- movie player for Unix-like systems
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.)


-- 
1063531: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1063531
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 "mplayer":

 * Package name : mplayer
   Version  : 2:1.5+svn38446-2
   Upstream contact : [fill in name and email of upstream]
 * URL  : https://mplayerhq.hu
 * License  : LGPL-2.1+, Expat, ISC, public-domain-tom, GPL-2+,
   BSD-2-Clause, other-2, other-1
 * Vcs  : https://salsa.debian.org/multimedia-team/mplayer
   Section  : video

The source builds the following binary packages:

  mplayer-gui - movie player for Unix-like systems (GUI variant)
  mencoder - MPlayer's Movie Encoder
  mplayer - movie player for Unix-like systems
  mplayer-doc - documentation for MPlayer

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

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

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

  dget -x
  
https://mentors.debian.net/debian/pool/main/m/mplayer/mplayer_1.5+svn38446-2.dsc

Git repo:

  https://salsa.debian.org/multimedia-team/mplayer/-/tree/next?ref_type=heads

Changes since the last upload:

 mplayer (2:1.5+svn38446-2) unstable; urgency=medium
 .
   * build a noaltivec variant of mplayer for powerpc
   * install alternatives for mplayer-altivec and
  mplayer-noaltivec on powerpc; the altivec
  variant has the highest priority (Closes: #410962)
   * d/control: B-D:
   - add dh-exec
   - replace obsolete pkg-config with pkgconf

Regards,
Lorenzo
--- End Message ---
--- Begin Message ---
Uploaded, thanks for your contribution.

Some remark:
- On the BTS are quite a number of open bugs. Should they be triaged to
  see if they still have merit, reported upstream or otherwise handled?

Cheers,
tobi

On Fri, Feb 09, 2024 at 02:28:51PM +0100, Lorenzo wrote:
> Package: sponsorship-requests
> Severity: normal
> 
> Dear mentors,
> 
> I am looking for a sponsor for my package "mplayer":
> 
>  * Package name : mplayer
>Version  : 2:1.5+svn38446-2
>Upstream contact : [fill in name and email of upstream]
>  * URL  : https://mplayerhq.hu
>  * License  : LGPL-2.1+, Expat, ISC, public-domain-tom, GPL-2+,
>BSD-2-Clause, other-2, other-1
>  * Vcs  : https://salsa.debian.org/multimedia-team/mplayer
>Section  : video
> 
> The source builds the following binary packages:
> 
>   mplayer-gui - movie player for Unix-like systems (GUI variant)
>   mencoder - MPlayer's Movie Encoder
>   mplayer - movie player for Unix-like systems
>   mplayer-doc - documentation for MPlayer
> 
> To access further information about this package, please visit the
> following URL:
> 
>   https://mentors.debian.net/package/mplayer/
> 
> Alternatively, you can download the package with 'dget' using this
> command:
> 
>   dget -x
>   
> https://mentors.debian.net/debian/pool/main/m/mplayer/mplayer_1.5+svn38446-2.dsc
> 
> Git repo:
> 
>   https://salsa.debian.org/multimedia-team/mplayer/-/tree/next?ref_type=heads
> 
> Changes since the last upload:
> 
>  mplayer (2:1.5+svn38446-2) unstable; urgency=medium
>  .
>* build a noaltivec variant of mplayer for powerpc
>* install alternatives for mplayer-altivec and
>   mplayer-noaltivec on powerpc; the altivec
>   variant has the highest priority (Closes: #410962)
>* d/control: B-D:
>- add dh-exec
>- replace obsolete pkg-config with pkgconf
> 
> Regards,
> Lorenzo
> --- End Message ---


Bug#1068814: marked as done (RFS: sup/20100519-4 [QA] [RC] -- Software Upgrade Protocol implementation)

2024-04-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Apr 2024 10:53:25 +0200
with message-id <25ee0541-fe8a-4e97-b1ba-1da514384...@debian.org>
and subject line Re: RFS: sup/20100519-4 [QA] [RC] -- Software Upgrade Protocol 
implementation
has caused the Debian Bug report #1068814,
regarding RFS: sup/20100519-4 [QA] [RC] -- Software Upgrade Protocol 
implementation
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.)


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

Dear mentors,

I am looking for a sponsor for my package "sup":

 * Package name : sup
   Version  : 20100519-4
   Upstream contact : [fill in name and email of upstream]
 * URL  : [fill in URL of upstream's web site]
 * License  : [fill in]
 * Vcs  : [fill in URL of packaging vcs]
   Section  : devel

The source builds the following binary packages:

  sup - Software Upgrade Protocol implementation

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

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

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

  dget -x https://mentors.debian.net/debian/pool/main/s/sup/sup_20100519-4.dsc

Changes since the last upload:

 sup (20100519-4) unstable; urgency=medium
 .
   * QA upload.
   * set std-ver to 4.7.0.
   * Add 07_fix-implicit-function-declaration.patch to fix ftbfs issue.
 (Closes: #1066658)

-- 
Regards,
--
  Bo YU



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

Thanks for the QA.--- End Message ---


Bug#1068101: RFS ping mini-httpd/1.30-10 -- Small HTTP server

2024-04-13 Thread Alexandru Mihail
Hello, pinging about the RFS - mini-httpd/1.30-10.
This introduces systemd service hardening, fixes a bug related to
charsets in error pages and directory listings which was ugly.
Please help if possible.
Mentors page:

  https://mentors.debian.net/package/mini-httpd/

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

  dget -x
https://mentors.debian.net/debian/pool/main/m/mini-httpd/mini-httpd_1.30-10.dsc

Thanks !




signature.asc
Description: This is a digitally signed message part


Bug#1065078: marked as done (RFS: planner/0.14.92-1 [ITA] -- project management application)

2024-04-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Apr 2024 10:16:37 +0200
with message-id <914ab212-6b95-43f9-b146-798562fc5...@debian.org>
and subject line Re: RFS: planner/0.14.92-1 [ITA] -- project management 
application
has caused the Debian Bug report #1065078,
regarding RFS: planner/0.14.92-1 [ITA] -- project management application
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.)


-- 
1065078: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065078
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 "planner":

 * Package name : planner
   Version  : 0.14.92-1
   Upstream contact : [fill in name and email of upstream]
 * URL  : https://wiki.gnome.org/action/show/Apps/Planner
 * License  : GPL-2+, GPL-2, BSD-like
 * Vcs  : [fill in URL of packaging vcs]
   Section  : gnome

The source builds the following binary packages:

  planner - project management application
  planner-doc - Documentation for planner
  planner-data - Data files for planner

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

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

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

  dget -x 
https://mentors.debian.net/debian/pool/main/p/planner/planner_0.14.92-1.dsc

Changes since the last upload:

 planner (0.14.92-1) unstable; urgency=medium
 .
   * New upstream version 0.14.92
   * New Maintainer (Closes: #892919)
   * d/control:
 - Bump Standards-Version to 4.6.2
 - Bump debhelper-compat version to 13
 - Add new maintainer's name to maintainer field.
   * d/copyright:
 - Change source url to use https
 - Add new authors' copyright details
 - Update copyright years
 - Add new maintainer to copyright field
   * d/watch:
 - Bump watch version to 4
   * Add d/upstream/metadata
   * Add libplanner-*.so symlink to not-installed
   * Add usr/share/GConf to planner-data.install
   * Add planner.lintian-override (unnecessary ldconfig activation)
   * Add planner-data.lintian-override (missing desktop command)
 .
   [Helmut Grohne]
   * d/rules: Fix FTCBFS, skip gtkdoc in arch-only build (Closes: #1062785)
 .
   [Marriott NZ]
   * d/planner.mime: Remove quoted placeholder from mailcap entry. Fixes
 lintian warning (Closes: #987406)

Regards,
--
  Shriram Ravindranathan



OpenPGP_0xFC7E951A7BEF0836.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---

On Thu, 29 Feb 2024 19:33:35 +0530 Shriram Ravindranathan  wrote:

  planner (0.14.92-1) unstable; urgency=medium


Thanks for adopting planner!

Please clone a new copy of the repository as I have force pushed all branches.
It now contains a generated history with gbp import-dscs --debsnap.--- End Message ---


Bug#1068724: RFS: gensync/2.0.5-1 [ITP] -- a library for efficient synchronization of data over a network.

2024-04-13 Thread Bastian Germann

Control: tags -1 moreinfo

On Tue, 9 Apr 2024 18:53:58 + "Chen, Xingyu"  wrote:

Changes for the initial release:

 gensync (2.0.5-1) UNRELEASED; urgency=medium
 .
   * Initial release (Closes: #)  


Please at least fill out the template before posting.
You will need to file an ITP on the wnpp package and reference it in your 
changelog.



cython/bison issue (Was: acedb: FTBFS: acein.c:2045:15: error: implicit declaration of function ‘add_history’ [-Werror=implicit-function-declaration])

2024-04-13 Thread Andreas Tille
Control: tags -1 help
thanks

Hi,

while I was able to fix the origininal cause of the failure I'm now blocked by
some issue that cython seems to miss adding some
   #include 
but I have no idea how to accomplish this.  The Salsa CI build log[1] says:

...
y.tab.c: In function 'yyparse':
y.tab.c:1409:16: error: implicit declaration of function 'yylex' 
[-Werror=implicit-function-declaration]
y.tab.c:2185:7: error: implicit declaration of function 'yyerror'; did you mean 
'YYerror'? [-Werror=implicit-function-declaration]
In file included from aqlparse.y:335:
aqlparse.l: In function 'yylex':
...

Any help would be welcome
Andreas.


[1] https://salsa.debian.org/med-team/acedb/-/jobs/5580840

-- 
https://fam-tille.de