commit: e1aa685c52cb58679a26d115662441114ba524d0 Author: Lothar Serra Mari <mail <AT> serra <DOT> me> AuthorDate: Sun Dec 1 16:15:35 2024 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Fri Jan 3 16:39:08 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1aa685c
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 <AT> serra.me> Closes: https://github.com/gentoo/gentoo/pull/39543 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> ...ical-1.1.12.ebuild => davical-1.1.12-r1.ebuild} | 22 +++++++++++++++------- 1 file 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 similarity index 82% rename from www-apps/davical/davical-1.1.12.ebuild rename to 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
