tcmu is marked for autoremoval from testing

2024-03-26 Thread Debian testing autoremoval watch
tcmu 1.5.4-5 is marked for autoremoval from testing on 2024-04-06

It is affected by these RC bugs:
1053169: tcmu: Please remove librbd-dev build-depends on all 32 bits arch
 https://bugs.debian.org/1053169



This mail is generated by:
https://salsa.debian.org/release-team/release-tools/-/blob/master/mailer/mail_autoremovals.pl

Autoremoval data is generated by:
https://salsa.debian.org/qa/udd/-/blob/master/udd/testing_autoremovals_gatherer.pl



Bug#894117: marked as done (typespeed FTCBFS: does not pass --host to ./configure)

2024-03-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Mar 2024 20:43:58 +
with message-id 
and subject line Bug#894117: fixed in typespeed 0.6.5-5
has caused the Debian Bug report #894117,
regarding typespeed FTCBFS: does not pass --host to ./configure
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.)


-- 
894117: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=894117
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: typespeed
Version: 0.6.5-2.1
Tags: patch
User: helm...@debian.org
Usertags: rebootstrap

typespeed fails to cross build from source, because it does not pass the
relevant --host flag to ./configure. Using dh_auto_configure fixes that.
Still it fails, because the upstream build system fails to propagate the
cross compiler from configure to make. After removing the erroneous
assignments, it cross builds. Please consider applying the attached
patch.

Also please consider rebuilding Makefile.in from Makefile.am during
build.

Helmut
diff -u typespeed-0.6.5/debian/changelog typespeed-0.6.5/debian/changelog
--- typespeed-0.6.5/debian/changelog
+++ typespeed-0.6.5/debian/changelog
@@ -1,3 +1,12 @@
+typespeed (0.6.5-2.2) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTCBFS: (Closes: #-1)
++ Let dh_auto_configure pass --host to ./configure.
++ 0003-cross.patch: Propagate CC from configure to make.
+
+ -- Helmut Grohne   Mon, 26 Mar 2018 17:04:24 +0200
+
 typespeed (0.6.5-2.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -u typespeed-0.6.5/debian/control typespeed-0.6.5/debian/control
--- typespeed-0.6.5/debian/control
+++ typespeed-0.6.5/debian/control
@@ -1,5 +1,5 @@
 Source: typespeed
-Build-Depends: debhelper (>= 5), quilt (>= 0.46-7), libncurses5-dev, 
autotools-dev
+Build-Depends: debhelper (>= 7), quilt (>= 0.46-7), libncurses5-dev, 
autotools-dev
 Section: games
 Priority: optional
 Maintainer: Dafydd Harries 
diff -u typespeed-0.6.5/debian/patches/series 
typespeed-0.6.5/debian/patches/series
--- typespeed-0.6.5/debian/patches/series
+++ typespeed-0.6.5/debian/patches/series
@@ -1,0 +2 @@
+0003-cross.patch
diff -u typespeed-0.6.5/debian/rules typespeed-0.6.5/debian/rules
--- typespeed-0.6.5/debian/rules
+++ typespeed-0.6.5/debian/rules
@@ -16,8 +16,7 @@
 
 config.log: patch
dh_autotools-dev_updateconfig
-   ./configure --prefix=/usr --bindir=/usr/games --localstatedir=/var \
-   --sysconfdir=/etc
+   dh_auto_configure -- --bindir=/usr/games
 
 debian/build-stamp: config.log
dh_testdir
only in patch2:
unchanged:
--- typespeed-0.6.5.orig/.pc/.quilt_patches
+++ typespeed-0.6.5/.pc/.quilt_patches
@@ -0,0 +1 @@
+./debian/patches
only in patch2:
unchanged:
--- typespeed-0.6.5.orig/.pc/.quilt_series
+++ typespeed-0.6.5/.pc/.quilt_series
@@ -0,0 +1 @@
+series
only in patch2:
unchanged:
--- typespeed-0.6.5.orig/.pc/.version
+++ typespeed-0.6.5/.pc/.version
@@ -0,0 +1 @@
+2
only in patch2:
unchanged:
--- typespeed-0.6.5.orig/debian/patches/0003-cross.patch
+++ typespeed-0.6.5/debian/patches/0003-cross.patch
@@ -0,0 +1,44 @@
+Index: typespeed-0.6.5/src/Makefile.am
+===
+--- typespeed-0.6.5.orig/src/Makefile.am
 typespeed-0.6.5/src/Makefile.am
+@@ -1,4 +1,3 @@
+-CC = gcc
+ AM_CFLAGS = -Wall -W -pedantic -std=c99
+ 
+ HIGHFILE = typespeed.score
+Index: typespeed-0.6.5/src/Makefile.in
+===
+--- typespeed-0.6.5.orig/src/Makefile.in
 typespeed-0.6.5/src/Makefile.in
+@@ -85,7 +85,7 @@
+ AUTOHEADER = @AUTOHEADER@
+ AUTOMAKE = @AUTOMAKE@
+ AWK = @AWK@
+-CC = gcc
++CC = @CC@
+ CCDEPMODE = @CCDEPMODE@
+ CFLAGS = @CFLAGS@
+ CPP = @CPP@
+Index: typespeed-0.6.5/testsuite/Makefile.am
+===
+--- typespeed-0.6.5.orig/testsuite/Makefile.am
 typespeed-0.6.5/testsuite/Makefile.am
+@@ -1,4 +1,3 @@
+-CC = gcc
+ AM_CFLAGS = -I../src -Wall -W -pedantic -std=c99
+ 
+ localedir = $(datadir)/locale
+Index: typespeed-0.6.5/testsuite/Makefile.in
+===
+--- typespeed-0.6.5.orig/testsuite/Makefile.in
 typespeed-0.6.5/testsuite/Makefile.in
+@@ -98,7 +98,7 @@
+ AUTOHEADER = @AUTOHEADER@
+ AUTOMAKE = @AUTOMAKE@
+ AWK = @AWK@
+-CC = gcc
++CC = @CC@
+ CCDEPMODE = @CCDEPMODE@
+ CFLAGS = @CFLAGS@
+ CPP = @CPP@
--- End Message ---
--- Begin Message ---
Source: typespeed
Source-Version: 0.6.5-5
Done: Bastian Germann 

We believe that the bug you reported is fixed in the latest version of
typespeed, 

Bug#662805: marked as done (typespeed: Homepage seems to have changed)

2024-03-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Mar 2024 20:43:58 +
with message-id 
and subject line Bug#662805: fixed in typespeed 0.6.5-5
has caused the Debian Bug report #662805,
regarding typespeed: Homepage seems to have changed
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.)


-- 
662805: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=662805
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: typespeed
Version: 0.6.5-1.1
Severity: minor

Hi,

mymachine:~# aptitude show typespeed
Package: typespeed   
Version: 0.6.5-1.1
Homepage: http://tobias.eyedacor.org/typespeed/

It seems this homepage is not available anymore.

http://freecode.com/projects/typespeed lists

   http://typespeed.sourceforge.net/ 

as the project site.

Memnon

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-1-686-pae (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages typespeed depends on:
ii  coreutils8.13-3
ii  libc62.13-26
ii  libncurses5  5.9-4

typespeed recommends no packages.

typespeed suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: typespeed
Source-Version: 0.6.5-5
Done: Bastian Germann 

We believe that the bug you reported is fixed in the latest version of
typespeed, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 662...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bastian Germann  (supplier of updated typespeed package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 26 Mar 2024 20:16:06 +
Source: typespeed
Architecture: source
Version: 0.6.5-5
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Bastian Germann 
Closes: 662805 894117 1046694
Changes:
 typespeed (0.6.5-5) unstable; urgency=medium
 .
   * QA upload
   * Drop unnecessary B-D quilt
   * Correct Homepage (Closes: #662805)
   * Pass --host to configure (Closes: #894117)
   * Clean typespeedrc (Closes: #1046694)
   * Drop unnecessary Depends
 .
   [ Helmut Grohne ]
   * Propagate CC from configure to make
Checksums-Sha1:
 7d478c1f195fb2558a59ba9f5b06179f13b355b6 1706 typespeed_0.6.5-5.dsc
 3f20975b67d0e36a864ccb86a6009b40ca083026 8792 typespeed_0.6.5-5.debian.tar.xz
 51273e2e26c18c5db549de7708f2f257b62398f7 6179 
typespeed_0.6.5-5_source.buildinfo
Checksums-Sha256:
 2df9563fb3d7455de032415928c76302e17e2f94ebf9dfd52ab19ce0320fbaa7 1706 
typespeed_0.6.5-5.dsc
 7291fb70ff89e75a0f1b2a377385220d7d6b1f2262e7706e5c0c6b864a5a9f95 8792 
typespeed_0.6.5-5.debian.tar.xz
 75ef5f2d226062bbf875cc8b96b446ec61931d264b0073999e73c16de5137abf 6179 
typespeed_0.6.5-5_source.buildinfo
Files:
 cf150f1eb2e188eab6cd3bac87f3830f 1706 games optional typespeed_0.6.5-5.dsc
 3c7aab8222481ec80a98c6aa24df38f1 8792 games optional 
typespeed_0.6.5-5.debian.tar.xz
 8afca966a6ee539cf143ef2154fc2c65 6179 games optional 
typespeed_0.6.5-5_source.buildinfo

-BEGIN PGP SIGNATURE-

iQHEBAEBCgAuFiEEQGIgyLhVKAI3jM5BH1x6i0VWQxQFAmYDLaMQHGJhZ2VAZGVi
aWFuLm9yZwAKCRAfXHqLRVZDFMk1DADm2yhcDBX9iNhiobZfNdDbp1gNJX/6JdS8
S6pEXGrOt7SY2xQkaOzdaqshDV6x9pI8Dxj+BsDPnUcGDxE8nO1ZZyIfnyrlTnql
a9eKdVIfXADDXC1dIu5eETyYVb1jYLdEqTWwWOzswLAVFOZ4LcjZi4klP4F9NkgE
82zMBoluj2VpJP3c27YLoPBSJTqYGubGMH+BHH8nO83JLp6y/DWCSyoNlCQigPKd
Hr98TqqijGIFvFkJS9gzgoA+jdapWiAbqjuyJWD/2Mc+gN9jtGm3skx9mL5A2oFy
HhsD+7htVc1AKid8a1609VJ8i0yEaVFlZvTMwPmFYnCXspCi3PAfy1MYtkoVIyZx
vhDn67RLH3kmMje9r3hBkjLehk+UZRAOxOtNgEHCb3N8+NJ/szVWLtZ7jZYnxba/
l+gEtQk7TWkXkj4BelsAKJ3giSa3gIRT4SOENzefgAOn+BQjjRlv9QloepHLZFqr
UDjDTMqq/ppBSgHp6GW2J1Tyt1+DL2s=
=eQ/l
-END PGP SIGNATURE-



pgpeoKlchsCKQ.pgp
Description: PGP signature
--- End Message ---


Bug#1046694: marked as done (typespeed: Fails to build source after successful build)

2024-03-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Mar 2024 20:43:59 +
with message-id 
and subject line Bug#1046694: fixed in typespeed 0.6.5-5
has caused the Debian Bug report #1046694,
regarding typespeed: Fails to build source after successful build
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.)


-- 
1046694: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1046694
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: typespeed
Version: 0.6.5-4
Severity: minor
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-sab-20230813 ftbfs-source-after-build
User: debian...@lists.debian.org
Usertags: qa-doublebuild

Hi,

This package fails to build a source package after a successful build
(dpkg-buildpackage ; dpkg-buildpackage -S).

This is probably a clear violation of Debian Policy section 4.9 (clean target),
but this is filed as severity:minor for now, because a discussion on
debian-devel showed that we might want to revisit the requirement of a working
'clean' target.

More information about this class of issues, included common problems and
solutions, is available at
https://wiki.debian.org/qa.debian.org/FTBFS/SourceAfterBuild

Relevant part of the build log:
> cd /<> && runuser -u user42 -- dpkg-buildpackage --sanitize-env 
> -us -uc -rfakeroot -S
> -
> 
> dpkg-buildpackage: info: source package typespeed
> dpkg-buildpackage: info: source version 0.6.5-4
> dpkg-buildpackage: info: source distribution unstable
> dpkg-buildpackage: info: source changed by Jelmer Vernooij 
>  dpkg-source --before-build .
>  fakeroot debian/rules clean
> dh clean --without autoreconf
>dh_auto_clean
>   make -j8 distclean
> make[1]: Entering directory '/<>'
> Making distclean in words
> make[2]: Entering directory '/<>/words'
> test -z "" || rm -f 
> rm -f Makefile
> make[2]: Leaving directory '/<>/words'
> Making distclean in testsuite
> make[2]: Entering directory '/<>/testsuite'
> test -z "t_level t_loadwords t_typorankkaus t_unescstr" || rm -f t_level 
> t_loadwords t_typorankkaus t_unescstr
> rm -f *.o
> rm -f *.tab.c
> test -z "" || rm -f 
> rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
> rm -rf ./.deps
> rm -f Makefile
> make[2]: Leaving directory '/<>/testsuite'
> Making distclean in src
> make[2]: Entering directory '/<>/src'
> test -z "typespeed" || rm -f typespeed
> test -z "convert" || rm -f convert
> rm -f *.o
> rm -f *.tab.c
> test -z "" || rm -f 
> rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
> rm -rf ./.deps
> rm -f Makefile
> make[2]: Leaving directory '/<>/src'
> Making distclean in rules
> make[2]: Entering directory '/<>/rules'
> test -z "" || rm -f 
> rm -f Makefile
> make[2]: Leaving directory '/<>/rules'
> Making distclean in po
> make[2]: Entering directory '/<>/po'
> rm -f *.insert-header
> rm -f remove-potcdate.sed
> rm -f stamp-poT
> rm -f core core.* typespeed.po typespeed.1po typespeed.2po *.new.po
> rm -fr *.o
> rm -f Makefile Makefile.in POTFILES *.mo
> make[2]: Leaving directory '/<>/po'
> Making distclean in man
> make[2]: Entering directory '/<>/man'
> test -z "" || rm -f 
> rm -f Makefile
> make[2]: Leaving directory '/<>/man'
> Making distclean in etc
> make[2]: Entering directory '/<>/etc'
> test -z "" || rm -f 
> rm -f Makefile
> make[2]: Leaving directory '/<>/etc'
> Making distclean in doc
> make[2]: Entering directory '/<>/doc'
> test -z "" || rm -f 
> rm -f Makefile
> make[2]: Leaving directory '/<>/doc'
> Making distclean in .
> make[2]: Entering directory '/<>'
> test -z "" || rm -f 
> rm -f config.h stamp-h1
> rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
> make[2]: Leaving directory '/<>'
> rm -f config.status config.cache config.log configure.lineno 
> config.status.lineno
> rm -f Makefile
> make[1]: Leaving directory '/<>'
>dh_clean
>  dpkg-source -b .
> dpkg-source: info: using source format '3.0 (quilt)'
> dpkg-source: info: building typespeed using existing 
> ./typespeed_0.6.5.orig.tar.gz
> dpkg-source: info: using patch list from debian/patches/series
> dpkg-source: warning: newly created empty file 'src/typespeed.score' will not 
> be represented in diff
> dpkg-source: info: local changes detected, the modified files are:
>  typespeed-0.6.5/etc/typespeedrc
> dpkg-source: error: aborting due to unexpected upstream changes, see 
> /tmp/typespeed_0.6.5-4.diff.fYPZyq
> dpkg-source: info: Hint: make sure the version in debian/changelog matches 
> the unpacked source tree
> dpkg-source: info: you can integrate the local changes with dpkg-source 

Processing of typespeed_0.6.5-5_source.changes

2024-03-26 Thread Debian FTP Masters
typespeed_0.6.5-5_source.changes uploaded successfully to localhost
along with the files:
  typespeed_0.6.5-5.dsc
  typespeed_0.6.5-5.debian.tar.xz
  typespeed_0.6.5-5_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



typespeed_0.6.5-5_source.changes ACCEPTED into unstable

2024-03-26 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 26 Mar 2024 20:16:06 +
Source: typespeed
Architecture: source
Version: 0.6.5-5
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Bastian Germann 
Closes: 662805 894117 1046694
Changes:
 typespeed (0.6.5-5) unstable; urgency=medium
 .
   * QA upload
   * Drop unnecessary B-D quilt
   * Correct Homepage (Closes: #662805)
   * Pass --host to configure (Closes: #894117)
   * Clean typespeedrc (Closes: #1046694)
   * Drop unnecessary Depends
 .
   [ Helmut Grohne ]
   * Propagate CC from configure to make
Checksums-Sha1:
 7d478c1f195fb2558a59ba9f5b06179f13b355b6 1706 typespeed_0.6.5-5.dsc
 3f20975b67d0e36a864ccb86a6009b40ca083026 8792 typespeed_0.6.5-5.debian.tar.xz
 51273e2e26c18c5db549de7708f2f257b62398f7 6179 
typespeed_0.6.5-5_source.buildinfo
Checksums-Sha256:
 2df9563fb3d7455de032415928c76302e17e2f94ebf9dfd52ab19ce0320fbaa7 1706 
typespeed_0.6.5-5.dsc
 7291fb70ff89e75a0f1b2a377385220d7d6b1f2262e7706e5c0c6b864a5a9f95 8792 
typespeed_0.6.5-5.debian.tar.xz
 75ef5f2d226062bbf875cc8b96b446ec61931d264b0073999e73c16de5137abf 6179 
typespeed_0.6.5-5_source.buildinfo
Files:
 cf150f1eb2e188eab6cd3bac87f3830f 1706 games optional typespeed_0.6.5-5.dsc
 3c7aab8222481ec80a98c6aa24df38f1 8792 games optional 
typespeed_0.6.5-5.debian.tar.xz
 8afca966a6ee539cf143ef2154fc2c65 6179 games optional 
typespeed_0.6.5-5_source.buildinfo

-BEGIN PGP SIGNATURE-

iQHEBAEBCgAuFiEEQGIgyLhVKAI3jM5BH1x6i0VWQxQFAmYDLaMQHGJhZ2VAZGVi
aWFuLm9yZwAKCRAfXHqLRVZDFMk1DADm2yhcDBX9iNhiobZfNdDbp1gNJX/6JdS8
S6pEXGrOt7SY2xQkaOzdaqshDV6x9pI8Dxj+BsDPnUcGDxE8nO1ZZyIfnyrlTnql
a9eKdVIfXADDXC1dIu5eETyYVb1jYLdEqTWwWOzswLAVFOZ4LcjZi4klP4F9NkgE
82zMBoluj2VpJP3c27YLoPBSJTqYGubGMH+BHH8nO83JLp6y/DWCSyoNlCQigPKd
Hr98TqqijGIFvFkJS9gzgoA+jdapWiAbqjuyJWD/2Mc+gN9jtGm3skx9mL5A2oFy
HhsD+7htVc1AKid8a1609VJ8i0yEaVFlZvTMwPmFYnCXspCi3PAfy1MYtkoVIyZx
vhDn67RLH3kmMje9r3hBkjLehk+UZRAOxOtNgEHCb3N8+NJ/szVWLtZ7jZYnxba/
l+gEtQk7TWkXkj4BelsAKJ3giSa3gIRT4SOENzefgAOn+BQjjRlv9QloepHLZFqr
UDjDTMqq/ppBSgHp6GW2J1Tyt1+DL2s=
=eQ/l
-END PGP SIGNATURE-



pgp5OMSkCpNyK.pgp
Description: PGP signature


Bug#1066619: marked as done (libstroke: FTBFS: stroke.c:267:5: error: implicit declaration of function 'strcpy' [-Werror=implicit-function-declaration])

2024-03-26 Thread Debian Bug Tracking System
Your message dated Tue, 26 Mar 2024 13:37:42 +
with message-id 
and subject line Bug#1066619: fixed in libstroke 0.5.1-10
has caused the Debian Bug report #1066619,
regarding libstroke: FTBFS: stroke.c:267:5: error: implicit declaration of 
function 'strcpy' [-Werror=implicit-function-declaration]
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.)


-- 
1066619: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066619
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: libstroke
Version: 0.5.1-9
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
>  gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../libstroke -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> stroke.c  -fPIC -DPIC -o .libs/stroke.o
> stroke.c: In function 'stroke_trans':
> stroke.c:267:5: error: implicit declaration of function 'strcpy' 
> [-Werror=implicit-function-declaration]
>   267 | strcpy (sequence,"0");
>   | ^~
> stroke.c:15:1: note: include '' or provide a declaration of 'strcpy'
>14 | #include 
>   +++ |+#include 
>15 | 
> stroke.c:267:5: warning: incompatible implicit declaration of built-in 
> function 'strcpy' [-Wbuiltin-declaration-mismatch]
>   267 | strcpy (sequence,"0");
>   | ^~
> stroke.c:267:5: note: include '' or provide a declaration of 
> 'strcpy'
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:300: stroke.lo] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/libstroke_0.5.1-9_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.
--- End Message ---
--- Begin Message ---
Source: libstroke
Source-Version: 0.5.1-10
Done: Bdale Garbee 

We believe that the bug you reported is fixed in the latest version of
libstroke, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1066...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bdale Garbee  (supplier of updated libstroke package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 26 Mar 2024 21:48:52 +0900
Source: libstroke
Architecture: source
Version: 0.5.1-10
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Bdale Garbee 
Closes: 1066619
Changes:
 libstroke (0.5.1-10) unstable; urgency=medium
 .
   * add string.h include to resolve implicit declaration, closes: #1066619
Checksums-Sha1:
 f945a8fac59095a0c8209c5eed6862eefd055b58 1897 libstroke_0.5.1-10.dsc
 85fb74d902cc380501970199f5b7fa66ee6ed64e 179528 
libstroke_0.5.1-10.debian.tar.xz
 d84e67485c86e3e2f7ff747be546c5929f740da6 6359 
libstroke_0.5.1-10_source.buildinfo
Checksums-Sha256:
 022de435f5ef014a92b45a37650ff6d3c93ea6446b1c7c2cfe9ab4c7a6afbf12 1897 
libstroke_0.5.1-10.dsc
 27b30815ae21166c70195af5a122c770633de6979a56524f4c388e8a6931e992 179528 
libstroke_0.5.1-10.debian.tar.xz
 f21e2d97b7a76e01ce29a545ed191d3cc884e1f8e776b4de359f8fd19d59ff5f 6359 

libstroke_0.5.1-10_source.changes ACCEPTED into unstable

2024-03-26 Thread Debian FTP Masters
Thank you for your contribution to Debian.



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 26 Mar 2024 21:48:52 +0900
Source: libstroke
Architecture: source
Version: 0.5.1-10
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group 
Changed-By: Bdale Garbee 
Closes: 1066619
Changes:
 libstroke (0.5.1-10) unstable; urgency=medium
 .
   * add string.h include to resolve implicit declaration, closes: #1066619
Checksums-Sha1:
 f945a8fac59095a0c8209c5eed6862eefd055b58 1897 libstroke_0.5.1-10.dsc
 85fb74d902cc380501970199f5b7fa66ee6ed64e 179528 
libstroke_0.5.1-10.debian.tar.xz
 d84e67485c86e3e2f7ff747be546c5929f740da6 6359 
libstroke_0.5.1-10_source.buildinfo
Checksums-Sha256:
 022de435f5ef014a92b45a37650ff6d3c93ea6446b1c7c2cfe9ab4c7a6afbf12 1897 
libstroke_0.5.1-10.dsc
 27b30815ae21166c70195af5a122c770633de6979a56524f4c388e8a6931e992 179528 
libstroke_0.5.1-10.debian.tar.xz
 f21e2d97b7a76e01ce29a545ed191d3cc884e1f8e776b4de359f8fd19d59ff5f 6359 
libstroke_0.5.1-10_source.buildinfo
Files:
 c887fd94496dcdd40eedbb422119 1897 libs optional libstroke_0.5.1-10.dsc
 48b4caafb51dbe8981ac368d92837f2d 179528 libs optional 
libstroke_0.5.1-10.debian.tar.xz
 db38e8e50474b4fa4a7d62234f5e46aa 6359 libs optional 
libstroke_0.5.1-10_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEHguq2FwiMqGzzpLrtwRxBYMLn6EFAmYCxxQACgkQtwRxBYML
n6F7tBAAvxyerVjnqXeBz4rTztE4G7bNlUoIFz43Sx8JFPjNyTF7AgM0xoicYGlB
vFfHqkktuZtEFT1ULEYlZLqZFHYWJUi2Rkgj2uTHvu76QzDPYbtC4DK223uK0Ecm
4mlQWADlj5CiUNNu8pxYCEby+0lMsoHh51+x7vt7doUG9mA9jOy1aUVCzsIPKuhx
V+P7iOfN3xTmgWGTCS4FzR6/x+x6uh0RZTG58v8Jy2NuAkQcmVjrv8quCAmV2smI
f2jku0ygtzpXSiG1b1mrHuvhiXrWc8G2yXWMauitGCxjHRFbDmwjO/n4llQ/7SCI
O7LHnqBuZ1JzkXgY4XP5bLT3ewlbWZRdYmaQZBGkpFjv8J0bZTxmu1YsX21ZSdlk
3spG1ybYAsHz3YE5ZtZcEoKHUFnhg5TXRtEnWBgKY+d9wXHKhdauM2PBXSv1N9Pq
G3V8Td7UA4Z2zGJPM3YAIDbv6B9BrzGd0FDyeUE+4uHP+2/5tQALpvRi8rQf30x+
1SG0KwmIHY79IUrJbEviJYw12ngWAbxlZgmWsCCf53Ttgv4ZjoV88rznxTi2Bi6w
H5Lf2UiAULIjf/KDcTL5v+tQMHvVrw6wPafh6o3s6C/4DgrTCjJ7LzIGoG8vhNQA
9HwmOfm+cDWkYht13S1ZB5UVMfnVettEAGYnT6k+AgvNCm8LJ+Q=
=OXIl
-END PGP SIGNATURE-



pgpEuzjqNK_pq.pgp
Description: PGP signature


Processing of libstroke_0.5.1-10_source.changes

2024-03-26 Thread Debian FTP Masters
libstroke_0.5.1-10_source.changes uploaded successfully to localhost
along with the files:
  libstroke_0.5.1-10.dsc
  libstroke_0.5.1-10.debian.tar.xz
  libstroke_0.5.1-10_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



Bug#1067762: nmu: xmlrpc-c_1.33.14-11

2024-03-26 Thread Andrey Rakhmatullin
Package: release.debian.org
Severity: normal
X-Debbugs-Cc: xmlrp...@packages.debian.org
Control: affects -1 + src:xmlrpc-c
User: release.debian@packages.debian.org
Usertags: binnmu

nmu xmlrpc-c_1.33.14-11 . armel armhf . unstable . -m "Rebuild for time_t"

https://packages.debian.org/unstable/libxmlrpc-core-c3t64