diff options
author | Lothar Serra Mari <mail@serra.me> | 2024-12-01 17:15:35 +0100 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2025-01-03 18:39:08 +0200 |
commit | e1aa685c52cb58679a26d115662441114ba524d0 (patch) | |
tree | 714c794f6d7f64ab0174ab220c1ea6f45dd5f730 /www-apps | |
parent | dev-db/mydumper: fix UnquotedVariable in 0.16.11.2 (diff) | |
download | gentoo-e1aa685c52cb58679a26d115662441114ba524d0.tar.gz gentoo-e1aa685c52cb58679a26d115662441114ba524d0.tar.bz2 gentoo-e1aa685c52cb58679a26d115662441114ba524d0.zip |
www-apps/davical: Restrict to PHP 8.2 and 8.3 due to missing IMAP in 8.4
PHP dropped support for the IMAP integration in 8.4 and migrated the
core module to PECL, which we don't have support for (yet).
See https://github.com/gentoo/gentoo/pull/39448#issuecomment-2496121325
for reference.
Signed-off-by: Lothar Serra Mari <mail@serra.me>
Closes: https://github.com/gentoo/gentoo/pull/39543
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/davical/davical-1.1.12-r1.ebuild (renamed from www-apps/davical/davical-1.1.12.ebuild) | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/www-apps/davical/davical-1.1.12.ebuild b/www-apps/davical/davical-1.1.12-r1.ebuild index 1139b9f12e9a..4b3c1644f2db 100644 --- a/www-apps/davical/davical-1.1.12.ebuild +++ b/www-apps/davical/davical-1.1.12-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -15,12 +15,20 @@ KEYWORDS="~amd64 ~x86" BDEPEND="sys-devel/gettext" RDEPEND="app-admin/pwgen - dev-lang/php[calendar,curl,iconv,imap,nls,pdo,postgres,xml] - dev-perl/DBD-Pg - dev-perl/DBI - dev-perl/YAML - >=dev-php/awl-0.64 - virtual/httpd-php" + || ( + ( + dev-lang/php:8.2[calendar,curl,iconv,imap,nls,pdo,postgres,xml] + virtual/httpd-php:8.2 + ) + ( + dev-lang/php:8.3[calendar,curl,iconv,imap,nls,pdo,postgres,xml] + virtual/httpd-php:8.3 + ) + ) + dev-perl/DBD-Pg + dev-perl/DBI + dev-perl/YAML + >=dev-php/awl-0.64" need_httpd |