From c9543c9e8ed2ac8dc55f0df38504c7dc4f5138be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 2 Feb 2015 09:20:05 +0100 Subject: [PATCH 1/2] encryption requires openssl and user_ldap requires ldap :speak_no_evil: --- apps/files_encryption/appinfo/info.xml | 3 +++ apps/user_ldap/appinfo/info.xml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/apps/files_encryption/appinfo/info.xml b/apps/files_encryption/appinfo/info.xml index 6fcef693bed..7f7e09d6271 100644 --- a/apps/files_encryption/appinfo/info.xml +++ b/apps/files_encryption/appinfo/info.xml @@ -19,4 +19,7 @@ 166047 + + openssl + diff --git a/apps/user_ldap/appinfo/info.xml b/apps/user_ldap/appinfo/info.xml index a1a934f0140..88462902421 100644 --- a/apps/user_ldap/appinfo/info.xml +++ b/apps/user_ldap/appinfo/info.xml @@ -18,4 +18,7 @@ A user logs into ownCloud with their LDAP or AD credentials, and is granted acce admin-ldap 166061 + + ldap + From 82b271855c019c23e1e8163f9f7a02def8c36dc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 2 Feb 2015 10:49:46 +0100 Subject: [PATCH 2/2] add libs which have no version number --- lib/private/app/platformrepository.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/private/app/platformrepository.php b/lib/private/app/platformrepository.php index 96d04ec2e42..be825e74ca3 100644 --- a/lib/private/app/platformrepository.php +++ b/lib/private/app/platformrepository.php @@ -28,13 +28,10 @@ class PlatformRepository { $ext = new \ReflectionExtension($name); try { $prettyVersion = $ext->getVersion(); - } catch (\UnexpectedValueException $e) { - $prettyVersion = '0'; - } - try { $prettyVersion = $this->normalizeVersion($prettyVersion); } catch (\UnexpectedValueException $e) { - continue; + $prettyVersion = '0'; + $prettyVersion = $this->normalizeVersion($prettyVersion); } $packages[$this->buildPackageName($name)] = $prettyVersion;