diff -pruN 1.32+git20210408.46bb4c0-2/debian/changelog 1.32+git20210408.46bb4c0-3/debian/changelog
--- 1.32+git20210408.46bb4c0-2/debian/changelog	2022-10-31 12:04:40.000000000 +0000
+++ 1.32+git20210408.46bb4c0-3/debian/changelog	2023-05-20 10:03:28.000000000 +0000
@@ -1,3 +1,19 @@
+rkdeveloptool (1.32+git20210408.46bb4c0-3) unstable; urgency=medium
+
+  [ Dylan Aïssi ]
+  * rkdeveloptool: depend on adduser since the postinst script calls addgroup
+    (Closes: #1035436)
+
+  [ Diederik de Haas ]
+  * d/control: Switch Homepage to https
+  * d/patches: Move Origin field to header
+  * rkdeveloptool.postinst: Switch from 'which' to 'command -v'
+
+  [ Christopher Obbard ]
+  * d/control: Update standards version to 4.6.2
+
+ -- Christopher Obbard <chris.obbard@collabora.com>  Sat, 20 May 2023 11:03:28 +0100
+
 rkdeveloptool (1.32+git20210408.46bb4c0-2) unstable; urgency=medium
 
   [ Debian Janitor ]
diff -pruN 1.32+git20210408.46bb4c0-2/debian/control 1.32+git20210408.46bb4c0-3/debian/control
--- 1.32+git20210408.46bb4c0-2/debian/control	2022-10-31 12:03:52.000000000 +0000
+++ 1.32+git20210408.46bb4c0-3/debian/control	2023-05-20 10:03:19.000000000 +0000
@@ -6,8 +6,8 @@ Build-Depends: debhelper-compat (= 13),
                libudev-dev,
                libusb-1.0-0-dev,
                pkg-config,
-Standards-Version: 4.6.1
-Homepage: http://opensource.rock-chips.com/wiki_Rkdeveloptool
+Standards-Version: 4.6.2
+Homepage: https://opensource.rock-chips.com/wiki_Rkdeveloptool
 Vcs-Browser: https://salsa.debian.org/debian/rkdeveloptool
 Vcs-Git: https://salsa.debian.org/debian/rkdeveloptool.git
 Rules-Requires-Root: no
@@ -16,6 +16,7 @@ Package: rkdeveloptool
 Architecture: any
 Depends: ${shlibs:Depends},
          ${misc:Depends},
+         adduser
 Description: tools for working with Rockchip processors
  This package provides tools to communicate with various Rockchip processors
  which support the RockUSB protocol (e.g rk3288, rk3328, rk3399, rk356x). The
diff -pruN 1.32+git20210408.46bb4c0-2/debian/patches/0001-Simplify-convertChipType-and-fix-truncation-error.patch 1.32+git20210408.46bb4c0-3/debian/patches/0001-Simplify-convertChipType-and-fix-truncation-error.patch
--- 1.32+git20210408.46bb4c0-2/debian/patches/0001-Simplify-convertChipType-and-fix-truncation-error.patch	2022-10-31 12:03:52.000000000 +0000
+++ 1.32+git20210408.46bb4c0-3/debian/patches/0001-Simplify-convertChipType-and-fix-truncation-error.patch	2023-05-20 09:58:30.000000000 +0000
@@ -1,10 +1,10 @@
 From: Matt Flax <flatmax@flatmax.org>
 Date: Mon, 7 Mar 2022 10:23:42 +1100
 Subject: Simplify convertChipType and fix truncation error.
+Origin: https://github.com/rockchip-linux/rkdeveloptool/pull/67
 
 The error stopping compilations is format-truncation.
 
-Origin: https://github.com/rockchip-linux/rkdeveloptool/pull/67
 ---
  main.cpp | 5 +----
  1 file changed, 1 insertion(+), 4 deletions(-)
diff -pruN 1.32+git20210408.46bb4c0-2/debian/rkdeveloptool.postinst 1.32+git20210408.46bb4c0-3/debian/rkdeveloptool.postinst
--- 1.32+git20210408.46bb4c0-2/debian/rkdeveloptool.postinst	2022-10-31 12:03:52.000000000 +0000
+++ 1.32+git20210408.46bb4c0-3/debian/rkdeveloptool.postinst	2023-05-20 09:58:30.000000000 +0000
@@ -7,7 +7,7 @@ case "$1" in
     configure)
 
         addgroup --system --quiet rkdeveloptool
-        if which udevadm >/dev/null 2>&1; then
+        if command -v udevadm >/dev/null 2>&1; then
             udevadm trigger --subsystem-match usb --attr-match=idVendor=2207 || true
         fi
 
