makedeb


nextcloud 22.1.1-1


A cloud server to store your files centrally on a hardware controlled by you

Click here to go back to the commit logs for nextcloud.

Commit:


Hash: 2840f4a5eae04599852049e7b156fb48f9780c8c

Message: Nextcloud recommends php 8.0, but does not require it.

Diff


diff --git a/.SRCINFO b/.SRCINFO
index bedfaad..f62a936 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -8,24 +8,22 @@ pkgbase = nextcloud
 	install = nextcloud.install
 	arch = any
 	license = AGPL3
-	depends = php8.0
-	depends = php8.0-gd
+	depends = php
+	depends = php-gd
 	optdepends = curl: for webcron jobs from within uwsgi
 	optdepends = ffmpeg: for preview generation
 	optdepends = libreoffice: for preview generation
 	optdepends = mariadb: to use a local MariaDB server
 	optdepends = memcached: to use a local memcached server
-	optdepends = php8.0-apcu: for caching with APCU
-	optdepends = php8.0-apache: to use the Apache web server
-	optdepends = mod_itk: to use the Apache web server
-	optdepends = php8.0-fpm: to run in fastCGI process manager
-	optdepends = php8.0-imagick: for preview generation
-	optdepends = php8.0-imap: for external user authentication
-	optdepends = php8.0-intl: to increase language translation performance and fix sorting
-	optdepends = php8.0-memcached: for caching with memcached
-	optdepends = php8.0-pgsql: to use the PostgreSQL database backend
-	optdepends = php8.0-redis: for caching with redis
-	optdepends = php8.0-sqlite: to use the SQLite database backend
+	optdepends = php-apcu: for caching with APCU
+	optdepends = php-fpm: to run in fastCGI process manager
+	optdepends = php-imagick: for preview generation
+	optdepends = php-imap: for external user authentication
+	optdepends = php-intl: to increase language translation performance and fix sorting
+	optdepends = php-memcached: for caching with memcached
+	optdepends = php-pgsql: to use the PostgreSQL database backend
+	optdepends = php-redis: for caching with redis
+	optdepends = php-sqlite3: to use the SQLite database backend
 	optdepends = postgresql: to use a local PostgreSQL server
 	optdepends = redis: to use a local Redis server
 	optdepends = smbclient: for SMB/CIFS integration
diff --git a/PKGBUILD b/PKGBUILD
index cb3fc42..d9f1ce3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,24 +8,24 @@ pkgdesc="A cloud server to store your files centrally on a hardware controlled b
 arch=('any')
 url="https://nextcloud.com"
 license=('AGPL3')
-depends=('php8.0' 'php8.0-gd')
+depends=('php' 'php-gd')
 optdepends=(
   'curl: for webcron jobs from within uwsgi'
   'ffmpeg: for preview generation'
   'libreoffice: for preview generation'
   'mariadb: to use a local MariaDB server'
   'memcached: to use a local memcached server'
-  'php8.0-apcu: for caching with APCU'
-  'php8.0-apache: to use the Apache web server'
-  'mod_itk: to use the Apache web server'
-  'php8.0-fpm: to run in fastCGI process manager'
-  'php8.0-imagick: for preview generation'
-  'php8.0-imap: for external user authentication'
-  'php8.0-intl: to increase language translation performance and fix sorting'
-  'php8.0-memcached: for caching with memcached'
-  'php8.0-pgsql: to use the PostgreSQL database backend'
-  'php8.0-redis: for caching with redis'
-  'php8.0-sqlite: to use the SQLite database backend'
+  'php-apcu: for caching with APCU'
+  #'php-apache: to use the Apache web server' Not a Debian Package
+  #'mod_itk: to use the Apache web server' Not a Debian Package
+  'php-fpm: to run in fastCGI process manager'
+  'php-imagick: for preview generation'
+  'php-imap: for external user authentication'
+  'php-intl: to increase language translation performance and fix sorting'
+  'php-memcached: for caching with memcached'
+  'php-pgsql: to use the PostgreSQL database backend'
+  'php-redis: for caching with redis'
+  'php-sqlite3: to use the SQLite database backend'
   'postgresql: to use a local PostgreSQL server'
   'redis: to use a local Redis server'
   'smbclient: for SMB/CIFS integration'