diff -pruN 2.1.4-3/debian/changelog 2.1.4-3ubuntu1/debian/changelog
--- 2.1.4-3/debian/changelog	2016-06-07 20:25:17.000000000 +0000
+++ 2.1.4-3ubuntu1/debian/changelog	2018-02-16 19:16:53.000000000 +0000
@@ -1,3 +1,12 @@
+php-horde-data (2.1.4-3ubuntu1) bionic; urgency=medium
+
+  * debian/patches/phpunit6_compatibility.patch: PHPUnit 6 has
+    namespaced classes.
+  * debian/patches/php72_deprecated_create_function.patch: PHP7.2 has
+    deprecated create_function.
+
+ -- Nishanth Aravamudan <nish.aravamudan@canonical.com>  Fri, 16 Feb 2018 11:16:53 -0800
+
 php-horde-data (2.1.4-3) unstable; urgency=medium
 
   * Update Standards-Version to 3.9.8, no change
diff -pruN 2.1.4-3/debian/control 2.1.4-3ubuntu1/debian/control
--- 2.1.4-3/debian/control	2016-06-07 20:25:17.000000000 +0000
+++ 2.1.4-3ubuntu1/debian/control	2018-02-16 19:16:53.000000000 +0000
@@ -1,7 +1,8 @@
 Source: php-horde-data
 Section: php
 Priority: extra
-Maintainer: Horde Maintainers <pkg-horde-hackers@lists.alioth.debian.org>
+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
+XSBC-Original-Maintainer: Horde Maintainers <pkg-horde-hackers@lists.alioth.debian.org>
 Uploaders: Mathieu Parent <sathieu@debian.org>
 Build-Depends: debhelper (>= 9), pkg-php-tools, pear-horde-channel
 Standards-Version: 3.9.8
diff -pruN 2.1.4-3/debian/patches/php72_deprecated_create_function.patch 2.1.4-3ubuntu1/debian/patches/php72_deprecated_create_function.patch
--- 2.1.4-3/debian/patches/php72_deprecated_create_function.patch	1970-01-01 00:00:00.000000000 +0000
+++ 2.1.4-3ubuntu1/debian/patches/php72_deprecated_create_function.patch	2018-02-16 19:16:53.000000000 +0000
@@ -0,0 +1,30 @@
+Description: PHP7.2 has deprecated create_function
+Author: Nishanth Aravamudan <nish.aravamudan@canonical.com>
+Origin: upstream, https://github.com/horde/Data/commit/78ad0c2390176cdde7260a271bc6ddd86f4c9c0e.patch
+Forwarded: Will be done by Nishanth Aravamudan
+Last-Update: 2018-02-16
+
+--- php-horde-data-2.1.4.orig/Horde_Data-2.1.4/lib/Horde/Data/Csv.php
++++ php-horde-data-2.1.4/Horde_Data-2.1.4/lib/Horde/Data/Csv.php
+@@ -332,7 +332,20 @@ class Horde_Data_Csv extends Horde_Data_
+ 
+         if ($row) {
+             $row = (strlen($params['quote']) && strlen($params['escape']))
+-                ? array_map(create_function('$a', 'return str_replace(\'' . str_replace('\'', '\\\'', $params['escape'] . $params['quote']) . '\', \'' . str_replace('\'', '\\\'', $params['quote']) . '\', $a);'), $row)
++                ? array_map(
++                    function ($a) use ($params) {
++                        return str_replace(
++                            str_replace(
++                                '\'',
++                                '\\\'',
++                                $params['escape'] . $params['quote']
++                            ),
++                            str_replace('\'', '\\\'', $params['quote']),
++                            $a
++                        );
++                    },
++                    $row
++                )
+                 : array_map('trim', $row);
+ 
+             if (!empty($params['length'])) {
diff -pruN 2.1.4-3/debian/patches/phpunit6_compatibility.patch 2.1.4-3ubuntu1/debian/patches/phpunit6_compatibility.patch
--- 2.1.4-3/debian/patches/phpunit6_compatibility.patch	1970-01-01 00:00:00.000000000 +0000
+++ 2.1.4-3ubuntu1/debian/patches/phpunit6_compatibility.patch	2018-02-16 19:16:48.000000000 +0000
@@ -0,0 +1,27 @@
+Description: PHPUnit 6 has namespaced classes
+Author: Nishanth Aravamudan <nish.aravamudan@canonical.com>
+Forwarded: Will be done by Nishanth Aravamudan
+Last-Update: 2018-02-16
+
+--- php-horde-data-2.1.4.orig/Horde_Data-2.1.4/test/Horde/Data/CsvTest.php
++++ php-horde-data-2.1.4/Horde_Data-2.1.4/test/Horde/Data/CsvTest.php
+@@ -7,7 +7,7 @@
+  * @subpackage UnitTests
+  */
+ 
+-class Horde_Data_CsvTest extends PHPUnit_Framework_TestCase
++class Horde_Data_CsvTest extends PHPUnit\Framework\TestCase
+ {
+     public function testImportFile()
+     {
+--- php-horde-data-2.1.4.orig/Horde_Data-2.1.4/test/Horde/Data/GetCsvTest.php
++++ php-horde-data-2.1.4/Horde_Data-2.1.4/test/Horde/Data/GetCsvTest.php
+@@ -7,7 +7,7 @@
+  * @subpackage UnitTests
+  */
+ 
+-class Horde_Data_GetCsvTest extends PHPUnit_Framework_TestCase
++class Horde_Data_GetCsvTest extends PHPUnit\Framework\TestCase
+ {
+     protected function readCsv($file, $conf = array())
+     {
diff -pruN 2.1.4-3/debian/patches/series 2.1.4-3ubuntu1/debian/patches/series
--- 2.1.4-3/debian/patches/series	1970-01-01 00:00:00.000000000 +0000
+++ 2.1.4-3ubuntu1/debian/patches/series	2018-02-16 19:16:53.000000000 +0000
@@ -0,0 +1,2 @@
+phpunit6_compatibility.patch
+php72_deprecated_create_function.patch
