diff -pruN 0.81-1.3/debian/changelog 0.81-1.4/debian/changelog
--- 0.81-1.3/debian/changelog	2022-08-02 15:42:02.000000000 +0000
+++ 0.81-1.4/debian/changelog	2022-08-02 15:42:02.000000000 +0000
@@ -1,3 +1,18 @@
+libxml-dumper-perl (0.81-1.4) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Include missing build target. (Closes: #999310)
+     - Using dh sequencer.
+     - Add libxml-parser-perl as build dependency, for testsuite.
+     - Add runtime dependency on ${misc:Depends}.
+  * d/watch
+    - Bump to version 4.
+    - Update URI.
+  * Remove superfluous dot '.' in package description
+  * d/copyright: Change to UTF-8 encoding.
+
+ -- HÃ¥vard F. Aasen <havard.f.aasen@pfft.no>  Thu, 28 Jul 2022 08:08:04 +0200
+
 libxml-dumper-perl (0.81-1.3) unstable; urgency=medium
 
   * Non maintainer upload by the Reproducible Builds team.
diff -pruN 0.81-1.3/debian/control 0.81-1.4/debian/control
--- 0.81-1.3/debian/control	2022-08-02 15:42:02.000000000 +0000
+++ 0.81-1.4/debian/control	2022-08-02 15:42:02.000000000 +0000
@@ -4,11 +4,11 @@ Priority: optional
 Maintainer: Florian Hinzmann <fh@debian.org>
 Standards-Version: 3.6.2
 Build-Depends: debhelper (>= 9)
-Build-Depends-Indep: perl (>= 5.6.0-16)
+Build-Depends-Indep: perl (>= 5.6.0-16), libxml-parser-perl
 
 Package: libxml-dumper-perl
 Architecture: all
-Depends: ${perl:Depends}, libxml-parser-perl (>= 2.16)
+Depends: ${misc:Depends}, ${perl:Depends}, libxml-parser-perl (>= 2.16)
 Suggests: libcompress-zlib-perl
 Description: Perl module for dumping Perl objects from/to XML
  XML::Dumper dumps Perl data to a structured XML format.
@@ -16,7 +16,6 @@ Description: Perl module for dumping Per
  XML::Dumper can also read XML data that was previously dumped
  by the module and convert it back to Perl.
  .
- .
  This might be useful for dumping Perl objects to files
  using an XML format that can be reloaded or accessed by
  other programs. Maybe even other languages.
diff -pruN 0.81-1.3/debian/copyright 0.81-1.4/debian/copyright
--- 0.81-1.3/debian/copyright	2022-08-02 15:42:02.000000000 +0000
+++ 0.81-1.4/debian/copyright	2022-08-02 15:42:02.000000000 +0000
@@ -33,7 +33,7 @@ Copyright:
 
 COPYRIGHT AND LICENSE
 
-  Copyright © 2002 Mike Wong. All rights reserved.
+  Copyright 2002 Mike Wong. All rights reserved.
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.
diff -pruN 0.81-1.3/debian/rules 0.81-1.4/debian/rules
--- 0.81-1.3/debian/rules	2022-08-02 15:42:02.000000000 +0000
+++ 0.81-1.4/debian/rules	2022-08-02 15:42:02.000000000 +0000
@@ -1,91 +1,6 @@
 #!/usr/bin/make -f
-# Sample debian/rules that uses debhelper.
-# GNU copyright 1997 to 1999 by Joey Hess.
 
-# Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-# This is the debhelper compatability version to use.
-# See debian/compat
-#export DH_COMPAT=4
-
-# as perl policy says:
-ifndef PERL
-    PERL = /usr/bin/perl
-endif
-
-configure: configure-stamp
-configure-stamp:
-	dh_testdir
-	# Add here commands to configure the package.
-	
-
-	touch configure-stamp
-
-build: configure-stamp build-stamp
-build-stamp:
-	dh_testdir
-
-	# Add here commands to compile the package.
-	#$(MAKE)
-	#/usr/bin/docbook-to-man debian/XML-Dumper.sgml > XML-Dumper.1
-	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE) OPTIMIZE="-O2 -g -Wall";
-
-	touch build-stamp
-
-clean:
-	dh_testdir
-	dh_testroot
-	rm -f build-stamp configure-stamp
-
-	# Add here commands to clean up after the build process.
-	-$(MAKE) clean
-
-	dh_clean
-
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	dh_installdirs
-
-	# Add here commands to install the package into temporary directory.
-	#$(MAKE) install DESTDIR=`pwd`/debian/tmp
-	$(MAKE) install DESTDIR=$(PWD)/debian/libxml-dumper-perl
-
-# Build architecture-independent files here.
-binary-indep: build install
-	dh_testdir
-	dh_testroot
-#	dh_installdebconf	
-	dh_installdocs
-	dh_installexamples
-	dh_installmenu
-#	dh_installemacsen
-#	dh_installpam
-#	dh_installinit
-	dh_installcron
-	dh_installman
-	dh_installinfo
-#	dh_undocumented
-	dh_installchangelogs Changes
-	dh_link
-	dh_strip
-	dh_compress
-	dh_fixperms
-	# You may want to make some executables suid here.
-#	dh_suidregister
-#	dh_makeshlibs
-	dh_installdeb
-	dh_perl
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-# Build architecture-dependent files here.
-binary-arch: build install
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+%:
+	dh $@
diff -pruN 0.81-1.3/debian/watch 0.81-1.4/debian/watch
--- 0.81-1.3/debian/watch	2022-08-02 15:42:02.000000000 +0000
+++ 0.81-1.4/debian/watch	2022-08-02 15:42:02.000000000 +0000
@@ -1,16 +1,2 @@
-# format version number, currently 2; this line is compulsory!
-version=2
-
-# Line continuations are performed with \
-
-# This the format for an FTP site:
-# Full-site-with-pattern  [Version  [Action]]
-
-# This is one format for an HTTP site, which is the same
-# as the FTP format
-
-# This is a variant HTTP format with more possibilities:
-# Homepage  Pattern  [Version  [Action]]
-http://search.cpan.org/src/MIKEWONG/ \
- XML-Dumper-(.*)/ \
- debian
+version=4
+https://metacpan.org/release/XML-Dumper .*/XML-Dumper-v?@ANY_VERSION@@ARCHIVE_EXT@$
