Bug#765296: marked as done (lua-bitop: FTBFS on hurd-i386)
Your message dated Fri, 27 Jan 2023 13:19:35 + with message-id and subject line Bug#765296: fixed in lua-bitop 1.0.2-7 has caused the Debian Bug report #765296, regarding lua-bitop: FTBFS on hurd-i386 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.) -- 765296: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=765296 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Source: lua-bitop Version: 1.0.2-3 Severity: important Tags: patch User: debian-h...@lists.debian.org Usertags: hurd Hello, Currently lua-bitop FTBFS for GNU/Hurd due to a test that runs forever, creating a timeout after a very long time. From the build log: Build killed with signal TERM after 180 minutes of inactivity. The reason is that the bitbench.lua test assumes a clock resolution of 1us. On Hurd, it is 10ms, making a difference of 10 000 times. The attached patch fixes this by scaling the times by that amount, while other systems are not affected. Maybe some smarter way of detecting the OS name is possible, I'm not fluent in lua programming. Thanks! --- a/bitbench.lua 2012-05-08 21:15:00.0 +0200 +++ b/bitbench.lua 2014-10-14 00:12:33.0 +0200 @@ -19,10 +19,19 @@ local function bench(name, t) local n = 200 + local s = io.popen("uname -s"):read("*l") repeat -local tm = os.clock() -t(n) -tm = os.clock() - tm +local tm +-- Clock resolution is 10 ms on GNU/Hurd not 1us +if s == "GNU" then + tm = 1*os.clock() + t(n) + tm = 1*os.clock() - tm +else + tm = os.clock() + t(n) + tm = os.clock() - tm +end if tm > 1 then local ns = tm*1000/(n/100) io.write(string.format("%-15s %6.1f ns\n", name, ns-base)) --- End Message --- --- Begin Message --- Source: lua-bitop Source-Version: 1.0.2-7 Done: Sergei Golovan We believe that the bug you reported is fixed in the latest version of lua-bitop, 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 765...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Sergei Golovan (supplier of updated lua-bitop 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: SHA256 Format: 1.8 Date: Fri, 27 Jan 2023 15:47:53 +0300 Source: lua-bitop Architecture: source Version: 1.0.2-7 Distribution: unstable Urgency: medium Maintainer: Debian Lua Team Changed-By: Sergei Golovan Closes: 765296 833358 878688 995502 Changes: lua-bitop (1.0.2-7) unstable; urgency=medium . * Set maintainer to Debian Lua Team, and uploader to myself (closes: #995502). * Fix the package Git URL. * Add a patch which ports lua-bitop to Lua 5.3 and 5.4. * Drop transitional packages liblua5.1-bitop0 and liblua5.1-bitop-dev (closes: #878688). * Add a patch which fixes FTBFS on GNU/Hurd (closes: #765296). * Fix requirements in the pkgconfig script (closes: #833358). * Bump debhelper compatibility level to 13. * Bump standards version to 4.6.2. Checksums-Sha1: cc8a766fcd2c436ab53c0d2b2bfefa0ce93a1f36 1969 lua-bitop_1.0.2-7.dsc 6e82db73eeca1680065aeb331425a730f68a9fff 4848 lua-bitop_1.0.2-7.debian.tar.xz c35b7f27df29cdcc8490f295ec5fd62032543cc7 6975 lua-bitop_1.0.2-7_amd64.buildinfo Checksums-Sha256: 3117943436d20dda236a6bfb40623a5ceb53294579ead94bd37dffb4e4a4353a 1969 lua-bitop_1.0.2-7.dsc 3a408cd4824e90190996c523812492c82330f7cc5ecd509fcc7d83306b856d5e 4848 lua-bitop_1.0.2-7.debian.tar.xz 72a3c255c0eb4213265ee7693c2f366277328170d69475de16b32c7fd5dfe288 6975 lua-bitop_1.0.2-7_amd64.buildinfo Files: 598a2e79e93ed298ae4c769c2f7a6af1 1969 interpreters optional lua-bitop_1.0.2-7.dsc 9a47fcef780b6a234b7827c512fceca0 4848 interpreters optional lua-bitop_1.0.2-7.debian.tar.xz ce2f95c2a922f73118cebead1de9fffa 6975 interpreters optional lua-bitop_1.0.2-7_amd64.buildinfo -BEGIN PGP SIGNATURE- iQIzBAEBCAAdFiEE/SYPsyDB+ShSnvc4Tyrk60tj54cFAmPTy/AACgkQTyrk60tj 54cfNRAAh1SnQv5Fdm6RxlVxiFyLE6z8HrU1+0LKCmX5sfMIlS3FQcTk0kAI0d5u W0TGLjGlr6Oo2GvrDB5Fo93XEwrycJhV+PocVY/+hXig/Pfl/NRPsG7xgSp2DlSS DqgQPH6YE4wN3yNZYJ72NCca7wFE/cJTqO9eJx2k4Bb8PYBMcKgl0+w4CMR7T290 zdGwAnzSRC2yTEUCeTDmLyBq9el3YBqUr2Ic7Ss8iux3Aq6AOXLwQhKsAkZsNDcY hXs
Bug#833358: marked as done (lua-bitop-dev: bad "Requires:" in pkg-config file)
Your message dated Fri, 27 Jan 2023 13:19:35 + with message-id and subject line Bug#833358: fixed in lua-bitop 1.0.2-7 has caused the Debian Bug report #833358, regarding lua-bitop-dev: bad "Requires:" in pkg-config file 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.) -- 833358: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=833358 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: lua-bitop-dev Version: 1.0.2-3 Severity: normal Bad "Requires:" entry in /usr/lib/x86_64-linux-gnu/pkgconfig/lua5.2-bitop.pc $ pkg-config --libs lua5.2-bitop -llua5.2-bitop -llua5.1 Same problem in lua-posix-dev (and possibly others). Short time fix: Depend on `lua5.2` in Lua 5.2 module pkg-config files. Long term (suggestion) Debian 9+: Remove runtime library requirement. It does not protect against Lua runtime version missmatch and makes pkg-config not usable for building libraries which only need to link in other Lua modules. -- System Information: Debian Release: 8.5 APT prefers stable APT policy: (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 3.16.0-4-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages lua-bitop-dev depends on: ii lua-bitop 1.0.2-3 ii multiarch-support 2.19-18+deb8u4 lua-bitop-dev recommends no packages. lua-bitop-dev suggests no packages. -- no debconf information --- End Message --- --- Begin Message --- Source: lua-bitop Source-Version: 1.0.2-7 Done: Sergei Golovan We believe that the bug you reported is fixed in the latest version of lua-bitop, 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 833...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Sergei Golovan (supplier of updated lua-bitop 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: SHA256 Format: 1.8 Date: Fri, 27 Jan 2023 15:47:53 +0300 Source: lua-bitop Architecture: source Version: 1.0.2-7 Distribution: unstable Urgency: medium Maintainer: Debian Lua Team Changed-By: Sergei Golovan Closes: 765296 833358 878688 995502 Changes: lua-bitop (1.0.2-7) unstable; urgency=medium . * Set maintainer to Debian Lua Team, and uploader to myself (closes: #995502). * Fix the package Git URL. * Add a patch which ports lua-bitop to Lua 5.3 and 5.4. * Drop transitional packages liblua5.1-bitop0 and liblua5.1-bitop-dev (closes: #878688). * Add a patch which fixes FTBFS on GNU/Hurd (closes: #765296). * Fix requirements in the pkgconfig script (closes: #833358). * Bump debhelper compatibility level to 13. * Bump standards version to 4.6.2. Checksums-Sha1: cc8a766fcd2c436ab53c0d2b2bfefa0ce93a1f36 1969 lua-bitop_1.0.2-7.dsc 6e82db73eeca1680065aeb331425a730f68a9fff 4848 lua-bitop_1.0.2-7.debian.tar.xz c35b7f27df29cdcc8490f295ec5fd62032543cc7 6975 lua-bitop_1.0.2-7_amd64.buildinfo Checksums-Sha256: 3117943436d20dda236a6bfb40623a5ceb53294579ead94bd37dffb4e4a4353a 1969 lua-bitop_1.0.2-7.dsc 3a408cd4824e90190996c523812492c82330f7cc5ecd509fcc7d83306b856d5e 4848 lua-bitop_1.0.2-7.debian.tar.xz 72a3c255c0eb4213265ee7693c2f366277328170d69475de16b32c7fd5dfe288 6975 lua-bitop_1.0.2-7_amd64.buildinfo Files: 598a2e79e93ed298ae4c769c2f7a6af1 1969 interpreters optional lua-bitop_1.0.2-7.dsc 9a47fcef780b6a234b7827c512fceca0 4848 interpreters optional lua-bitop_1.0.2-7.debian.tar.xz ce2f95c2a922f73118cebead1de9fffa 6975 interpreters optional lua-bitop_1.0.2-7_amd64.buildinfo -BEGIN PGP SIGNATURE- iQIzBAEBCAAdFiEE/SYPsyDB+ShSnvc4Tyrk60tj54cFAmPTy/AACgkQTyrk60tj 54cfNRAAh1SnQv5Fdm6RxlVxiFyLE6z8HrU1+0LKCmX5sfMIlS3FQcTk0kAI0d5u W0TGLjGlr6Oo2GvrDB5Fo93XEwrycJhV+PocVY/+hXig/Pfl/NRPsG7xgSp2DlSS DqgQPH6YE4wN3yNZYJ72NCca7wFE/cJTqO9eJx2k4Bb8PYBMcKgl0+w4CMR7T290 zdGwAnzSRC2yTEUCeTDmLyBq9el3YBqUr2Ic7Ss8iux3Aq6AOXLwQhKsAkZsNDcY hXsWqZh2fmrddogVEMCIIfejr3X9GFnGZ47BcULWlmVq1WS3rY535FbukekqMVKn LB09SFf+k/WVvTmds9qXBkpKUitnxgcA4MzFLXA279m5JKgR0dZ488tLJXKuP1bg /KzfnRksM8ewxhlUJQqJX6mIH7XTHH9t1S7n0B06zlzgrRPDTW3A8eOIQOC5tEPL 7j5lGQO0Al/GM5SeAnQ7pSaHJnwr8F0z851MmdWbRz9mZEF
Bug#878688: marked as done (please drop transitional packages liblua5.1-bitop0 and liblua5.1-bitop-dev)
Your message dated Fri, 27 Jan 2023 13:19:36 + with message-id and subject line Bug#878688: fixed in lua-bitop 1.0.2-7 has caused the Debian Bug report #878688, regarding please drop transitional packages liblua5.1-bitop0 and liblua5.1-bitop-dev 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.) -- 878688: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=878688 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: liblua5.1-bitop0,liblua5.1-bitop-dev Version: 1.0.2-3 Severity: normal user: qa.debian@packages.debian.org usertags: transitional Please drop the transitional packages liblua5.1-bitop0 and liblua5.1-bitop-dev for buster, as they have been released with wheezy, jessie and stretch already. Thanks for maintaining lua-bitop! -- cheers, Holger signature.asc Description: PGP signature --- End Message --- --- Begin Message --- Source: lua-bitop Source-Version: 1.0.2-7 Done: Sergei Golovan We believe that the bug you reported is fixed in the latest version of lua-bitop, 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 878...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Sergei Golovan (supplier of updated lua-bitop 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: SHA256 Format: 1.8 Date: Fri, 27 Jan 2023 15:47:53 +0300 Source: lua-bitop Architecture: source Version: 1.0.2-7 Distribution: unstable Urgency: medium Maintainer: Debian Lua Team Changed-By: Sergei Golovan Closes: 765296 833358 878688 995502 Changes: lua-bitop (1.0.2-7) unstable; urgency=medium . * Set maintainer to Debian Lua Team, and uploader to myself (closes: #995502). * Fix the package Git URL. * Add a patch which ports lua-bitop to Lua 5.3 and 5.4. * Drop transitional packages liblua5.1-bitop0 and liblua5.1-bitop-dev (closes: #878688). * Add a patch which fixes FTBFS on GNU/Hurd (closes: #765296). * Fix requirements in the pkgconfig script (closes: #833358). * Bump debhelper compatibility level to 13. * Bump standards version to 4.6.2. Checksums-Sha1: cc8a766fcd2c436ab53c0d2b2bfefa0ce93a1f36 1969 lua-bitop_1.0.2-7.dsc 6e82db73eeca1680065aeb331425a730f68a9fff 4848 lua-bitop_1.0.2-7.debian.tar.xz c35b7f27df29cdcc8490f295ec5fd62032543cc7 6975 lua-bitop_1.0.2-7_amd64.buildinfo Checksums-Sha256: 3117943436d20dda236a6bfb40623a5ceb53294579ead94bd37dffb4e4a4353a 1969 lua-bitop_1.0.2-7.dsc 3a408cd4824e90190996c523812492c82330f7cc5ecd509fcc7d83306b856d5e 4848 lua-bitop_1.0.2-7.debian.tar.xz 72a3c255c0eb4213265ee7693c2f366277328170d69475de16b32c7fd5dfe288 6975 lua-bitop_1.0.2-7_amd64.buildinfo Files: 598a2e79e93ed298ae4c769c2f7a6af1 1969 interpreters optional lua-bitop_1.0.2-7.dsc 9a47fcef780b6a234b7827c512fceca0 4848 interpreters optional lua-bitop_1.0.2-7.debian.tar.xz ce2f95c2a922f73118cebead1de9fffa 6975 interpreters optional lua-bitop_1.0.2-7_amd64.buildinfo -BEGIN PGP SIGNATURE- iQIzBAEBCAAdFiEE/SYPsyDB+ShSnvc4Tyrk60tj54cFAmPTy/AACgkQTyrk60tj 54cfNRAAh1SnQv5Fdm6RxlVxiFyLE6z8HrU1+0LKCmX5sfMIlS3FQcTk0kAI0d5u W0TGLjGlr6Oo2GvrDB5Fo93XEwrycJhV+PocVY/+hXig/Pfl/NRPsG7xgSp2DlSS DqgQPH6YE4wN3yNZYJ72NCca7wFE/cJTqO9eJx2k4Bb8PYBMcKgl0+w4CMR7T290 zdGwAnzSRC2yTEUCeTDmLyBq9el3YBqUr2Ic7Ss8iux3Aq6AOXLwQhKsAkZsNDcY hXsWqZh2fmrddogVEMCIIfejr3X9GFnGZ47BcULWlmVq1WS3rY535FbukekqMVKn LB09SFf+k/WVvTmds9qXBkpKUitnxgcA4MzFLXA279m5JKgR0dZ488tLJXKuP1bg /KzfnRksM8ewxhlUJQqJX6mIH7XTHH9t1S7n0B06zlzgrRPDTW3A8eOIQOC5tEPL 7j5lGQO0Al/GM5SeAnQ7pSaHJnwr8F0z851MmdWbRz9mZEFayTo90ZQd4KeLd59N IeEinrwoWiaj13h8phqi0uEg1HhAbuUw4gbCrSh5vZpgDaIkCSe+kM/d4PmqLgLq usX+YiEvBgwS1m9ov+BJfx+mAC52A+4uP0IZ/smKgBe+R3Mg0HbHjz3NevQg8dRM s27db5Q/OEWb4FipnbG3NYv3cZkXKKiKVYK/+YKlSdpYREUjJPk= =4j91 -END PGP SIGNATURE End Message ---
Processing of partimage_0.6.9-9_source.changes
partimage_0.6.9-9_source.changes uploaded successfully to localhost along with the files: partimage_0.6.9-9.dsc partimage_0.6.9-9.debian.tar.xz partimage_0.6.9-9_source.buildinfo Greetings, Your Debian queue daemon (running on host usper.debian.org)
partimage_0.6.9-9_source.changes REJECTED
partimage_0.6.9-9.dsc: Invalid size hash for partimage_0.6.9.orig.tar.bz2: According to the control file the size hash should be 639322, but partimage_0.6.9.orig.tar.bz2 has 666522. If you did not include partimage_0.6.9.orig.tar.bz2 in your upload, a different version might already be known to the archive software. === Please feel free to respond to this email if you don't understand why your files were rejected, or if you upload new files which address our concerns.
Processed: reassign 878688 to src:lua-bitop, fixed 878688 in 1.0.2-7, notfound 1025944 in 0.2.2-1 ...
Processing commands for cont...@bugs.debian.org: > reassign 878688 src:lua-bitop 1.0.2-3 Bug #878688 {Done: Sergei Golovan } [liblua5.1-bitop0,liblua5.1-bitop-dev] please drop transitional packages liblua5.1-bitop0 and liblua5.1-bitop-dev Bug reassigned from package 'liblua5.1-bitop0,liblua5.1-bitop-dev' to 'src:lua-bitop'. No longer marked as found in versions 1.0.2-3. No longer marked as fixed in versions lua-bitop/1.0.2-7. Bug #878688 {Done: Sergei Golovan } [src:lua-bitop] please drop transitional packages liblua5.1-bitop0 and liblua5.1-bitop-dev Marked as found in versions lua-bitop/1.0.2-3. > fixed 878688 1.0.2-7 Bug #878688 {Done: Sergei Golovan } [src:lua-bitop] please drop transitional packages liblua5.1-bitop0 and liblua5.1-bitop-dev Marked as fixed in versions lua-bitop/1.0.2-7. > notfound 1025944 0.2.2-1 Bug #1025944 {Done: matthias.geiger1...@tutanota.de} [src:rust-castaway] rust-castaway: please upgrasde to v0.2 No longer marked as found in versions rust-castaway/0.2.2-1. > notfixed 1025944 0.2.2 Bug #1025944 {Done: matthias.geiger1...@tutanota.de} [src:rust-castaway] rust-castaway: please upgrasde to v0.2 The source 'rust-castaway' and version '0.2.2' do not appear to match any binary packages No longer marked as fixed in versions 0.2.2. > fixed 1025944 0.2.2-1 Bug #1025944 {Done: matthias.geiger1...@tutanota.de} [src:rust-castaway] rust-castaway: please upgrasde to v0.2 Marked as fixed in versions rust-castaway/0.2.2-1. > notfixed 570757 5.10.2-1 Bug #570757 {Done: наб } [dash] dash: cannot parse multiline parameter expansion There is no source info for the package 'dash' at version '5.10.2-1' with architecture '' Unable to make a source version for version '5.10.2-1' No longer marked as fixed in versions dash/5.10.2-1. > fixed 570757 0.5.10.2-1 Bug #570757 {Done: наб } [dash] dash: cannot parse multiline parameter expansion Marked as fixed in versions dash/0.5.10.2-1. > tags 1028638 + experimental Bug #1028638 [libproxy1v5] libproxy1v5: Gajim 1.6.0-1 crashes in libproxy call Added tag(s) experimental. > fixed 1028638 0.4.18-1.1 Bug #1028638 [libproxy1v5] libproxy1v5: Gajim 1.6.0-1 crashes in libproxy call Marked as fixed in versions libproxy/0.4.18-1.1. > affects 1028638 + src:gajim Bug #1028638 [libproxy1v5] libproxy1v5: Gajim 1.6.0-1 crashes in libproxy call Added indication that 1028638 affects src:gajim > found 1029635 21 Bug #1029635 [src:gcc-10-cross-ports] gcc-10-cross-ports: source and binary version go out of sync Marked as found in versions gcc-10-cross-ports/21. > found 1029634 20 Bug #1029634 [src:gcc-10-cross] gcc-10-cross: source and binary version go out of sync Marked as found in versions gcc-10-cross/20. > thanks Stopping processing here. Please contact me if you need assistance. -- 1025944: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1025944 1028638: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1028638 1029634: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1029634 1029635: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1029635 570757: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=570757 878688: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=878688 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Processing of partimage_0.6.9-9_source.changes
partimage_0.6.9-9_source.changes uploaded successfully to localhost along with the files: partimage_0.6.9-9.dsc partimage_0.6.9-9.debian.tar.xz partimage_0.6.9-9_source.buildinfo Greetings, Your Debian queue daemon (running on host usper.debian.org)
partimage_0.6.9-9_source.changes ACCEPTED into unstable
Thank you for your contribution to Debian. Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 27 Jan 2023 18:03:40 +0100 Source: partimage Architecture: source Version: 0.6.9-9 Distribution: unstable Urgency: medium Maintainer: Debian QA Group Changed-By: Michael Biebl Changes: partimage (0.6.9-9) unstable; urgency=medium . * QA Upload * Switch from cdbs to dh and modernize packaging * Remove obsolete README.source * Strip trailing white space * Enable all hardening build flags * Replace obsolete Build-Depends e2fslibs-dev with libext2fs-dev * Add native support for systemd * Drop obsolete Conflicts * Bump default configuration from 1024 to 4096 bits when generating the certificate * Update partimaged-passwd to support db5.3-util * Drop obsolete dependency on lsb-base * Set Rules-Requires-Root: no * Move package to salsa * Use pristine-tar when building with gbp Checksums-Sha1: 1c0c2c8ecfc7e439e8434498cddc659f9c8d3f48 1999 partimage_0.6.9-9.dsc 5f7df309f6f81bb9c5757bd9fd588fca94b47d11 17192 partimage_0.6.9-9.debian.tar.xz 45ee5f4266aab92871f961deff404e9e36c6c2ac 5780 partimage_0.6.9-9_source.buildinfo Checksums-Sha256: 4833a03903d8d258e3676d7340db81a100c42d12dcef94e37008539143223236 1999 partimage_0.6.9-9.dsc 970b9882660a3b8fe2c3ab5ba0d60503fd59852c55cd252554a5e56f8e4aa9d9 17192 partimage_0.6.9-9.debian.tar.xz fa3c03f98024b74773a065cddac6b06a44a37ee8c5da2e13b6ecb720339fbb4c 5780 partimage_0.6.9-9_source.buildinfo Files: 3dd22651a8d646f4e61d79af817805c0 1999 admin optional partimage_0.6.9-9.dsc a6440dba5393eff04659db468ec538d9 17192 admin optional partimage_0.6.9-9.debian.tar.xz 67fc838d438a1210f72446dac296239f 5780 admin optional partimage_0.6.9-9_source.buildinfo -BEGIN PGP SIGNATURE- iQIzBAEBCAAdFiEECbOsLssWnJBDRcxUauHfDWCPItwFAmPUCpYACgkQauHfDWCP ItzCRg//Yiy2hnbX1YHuEqrNz119B2S9egjcHl4C+HpERK3izpWJWEQV9e7PcCIi 7MTQ6iRlQZhlChY93v7r7KA7tenLywWKP0PBk15vjEhiRTjdEH0QbS4lfH4BcXFC VXn9jP8BSxebTy8qso9/1L+G4h3diZEHbnv1N9P3+ujyroBik1GeYEogZmeIEAdf JaMlmGo2bWH5ZITduZCdpDAu5NokE0PouxXzp2p3Caoy3xYamr5WAw0dW8CLaKCr axAzpOqRV7OKrZpEypNQKNK9wXNROz7YwMEEglzdk8inL1e9LKmBB73wvpjuExhB T+9ghhFm7iYQVI3UtrAI2B6T/iZ4lbLXzytFbvp1x/5bxDzAg7hWzZzdVV25RF0T G8F2fxCSanAjS4KaZ+RJF7UpS7A2X25WROxhNx+/BWdDNvf2SsfdvRjqRLY0Yqbp 28yxLwmsLNq20DcWsZeypHWcx05FdBrzy8diz1YZ4/vJJK2cTUX1IHvQejsrTYgX gIYKn3UHE6KwvWuVQ6Ae+vbwWKoFkD6LFQliumLXIkdT/iPXZMYndB/uQOOX2UQZ 4Tqnw0/ZMMZHK5ViBMjrOFcatFInun7FbPRVnft2vJU22q0/w3WSLxcIGvIaZUps goFoc6Vw1F9YdZl5FR1v54dRYS9CigmhA5YT3FURXfAEjrSDSeo= =hy8X -END PGP SIGNATURE-
Processing of argagg_0.4.7-1_source.changes
argagg_0.4.7-1_source.changes uploaded successfully to localhost along with the files: argagg_0.4.7-1.dsc argagg_0.4.7.orig.tar.gz argagg_0.4.7-1.debian.tar.xz argagg_0.4.7-1_amd64.buildinfo Greetings, Your Debian queue daemon (running on host usper.debian.org)
argagg_0.4.7-1_source.changes ACCEPTED into unstable
Thank you for your contribution to Debian. Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Fri, 27 Jan 2023 13:13:35 -0500 Source: argagg Architecture: source Version: 0.4.7-1 Distribution: unstable Urgency: medium Maintainer: Debian QA Group Changed-By: Boyuan Yang Changes: argagg (0.4.7-1) unstable; urgency=medium . * QA upload. * New upstream release. * debian/patches: Refresh patches. * debian/gbp.conf: Fix master branch name. Checksums-Sha1: 2a2ed68e5307158b9e9ebd5aebde9248de7f48ad 1909 argagg_0.4.7-1.dsc ce574f7019dd4ae598db89ba89bc196fed9d9afb 116919 argagg_0.4.7.orig.tar.gz 389168af599d17b5210cbb9948052d9192bbe21c 26344 argagg_0.4.7-1.debian.tar.xz 83ae277ceaf7222a14a0a5d7f2de541d08d50c95 7088 argagg_0.4.7-1_amd64.buildinfo Checksums-Sha256: 56415cd0602658d4bf115eda19a09023ce160d2f7ee6d1689fb347bb2e076cf6 1909 argagg_0.4.7-1.dsc 5e740b904128eb2716750c72f19d33da49d904d34f1734f7e9113e9943cf3f7c 116919 argagg_0.4.7.orig.tar.gz e246f66cc5ef492bba537994299e355e96a12acbd163315db935d6cb65a89680 26344 argagg_0.4.7-1.debian.tar.xz 955f06f8a9812aab5fd236263837c9fb4ee8b23669e1e0c288491629337fd8af 7088 argagg_0.4.7-1_amd64.buildinfo Files: f3c73de8241bed109ba0edc314d2acad 1909 devel optional argagg_0.4.7-1.dsc e5dc3b749ed9030b17dd180e86e4cb30 116919 devel optional argagg_0.4.7.orig.tar.gz b28f300517db73d8dc46759f2d093f3a 26344 devel optional argagg_0.4.7-1.debian.tar.xz f4fc69d70019ced8d2346e6a8b766119 7088 devel optional argagg_0.4.7-1_amd64.buildinfo -BEGIN PGP SIGNATURE- iQIzBAEBCgAdFiEEfncpR22H1vEdkazLwpPntGGCWs4FAmPUFwAACgkQwpPntGGC Ws5IUA//XKd9Y+Dpp8DdXvppgcsca8c7darj/2ShwsqnP3LLzqDScZh2CHGqcUq7 A21VhA4oKtcxQtvw6WzNDfny6ciItoYmVDor9Ti1fAJll/KiZeaJfvkTBMejd+4j dkGfo+uIhZ1HEHlfaXJ/Swl88liQaLrHFVz4sZR8IgDX1Jdt/NoWbl64BKYwXQjA 6uHU3R4xYJ43WJCCu7O53dIZk/ZFN6EYp8iQ57dNluee7qvqgClcnU4NXU3wxcw/ qQmCGJED+7Z5ylrEAMEPMpD8yHAjgF65nSuuoXFzkkaZixGU4lKnbAkm+aaclt1d bJGCzUJGhE2pM/mZ9uA1jQzsxiRpciW8lygx2WJ4ucFFrBWvf9a1t2fkJIX1vC5G 0PvJKvQm2YzeZfHlMOPf99c9a9mVHgQZw+ibB3mf5lmxw41EYDw8KJjHRJpRhL12 6fsrIpmAXHJQ8ikAxrksJDoXbtE9iU/lint7G41CPChGTiDb+DEsAzr98xGhj31Q g7hgFxOB2wYyiGXKFS7iIkiGUPkbmdGJQ4O9xxxn39f6/JVj0hzjzEhwIF3aIoic wvnrgwpIe05zGo0QZLmy6xayYpQ/g4w0Y27EqXShdy8kqPwbE+SUsFhE5F45X+Hu 8Xc4NjVRjYjqPPcrsEYgmP1MYBq4bTvvHvZhIb2gW9q3WT1J0zs= =Z53N -END PGP SIGNATURE-
Processing of python-bayespy_0.5.22-4_source.changes
python-bayespy_0.5.22-4_source.changes uploaded successfully to localhost along with the files: python-bayespy_0.5.22-4.dsc python-bayespy_0.5.22-4.debian.tar.xz python-bayespy_0.5.22-4_source.buildinfo Greetings, Your Debian queue daemon (running on host usper.debian.org)
Bug#1027220: marked as done (python-bayespy: autopkgtest fail with numpy/1.24.1)
Your message dated Fri, 27 Jan 2023 19:10:02 + with message-id and subject line Bug#1027220: fixed in python-bayespy 0.5.22-4 has caused the Debian Bug report #1027220, regarding python-bayespy: autopkgtest fail with numpy/1.24.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.) -- 1027220: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1027220 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Source: python-bayespy Severity: important User: debian-pyt...@lists.debian.org Usertags: numpy1.24 Hello, recently numpy/1.24.1 has been uploaded to experimental, and this package autopkgtest fail when running against it. An overview of the upstream changes in the 1.24.x series is available at: https://numpy.org/doc/stable/release/1.24.0-notes.html Several of the errors are in the form of: AttributeError: module 'numpy' has no attribute 'X' with X in [float, int, bool, object, ...]. This is because, numpy upstream in 1.24.0, finally decided to expire https://numpy.org/doc/stable/release/1.24.0-notes.html#:~:text=The%20deprecation%20for%20the%20aliases some deprecations introduced in 1.20.0 https://numpy.org/doc/stable/release/1.20.0-notes.html#using-the-aliases-of-builtin-types-like-np-int-is-deprecated (released almost 2 years ago). All of those are quite straightforward to fix, since often it's just necessary to stop importing them from numpy and use the python native types. Other changes may requires a bit more rework to be addressed. Currently numpy/1.24.x is in experimental, but given the possible longer support that it'll receive from upstream, we're hopeful to include this in bookworm, so your help is necessary to address this bug ASAP. Regards, Sandro --- End Message --- --- Begin Message --- Source: python-bayespy Source-Version: 0.5.22-4 Done: Bastian Germann We believe that the bug you reported is fixed in the latest version of python-bayespy, 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 1027...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Bastian Germann (supplier of updated python-bayespy 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: Fri, 17 Jan 2023 09:31:23 +0100 Source: python-bayespy Architecture: source Version: 0.5.22-4 Distribution: unstable Urgency: medium Maintainer: Debian QA Group Changed-By: Bastian Germann Closes: 1027220 Changes: python-bayespy (0.5.22-4) unstable; urgency=medium . * QA upload. . [ Bas Couwenberg ] * Add upstream patch to fix test failure with Numpy 1.24. (closes: #1027220) Checksums-Sha1: 590c172727a729ed3676a92b14ae8130af1750de 2215 python-bayespy_0.5.22-4.dsc 21083635bf6fb5468f03e7dfd6ed4466ccc77ea8 8272 python-bayespy_0.5.22-4.debian.tar.xz 4919bf2699c37f3a0a365283e144e492efe5d194 8446 python-bayespy_0.5.22-4_source.buildinfo Checksums-Sha256: 2922c5ecb68585781ad51803bfc0d73111c81e5f0f402cb2cb344742fcdd31d2 2215 python-bayespy_0.5.22-4.dsc a4cafd77dcaf769fe221e56feec4d15f5ffc79d2ab43a096c7b0b4f6470cfc46 8272 python-bayespy_0.5.22-4.debian.tar.xz 5e2bf2a91e6f0a540680aa622fb247c22d0b9b1d26722414bf995f1f536c83db 8446 python-bayespy_0.5.22-4_source.buildinfo Files: e7a777cc3d9a22f5097497d1d5993b04 2215 python optional python-bayespy_0.5.22-4.dsc 8e51fa46598966ead070490824db1740 8272 python optional python-bayespy_0.5.22-4.debian.tar.xz 4e0475a0ab920b66a7e91ba83d69f564 8446 python optional python-bayespy_0.5.22-4_source.buildinfo -BEGIN PGP SIGNATURE- iQHEBAEBCgAuFiEEQGIgyLhVKAI3jM5BH1x6i0VWQxQFAmPUHMEQHGJhZ2VAZGVi aWFuLm9yZwAKCRAfXHqLRVZDFPtSC/96KaBglK823iUJDoQAySMABlVqISP0h9tF ys/LU+NluApjtGLh23zeTncTxgbfDGJkGsPZGDBroJ7nkjCGqIUt5geG2G7t9gjE C6PYBCZFGyd/HyOYjJshNyLVCpeyJb49TZFVyvdoPa6XOjJj9wZExxqn3B5voY1j Nir2wS+BvsnM4/CSBpo+n2AEmdBAFrCet8lNlPMtoWx0Q6j3sfJL2EfLSAEiIRa1 hmD1nY98EdYfFuJ2swcCHzMza7Bmq/irmDvco9gKuBsOCgDAVpJrTROlefYXwGTh 7ai5lFmA+km2axJLB5VjoleWzdZfwS3pSaJE5tS+VLn21ixa8iTvHN6t2Camr72k Bazlk9LBOcbneUs6VT8AANxrNTmSOYsVwvY+bziLQ67TZm7vc4yXUG/FfQeP9JJ2 lcgXEKENLOTfXc7BVNTG5Bg2lUo1fBYSW8iVGd9vHP9PAUJBedSlPC6HMagnyr4o 4uuuT8ozJjvPXwEnBPIgMRgXKmfQdiU= =D4gK -END PGP S
python-bayespy_0.5.22-4_source.changes ACCEPTED into unstable
Thank you for your contribution to Debian. Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Fri, 17 Jan 2023 09:31:23 +0100 Source: python-bayespy Architecture: source Version: 0.5.22-4 Distribution: unstable Urgency: medium Maintainer: Debian QA Group Changed-By: Bastian Germann Closes: 1027220 Changes: python-bayespy (0.5.22-4) unstable; urgency=medium . * QA upload. . [ Bas Couwenberg ] * Add upstream patch to fix test failure with Numpy 1.24. (closes: #1027220) Checksums-Sha1: 590c172727a729ed3676a92b14ae8130af1750de 2215 python-bayespy_0.5.22-4.dsc 21083635bf6fb5468f03e7dfd6ed4466ccc77ea8 8272 python-bayespy_0.5.22-4.debian.tar.xz 4919bf2699c37f3a0a365283e144e492efe5d194 8446 python-bayespy_0.5.22-4_source.buildinfo Checksums-Sha256: 2922c5ecb68585781ad51803bfc0d73111c81e5f0f402cb2cb344742fcdd31d2 2215 python-bayespy_0.5.22-4.dsc a4cafd77dcaf769fe221e56feec4d15f5ffc79d2ab43a096c7b0b4f6470cfc46 8272 python-bayespy_0.5.22-4.debian.tar.xz 5e2bf2a91e6f0a540680aa622fb247c22d0b9b1d26722414bf995f1f536c83db 8446 python-bayespy_0.5.22-4_source.buildinfo Files: e7a777cc3d9a22f5097497d1d5993b04 2215 python optional python-bayespy_0.5.22-4.dsc 8e51fa46598966ead070490824db1740 8272 python optional python-bayespy_0.5.22-4.debian.tar.xz 4e0475a0ab920b66a7e91ba83d69f564 8446 python optional python-bayespy_0.5.22-4_source.buildinfo -BEGIN PGP SIGNATURE- iQHEBAEBCgAuFiEEQGIgyLhVKAI3jM5BH1x6i0VWQxQFAmPUHMEQHGJhZ2VAZGVi aWFuLm9yZwAKCRAfXHqLRVZDFPtSC/96KaBglK823iUJDoQAySMABlVqISP0h9tF ys/LU+NluApjtGLh23zeTncTxgbfDGJkGsPZGDBroJ7nkjCGqIUt5geG2G7t9gjE C6PYBCZFGyd/HyOYjJshNyLVCpeyJb49TZFVyvdoPa6XOjJj9wZExxqn3B5voY1j Nir2wS+BvsnM4/CSBpo+n2AEmdBAFrCet8lNlPMtoWx0Q6j3sfJL2EfLSAEiIRa1 hmD1nY98EdYfFuJ2swcCHzMza7Bmq/irmDvco9gKuBsOCgDAVpJrTROlefYXwGTh 7ai5lFmA+km2axJLB5VjoleWzdZfwS3pSaJE5tS+VLn21ixa8iTvHN6t2Camr72k Bazlk9LBOcbneUs6VT8AANxrNTmSOYsVwvY+bziLQ67TZm7vc4yXUG/FfQeP9JJ2 lcgXEKENLOTfXc7BVNTG5Bg2lUo1fBYSW8iVGd9vHP9PAUJBedSlPC6HMagnyr4o 4uuuT8ozJjvPXwEnBPIgMRgXKmfQdiU= =D4gK -END PGP SIGNATURE-
Bug#1026097: marked as done (lua-curl: there are no OPT_* constants in the module)
Your message dated Fri, 27 Jan 2023 19:49:32 + with message-id and subject line Bug#1026097: fixed in lua-curl 0.3.0-11 has caused the Debian Bug report #1026097, regarding lua-curl: there are no OPT_* constants in the module 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.) -- 1026097: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1026097 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: lua-curl Version: 0.3.0-10 Severity: grave Justification: renders package unusable Dear Maintainer, After I updated from version 0.3.0-9.2, any call to the setopt function began to fail with the error "Expecting a CURLoption value, got nil". A little investigation showed that the module is missing any OPT_* constants. Perhaps, not only these. For instance, in this code: print(require("curl").OPT_URL) I expect to get 10002, but get nil. Replacing the constants with their numeric values doen't solve the problem either. Rollback to version 0.3.0-9.2 solves the problem. I dug a little deeper into the package sources and I think that the package was built with an empty curopt.h, which is mentioned here: https://sources.debian.org/src/lua-curl/0.3.0-10/lua-curl.c/#L148 Regards, Aleksey A. -- System Information: Debian Release: bookworm/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 6.0.0-5-amd64 (SMP w/4 CPU threads; PREEMPT) Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8), LANGUAGE not set Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages lua-curl depends on: ii libc62.36-6 ii libcurl3-gnutls 7.86.0-2 lua-curl recommends no packages. lua-curl suggests no packages. -- no debconf information --- End Message --- --- Begin Message --- Source: lua-curl Source-Version: 0.3.0-11 Done: Adrian Bunk We believe that the bug you reported is fixed in the latest version of lua-curl, 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 1026...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Adrian Bunk (supplier of updated lua-curl 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: Fri, 27 Jan 2023 20:48:20 +0200 Source: lua-curl Architecture: source Version: 0.3.0-11 Distribution: unstable Urgency: medium Maintainer: Debian QA Group Changed-By: Adrian Bunk Closes: 1026097 Changes: lua-curl (0.3.0-11) unstable; urgency=medium . * QA upload. * Fix empty curl_ftpauthopt.h and curl_ftpmethods.h due to multiarch location of curl.h. * Fix curl.h parsing to fix empty curlopt.h. (Closes: #1026097) Checksums-Sha1: 1fff1a6b07419c4b776449eeeb1490501586a2a4 1960 lua-curl_0.3.0-11.dsc 49869455b622cf73725afa62f03aa289c301c438 5628 lua-curl_0.3.0-11.debian.tar.xz Checksums-Sha256: d70e3a54dabc4c1885033401d96f785027377ac5c473360afd824b8774ae8476 1960 lua-curl_0.3.0-11.dsc 55621500b050848e66d72823390b6b019d85ff3fbdf2daccc414be2b0d8a5a23 5628 lua-curl_0.3.0-11.debian.tar.xz Files: 001f6779b7caee783e3a629868459054 1960 interpreters optional lua-curl_0.3.0-11.dsc 127fbb2030abc48e17e6452af4e453c3 5628 interpreters optional lua-curl_0.3.0-11.debian.tar.xz -BEGIN PGP SIGNATURE- iQIzBAEBCgAdFiEEOvp1f6xuoR0v9F3wiNJCh6LYmLEFAmPUJ0YACgkQiNJCh6LY mLEE7hAAtCAmdhaN6+REZcp5FC23liGOI/CxBGiuoqXQTjyvb3JEWJXhQU5rt5vi acY4EJFmqmrwH0p/GbGPf66HLjaDACvfMRVHeWOTnHghUM2T59T39i17Xv4hnPeR Fbi05qGFZm2mXX1/9vcS3+4Zu1FWRnkNj6776kSSt8iCcaBoB8WIX4lPK1nD2lc1 6SAjvj/BxefOp0rrs6JOYFFIYL1ZkcwifArEDdKqM0G9ZVu5ILRdIg/rT1wu0Rm/ P9EFQ1LjXvQCVVxed6QzUZ0DX3xyURy7QQ4tMQFQ8V4s6OqrAy89bp9uvJoynwE1 T6tg0eqqSwPraVzq4oD2tX53wNGGn/v6+neWLa2M/7rvi66nUJGveK9CgqMiZPqw HEcZSjwe9Rq29Yhnye1uB90SAuv5th15hXRhrgz+gi0MQgxNnAWrVLmOfckRujyq IXF1XGC1vZtDLBkHI9xIQcLSumHYIVOmxBSP/txgjNdJgTKZPseEw32/s9udWEAo xC3TqhfDAlRYvY+jvPKpbxhJNhmWOrMhcoOesmT6SFp6LdrjxSoxJVY/hwj8HULW CLcPbXsWpfglO9dHuVtEPC+NuOizRGCbLg4Kw+DJJ8HSdeNXRuyCm/Ko22H2JXGx c4oJA1tB/jyJUoM4OtCZ2m+DNikygwgWSjRshVmhVARpMoFaPY
Processing of lua-curl_0.3.0-11_source.changes
lua-curl_0.3.0-11_source.changes uploaded successfully to localhost along with the files: lua-curl_0.3.0-11.dsc lua-curl_0.3.0-11.debian.tar.xz Greetings, Your Debian queue daemon (running on host usper.debian.org)
lua-curl_0.3.0-11_source.changes ACCEPTED into unstable
Thank you for your contribution to Debian. Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Fri, 27 Jan 2023 20:48:20 +0200 Source: lua-curl Architecture: source Version: 0.3.0-11 Distribution: unstable Urgency: medium Maintainer: Debian QA Group Changed-By: Adrian Bunk Closes: 1026097 Changes: lua-curl (0.3.0-11) unstable; urgency=medium . * QA upload. * Fix empty curl_ftpauthopt.h and curl_ftpmethods.h due to multiarch location of curl.h. * Fix curl.h parsing to fix empty curlopt.h. (Closes: #1026097) Checksums-Sha1: 1fff1a6b07419c4b776449eeeb1490501586a2a4 1960 lua-curl_0.3.0-11.dsc 49869455b622cf73725afa62f03aa289c301c438 5628 lua-curl_0.3.0-11.debian.tar.xz Checksums-Sha256: d70e3a54dabc4c1885033401d96f785027377ac5c473360afd824b8774ae8476 1960 lua-curl_0.3.0-11.dsc 55621500b050848e66d72823390b6b019d85ff3fbdf2daccc414be2b0d8a5a23 5628 lua-curl_0.3.0-11.debian.tar.xz Files: 001f6779b7caee783e3a629868459054 1960 interpreters optional lua-curl_0.3.0-11.dsc 127fbb2030abc48e17e6452af4e453c3 5628 interpreters optional lua-curl_0.3.0-11.debian.tar.xz -BEGIN PGP SIGNATURE- iQIzBAEBCgAdFiEEOvp1f6xuoR0v9F3wiNJCh6LYmLEFAmPUJ0YACgkQiNJCh6LY mLEE7hAAtCAmdhaN6+REZcp5FC23liGOI/CxBGiuoqXQTjyvb3JEWJXhQU5rt5vi acY4EJFmqmrwH0p/GbGPf66HLjaDACvfMRVHeWOTnHghUM2T59T39i17Xv4hnPeR Fbi05qGFZm2mXX1/9vcS3+4Zu1FWRnkNj6776kSSt8iCcaBoB8WIX4lPK1nD2lc1 6SAjvj/BxefOp0rrs6JOYFFIYL1ZkcwifArEDdKqM0G9ZVu5ILRdIg/rT1wu0Rm/ P9EFQ1LjXvQCVVxed6QzUZ0DX3xyURy7QQ4tMQFQ8V4s6OqrAy89bp9uvJoynwE1 T6tg0eqqSwPraVzq4oD2tX53wNGGn/v6+neWLa2M/7rvi66nUJGveK9CgqMiZPqw HEcZSjwe9Rq29Yhnye1uB90SAuv5th15hXRhrgz+gi0MQgxNnAWrVLmOfckRujyq IXF1XGC1vZtDLBkHI9xIQcLSumHYIVOmxBSP/txgjNdJgTKZPseEw32/s9udWEAo xC3TqhfDAlRYvY+jvPKpbxhJNhmWOrMhcoOesmT6SFp6LdrjxSoxJVY/hwj8HULW CLcPbXsWpfglO9dHuVtEPC+NuOizRGCbLg4Kw+DJJ8HSdeNXRuyCm/Ko22H2JXGx c4oJA1tB/jyJUoM4OtCZ2m+DNikygwgWSjRshVmhVARpMoFaPYA= =eIOk -END PGP SIGNATURE-
Processed: Merge duplicates
Processing commands for cont...@bugs.debian.org: > reassign 1027515 src:mk-configure Bug #1027515 [src:paexec] paexec: FTBFS: dh_auto_build: error: exec (for cmd: mkcmake PREFIX=/usr MANDIR=/usr/share/man INFODIR=/usr/share/info SYSCONFDIR=/etc STRIPFLAG= LIBDIR=/usr/lib/x86_64-linux-gnu LIBEXECDIR=/usr/lib/x86_64-linux-gnu) failed: No such file or directory Bug reassigned from package 'src:paexec' to 'src:mk-configure'. No longer marked as found in versions paexec/1.1.1-1. Ignoring request to alter fixed versions of bug #1027515 to the same values previously set > reassign 1027538 src:mk-configure Bug #1027538 [src:herisvm] herisvm: FTBFS: dh_auto_build: error: exec (for cmd: mkcmake PREFIX=/usr MANDIR=/usr/share/man INFODIR=/usr/share/info SYSCONFDIR=/etc STRIPFLAG= LIBDIR=/usr/lib/x86_64-linux-gnu LIBEXECDIR=/usr/lib/x86_64-linux-gnu) failed: No such file or directory Bug reassigned from package 'src:herisvm' to 'src:mk-configure'. No longer marked as found in versions herisvm/0.9.0-2. Ignoring request to alter fixed versions of bug #1027538 to the same values previously set > reassign 1027657 src:mk-configure Bug #1027657 [src:libmaa] libmaa: FTBFS: dh_auto_build: error: exec (for cmd: mkcmake PREFIX=/usr MANDIR=/usr/share/man INFODIR=/usr/share/info SYSCONFDIR=/etc STRIPFLAG= LIBDIR=/usr/lib/x86_64-linux-gnu LIBEXECDIR=/usr/lib/x86_64-linux-gnu) failed: No such file or directory Bug reassigned from package 'src:libmaa' to 'src:mk-configure'. Ignoring request to alter found versions of bug #1027657 to the same values previously set Ignoring request to alter fixed versions of bug #1027657 to the same values previously set > forcemerge 1027528 1027515 1027538 1027657 Bug #1027528 [src:mk-configure] runawk: FTBFS: dh_auto_build: error: exec (for cmd: mkcmake PREFIX=/usr MANDIR=/usr/share/man INFODIR=/usr/share/info SYSCONFDIR=/etc STRIPFLAG= LIBDIR=/usr/lib/x86_64-linux-gnu LIBEXECDIR=/usr/lib/x86_64-linux-gnu) failed: No such file or directory Bug #1027515 [src:mk-configure] paexec: FTBFS: dh_auto_build: error: exec (for cmd: mkcmake PREFIX=/usr MANDIR=/usr/share/man INFODIR=/usr/share/info SYSCONFDIR=/etc STRIPFLAG= LIBDIR=/usr/lib/x86_64-linux-gnu LIBEXECDIR=/usr/lib/x86_64-linux-gnu) failed: No such file or directory Marked as fixed in versions mk-configure/0.37.0-2. Marked as found in versions mk-configure/0.37.0-1. Bug #1027657 [src:mk-configure] libmaa: FTBFS: dh_auto_build: error: exec (for cmd: mkcmake PREFIX=/usr MANDIR=/usr/share/man INFODIR=/usr/share/info SYSCONFDIR=/etc STRIPFLAG= LIBDIR=/usr/lib/x86_64-linux-gnu LIBEXECDIR=/usr/lib/x86_64-linux-gnu) failed: No such file or directory Severity set to 'serious' from 'normal' Marked as fixed in versions mk-configure/0.37.0-2. Marked as found in versions mk-configure/0.37.0-1. Added tag(s) ftbfs. Bug #1027538 [src:mk-configure] herisvm: FTBFS: dh_auto_build: error: exec (for cmd: mkcmake PREFIX=/usr MANDIR=/usr/share/man INFODIR=/usr/share/info SYSCONFDIR=/etc STRIPFLAG= LIBDIR=/usr/lib/x86_64-linux-gnu LIBEXECDIR=/usr/lib/x86_64-linux-gnu) failed: No such file or directory Marked as fixed in versions mk-configure/0.37.0-2. Marked as found in versions mk-configure/0.37.0-1. Merged 1027515 1027528 1027538 1027657 > affects 1027515 mk-configure src:paexec src:runawk src:herisvm src:libmaa Bug #1027515 [src:mk-configure] paexec: FTBFS: dh_auto_build: error: exec (for cmd: mkcmake PREFIX=/usr MANDIR=/usr/share/man INFODIR=/usr/share/info SYSCONFDIR=/etc STRIPFLAG= LIBDIR=/usr/lib/x86_64-linux-gnu LIBEXECDIR=/usr/lib/x86_64-linux-gnu) failed: No such file or directory Bug #1027528 [src:mk-configure] runawk: FTBFS: dh_auto_build: error: exec (for cmd: mkcmake PREFIX=/usr MANDIR=/usr/share/man INFODIR=/usr/share/info SYSCONFDIR=/etc STRIPFLAG= LIBDIR=/usr/lib/x86_64-linux-gnu LIBEXECDIR=/usr/lib/x86_64-linux-gnu) failed: No such file or directory Bug #1027538 [src:mk-configure] herisvm: FTBFS: dh_auto_build: error: exec (for cmd: mkcmake PREFIX=/usr MANDIR=/usr/share/man INFODIR=/usr/share/info SYSCONFDIR=/etc STRIPFLAG= LIBDIR=/usr/lib/x86_64-linux-gnu LIBEXECDIR=/usr/lib/x86_64-linux-gnu) failed: No such file or directory Bug #1027657 [src:mk-configure] libmaa: FTBFS: dh_auto_build: error: exec (for cmd: mkcmake PREFIX=/usr MANDIR=/usr/share/man INFODIR=/usr/share/info SYSCONFDIR=/etc STRIPFLAG= LIBDIR=/usr/lib/x86_64-linux-gnu LIBEXECDIR=/usr/lib/x86_64-linux-gnu) failed: No such file or directory Added indication that 1027515 affects mk-configure, src:paexec, src:runawk, src:herisvm, and src:libmaa Added indication that 1027528 affects mk-configure, src:paexec, src:runawk, src:herisvm, and src:libmaa Added indication that 1027538 affects mk-configure, src:paexec, src:runawk, src:herisvm, and src:libmaa Added indication that 1027657 affects mk-configure, src:paexec, src:runawk, src:herisvm, and src:libmaa > thanks Stopping processing here. Please contact me if you need assistance. -- 1027515: https://bugs.
Processing of gpscorrelate_2.0-3_source.changes
gpscorrelate_2.0-3_source.changes uploaded successfully to localhost along with the files: gpscorrelate_2.0-3.dsc gpscorrelate_2.0-3.debian.tar.xz gpscorrelate_2.0-3_source.buildinfo Greetings, Your Debian queue daemon (running on host usper.debian.org)
gpscorrelate_2.0-3_source.changes ACCEPTED into unstable
Thank you for your contribution to Debian. Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Wed, 25 Jan 2023 23:59:47 -0300 Source: gpscorrelate Architecture: source Version: 2.0-3 Distribution: unstable Urgency: medium Maintainer: Debian QA Group Changed-By: Paulo Henrique de Lima Santana (phls) Changes: gpscorrelate (2.0-3) unstable; urgency=medium . * QA upload. . [ Debian Janitor ] * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository, Repository-Browse. . [ Paulo Henrique de Lima Santana (phls) ] * Set Maintainer to QA Group. (See #1015844) * debian/control: - Bumped Standards-Version to 4.6.2. - Updated debhelper-compat to 13. * debian/copyright: - Added all upstream files on the list. - Added Paulo for packaging. - Updated Mònica copyright years. * debian/gbp.conf: file created. * debian/rules: added override_dh_auto_test because upstream tests are failing. * debian/salsa-ci.yml: file created. * debian/source/lintian-overrides: file created to ignore warning about html files. * debian/watch: updated to version 4. Checksums-Sha1: f230837ad3dd426b6966217001e3c25df163b7e4 2046 gpscorrelate_2.0-3.dsc 0238750c25a8ed3fe257db79f6ff46ecadd856dd 6560 gpscorrelate_2.0-3.debian.tar.xz dc45d1e94313c626c28d4f5f1127f0c63416047d 13423 gpscorrelate_2.0-3_source.buildinfo Checksums-Sha256: 7bf99360d93c7eb8f18d9a2421de37023b3bd9e44b6b3c18b1cc385091731e9f 2046 gpscorrelate_2.0-3.dsc 888605da04b09d483d4adaaab435f0725bcc70badcd7445280c5275d043c6bb1 6560 gpscorrelate_2.0-3.debian.tar.xz dce6c3dac2c29816ea9b123036d04280142aecf7692998622a3f935b21eb63bc 13423 gpscorrelate_2.0-3_source.buildinfo Files: 92f407e1b402c5e1f5fc7b3dba048512 2046 graphics optional gpscorrelate_2.0-3.dsc 50fccb9c60be9711e574a5e604ac332b 6560 graphics optional gpscorrelate_2.0-3.debian.tar.xz ab9779a4b39469209f6a1ab21ead31c2 13423 graphics optional gpscorrelate_2.0-3_source.buildinfo -BEGIN PGP SIGNATURE- iQIzBAEBCgAdFiEEQySpKy57hdp/nJxAxm0GtARDxFAFAmPUTmAACgkQxm0GtARD xFB2cw/+Ndj5tDjycOswyLScK6e98xrQKs3UJYhE3Ueoc5RofYjpgkVBW7HG/V0/ n3peVjp2hpbiCvPPHqzwjtINDesdvPnNPbxBY0EonBSYueyefgGyTgVKURBIhAMe PEe0npRg5tySRr77RLb0JxXWWhCTV4GzUPKcbMVuGNUa6Ud5pF1xdP8IoPyhBvPf XbncbNIYQLx4kH3Huarkgjqwnb2qEF0saZKQwP0mxeuT0oL3VeTNXtARGTLLhKn+ 69bNa3BoTPFo1FMUyEP8pt259h05tpmWjp5ADww+wWNl2KDx5gFcHBqCyd2z1HIF IuzaVc4v9Zi2jhpCDbMRo0t5sw0FLDfCx6umxBOZmMEjj0SdVLjPnGTKCAprRkxP dsngYMvEF2QnUvbQROcA6V//eyG8rW8PNOcRTlBOdGF6b+wIZmFZjePc69Zctt7N uia2SIsTo81rfEmekU9bqXaaxn37RChBhnbnq+EOho+CyeUS5ALY88DFKy6kUWU+ tRUVgNhLgBtcVT/5Q9bety/Qi9BOv7Js2OzHMMXHw+1xGT5v2JsfjX8Dr3CQfgYa D5EmziYCW9kUzf2kc94OXrtdfgrZWqFif78Lj3pYr8flPEiWRR/ehPn2QJKqZup2 pWnDIuGavVMe0AkfpLv215CmD0vmFL5CM0jRaqwMJdZdpMVw93o= =Quts -END PGP SIGNATURE-
Processed: Bug#1029622 marked as pending in tuxguitar
Processing control commands: > tag -1 pending Bug #1029622 [tuxguitar-alsa] tuxguitar-alsa fails to install Added tag(s) pending. -- 1029622: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1029622 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Processing of tuxguitar_1.5.6+dfsg1-5_source.changes
tuxguitar_1.5.6+dfsg1-5_source.changes uploaded successfully to localhost along with the files: tuxguitar_1.5.6+dfsg1-5.dsc tuxguitar_1.5.6+dfsg1-5.debian.tar.xz tuxguitar_1.5.6+dfsg1-5_amd64.buildinfo Greetings, Your Debian queue daemon (running on host usper.debian.org)
Bug#1029622: marked as done (tuxguitar-alsa fails to install)
Your message dated Sat, 28 Jan 2023 07:09:21 + with message-id and subject line Bug#1029622: fixed in tuxguitar 1.5.6+dfsg1-5 has caused the Debian Bug report #1029622, regarding tuxguitar-alsa fails to install 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.) -- 1029622: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1029622 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: tuxguitar-alsa Version: 1.5.6+dfsg1-4 Severity: serious X-Debbugs-Cc: tony mancill https://piuparts.debian.org/sid/fail/tuxguitar-alsa_1.5.6+dfsg1-4.log ... Preparing to unpack .../136-tuxguitar-alsa_1.5.6+dfsg1-4_amd64.deb ... Unpacking tuxguitar-alsa (1.5.6+dfsg1-4) ... dpkg: error processing archive /tmp/apt-dpkg-install-EyzlMb/136-tuxguitar-alsa_1.5.6+dfsg1-4_amd64.deb (--unpack): trying to overwrite '/usr/share/maven-repo/org/herac/tuxguitar/tuxguitar-pom/1.5.6/tuxguitar-pom-1.5.6.pom', which is also in package tuxguitar 1.5.6+dfsg1-4 Errors were encountered while processing: /tmp/apt-dpkg-install-EyzlMb/136-tuxguitar-alsa_1.5.6+dfsg1-4_amd64.deb E: Sub-process /usr/bin/dpkg returned an error code (1) --- End Message --- --- Begin Message --- Source: tuxguitar Source-Version: 1.5.6+dfsg1-5 Done: tony mancill We believe that the bug you reported is fixed in the latest version of tuxguitar, 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 1029...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. tony mancill (supplier of updated tuxguitar 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: Fri, 27 Jan 2023 22:12:39 -0800 Source: tuxguitar Architecture: source Version: 1.5.6+dfsg1-5 Distribution: unstable Urgency: medium Maintainer: Debian QA Group Changed-By: tony mancill Closes: 1029622 Changes: tuxguitar (1.5.6+dfsg1-5) unstable; urgency=medium . * QA upload. * Address installation problem with tuxguitar-alsa (Closes: #1029622) - Stop installing maven coords in arch-any package - Don't build native modules during arch-all build - No longer call clean maven target - Remove debian/tuxguitar-alsa.pom symlink in dh_auto_clean target Checksums-Sha1: c188c1320b0cbb114616adb2ffaa204c6dc0b65a 2605 tuxguitar_1.5.6+dfsg1-5.dsc 5d800f0c889dd0ce1bcbb5839c9d570d8358 13048 tuxguitar_1.5.6+dfsg1-5.debian.tar.xz 07ceb5b5c9a06ec99cbf38e3b9b8fc41a829f1bb 23841 tuxguitar_1.5.6+dfsg1-5_amd64.buildinfo Checksums-Sha256: 8bd084e77b1e6547fe9a0078ab9afcb511109514b05e1b8ce84b251fd138 2605 tuxguitar_1.5.6+dfsg1-5.dsc 257c1eadd2f906838496cb0e7d1eb4b6ae6eadce16172e8db63509d4548b6125 13048 tuxguitar_1.5.6+dfsg1-5.debian.tar.xz 3b0ba699f861717c0d70f9e0488e4781c1663911a53cedda9c57976c230829de 23841 tuxguitar_1.5.6+dfsg1-5_amd64.buildinfo Files: fbee5d2ca2196a0f045b211c08fb92c3 2605 sound optional tuxguitar_1.5.6+dfsg1-5.dsc 6aa0bbee38abb8407fa6bdefae761907 13048 sound optional tuxguitar_1.5.6+dfsg1-5.debian.tar.xz b177780a375e5139c54c30aad9f00ca5 23841 sound optional tuxguitar_1.5.6+dfsg1-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJIBAEBCgAyFiEE5Qr9Va3SequXFjqLIdIFiZdLPpYFAmPUw6AUHHRtYW5jaWxs QGRlYmlhbi5vcmcACgkQIdIFiZdLPpaBSw/9FtIgWLJINlbsBat9I8fTom8rO/0j 62RrWvcRr3ZtnaN+QJFFamxnYyt9/tTWCTozHOo9dxiRwUoqga5h/W5/ofVKEO96 kfMgIX7bXpUgAfe1f94hsIVeR2p3qB2ireFnD4G8mDKxc2c8W920YazN3qA4bxLR B1rR1cak2zLF+9UJHkPV9dI+KIgp+zyYsoJKceII5nXLV3grjWx0FZbnQl1pxaD2 eD8rSJlqCICSwCY2dcUncFxablKWyznqjbcbaj95LiAvwDt1FWa0UceU7FbJ9u/9 WDMU8ZSqDefKdHnFEqNGZ/NYxn9FyT1YoRmQiKsrjXQTE33rhxhylNgn8ieKtkxO JyGewJz9cVV6gOh54mc6ACt6M3dNITOZp+CQS41zcOplP+jqpJd1AmxNfseHUL8c O6Ofhudz1v+2BoDC1tU166jWrn/ro6L5DyAl9SMbJ1NO4rHD2b7k8z6tyXcASYlj 2t2Ijmfs7aARCQQci+2Md7B0yYydKrhnTYKiFOZQ6avFjJVKsuBL2xZ9Y76j9Czy n3h6VAIxmpRGuu7bDrGy+nFSJeRPkAPlgT5X/KQvRBs4o/nhgOBGYI+thN8EFp3w C+7EmRLbOw5zru2ay/L/y7xaeHocrnGapV0/hXoLptPgfwFMpUFvXjPNCrzT9KDl evb5jiLfM9YVTMg= =O/rG -END PGP SIGNATURE End Message ---
tuxguitar_1.5.6+dfsg1-5_source.changes ACCEPTED into unstable
Thank you for your contribution to Debian. Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Fri, 27 Jan 2023 22:12:39 -0800 Source: tuxguitar Architecture: source Version: 1.5.6+dfsg1-5 Distribution: unstable Urgency: medium Maintainer: Debian QA Group Changed-By: tony mancill Closes: 1029622 Changes: tuxguitar (1.5.6+dfsg1-5) unstable; urgency=medium . * QA upload. * Address installation problem with tuxguitar-alsa (Closes: #1029622) - Stop installing maven coords in arch-any package - Don't build native modules during arch-all build - No longer call clean maven target - Remove debian/tuxguitar-alsa.pom symlink in dh_auto_clean target Checksums-Sha1: c188c1320b0cbb114616adb2ffaa204c6dc0b65a 2605 tuxguitar_1.5.6+dfsg1-5.dsc 5d800f0c889dd0ce1bcbb5839c9d570d8358 13048 tuxguitar_1.5.6+dfsg1-5.debian.tar.xz 07ceb5b5c9a06ec99cbf38e3b9b8fc41a829f1bb 23841 tuxguitar_1.5.6+dfsg1-5_amd64.buildinfo Checksums-Sha256: 8bd084e77b1e6547fe9a0078ab9afcb511109514b05e1b8ce84b251fd138 2605 tuxguitar_1.5.6+dfsg1-5.dsc 257c1eadd2f906838496cb0e7d1eb4b6ae6eadce16172e8db63509d4548b6125 13048 tuxguitar_1.5.6+dfsg1-5.debian.tar.xz 3b0ba699f861717c0d70f9e0488e4781c1663911a53cedda9c57976c230829de 23841 tuxguitar_1.5.6+dfsg1-5_amd64.buildinfo Files: fbee5d2ca2196a0f045b211c08fb92c3 2605 sound optional tuxguitar_1.5.6+dfsg1-5.dsc 6aa0bbee38abb8407fa6bdefae761907 13048 sound optional tuxguitar_1.5.6+dfsg1-5.debian.tar.xz b177780a375e5139c54c30aad9f00ca5 23841 sound optional tuxguitar_1.5.6+dfsg1-5_amd64.buildinfo -BEGIN PGP SIGNATURE- iQJIBAEBCgAyFiEE5Qr9Va3SequXFjqLIdIFiZdLPpYFAmPUw6AUHHRtYW5jaWxs QGRlYmlhbi5vcmcACgkQIdIFiZdLPpaBSw/9FtIgWLJINlbsBat9I8fTom8rO/0j 62RrWvcRr3ZtnaN+QJFFamxnYyt9/tTWCTozHOo9dxiRwUoqga5h/W5/ofVKEO96 kfMgIX7bXpUgAfe1f94hsIVeR2p3qB2ireFnD4G8mDKxc2c8W920YazN3qA4bxLR B1rR1cak2zLF+9UJHkPV9dI+KIgp+zyYsoJKceII5nXLV3grjWx0FZbnQl1pxaD2 eD8rSJlqCICSwCY2dcUncFxablKWyznqjbcbaj95LiAvwDt1FWa0UceU7FbJ9u/9 WDMU8ZSqDefKdHnFEqNGZ/NYxn9FyT1YoRmQiKsrjXQTE33rhxhylNgn8ieKtkxO JyGewJz9cVV6gOh54mc6ACt6M3dNITOZp+CQS41zcOplP+jqpJd1AmxNfseHUL8c O6Ofhudz1v+2BoDC1tU166jWrn/ro6L5DyAl9SMbJ1NO4rHD2b7k8z6tyXcASYlj 2t2Ijmfs7aARCQQci+2Md7B0yYydKrhnTYKiFOZQ6avFjJVKsuBL2xZ9Y76j9Czy n3h6VAIxmpRGuu7bDrGy+nFSJeRPkAPlgT5X/KQvRBs4o/nhgOBGYI+thN8EFp3w C+7EmRLbOw5zru2ay/L/y7xaeHocrnGapV0/hXoLptPgfwFMpUFvXjPNCrzT9KDl evb5jiLfM9YVTMg= =O/rG -END PGP SIGNATURE-