bind9 (1:9.20.26-1) unstable; urgency=medium . * New upstream version 9.20.26 + [CVE-2026-10723]: Correct verification of NSEC3 signer name. + [CVE-2026-10822]: Malformed DNSKEY records could trigger an assertion. + [CVE-2026-11331]: Fix handling of RPZ CNAME expansion that returns too-long name. + [CVE-2026-11605]: Prevent excessive validation work from crafted negative responses. + [CVE-2026-11622]: Prevent cache exhaustion under sustained attack. + [CVE-2026-11721]: Stop accepting invalid signed wildcard records. + [CVE-2026-12617]: Do not assert for some specific CNAME and DNAME queries. + [CVE-2026-13204]: Prevent crash from malformed NSEC/NSEC3 response. + [CVE-2026-13321]: Fix DNSSEC validation bypass via out-of-zone NSEC Next Field. cinnamon (6.6.9-1) unstable; urgency=high . * d/patches: add looking-glass-replace-pyinotify-with-Gio.FileMonitor.patch * Drop the python3-pyinotify dependency, use Gio.FileMonitor instead (Closes: #1075948) * d/control: add the missing procps dependency to cinnamon-common (Closes: #1136480) * d/control: add the missing libxml2-dev build dependency * New upstream version 6.6.9 (Closes: #1142724) cinnamon (6.6.8-2) unstable; urgency=medium . * Replace gkbd-capplet dependency with tecla for the keyboard layout preview (Closes: #1123771) * d/patches: - Add three patches proposed upstream: fall back to tecla for the keyboard layout preview where gkbd-keyboard-display is unavailable, use only tecla on Wayland, and hide "Show Character Table" in the keyboard applet menu when gucharmap is missing. - backport util.js GIR 2.0 fix from upstream * d/control: bump Standards-Version to 4.7.4, no changes needed dawn (0.0~git20260724.1e897275-1) unstable; urgency=medium . * New upstream snapshot * Drop fix-gcc16.patch and fix-ityp-array-equality.patch, fixed upstream * Drop -DDAWN_USE_WAYLAND=ON, default upstream * Add tint-cmake-flags.patch * Add riscv64 to Architecture in debian/control openssh (1:10.4p1-2) unstable; urgency=medium . [ Alexander Fisher ] * Build-Depends: add libcrypt-dev so crypt() is detected at build time, fixing password authentication with UsePAM=no (closes: #1142354). * debian/tests: add password-auth-no-pam regression test. openssh (1:10.4p1-1) unstable; urgency=medium . [ Sven Joachim ] * Make doc symlinks relative on upgrade from 1:10.3p1-5 (closes: #1141420). . [ Colin Watson ] * New upstream release: - SECURITY: sftp(1): when downloading files on the command-line using "sftp host:/path .", a malicious server could cause the file to be downloaded to an unexpected location. This issue was identified by the Swival Security Scanner. - SECURITY: scp(1): when copying files between two remote destinations, do not allow a malicious server to write files to the parent directory of the intended target directory. This issue was identified by the Swival Security Scanner. - SECURITY: sshd(8): when using the "internal-sftp" SFTP server implementation (this is not the default), long command lines were previously truncated silently after the 9th argument. If a security-relevant option was in the 10th or later position, it would be discarded. Reported by Steve Caffrey. - SECURITY: sshd(8): add a documentation note to mention that the GSSAPIStrictAcceptorCheck option is ineffective when the server is joined to a Windows Active Directory. Reported by Yarin Aharoni of Safebreach. - SECURITY: sshd(8): DisableForwarding=yes didn't override PermitTunnel=yes as it was documented to do. Note that PermitTunnel is not enabled by default. Reported independently by Huzaifa Sidhpurwala of Redhat and Marko Jevtic. - SECURITY: sshd(8): avoid a potential pre-authentication denial of service when GSSAPIAuthentication was enabled (this feature is off by default). This was not mitigated by MaxAuthTries, but would be penalised by PerSourcePenalties. This was reported by Manfred Kaiser of the milCERT AT (Austrian Ministry of Defence). - SECURITY: sshd(8): fix a number of cases where the minimum authentication delay was not being enforced. Reported by the Orange Cyberdefense Vulnerability Team. - SECURITY: ssh(1): fix a possible client-side use-after-free if the server changes its host key during a key reexchange. This was reported by Zhenpeng (Leo) Lin of Depthfirst. - All: add experimental support for a composite post-quantum signature scheme that combines ML-DSA 44 and Ed25519 as specified in draft-miller-sshm-mldsa44-ed25519-composite-sigs. This scheme is not enabled by default. To use it, you'll need to add it to HostKeyAlgorithms, PubkeyAcceptedAlgorithms, etc. Keys may be generated using "ssh-keygen -t mldsa44-ed25519". - ssh(1), sshd(8): replace the wildcard pattern matcher with an implementation based on an NFA. This avoids exponential worst-case behaviour for the old implementation. - ssh-agent(1): fix incorrect reply to "query" SSH_AGENTC_EXTENSION requests. - sshd(8): avoid sending observably different messages for valid vs invalid users in GSSAPIAuthentication (disabled by default). - ssh(1), sshd(8): fix several bugs that incorrectly classified bulk traffic as interactive. - ssh-keygen(1), ssh-add(1): skip unsupported key types when downloading resident keys from a FIDO token. Previously, downloads would abort when one was encountered. - ssh(1): fix a potential use-after-free on an error path if cipher_init() fails. - sshd(8): perform stricter encoding and validation of transport state passed between sshd privilege separation subprocesses. This somewhat further hardens the server against attacks on sshd-auth or sshd-session subprocesses. - ssh-agent(1): avoid possible runtime denial of service by enforcing some limits on the length of usernames in key use constraints. - sftp(1): fix two separate one-byte out-of-bounds reads, in SSH2_FXP_REALPATH and batch command processing. - sftp-server(8): disallow use of the copy-data extension to read and write to the same inode simultaneously. - ssh(1), sshd(8): avoid strlen(NULL) crash if an X11 channel was created before the x11-req SSH_MSG_CHANNEL_REQUEST was sent. - sftp(1), scp(1): avoid a situation where sftp_download() could get stuck in a loop if a broken server repeatedly returned zero length while reading a file. - ssh(1): avoid leaking DNS0x20 case-randomised names into names canonicalised using CanonicalizePermittedCNAMEs. - sftp-server(8): avoid truncation of pathnames passed to lstat() during SSH_FXP_REALPATH handling on systems where PATH_MAX is not the actual max. - ssh(1), sshd(8): correct arming of poll(2) event masks for some socket-type channels. - sshd(8): major refactor of sshd_config parsing and management code, to allow for more exact serialisation/deserialisation across privilege separation boundaries. - ssh-add(1): open connection to the agent only after getopt() processing has completed, to give options like "-v" a chance to display debug information about this operation. - sshd(8): differentiate between execution failures and a subsystem that was not found when logging why a subsystem failed to start. - All: use safer idioms for timegm(3) and mktime(3) error detection. - ssh(1), sshd(8): avoid accepting invalid cipher or MAC lists in config files or command-line arguments. This could cause runtime failures later. - ssh(1): fix NULL deref crash during pubkey auth when using a PEM style private key with no corresponding .pub key adjacent to it (closes: #1134814). - sshd(8): don't print an error message when trying to load a host private key when PKCS#11 keys are in use, as these don't need the private half on the filesystem. - All: don't use deprecated ERR_load_crypto_strings(). - ssh(1): properly report errors during configuration default setting. - ssh(1): use correct directive name (Match instead of Host) in error message. - sftp(1): fix "ls -ln" which was not correctly showing numeric UID/GIDs but rather user and group names. - sshd(8): avoid possible NULL dereference if an allocation fails during config parsing. - All: fix ineffective guards against loading overly large public keys in several places. - sftp(1): ensure file descriptors used by sftp to communicate to its ssh(1) subprocess don't leak into executed subprocesses (e.g. via "!"). - Sync fmt_scaled.c with OpenBSD upstream, picking up an exactness fix for large exponents. - sshd(8): remove duplicate sandbox entry for clock_gettime64. - Sync getrrsetbyname.c with OpenBSD upstream, picking up robustness fixes. - Fix a number of memory leaks on error paths in the portability code. - Revise the README.privsep documentation to reflect sshd's recent switch to a multi-binary model. openssh (1:10.3p1-9) unstable; urgency=medium . * openssh-client Conflicts: openssh-server (<< 1:10.3p1-6~) (closes: #1141550). openssh (1:10.3p1-8) unstable; urgency=medium . * d/copyright: Add some missing authors. * Standards-Version: 4.7.4. * openssh-tests: Make a couple more scripts executable. openssh (1:10.3p1-7) unstable; urgency=medium . * Reupload with binaries, since openssh-common is new. . openssh (1:10.3p1-6) unstable; urgency=medium . * Move documentation to a new openssh-common package (closes: #1070098). * Remove dependency on openssh-client{,-gssapi} from openssh-server{,-gssapi} (closes: #699473). * Use --link-doc on all packages. * Move ssh-keygen and openssh-{pkcs11,sk}-helper to openssh-common. python-click (8.3.3-1) unstable; urgency=medium . * Team upload. * New upstream version 8.3.3. - Add new build-dependency python3-myst-parser. - Refresh patches with new upstream version. python-click (8.3.3-1~exp1) experimental; urgency=medium . * Team upload. * New upstream version 8.3.3. * Add new build-dependency python3-myst-parser. * Update d/gbp.conf for experimental. python-typing-extensions (4.16.0-4) unstable; urgency=medium . * Team upload. * Salsa CI: test nocheck & nodoc profiles * Implement nocheck & nodoc profiles ruby-excon (1.6.0-1) unstable; urgency=medium . * Team upload. * New upstream release. ruby-gettext-i18n-rails-js (3.1.6+dfsg-1) unstable; urgency=medium . * Team upload. * New upstream release. ruby-mixlib-log (3.2.16-1) unstable; urgency=medium . * Team upload. * New upstream release. ruby-prawn-svg (0.40.3-1) unstable; urgency=medium . * Team upload. * New upstream release. ruby-rack-proxy (1.0.1-1) unstable; urgency=medium . * Team upload. * New upstream release. * Install the examples. ruby-roadie (5.3.1-1) unstable; urgency=medium . * Team upload. * New upstream release. ruby-spring (4.7.0-1) unstable; urgency=medium . * Team upload. * New upstream release. * Explicitly depend on ruby:any. ruby-state-machines (0.202.0-1) unstable; urgency=medium . * Team upload. * New upstream release. ruby-validates-hostname (2.0.41-1) unstable; urgency=medium . * Team upload. * New upstream release. valgrind (1:3.27.1-0.2) unstable; urgency=medium . * Non-maintainer upload. * d/copyright: - Drop the ancient FSF snail mail address in favour of the classic website pointer (lintian). * d/rules: - Add a fail-missing flag to the dh_missing call vmtk (1.5.0~git20260410.ba7cf0f+dfsg1-7) unstable; urgency=medium . * Manually add runtime dependency on python3-joblib and python3-numpy as well. vmtk (1.5.0~git20260410.ba7cf0f+dfsg1-6) unstable; urgency=medium . * Remove debian/py3dist-overrides, which is not enforcing the runtime dependency on vtk (because the vmtk build system does not declare it) and simply manually add python3-vtk9 to the runtime dependencies of python3-vmtk. vmtk (1.5.0~git20260410.ba7cf0f+dfsg1-5) unstable; urgency=medium . * Add Build-Depends on python3-vtk9, and debian/py3dist-overrides to say that the vtk python dependency is provided by the python3-vtk9 debian package. vmtk (1.5.0~git20260410.ba7cf0f+dfsg1-4) unstable; urgency=medium . * Use find instead of shell expansion to locate executables to be passed to help2man. vmtk (1.5.0~git20260410.ba7cf0f+dfsg1-3) unstable; urgency=medium . * Add patch build_no_git.diff to prevent CMake from looking from git. Upstream uses git to clone test data, which are not needed here because (a) we only run tests on debci and not during the build, and (b) even if we were to run tests here, test data would be packaged in vmtk-test-data and not downloaded on the fly at configuration time. vmtk (1.5.0~git20260410.ba7cf0f+dfsg1-2) unstable; urgency=medium . * Provide a local copy of vtkAddon cmake files, instead of downloading them from GitHub. An helper script is provided to update them in future, if needed. Closes: #1135078. * Move back to non-free, because of files licensed with 3D-Slicer-1.0, which is not DFSG compliant. See the review at https://dfsg-new-queue.debian.org/reviews/ vmtk/1.5.0~git20260410.ba7cf0f+dfsg1-1 for the full analysis. * Add back XS-Autobuild: yes * Change override_dh_install into execute_before_dh_install in d/rules * Ignore lintian warning description-synopsis-starts-with-article. Upstream consistently puts "The" in front of "Vascular Modeling Toolkit", there is no reason for us to change this convention. * Add automatic generation of manpages. * Fix spelling-error-in-copyright and spelling-error-in-copyright lintian pedantic comments * Ignore false positive space-in-std-shortname-in-dep5-copyright lintian warning d/copyright actually contains "-(VTK)-" rather than "- vtk -" * Ignore maintainer-manual-page lintian message, as it would not be practical for upstream developers to maintain more than 180 man pages vmtk (1.5.0~git20260410.ba7cf0f-1) unstable; urgency=medium . [ Steffen Moeller ] * debian/upstream/metadata: - newly created - list reference to paper and entries registries, amongst with biii * debian/upstream/edam: Providing minimal annotation. . [ Andreas Tille ] * Point Vcs fields to salsa.debian.org * Build-Depends vtk7 packages * debhelper-compat 13 (routine-update) * Secure URI in copyright format (routine-update) * Drop ancient X-Python-Version field (routine-update) * Add salsa-ci file (routine-update) * Update renamed lintian tag names in lintian overrides. * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository, Repository-Browse. . [ Drew Parsons ] * update packages to Python 3 (remove Python 2). Closes: #938795. * Build-Depends: libvtkgdcm-dev not libvtkgdcm2-dev . [ Francesco Ballarin ] * Tentatively reinstate package into the debian archive, after it was removed on Fri, 24 Jun 2022 14:47:59 +0000 (see Bug: #1008792). Upstream has restarted some maintenance of the package, and https://github.com/vmtk/vmtk/pull/484 mentions that future releases will be published on PyPI. * Update d/watch to v5. Until proper releases are made upstream, we will simply fetch the current HEAD and provide release versions of the form v1.5.0~git{date}.{commit}. The latest release available on GitHub (dated 2018) is v1.4.0, but upstream commit bf0748b8 (dated 2022) has increased the version number to 1.5.0 in the main CMakeLists.txt file - New ABI 1.5, instead of former one 1.3 that was present in the latest debian upload. * Remove outdated TODO file * Add F. Ballarin to uploaders * Standards-Version: 4.7.4 (routine-update) * Fix Maintainer name of Debian Science team (routine-update) * Build-Depends: s/dh-python/dh-sequence-python3/ (routine-update) * Avoid explicitly specifying -Wl,--as-needed linker flag. * Reorder Files paragraphs in debian/copyright by directory depth. * Refresh debian/patches/tetgen-O1.diff * Remove outdated copyright_hints file * Build depend on libinsighttoolkit5-dev, instead of on ancient libinsighttoolkit4-dev. * Drop obsolete fields XS-Autobuild and Rules-Requires-Root from d/control * Disable Salsa CI * Drop -DVTK_VMTK_WRAP_TCL:BOOL=OFF from d/rules, since cmake states that the option is actually unused. * Add -DVTK_VMTK_WRAP_JAVA:BOOL=OFF to d/rules, since without it we get a configuration error saying that wrapping Java is not possible with vtk9. * Build depend on libfreetype-dev instead of on ancient libfreetype6-dev * Explicitly pass -DVMTK_PYTHON_VERSION to cmake, otherwise the folder python. gets created in dist-packages, instead of (e.g.) python 3.13 * Explicitly pass -DVMTK_SCRIPTS_INSTALL_LIB_DIR, -DVMTK_CONTRIB_SCRIPTS_INSTALL_LIB_DIR, -DPYPES_MODULE_INSTALL_LIB_DIR, -DVTK_VMTK_MODULE_INSTALL_LIB_DIR to ensure that scripts are installed in dist-packages rather than site-packages. The flag -DVMTK_MODULE_INSTALL_LIB_DIR was instead already provided. * Temporarily skip installing generated *.cmake files, because they seem to hardcode the path of the source directory, resulting in non-portable cmake files * Disable -DVMTK_MINIMAL_INSTALL, so that end user scripts are installed in /usr/bin * Change shebang to use python3 instead of python, to avoid having to add a runtime dependency on python-is-python3 * Move libtet.a from /usr/bin to /usr/lib * Remove spurious /usr/bin/__init__, which comes because CMake iterates over all vmtk scripts and strips the .py extension. The __init__.py file is clearly not meant to be a script. * Fix old-fsf-address-in-copyright-file lintian warning * Add build dependency and runtime dependency on python3-joblib, because the script vmtkcenterlinesnetwork.py imports it. * Enable CMake option VMTK_USE_RENDERING in order to build vtkvmtkImagePlaneWidget and vtkvmtkInteractorStyleTrackballCamera * Add patch test_vtkvmtkStaticTemporal_incompatible_vtk9.2.diff to disable checks of vtkvmtkStaticTemporalInterpolatedVelocityField and vtkvmtkStaticTemporalStreamTracer, which are incompatible with vtk >= 9.2 * Add autopkgtest vmtk (1.3+dfsg-2.3) unstable; urgency=medium . * Non-maintainer upload. * python-vmtk: Add the missing dependency on python-vtk6. (Closes: #904763) vmtk (1.3+dfsg-2.2) unstable; urgency=medium . * Non-maintainer upload. * Fix FTBFS by using OpenSSL 1.1. (Closes: #859844) vmtk (1.3+dfsg-2.1) unstable; urgency=medium . * Non-maintainer upload. * Fix FTBFS by using OpenSSL 1.0.2. (Closes: #850026) vmtk (1.3+dfsg-2) unstable; urgency=medium . * Team upload. * Drop build-depends on openjpeg. Closes: #826828 vmtk (1.3+dfsg-1) unstable; urgency=medium . * Team upload. * Move the packaging to git. * Run cme fix dpkg-control. * Bump lib package name after soname bump. Closes: #821411 * Reinstate some lintian overrides removed in the previous upload. * Remove non-distributable Windows DLL. vmtk (1.3-2) unstable; urgency=medium . * Team upload. * Fix install of hardcoded stuff (Closes: #821298). * Use plain dh calls. * Drop cdbs * Use install files instead of hacky rules. * Enable hardening * use wl-asneeded to avoid overlinking. * Drop lintian overrides. vmtk (1.3-1) unstable; urgency=medium . * Team upload. * New upstream release (Closes: #801820) * Bump std-version and compat level to 3.9.8 and 9. * Build against itk4 and vtk6 * Fix watch file. * Add libfftw3-dev dependency * Fix copyright file vmtk (1.0.1-3) unstable; urgency=low . * debian/control: - Remove DM-Upload-Allowed field. - Remove libgdcm2-dev from Build-Depends (closes: #731920). - Use canonical URIs for Vcs-* fields. - Bump Standards-Version to 3.9.4 (no changes needed). - Replace python-support with dh-python. - Bump minimum required cdbs package version to 0.4.90~. - Bump minimum required python-dev package version to 2.6.6-3~. - Remove all XB-Python-Version lines. - Replace XS-Python-Version with X-Python-Version. * debian/rules: Replace call on dh_pysupport with dh_python2. vmtk (1.0.1-2) unstable; urgency=low . * Build tetgen with -O1 instead of -O0 to work around a build failure on armhf. See LP: #1049614. * debian/control: - Use unversioned libtiff-dev instead of libtiff4-dev (closes: #682714). vmtk (1.0.1-1) unstable; urgency=low * New upstream release. * debian/control: Replace libvmtk0.9 with libvmtk1.0. * debian/rules: - Update VTK_DIR to vtk 5.8 (closes: #676596). - Turn on USE_SYSTEM_{VTK,ITK} since default is now to download these. - Rename install/libvmtk0.9 target to install/libvtmk1.0. * Remove patch (fixed upstream). * Update lintian overrides. * Switch to machine-readable format in debian/copyright. vmtk (0.9.0-7) unstable; urgency=low * debian/control: - Replace libpng12-dev with libpng-dev in Build-Depends (closes: #662541). - Add libvtkgdcm2-dev, libvtk5-qt4-dev and libvtk-java in Build-Depends. - Bump Standards-Versions to 3.9.3 (no changes needed). * debian/rules: - Update GDCM_DIR to /usr/lib/gdcm-2.2. vmtk (0.9.0-6) unstable; urgency=low * Add patch to fix problem with Python.h not found (closes: 650586). vmtk (0.9.0-5) unstable; urgency=low * debian/rules: Enable contrib scripts. * Add more lintian overrides. vmtk (0.9.0-4) unstable; urgency=low * Make package autobuildable: - Set "XS-Autobuild: yes" in debian/control. - Add note in debian/copyright. * debian/control: - Replace libjpeg62-dev with libjpeg-dev in Build-Depends. - Bump Standards-Version to 3.9.2 (no changes needed). vmtk (0.9.0-3) unstable; urgency=low * Update/rebuild to use vtk 5.6 (closes: 621070): - Set VTK_DIR to /usr/lib/vtk-5.6 in DEB_CMAKE_EXTRA_FLAGS in debian/rules. * debian/control: - Remove old Conflicts, Replaces, and Provides fields for all binary packages. - Bump Standards-Version to 3.9.1 (no changes needed). vmtk (0.9.0-2) unstable; urgency=low * debian/rules: - Enable building of contrib classes. Update lintian-overrides accordingly. - Minor fix for Python 2.7 for binary package python-vmtk. * debian/control: Set XS-Python-Version to ">= 2.3" (closes: #606857). * debian/copyright: Remove reference to deprecated BSD license file and add full license text. vmtk (0.9.0-1) unstable; urgency=low * New upstream release. * debian/control: - Add DM-Upload-Allowed: yes. - Bump XS-Python-Version field to 2.6. * debian/rules: Use uscan in get-orig-source target. vmtk (0.9~bzr276-1) unstable; urgency=low * Initial release (Closes: #584222) REMOVED: python-rdata 0.11.2-2 REMOVED: pymoc 0.5.2-3 REMOVED: optking 0.5.0-1 REMOVED: ruby-slack-messenger 2.3.6-1 REMOVED: extra-data 1.20.0-2 REMOVED: asdf-wcs-schemas 0.5.0-1 REMOVED: python-questplus 2023.1-5 REMOVED: edlio 0.3.4-1 REMOVED: nxmx 0.0.7-1 REMOVED: python-opem 1.4+dfsg-1 REMOVED: astrometry-data-2mass 1.2 REMOVED: python-pandas-flavor 0.7.0-1 REMOVED: astroalign 2.6.2-2 REMOVED: sasview 6.1.3-2 REMOVED: superqt 0.8.2-1 REMOVED: specreduce 1.9.0-1 REMOVED: kerchunk 0.2.10-1 REMOVED: dcmstack 0.9+git20260610.ed4d27c-2 REMOVED: prospector 1.10.3-3 REMOVED: spyder-unittest 0.7.1-5 REMOVED: python-sigima 1.1.1-1 REMOVED: python-calendra 7.11.1-2 REMOVED: orsopy 1.2.2-2 REMOVED: astropy-healpix 1.1.2-2 REMOVED: xradarsat2 2025.10.15+ds-1 REMOVED: cdlclient 0.10.1-2 REMOVED: libdbd-mariadb-perl 1.22-1 REMOVED: astrometry.net 0.98+dfsg-1 REMOVED: asdf-standard 1.5.0-2 REMOVED: datalab 1.1.0-5 REMOVED: pytroll-schedule 0.7.5-1 REMOVED: guiqwt 4.4.4-2 REMOVED: vulture 2.16-1 REMOVED: aplpy 2.2.1-1 REMOVED: python-django-pint 1.0.4-1 REMOVED: pyresample 1.35.0-2 REMOVED: pygac 1.7.4-2 REMOVED: pymap3d 3.2.0-3 REMOVED: python-hepunits 2.4.5-1 REMOVED: genx 3.8.8+dfsg-1 REMOVED: pyninjotiff 0.5.1-1 REMOVED: photutils 3.0.0-1 REMOVED: glueviz 1.24.1+dfsg-3 REMOVED: ccdproc 2.5.1-3 REMOVED: xarray-sentinel 0.9.6-1 REMOVED: pytest-asdf-plugin 0.2.0-1 REMOVED: ruby-re2 2.27.0-2 REMOVED: astroml 1.0.2-8 REMOVED: ruby-html-pipeline 2.14.3-2 REMOVED: reproject 0.21.0-1 REMOVED: dask-image 2026.5.0+ds-1 REMOVED: pyvo 1.8-1 REMOVED: qcelemental 0.29.0-3 REMOVED: ruby-jekyll-mentions 1.6.0-2 REMOVED: metpy 1.7.1+ds-4 REMOVED: mpl-animators 1.2.4-2 REMOVED: trollimage 1.28.0-1 REMOVED: radio-beam 0.3.9-2 REMOVED: ginga 7.0.0-1 REMOVED: python-astropy-affiliated 2.1 REMOVED: casa-formats-io 0.3.0-1 REMOVED: pydl 1.0.1-3 REMOVED: python-geotiepoints 1.9.0-1 REMOVED: pyfftw 0.15.0-1.1 REMOVED: rust-swc-core 63.1.1+ds-1 REMOVED: pysynphot 2.0.0+dfsg-3 REMOVED: taurus-pyqtgraph 0.9.8-1 REMOVED: python-libpyvinyl 1.2.0-2 REMOVED: ironic-python-agent 11.5.0-3 REMOVED: mapraster 2026.01.06-4 REMOVED: pyinstaller 6.19.0+ds-2 REMOVED: asf-search 12.2.3-1 REMOVED: rust-indieweb 0.9.3~20260326+ds-7 REMOVED: xarray-safe-rcm 2026.01.0-2 REMOVED: python-drizzle 2.2.0-1 REMOVED: rust-microformats 0.19.0+ds-3 REMOVED: python-streamz 0.6.5-2 REMOVED: guidata 3.14.2-2 REMOVED: pyorbital 1.12.1-2 REMOVED: skyfield 1.54+ds-1 REMOVED: gwcs 1.0.3-1 REMOVED: python-cdo 1.6.0-5 REMOVED: datasette 0.65.2+ds-2 REMOVED: pyusid 0.0.12-3 REMOVED: ruby-email-reply-parser 0.5.11-1 REMOVED: monty 2026.2.18-2 REMOVED: python-array-api-compat 1.11.2-1 REMOVED: hickle 5.0.3-3 REMOVED: tycho2 2-5 REMOVED: magicgui 0.10.2-1 REMOVED: astlib 0.13.2-1 REMOVED: python-fluids 1.1.0-2 REMOVED: astropy-regions 0.12-1 REMOVED: xarray-safe-s1 2026.1.23-1 REMOVED: mintpy 1.6.3-1 REMOVED: taurus 5.2.3-3 REMOVED: veusz 4.1-1 REMOVED: einsteinpy 0.4.0-4 REMOVED: asdf-transform-schemas 0.6.0-1 REMOVED: astroplan 0.10.1-3 REMOVED: python-cooler 0.10.3-1 REMOVED: python-rioxarray 0.22.0-2 REMOVED: python-npe2 0.8.3-1 REMOVED: pyregion 2.3.0-2 REMOVED: ndcube 2.4.1-1 REMOVED: rtpengine 13.5.1.13-1 REMOVED: astrodendro 0.3.1+ds-3 REMOVED: stsci.tools 4.3.0-2 REMOVED: spyder-line-profiler 0.4.2-1 REMOVED: astropy 8.0.1-1 REMOVED: pint-xarray 0.6.1-1 REMOVED: python-fonticon-fontawesome6 6.4.0+ds1-4 REMOVED: qcengine 0.34.2-1 REMOVED: satpy 0.60.0-1 REMOVED: aiocomelit 2.0.7-1 REMOVED: astroscrappy 1.3.0-1 REMOVED: fonts-iosevka 34.4.0+ds1-2 REMOVED: synphot 1.7.0-1 REMOVED: python-mcstasscript 0.0.46+git20260220132321.813e2ef-1 REMOVED: refnx 0.1.62-1 REMOVED: pyscanfcs 0.3.6+ds-7 REMOVED: asdf-coordinates-schemas 0.5.1-1 REMOVED: arpys 1:1.0.0~git20230217101414.07b63b3-3 REMOVED: planetary-system-stacker 0.8.32~git20230901.01f3625-2 REMOVED: pyavm 0.9.6-2 REMOVED: python-polsarpro 2026.6.0-1 REMOVED: sncosmo 2.13.0-1 REMOVED: schism 2:20251014-1 REMOVED: healpy 1.19.0-2 REMOVED: xsar 2026.02.10-1 REMOVED: python-asdf 5.3.1-1 REMOVED: ruby-task-list 2.3.2-2 REMOVED: gavodachs 2.13+dfsg-1 REMOVED: glue-qt 1:0.4.2-3 REMOVED: python-sidpy 0.12.3-3 REMOVED: boinor 0.19.0-2 REMOVED: symmetrize 0.5.5+ds2-4 REMOVED: xcube-resampling 0.3.5-1 REMOVED: pycoast 1.8.0+dfsg-2 REMOVED: sunpy 8.0.0-1 REMOVED: plotpy 2.8.4-1 REMOVED: pyinstaller-hooks-contrib 2026.6-1 REMOVED: pyspectral 0.14.3+ds-1 REMOVED: python-cpl 0.7.4-4 REMOVED: xarray-ceos-alos2 2026.03.10-1 REMOVED: specutils 2.4.0-1 REMOVED: pyraf 2.2.4-1 REMOVED: sep 1.4.1-2 REMOVED: astroquery 0.4.11+dfsg-7 REMOVED: spyder 6.1.3+ds-7 REMOVED: tmuxp 1.74.0-1 REMOVED: python-maggma 0.72.0-1 REMOVED: spectral-cube 0.6.7-2 REMOVED: spyder-kernels 3.1.3-3 REMOVED: ruby-github-markup 6.0.0+dfsg-1 REMOVED: pydecorate 0.5.1-1 REMOVED: asdf-astropy 0.11.0-1 REMOVED: app-model 0.5.1-4 REMOVED: libalien-sodium-perl 2.000-7 REMOVED: pybdsf 1.14.1-1