Processed: Re: Bug#1042978: Tests invalid package upgrades
Processing control commands: > reassign -1 release.debian.org Bug #1042978 [debci] Tests invalid package upgrades Bug reassigned from package 'debci' to 'release.debian.org'. Ignoring request to alter found versions of bug #1042978 to the same values previously set Ignoring request to alter fixed versions of bug #1042978 to the same values previously set -- 1042978: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1042978 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Re: Bug#1042978: Tests invalid package upgrades
Control: reassign -1 release.debian.org Hi Ben, On 03-08-2023 18:01, Ben Hutchings wrote: ci.debian.net must therefore also test updating the binaries from all these source packages together, not just those built from linux. But ci.debian.net just does what it's been asked to do by the client, in this case britney. So, if anything it's britney2 that needs to be changed to support this. But, britney2 tries to deduce what needs to be tested together from the package relations. Normally, what you're seeing here is the result of a test where the signed packages haven't been build yet. britney retries tests after 24 hours and normally it retries with linux-signed-* in the list of pinned packages as you can see in the dkms history. The question that now arises is why it doesn't do that now. Paul OpenPGP_signature Description: OpenPGP digital signature
Bug#1042005: transition: mumps hypre2.28.0 superlu combblas
On Wed, Aug 02, 2023 at 10:58:17AM +0200, Drew Parsons wrote: > On 2023-07-31 21:30, Sebastian Ramacher wrote: > > > > > > combblas: 1.16.0 → 2.0.0 > > > superlu:5 → 6 > > > hypre: 2.26.0 → 2.28.0 > > > mumps:5.5 → 5.6 > > > > Please go ahead. > > combblas and superlu are loaded. > > Probably best to run the rebuild of superlu-dist against combblas >... That didn't build: https://buildd.debian.org/status/logs.php?pkg=superlu-dist&ver=8.1.2%2Bdfsg1-1%2Bb2 ... /usr/bin/ld: CMakeFiles/superlu_dist.dir/z_c2cpp_GetHWPM.cpp.o:/usr/include/CombBLAS/BipartiteMatchings/BPMaximalMatching.h:17: multiple definition of `GlobalMT'; CMakeFiles/superlu_dist.dir/d_c2cpp_GetHWPM.cpp.o:/usr/include/CombBLAS/BipartiteMatchings/BPMaximalMatching.h:17: first defined here /usr/bin/ld: CMakeFiles/superlu_dist.dir/z_c2cpp_GetHWPM.cpp.o: in function `combblas::ThreadBuffLenForBinning(int, int)': /usr/include/CombBLAS/BipartiteMatchings/ApproxWeightPerfectMatching.h:401: multiple definition of `combblas::ThreadBuffLenForBinning(int, int)'; CMakeFiles/superlu_dist.dir/d_c2cpp_GetHWPM.cpp.o:/usr/include/CombBLAS/BipartiteMatchings/ApproxWeightPerfectMatching.h:401: first defined here ... At first sight this looks like a bug in the combblas headers to me. > Drew cu Adrian BTW: dolfin/fenics-basix/fenics-dolfinx need source-only uploads for testing migration.
Bug#1037175: [preapproval] bullseye-pu: package org-mode/9.4.0+dfsg-1+deb11u1
Jonathan Wiltshire writes: > Control: tag -1 confirmed > > On Mon, Jun 12, 2023 at 07:44:52PM -0400, Nicholas D Steeves wrote: >> Updated debdiff attached. > > Please go ahead (you should probably add a non-maintainer upload line, or > add yourself to uploaders, as well). Thanks for the ACK, and for the reminder! I had forgotten to run dch with "--team", so I fixed that, and uploaded. Kind regards, Nicholas
Re: 11.8/12.2 planning
Apologies, I don't think I've responded to this yet :-( On Mon, Jul 24, 2023 at 07:25:13PM +0100, Jonathan Wiltshire wrote: >I think I confused matters with my messy thread; let's start again. > >I originally suggested: > >Jonathan Wiltshire (2023-06-28): >> The proper cadence for 11.8 and 12.2 is the weekend of 30th September >> 2023. Please indicate your availability for: >> >> 23 Sep >> 30 Sep (preferred) >> 7 Oct > >Let's say 30 Sep is still preferred, 7th Oct or at a stretch 14th Oct are >options. Please indicate your availability for those three. 23rd and 7th are fine, 30th may be more awkward for me. -- Steve McIntyre, Cambridge, UK.st...@einval.com "...In the UNIX world, people tend to interpret `non-technical user' as meaning someone who's only ever written one device driver." -- Daniel Pead
DSA for jupyter-core in oldstable triggers nbconvert autopkgtest
Hi nbconvert maintainers, DSA 5422 [1] seems to be triggering an autopkgtest regression in nbconvert. Looking at the name of the test, this could be a serious problem for nbconvert users on oldstable. Can you please investigate and let us know if you need to fix nbconvert in the next point release update? From the log [2]: 109s === FAILURES === 109s _ TestNbConvertApp.test_default_config _ 109s 109s self = testMethod=test_default_config> 109s 109s def test_default_config(self): 109s """ 109s Does the default config work? 109s """ 109s with self.create_temp_cwd(['notebook*.ipynb', 'jupyter_nbconvert_config.py']): 109s > self.nbconvert('--log-level 0') 109s 109s /usr/lib/python3/dist-packages/nbconvert/tests/test_nbconvertapp.py:227: 109s _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 109s 109s self = testMethod=test_default_config> 109s parameters = ['--log-level', '0'], ignore_return_code = False, stdin = None 109s 109s def nbconvert(self, parameters, ignore_return_code=False, stdin=None): 109s """ 109s Run nbconvert as a shell command, listening for both Errors and 109s non-zero return codes. Returns the tuple (stdout, stderr) of 109s output produced during the nbconvert run. 109s 109s Parameters 109s -- 109s parameters : str, list(str) 109s List of parameters to pass to IPython. 109s ignore_return_code : optional bool (default False) 109s Throw an OSError if the return code 109s """ 109s cmd = [sys.executable, '-m', 'nbconvert'] 109s if sys.platform == 'win32': 109s if isinstance(parameters, string_types): 109s cmd = ' '.join(cmd) + ' ' + parameters 109s else: 109s cmd = ' '.join(cmd + parameters) 109s else: 109s if isinstance(parameters, string_types): 109s parameters = shlex.split(parameters) 109s cmd += parameters 109s p = Popen(cmd, stdout=PIPE, stderr=PIPE, stdin=PIPE) 109s stdout, stderr = p.communicate(input=stdin) 109s if not (p.returncode == 0 or ignore_return_code): 109s > raise OSError(bytes_to_str(stderr)) 109s E OSError 109s 109s /usr/lib/python3/dist-packages/nbconvert/tests/base.py:162: OSError Paul [1] https://security-tracker.debian.org/tracker/DSA-5422 [2] https://ci.debian.net/data/autopkgtest/oldstable/amd64/n/nbconvert/36344377/log.gz OpenPGP_signature Description: OpenPGP digital signature