diff -pruN 1.0.0-3/debian/changelog 1.0.0-3ubuntu1/debian/changelog
--- 1.0.0-3/debian/changelog	2022-09-04 19:35:19.000000000 +0000
+++ 1.0.0-3ubuntu1/debian/changelog	2025-09-25 14:18:58.000000000 +0000
@@ -1,3 +1,10 @@
+php-easyrdf (1.0.0-3ubuntu1) questing; urgency=medium
+
+  * d/p/fix-xml-parser-handler.patch: Fix initXMLParser xml_set_element_handler
+    call (LP: #2125671)
+
+ -- Renan Rodrigo <rr@ubuntu.com>  Thu, 25 Sep 2025 11:18:58 -0300
+
 php-easyrdf (1.0.0-3) unstable; urgency=medium
 
   * Team upload
diff -pruN 1.0.0-3/debian/control 1.0.0-3ubuntu1/debian/control
--- 1.0.0-3/debian/control	2022-09-04 19:35:19.000000000 +0000
+++ 1.0.0-3ubuntu1/debian/control	2025-09-25 14:18:58.000000000 +0000
@@ -1,6 +1,7 @@
 Source: php-easyrdf
 Priority: optional
-Maintainer: Debian PHP PEAR Maintainers <pkg-php-pear@lists.alioth.debian.org>
+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
+XSBC-Original-Maintainer: Debian PHP PEAR Maintainers <pkg-php-pear@lists.alioth.debian.org>
 Uploaders:
  Marco Villegas <marco@marvil07.net>,
 Build-Depends:
diff -pruN 1.0.0-3/debian/gbp.conf 1.0.0-3ubuntu1/debian/gbp.conf
--- 1.0.0-3/debian/gbp.conf	2022-09-04 19:35:19.000000000 +0000
+++ 1.0.0-3ubuntu1/debian/gbp.conf	2025-09-25 14:18:58.000000000 +0000
@@ -1,5 +1,4 @@
 [DEFAULT]
-pristine-tar = True
 pristine-tar-commit = True
 sign-tags=True
 debian-branch = debian/bullseye
diff -pruN 1.0.0-3/debian/patches/fix-xml-parser-handler.patch 1.0.0-3ubuntu1/debian/patches/fix-xml-parser-handler.patch
--- 1.0.0-3/debian/patches/fix-xml-parser-handler.patch	1970-01-01 00:00:00.000000000 +0000
+++ 1.0.0-3ubuntu1/debian/patches/fix-xml-parser-handler.patch	2025-09-25 14:18:58.000000000 +0000
@@ -0,0 +1,27 @@
+Description: [PATCH] Fix initXMLParser xml_set_element_handler call
+ 
+ The xml_set_object call needs to happen before the
+ xml_set_element_handler call, so it knows the methods in the class and
+ is able to bind the handlers properly
+
+Author: Renan Rodrigo <rr@ubuntu.com>
+Bug: https://github.com/easyrdf/easyrdf/issues/413
+Bug-Debian: https://bugs.debian.org/1082446
+Bug-Ubuntu: https://bugs.launchpad.net/bugs/2125671
+Last-Update: 2025-09-25
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/lib/Parser/RdfXml.php
++++ b/lib/Parser/RdfXml.php
+@@ -87,10 +87,10 @@
+             $parser = xml_parser_create_ns('UTF-8', '');
+             xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 0);
+             xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);
++            xml_set_object($parser, $this);
+             xml_set_element_handler($parser, 'startElementHandler', 'endElementHandler');
+             xml_set_character_data_handler($parser, 'cdataHandler');
+             xml_set_start_namespace_decl_handler($parser, 'newNamespaceHandler');
+-            xml_set_object($parser, $this);
+             $this->xmlParser = $parser;
+         }
+     }
diff -pruN 1.0.0-3/debian/patches/series 1.0.0-3ubuntu1/debian/patches/series
--- 1.0.0-3/debian/patches/series	1970-01-01 00:00:00.000000000 +0000
+++ 1.0.0-3ubuntu1/debian/patches/series	2025-09-25 14:18:58.000000000 +0000
@@ -0,0 +1 @@
+fix-xml-parser-handler.patch
