Bug#959075: Still not working on Debian testing
On Fri, 03 Jul 2020 10:42:26 +0800 Paul Wise wrote: > > $ dpkg -l | grep ifenslave > > ii ifenslave2.10+nmu2 > > > > The lines "bond-slaves" and "bond-primary" still do not work: > > Please retry your test with ifenslave 2.11. Oops, sorry, I missed that one, I did not realize I'm on testing, not sid :-( Ok, two remaining cometic issues in 2.11 than :-) # ifup bond0 /etc/network/if-pre-up.d/ifenslave: 39: echo: echo: I/O error /etc/network/if-pre-up.d/ifenslave: 39: echo: echo: I/O error You get this error when you try to set a /sys/ option that is not allowed, but the script does not tell which option throws an error. See diff attached. Example updelay and downdelay are apparently not allowed using arp and this patch will tell you what went wrong: iface bond0 inet static address 10.234.0.33 netmask 255.255.255.0 network 10.234.0.0 broadcast 10.234.0.255 bond-slaves eth2 eth3 bond-mode active-backup bond-primary eth2 bond-downdelay 200 bond-updelay 200 bond-arp_interval 2000 bond-arp_ip_target 10.234.0.32, 10.234.0.34 # ifup bond0 [error] unable to set downdelay to 200 [error] unable to set updelay to 200 Another cosmetic issue: # ifdown bond0 # modprobe -rv bonding rmmod bonding # ifup bond0 RTNETLINK answers: File exists # But when loading the kernel module before ifup then the RTNETLINK error disappears: # ifdown bond0 # modprobe -rv bonding rmmod bonding # modprobe -v bonding insmod /lib/modules/5.7.0-1-amd64/kernel/drivers/net/bonding/bonding.ko # ifup bond0 # For the rest is seems to be ok now, thnx! :) Just my 2 cts, R. -- richard lucassen https://contact.xaq.nl/ --- /etc/network/if-pre-up.d/ifenslave 2020-07-02 10:35:20.0 +0200 +++ /etc/network/if-pre-up.d/ifenslave.new 2020-07-03 11:03:15.807658451 +0200 @@ -36,8 +36,10 @@ # $1 = basename of the file in bonding/ to write to. # $2 = value to write. Won't write if $2 is empty. if [ -n "$2" ] ; then - echo "$2" > "/sys/class/net/$BOND_MASTER/bonding/$1" - return $? + echo "$2" > "/sys/class/net/$BOND_MASTER/bonding/$1" 2>/dev/null + EXITCODE=$? + [ ${EXITCODE} -ne 0 ] && echo "[error] unable to set $1 to $2" + return ${EXITCODE} fi return 0 }
Bug#893203: marked as done (src:collada2gltf: FTBFS with rapidjson 1.0.2)
Your message dated Fri, 03 Jul 2020 18:48:48 + with message-id and subject line Bug#893203: fixed in collada2gltf 20140924-6 has caused the Debian Bug report #893203, regarding src:collada2gltf: FTBFS with rapidjson 1.0.2 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.) -- 893203: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=893203 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: src:collada2gltf Version: 20140924-4 Severity: serious Forwarded: https://github.com/KhronosGroup/glTF/issues/417 Tags: sid Dear Maintainer, as said in the above github issue: " Unfortunately, the (already deprecated in 0.11/0.12 git) FileStream class/filestream.h got removed completely, so the build of COLLADA2GLTF with rapidjson 1.0.2 fails: [ 2%] Building CXX object CMakeFiles/collada2gltfConvert.dir/COLLADA2GLTFWriter.cpp.o /usr/bin/c++ -DLIBXML_STATIC_FOR_DLL -DSTATIC_COLLADA2GLTF -DUSE_LIBPNG -DUSE_OPEN3DGC -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2 -std=c++11 -I/home/rene/tmp/collada2gltf-20140924 -I/home/rene/tmp/collada2gltf-20140924/GLTF -I/home/rene/tmp/collada2gltf-20140924/JSON -I/home/rene/tmp/collada2gltf-20140924/shaders -I/home/rene/tmp/collada2gltf-20140924/helpers -I/home/rene/tmp/collada2gltf-20140924/convert -I/home/rene/tmp/collada2gltf-20140924/assetModifiers -I/usr/include/rapidjson -I/usr/include/opencollada/COLLADAFramework -I/usr/include/opencollada/COLLADABaseUtils -I/usr/include/opencollada/COLLADASaxFrameworkLoader -I/usr/include/opencollada/GeneratedSaxParser -I/home/rene/tmp/collada2gltf-20140924/extensions/o3dgc-compression -I/usr/include/o3dgc -fPIC -o CMakeFiles/collada2gltfConvert.dir/COLLADA2GLTFWriter.cpp.o -c /home/rene/tmp/collada2gltf-20140924/COLLADA2GLTFWriter.cpp In file included from /home/rene/tmp/collada2gltf-20140924/COLLADA2GLTFWriter.h:30:0, from /home/rene/tmp/collada2gltf-20140924/COLLADA2GLTFWriter.cpp:28: /home/rene/tmp/collada2gltf-20140924/GLTF/GLTF.h:55:24: fatal error: filestream.h: No such file or directory compilation terminated. CMakeFiles/collada2gltfConvert.dir/build.make:65: recipe for target 'CMakeFiles/collada2gltfConvert.dir/COLLADA2GLTFWriter.cpp.o' failed make[3]: *** [CMakeFiles/collada2gltfConvert.dir/COLLADA2GLTFWriter.cpp.o] Error 1 make[3]: Leaving directory '/home/rene/tmp/collada2gltf-20140924/obj-x86_64-linux-gnu' CMakeFiles/Makefile2:70: recipe for target 'CMakeFiles/collada2gltfConvert.dir/all' failed make[2]: *** [CMakeFiles/collada2gltfConvert.dir/all] Error 2 make[2]: Leaving directory '/home/rene/tmp/collada2gltf-20140924/obj-x86_64-linux-gnu' Makefile:86: recipe for target 'all' failed make[1]: *** [all] Error 2 make[1]: Leaving directory '/home/rene/tmp/collada2gltf-20140924/obj-x86_64-linux-gnu' I think you want to use FileWriteStream/filewritestream.h now? " I just uploaded rapidjson 1.1.0 to unstable... Regards, Rene --- End Message --- --- Begin Message --- Source: collada2gltf Source-Version: 20140924-6 Done: Sudip Mukherjee We believe that the bug you reported is fixed in the latest version of collada2gltf, 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 893...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Sudip Mukherjee (supplier of updated collada2gltf 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, 03 Jul 2020 18:26:49 +0100 Source: collada2gltf Architecture: source Version: 20140924-6 Distribution: unstable Urgency: medium Maintainer: Debian QA Group Changed-By: Sudip Mukherjee Closes: 893203 Changes: collada2gltf (20140924-6) unstable; urgency=medium . * QA upload. . [ Ondřej Nový ] * d/copyright: Use https protocol in Format field * d/changelog: Remove trailing whitespaces * d/rules: Remove trailing whitespaces . [ Sudip Mukherjee ] * Fix FTBFS with rapidjson. (Closes: #893203) * Update Standards-Version to 4.5.0 * Use debhelper-compat. - Update to compat level 13. * Remove whitespace from d/control and d/rules. Checksums-Sha1: dd1daabbab5cc22a4077c923f6af93a100ddaf2e 20
Processing of collada2gltf_20140924-6_source.changes
collada2gltf_20140924-6_source.changes uploaded successfully to localhost along with the files: collada2gltf_20140924-6.dsc collada2gltf_20140924-6.debian.tar.xz collada2gltf_20140924-6_amd64.buildinfo Greetings, Your Debian queue daemon (running on host usper.debian.org)
collada2gltf_20140924-6_source.changes ACCEPTED into unstable
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Fri, 03 Jul 2020 18:26:49 +0100 Source: collada2gltf Architecture: source Version: 20140924-6 Distribution: unstable Urgency: medium Maintainer: Debian QA Group Changed-By: Sudip Mukherjee Closes: 893203 Changes: collada2gltf (20140924-6) unstable; urgency=medium . * QA upload. . [ Ondřej Nový ] * d/copyright: Use https protocol in Format field * d/changelog: Remove trailing whitespaces * d/rules: Remove trailing whitespaces . [ Sudip Mukherjee ] * Fix FTBFS with rapidjson. (Closes: #893203) * Update Standards-Version to 4.5.0 * Use debhelper-compat. - Update to compat level 13. * Remove whitespace from d/control and d/rules. Checksums-Sha1: dd1daabbab5cc22a4077c923f6af93a100ddaf2e 2011 collada2gltf_20140924-6.dsc d0f76af035208226a56b92d5de7a4048ba083fde 7360 collada2gltf_20140924-6.debian.tar.xz 479cb036bfe2db385479b82699e315fef0ee84ba 6985 collada2gltf_20140924-6_amd64.buildinfo Checksums-Sha256: 43ba710f8316a0251aa0f19e958afebee4e111ed0be15b6365794dda3ac9591e 2011 collada2gltf_20140924-6.dsc 03af56147aa581b6c4b829a5e00147d8c8d5fa1d15459802f76c97b2b516f4ed 7360 collada2gltf_20140924-6.debian.tar.xz 3421f76ac026103bab496a0c049046c989d9a0b9a2b348761d2ea8e326265e90 6985 collada2gltf_20140924-6_amd64.buildinfo Files: 33a7a3f19495756e33dce9a21447ed0b 2011 libs optional collada2gltf_20140924-6.dsc 117ffb36f80fc149a3d04b0277aacd3a 7360 libs optional collada2gltf_20140924-6.debian.tar.xz 63ca091b900f413832086544a6063cb9 6985 libs optional collada2gltf_20140924-6_amd64.buildinfo -BEGIN PGP SIGNATURE- iQIzBAEBCgAdFiEEuDQJkCg9jZvBlJrHR5mjUUbRKzUFAl7/eUMACgkQR5mjUUbR KzVZBBAArZqhDaOuYuTLxnOHr/l9Vu3CaL7eXvTcvODXkP/P+tsgPaRTO3pmRbUF dc7s21jntEt+XIzsgKAAInjf6ZqylXAEdlxiJkcM70Rytsa/7GUX9fZlV3TFSp5L iU55YNTOYNI9L88Fzg+7m3PGvEj0CdQr0vJp2FMN6pwT00xSV7uF9wxHz/FVeivg 97EFJGwr0UpzsgJqfOPCzcXLH0yiiLQ2ykBzx5Oxuak8QJnu2dFrygv5qaSLQJeL Nk+6RgZ1aDfe74VdR4VfCR3ykgFpxkPVw8O3pMBuiG5LMmFkUFQe0n4vf5lsS3WY orJFA6GC1d2rIrqO5dmfDfHL8jZbNS6KBRaHzPJzDEBuRCsMBeCCSiNzmxgt/t9o kEqQ3Bc4Xq7QogzjcLJfgm+ge5C7oWIs8fluHZeORD3iGiwK573BBIrWBi42FoZH fa0N7RZzAofTSUzbMqpc/qtNnL8dGF+3iqDLr8pUD8Hskf4hP64u3W8fuapunZaj Xr4ljYDBCKDrYzNijRGQly5EgZayCL4EXDr4GJVUdKok/+pORPbXNGZ5DJAlyxQu hlxnaX5lgImyIgkEVR6Ig7QlMF+507EW45H/SQutJ7rPuh7dmD23ASTb1XlmAnGF Q4HrsGZdSnH2KT2+9ciXMrpDtAgS46tbsWtJweRz56f+hL6KAHk= =8mEk -END PGP SIGNATURE- Thank you for your contribution to Debian.
Bug#779736: Note on manpage
If you could add a note about this to the manpage, I'd appreciate that Thanks! -Calum
wav2cdr is marked for autoremoval from testing
wav2cdr 2.3.4-4 is marked for autoremoval from testing on 2020-07-16 It is affected by these RC bugs: 956927: wav2cdr: wav2cdr is broken on 64bit architectures other than amd64 and alpha 958578: wav2cdr: wav2cdr is broken on 64bit architectures other than amd64 and alpha
Processed: fixed 959075 in 2.11, closing 959075
Processing commands for cont...@bugs.debian.org: > fixed 959075 2.11 Bug #959075 [ifenslave] ifupdown: Bonding is not working with ifenslave 2.10 wich removes ifenslave command Bug #959236 [ifenslave] Bringing up a bond results in an infinite loop Marked as fixed in versions ifenslave/2.11. Marked as fixed in versions ifenslave/2.11. > close 959075 Bug #959075 [ifenslave] ifupdown: Bonding is not working with ifenslave 2.10 wich removes ifenslave command Bug #959236 [ifenslave] Bringing up a bond results in an infinite loop Marked Bug as done Marked Bug as done > thanks Stopping processing here. Please contact me if you need assistance. -- 959075: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959075 959236: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959236 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#959075: Still not working on Debian testing
On Fri, 3 Jul 2020 11:15:30 +0200 richard lucassen wrote: > Ok, two remaining cometic issues in 2.11 than :-) Sounds like the issue is fixed then, marked it as fixed. > # ifup bond0 > /etc/network/if-pre-up.d/ifenslave: 39: echo: echo: I/O error > /etc/network/if-pre-up.d/ifenslave: 39: echo: echo: I/O error > > You get this error when you try to set a /sys/ option that is not > allowed, but the script does not tell which option throws an error. See > diff attached. I'll apply the patch you sent in another upload. > Another cosmetic issue: > > # ifdown bond0 > # modprobe -rv bonding > rmmod bonding > # ifup bond0 > RTNETLINK answers: File exists > # Is this a regression from 2.9 or just an old bug still present? -- bye, pabs https://wiki.debian.org/PaulWise signature.asc Description: This is a digitally signed message part