diff -pruN 2003.01.24-2/debian/changelog 2003.01.24-3/debian/changelog
--- 2003.01.24-2/debian/changelog	2024-02-21 19:58:35.000000000 +0000
+++ 2003.01.24-3/debian/changelog	2025-11-21 12:10:08.000000000 +0000
@@ -1,3 +1,10 @@
+iraf-xdimsum (2003.01.24-3) unstable; urgency=medium
+
+  * Enfore compute mode for xdimsum.cl
+  * Push Standards-Version to 4.7.2, no changes needed
+
+ -- Ole Streicher <olebole@debian.org>  Fri, 21 Nov 2025 13:10:08 +0100
+
 iraf-xdimsum (2003.01.24-2) unstable; urgency=medium
 
   * Create list of files to install in d/install
diff -pruN 2003.01.24-2/debian/control 2003.01.24-3/debian/control
--- 2003.01.24-2/debian/control	2024-02-21 19:44:44.000000000 +0000
+++ 2003.01.24-3/debian/control	2025-11-21 12:10:08.000000000 +0000
@@ -1,12 +1,14 @@
 Source: iraf-xdimsum
+Standards-Version: 4.7.2
 Maintainer: Debian Astro Team <debian-astro-maintainers@lists.alioth.debian.org>
-Uploaders: Ole Streicher <olebole@debian.org>
+Uploaders:
+ Ole Streicher <olebole@debian.org>,
 Section: science
 Priority: optional
-Build-Depends: debhelper-compat (= 13),
-               iraf-dev,
-               iraf-noao-dev
-Standards-Version: 4.6.2
+Build-Depends:
+ debhelper-compat (= 13),
+ iraf-dev,
+ iraf-noao-dev,
 Vcs-Browser: https://salsa.debian.org/debian-astro-team/iraf-xdimsum
 Vcs-Git: https://salsa.debian.org/debian-astro-team/iraf-xdimsum.git
 Homepage: https://github.com/iraf-community/iraf-xdimsum
@@ -15,11 +17,14 @@ Rules-Requires-Root: no
 Package: iraf-xdimsum
 Architecture: any
 Multi-Arch: foreign
-Depends: iraf,
-         ${misc:Depends},
-         ${shlibs:Depends}
-Suggests: iraf-fitsutil
-Enhances: iraf
+Depends:
+ iraf,
+ ${misc:Depends},
+ ${shlibs:Depends},
+Suggests:
+ iraf-fitsutil,
+Enhances:
+ iraf,
 Description: Deep Infrared Mosaicing Software
  XDIMSUM is a package for creating accurate sky subtracted images from
  sets of dithered observations. While the observations need not be in
diff -pruN 2003.01.24-2/debian/patches/Enfore-compute-mode-for-xdimsum.cl.patch 2003.01.24-3/debian/patches/Enfore-compute-mode-for-xdimsum.cl.patch
--- 2003.01.24-2/debian/patches/Enfore-compute-mode-for-xdimsum.cl.patch	1970-01-01 00:00:00.000000000 +0000
+++ 2003.01.24-3/debian/patches/Enfore-compute-mode-for-xdimsum.cl.patch	2025-11-21 12:10:08.000000000 +0000
@@ -0,0 +1,47 @@
+From: Ole Streicher <olebole@debian.org>
+Date: Fri, 21 Nov 2025 11:37:06 +0100
+Subject: Enfore compute mode for xdimsum.cl
+
+URL: https://github.com/iraf-community/iraf-xdimsum/pull/1
+
+This is required because (as other packages) the package definition
+here is with a comma:
+
+    package xdimsum, bin = ...
+
+In command mode, parameters of package are delimited by spaces, so the
+package name is with a comma.
+
+In command mode, thres one needs to add commas also between the
+arguments of "hidetask" and "cache", which is done here as well.
+---
+ xdimsum.cl | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/xdimsum.cl b/xdimsum.cl
+index acdb50f..701d9bd 100644
+--- a/xdimsum.cl
++++ b/xdimsum.cl
+@@ -1,4 +1,4 @@
+-# { XDIMSUM -- Package definition script for the XDIMSUM IR array imaging
++#{ XDIMSUM -- Package definition script for the XDIMSUM IR array imaging
+ # reduction package.
+ 
+ # Load necessary packages.
+@@ -55,7 +55,7 @@ task maskinterp 	= "xdimsum$src/x_xdimsum.e"
+ task minv		= "xdimsum$src/minv.cl"
+ task xaddmask		= "xdimsum$src/xaddmask.cl"
+ 
+-hidetask addcomment avshift fileroot maskinterp minv xaddmask
++hidetask addcomment, avshift, fileroot, maskinterp, minv, xaddmask
+ 
+ 
+ # Demos
+@@ -67,6 +67,6 @@ task	demos	= "demos$demos.cl"
+ # to go through and eventually replace some of these calls, e.g. replace
+ # imgets with hselect, etc.
+ 
+-cache sections fileroot imgets minmax iterstat miterstat maskstat xaddmask
++cache sections, fileroot, imgets, minmax, iterstat, miterstat, maskstat, xaddmask
+ 
+ clbye()
diff -pruN 2003.01.24-2/debian/patches/series 2003.01.24-3/debian/patches/series
--- 2003.01.24-2/debian/patches/series	1970-01-01 00:00:00.000000000 +0000
+++ 2003.01.24-3/debian/patches/series	2025-11-21 12:10:08.000000000 +0000
@@ -0,0 +1 @@
+Enfore-compute-mode-for-xdimsum.cl.patch
