diff -Nru php-net-ldap2-2.2.0/debian/changelog php-net-ldap2-2.2.0/debian/changelog --- php-net-ldap2-2.2.0/debian/changelog 2020-12-14 11:30:15.000000000 +0000 +++ php-net-ldap2-2.2.0/debian/changelog 2021-01-05 08:34:09.000000000 +0000 @@ -1,3 +1,18 @@ +php-net-ldap2 (2.2.0-6) unstable; urgency=medium + + * debian/clean: Add .phpunit.result.cache to the list. + * d/patches/ftbfs-phpunit.patch: Add "Forwarded: not-needed". Net_LDAP2 is + dead upstream and will likely be removed from Debian if/when Net_LDAP3 + stops depending on it. + * Add d/salsa-ci.yml file for GitLab CI. (Run reprotest under nocheck + profile for now.) + * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository, + Repository-Browse. + * Move phpunit 9 FTBFS fix to separate patch. + * Preemptively fix FTBFS with phpunit 10. + + -- Guilhem Moulin Tue, 05 Jan 2021 09:34:09 +0100 + php-net-ldap2 (2.2.0-5) unstable; urgency=medium * Run wrap-and-sort(1). @@ -5,8 +20,7 @@ of debhelper compatibility level 13. * d/control: Exclude phpunit from Build-Depends under nocheck profile. * d/patches/ftbfs-phpunit.patch: Replace deprecated calls assertInternalType() - calls with assertIs*(). This still works as of phpunit 8.5 but will be - FTBFS when phpunit 9 enters sid. + calls with assertIs*(). This preemptively fixes a FTBFS with phpunit 9. -- Guilhem Moulin Mon, 14 Dec 2020 12:30:15 +0100 diff -Nru php-net-ldap2-2.2.0/debian/clean php-net-ldap2-2.2.0/debian/clean --- php-net-ldap2-2.2.0/debian/clean 1970-01-01 00:00:00.000000000 +0000 +++ php-net-ldap2-2.2.0/debian/clean 2021-01-05 08:34:09.000000000 +0000 @@ -0,0 +1 @@ +.phpunit.result.cache diff -Nru php-net-ldap2-2.2.0/debian/control php-net-ldap2-2.2.0/debian/control --- php-net-ldap2-2.2.0/debian/control 2020-12-14 11:30:15.000000000 +0000 +++ php-net-ldap2-2.2.0/debian/control 2021-01-05 08:34:09.000000000 +0000 @@ -7,7 +7,7 @@ Guilhem Moulin Build-Depends: debhelper-compat (= 13), php-pear (>= 1.10.1), - phpunit (>= 7~) , + phpunit (>= 9~) , pkg-php-tools (>= 1.32) Standards-Version: 4.5.1 Homepage: https://pear.php.net/package/Net_LDAP2/ diff -Nru php-net-ldap2-2.2.0/debian/gbp.conf php-net-ldap2-2.2.0/debian/gbp.conf --- php-net-ldap2-2.2.0/debian/gbp.conf 2020-12-14 11:30:15.000000000 +0000 +++ php-net-ldap2-2.2.0/debian/gbp.conf 2021-01-05 08:34:09.000000000 +0000 @@ -1,3 +1,9 @@ [DEFAULT] debian-branch = debian/latest pristine-tar = True + +[import-orig] +upstream-vcs-tag = v%(version)s + +[pq] +patch-numbers = False diff -Nru php-net-ldap2-2.2.0/debian/patches/Fix-FTBFS-with-phpunit-10.patch php-net-ldap2-2.2.0/debian/patches/Fix-FTBFS-with-phpunit-10.patch --- php-net-ldap2-2.2.0/debian/patches/Fix-FTBFS-with-phpunit-10.patch 1970-01-01 00:00:00.000000000 +0000 +++ php-net-ldap2-2.2.0/debian/patches/Fix-FTBFS-with-phpunit-10.patch 2021-01-05 08:34:09.000000000 +0000 @@ -0,0 +1,23 @@ +From: Guilhem Moulin +Date: Mon, 21 Dec 2020 14:39:01 +0100 +Subject: Fix FTBFS with phpunit 10. + +Last-Update: 2020-12-21 +Forwarded: not-needed +--- + Net_LDAP2-2.2.0/tests/Net_LDAP2_FilterTest.php | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/Net_LDAP2-2.2.0/tests/Net_LDAP2_FilterTest.php b/Net_LDAP2-2.2.0/tests/Net_LDAP2_FilterTest.php +index 118b4f0..811ec3a 100644 +--- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_FilterTest.php ++++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_FilterTest.php +@@ -144,7 +144,7 @@ class Net_LDAP2_FilterTest extends Net_LDAP2_TestBase { + $filter = Net_LDAP2_Filter::create($testattr, $match, $testval, false); + + $this->assertInstanceOf('Net_LDAP2_Filter', $filter); +- $this->assertRegExp($regex, $filter->asString(), "Filter generation failed for MatchType: $match"); ++ $this->assertMatchesRegularExpression($regex, $filter->asString(), "Filter generation failed for MatchType: $match"); + } + + // test creating failure diff -Nru php-net-ldap2-2.2.0/debian/patches/Fix-FTBFS-with-phpunit-8.5.13-1.patch php-net-ldap2-2.2.0/debian/patches/Fix-FTBFS-with-phpunit-8.5.13-1.patch --- php-net-ldap2-2.2.0/debian/patches/Fix-FTBFS-with-phpunit-8.5.13-1.patch 1970-01-01 00:00:00.000000000 +0000 +++ php-net-ldap2-2.2.0/debian/patches/Fix-FTBFS-with-phpunit-8.5.13-1.patch 2021-01-05 08:34:09.000000000 +0000 @@ -0,0 +1,192 @@ +From: Guilhem Moulin +Date: Tue, 8 Dec 2020 19:04:07 +0100 +Subject: Fix FTBFS with phpunit 8.5.13-1. + +Last-Update: 2020-12-08 +Bug-Debian: https://bugs.debian.org/882938 +Forwarded: not-needed +--- + Net_LDAP2-2.2.0/tests/Net_LDAP2Test.php | 4 ++-- + Net_LDAP2-2.2.0/tests/Net_LDAP2_EntryTest.php | 4 ++-- + Net_LDAP2-2.2.0/tests/Net_LDAP2_FilterTest.php | 4 ++-- + Net_LDAP2-2.2.0/tests/Net_LDAP2_LDIFTest.php | 4 ++-- + Net_LDAP2-2.2.0/tests/Net_LDAP2_RootDSETest.php | 4 ++-- + Net_LDAP2-2.2.0/tests/Net_LDAP2_SearchTest.php | 4 ++-- + Net_LDAP2-2.2.0/tests/Net_LDAP2_TestBase.php | 6 +++--- + Net_LDAP2-2.2.0/tests/Net_LDAP2_UtilTest.php | 4 ++-- + 8 files changed, 17 insertions(+), 17 deletions(-) + +diff --git a/Net_LDAP2-2.2.0/tests/Net_LDAP2Test.php b/Net_LDAP2-2.2.0/tests/Net_LDAP2Test.php +index 00da7c6..845c33c 100644 +--- a/Net_LDAP2-2.2.0/tests/Net_LDAP2Test.php ++++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2Test.php +@@ -18,7 +18,7 @@ class Net_LDAP2Test extends Net_LDAP2_TestBase { + * + * @access protected + */ +- protected function setUp() { ++ protected function setUp(): void { + $this->ldapcfg = $this->getTestConfig(); + } + +@@ -28,7 +28,7 @@ class Net_LDAP2Test extends Net_LDAP2_TestBase { + * + * @access protected + */ +- protected function tearDown() { ++ protected function tearDown(): void { + } + + /** +diff --git a/Net_LDAP2-2.2.0/tests/Net_LDAP2_EntryTest.php b/Net_LDAP2-2.2.0/tests/Net_LDAP2_EntryTest.php +index 21995a1..cb3bc5e 100644 +--- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_EntryTest.php ++++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_EntryTest.php +@@ -34,7 +34,7 @@ class Net_LDAP2_EntryTest extends Net_LDAP2_TestBase { + * + * @access protected + */ +- protected function setUp() { ++ protected function setUp(): void { + $this->ldapcfg = $this->getTestConfig(); + } + +@@ -44,7 +44,7 @@ class Net_LDAP2_EntryTest extends Net_LDAP2_TestBase { + * + * @access protected + */ +- protected function tearDown() { ++ protected function tearDown(): void { + } + + /** +diff --git a/Net_LDAP2-2.2.0/tests/Net_LDAP2_FilterTest.php b/Net_LDAP2-2.2.0/tests/Net_LDAP2_FilterTest.php +index 20a190b..118b4f0 100644 +--- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_FilterTest.php ++++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_FilterTest.php +@@ -31,7 +31,7 @@ class Net_LDAP2_FilterTest extends Net_LDAP2_TestBase { + * + * @access protected + */ +- protected function setUp() { ++ protected function setUp(): void { + } + + /** +@@ -40,7 +40,7 @@ class Net_LDAP2_FilterTest extends Net_LDAP2_TestBase { + * + * @access protected + */ +- protected function tearDown() { ++ protected function tearDown(): void { + } + + /** +diff --git a/Net_LDAP2-2.2.0/tests/Net_LDAP2_LDIFTest.php b/Net_LDAP2-2.2.0/tests/Net_LDAP2_LDIFTest.php +index 0d4f60e..6f32d20 100644 +--- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_LDIFTest.php ++++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_LDIFTest.php +@@ -100,7 +100,7 @@ class Net_LDAP2_LDIFTest extends Net_LDAP2_TestBase { + * + * @access protected + */ +- protected function setUp() { ++ protected function setUp(): void { + // initialize test entries + $this->testentries = array(); + foreach ($this->testentries_data as $dn => $attrs) { +@@ -120,7 +120,7 @@ class Net_LDAP2_LDIFTest extends Net_LDAP2_TestBase { + * + * @access protected + */ +- protected function tearDown() { ++ protected function tearDown(): void { + // uncomment this if you debug the test cases so you will have output available + if (file_exists($this->outfile)) @unlink($this->outfile); + } +diff --git a/Net_LDAP2-2.2.0/tests/Net_LDAP2_RootDSETest.php b/Net_LDAP2-2.2.0/tests/Net_LDAP2_RootDSETest.php +index 97b7b93..aacb7bd 100644 +--- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_RootDSETest.php ++++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_RootDSETest.php +@@ -26,7 +26,7 @@ class Net_LDAP2_RootDSETest extends Net_LDAP2_TestBase { + * + * @access protected + */ +- protected function setUp() { ++ protected function setUp(): void { + $this->markTestIncomplete('Test not implemented yet.'); + } + +@@ -36,7 +36,7 @@ class Net_LDAP2_RootDSETest extends Net_LDAP2_TestBase { + * + * @access protected + */ +- protected function tearDown() { ++ protected function tearDown(): void { + } + + /** +diff --git a/Net_LDAP2-2.2.0/tests/Net_LDAP2_SearchTest.php b/Net_LDAP2-2.2.0/tests/Net_LDAP2_SearchTest.php +index e46849a..6a15933 100644 +--- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_SearchTest.php ++++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_SearchTest.php +@@ -19,7 +19,7 @@ class Net_LDAP2_SearchTest extends Net_LDAP2_TestBase { + * + * @access protected + */ +- protected function setUp() { ++ protected function setUp(): void { + $this->ldapcfg = $this->getTestConfig(); + } + +@@ -29,7 +29,7 @@ class Net_LDAP2_SearchTest extends Net_LDAP2_TestBase { + * + * @access protected + */ +- protected function tearDown() { ++ protected function tearDown(): void { + } + + /** +diff --git a/Net_LDAP2-2.2.0/tests/Net_LDAP2_TestBase.php b/Net_LDAP2-2.2.0/tests/Net_LDAP2_TestBase.php +index 593f86e..abf005b 100644 +--- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_TestBase.php ++++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_TestBase.php +@@ -1,12 +1,12 @@ + getMessage()); + } +- return parent::assertTrue($condition, $msg); ++ parent::assertTrue($condition, $message); + } + } + ?> +diff --git a/Net_LDAP2-2.2.0/tests/Net_LDAP2_UtilTest.php b/Net_LDAP2-2.2.0/tests/Net_LDAP2_UtilTest.php +index 5218ebc..f8adeb0 100644 +--- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_UtilTest.php ++++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_UtilTest.php +@@ -26,7 +26,7 @@ class Net_LDAP2_UtilTest extends Net_LDAP2_TestBase { + * + * @access protected + */ +- protected function setUp() { ++ protected function setUp(): void { + } + + /** +@@ -35,7 +35,7 @@ class Net_LDAP2_UtilTest extends Net_LDAP2_TestBase { + * + * @access protected + */ +- protected function tearDown() { ++ protected function tearDown(): void { + } + + /** diff -Nru php-net-ldap2-2.2.0/debian/patches/Fix-FTBFS-with-phpunit-9.5.0-1.patch php-net-ldap2-2.2.0/debian/patches/Fix-FTBFS-with-phpunit-9.5.0-1.patch --- php-net-ldap2-2.2.0/debian/patches/Fix-FTBFS-with-phpunit-9.5.0-1.patch 1970-01-01 00:00:00.000000000 +0000 +++ php-net-ldap2-2.2.0/debian/patches/Fix-FTBFS-with-phpunit-9.5.0-1.patch 2021-01-05 08:34:09.000000000 +0000 @@ -0,0 +1,25 @@ +From: Guilhem Moulin +Date: Tue, 8 Dec 2020 20:42:29 +0100 +Subject: Fix FTBFS with phpunit 9.5.0-1. + +Last-Update: 2020-12-08 +Forwarded: not-needed +--- + Net_LDAP2-2.2.0/tests/Net_LDAP2_LDIFTest.php | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Net_LDAP2-2.2.0/tests/Net_LDAP2_LDIFTest.php b/Net_LDAP2-2.2.0/tests/Net_LDAP2_LDIFTest.php +index 6f32d20..fd445b8 100644 +--- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_LDIFTest.php ++++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_LDIFTest.php +@@ -551,8 +551,8 @@ class Net_LDAP2_LDIFTest extends Net_LDAP2_TestBase { + $ldif = new Net_LDAP2_LDIF(dirname(__FILE__).'/some_not_existing/path/for/net_ldap_ldif', 'r', $this->defaultConfig); + $this->assertTrue((boolean)$ldif->error()); + $this->assertInstanceOf('Net_LDAP2_Error', $ldif->error()); +- $this->assertInternalType('string', $ldif->error(true)); +- $this->assertInternalType('int', $ldif->error_lines()); ++ $this->assertIsString($ldif->error(true)); ++ $this->assertIsInt($ldif->error_lines()); + $this->assertThat(strlen($ldif->error(true)), $this->greaterThan(0)); + + // Test for line number reporting diff -Nru php-net-ldap2-2.2.0/debian/patches/ftbfs-phpunit.patch php-net-ldap2-2.2.0/debian/patches/ftbfs-phpunit.patch --- php-net-ldap2-2.2.0/debian/patches/ftbfs-phpunit.patch 2020-12-14 11:30:15.000000000 +0000 +++ php-net-ldap2-2.2.0/debian/patches/ftbfs-phpunit.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,184 +0,0 @@ -Description: Fix FTBFS with phpunit 8.5.13-1 -Author: Guilhem Moulin -Last-Update: 2020-12-08 -Bug-Debian: https://bugs.debian.org/882938 ---- - Net_LDAP2-2.2.0/tests/Net_LDAP2Test.php | 4 ++-- - Net_LDAP2-2.2.0/tests/Net_LDAP2_EntryTest.php | 4 ++-- - Net_LDAP2-2.2.0/tests/Net_LDAP2_FilterTest.php | 4 ++-- - Net_LDAP2-2.2.0/tests/Net_LDAP2_LDIFTest.php | 8 ++++---- - Net_LDAP2-2.2.0/tests/Net_LDAP2_RootDSETest.php | 4 ++-- - Net_LDAP2-2.2.0/tests/Net_LDAP2_SearchTest.php | 4 ++-- - Net_LDAP2-2.2.0/tests/Net_LDAP2_TestBase.php | 6 +++--- - Net_LDAP2-2.2.0/tests/Net_LDAP2_UtilTest.php | 4 ++-- - 8 files changed, 19 insertions(+), 19 deletions(-) - ---- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_TestBase.php -+++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_TestBase.php -@@ -1,12 +1,12 @@ - getMessage()); - } -- return parent::assertTrue($condition, $msg); -+ parent::assertTrue($condition, $message); - } - } - ?> ---- a/Net_LDAP2-2.2.0/tests/Net_LDAP2Test.php -+++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2Test.php -@@ -18,7 +18,7 @@ class Net_LDAP2Test extends Net_LDAP2_Te - * - * @access protected - */ -- protected function setUp() { -+ protected function setUp(): void { - $this->ldapcfg = $this->getTestConfig(); - } - -@@ -28,7 +28,7 @@ class Net_LDAP2Test extends Net_LDAP2_Te - * - * @access protected - */ -- protected function tearDown() { -+ protected function tearDown(): void { - } - - /** ---- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_EntryTest.php -+++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_EntryTest.php -@@ -34,7 +34,7 @@ class Net_LDAP2_EntryTest extends Net_LD - * - * @access protected - */ -- protected function setUp() { -+ protected function setUp(): void { - $this->ldapcfg = $this->getTestConfig(); - } - -@@ -44,7 +44,7 @@ class Net_LDAP2_EntryTest extends Net_LD - * - * @access protected - */ -- protected function tearDown() { -+ protected function tearDown(): void { - } - - /** ---- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_FilterTest.php -+++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_FilterTest.php -@@ -31,7 +31,7 @@ class Net_LDAP2_FilterTest extends Net_L - * - * @access protected - */ -- protected function setUp() { -+ protected function setUp(): void { - } - - /** -@@ -40,7 +40,7 @@ class Net_LDAP2_FilterTest extends Net_L - * - * @access protected - */ -- protected function tearDown() { -+ protected function tearDown(): void { - } - - /** ---- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_LDIFTest.php -+++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_LDIFTest.php -@@ -100,7 +100,7 @@ class Net_LDAP2_LDIFTest extends Net_LDA - * - * @access protected - */ -- protected function setUp() { -+ protected function setUp(): void { - // initialize test entries - $this->testentries = array(); - foreach ($this->testentries_data as $dn => $attrs) { -@@ -120,7 +120,7 @@ class Net_LDAP2_LDIFTest extends Net_LDA - * - * @access protected - */ -- protected function tearDown() { -+ protected function tearDown(): void { - // uncomment this if you debug the test cases so you will have output available - if (file_exists($this->outfile)) @unlink($this->outfile); - } -@@ -551,8 +551,8 @@ class Net_LDAP2_LDIFTest extends Net_LDA - $ldif = new Net_LDAP2_LDIF(dirname(__FILE__).'/some_not_existing/path/for/net_ldap_ldif', 'r', $this->defaultConfig); - $this->assertTrue((boolean)$ldif->error()); - $this->assertInstanceOf('Net_LDAP2_Error', $ldif->error()); -- $this->assertInternalType('string', $ldif->error(true)); -- $this->assertInternalType('int', $ldif->error_lines()); -+ $this->assertIsString($ldif->error(true)); -+ $this->assertIsInt($ldif->error_lines()); - $this->assertThat(strlen($ldif->error(true)), $this->greaterThan(0)); - - // Test for line number reporting ---- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_RootDSETest.php -+++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_RootDSETest.php -@@ -26,7 +26,7 @@ class Net_LDAP2_RootDSETest extends Net_ - * - * @access protected - */ -- protected function setUp() { -+ protected function setUp(): void { - $this->markTestIncomplete('Test not implemented yet.'); - } - -@@ -36,7 +36,7 @@ class Net_LDAP2_RootDSETest extends Net_ - * - * @access protected - */ -- protected function tearDown() { -+ protected function tearDown(): void { - } - - /** ---- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_SearchTest.php -+++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_SearchTest.php -@@ -19,7 +19,7 @@ class Net_LDAP2_SearchTest extends Net_L - * - * @access protected - */ -- protected function setUp() { -+ protected function setUp(): void { - $this->ldapcfg = $this->getTestConfig(); - } - -@@ -29,7 +29,7 @@ class Net_LDAP2_SearchTest extends Net_L - * - * @access protected - */ -- protected function tearDown() { -+ protected function tearDown(): void { - } - - /** ---- a/Net_LDAP2-2.2.0/tests/Net_LDAP2_UtilTest.php -+++ b/Net_LDAP2-2.2.0/tests/Net_LDAP2_UtilTest.php -@@ -26,7 +26,7 @@ class Net_LDAP2_UtilTest extends Net_LDA - * - * @access protected - */ -- protected function setUp() { -+ protected function setUp(): void { - } - - /** -@@ -35,7 +35,7 @@ class Net_LDAP2_UtilTest extends Net_LDA - * - * @access protected - */ -- protected function tearDown() { -+ protected function tearDown(): void { - } - - /** diff -Nru php-net-ldap2-2.2.0/debian/patches/series php-net-ldap2-2.2.0/debian/patches/series --- php-net-ldap2-2.2.0/debian/patches/series 2020-12-14 11:30:15.000000000 +0000 +++ php-net-ldap2-2.2.0/debian/patches/series 2021-01-05 08:34:09.000000000 +0000 @@ -1 +1,3 @@ -ftbfs-phpunit.patch +Fix-FTBFS-with-phpunit-8.5.13-1.patch +Fix-FTBFS-with-phpunit-9.5.0-1.patch +Fix-FTBFS-with-phpunit-10.patch diff -Nru php-net-ldap2-2.2.0/debian/salsa-ci.yml php-net-ldap2-2.2.0/debian/salsa-ci.yml --- php-net-ldap2-2.2.0/debian/salsa-ci.yml 1970-01-01 00:00:00.000000000 +0000 +++ php-net-ldap2-2.2.0/debian/salsa-ci.yml 2021-01-05 08:34:09.000000000 +0000 @@ -0,0 +1,10 @@ +--- +include: + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml + +reprotest: + extends: .test-reprotest + variables: + # false-positive Net_LDAP2_LDIFTest::testConstruction + DEB_BUILD_OPTIONS: nocheck diff -Nru php-net-ldap2-2.2.0/debian/upstream/metadata php-net-ldap2-2.2.0/debian/upstream/metadata --- php-net-ldap2-2.2.0/debian/upstream/metadata 1970-01-01 00:00:00.000000000 +0000 +++ php-net-ldap2-2.2.0/debian/upstream/metadata 2021-01-05 08:34:09.000000000 +0000 @@ -0,0 +1,5 @@ +--- +Bug-Database: https://github.com/pear/Net_LDAP2/issues +Bug-Submit: https://github.com/pear/Net_LDAP2/issues/new +Repository: https://github.com/pear/Net_LDAP2.git +Repository-Browse: https://github.com/pear/Net_LDAP2