https://bugzilla.redhat.com/show_bug.cgi?id=1362490 --- Comment #12 from Remi Collet <fedora@xxxxxxxxxxxxxxxxx> --- > The code doesn't really require the -mysql extension (and no other mysql > equivalent), I'm just wondering what the Requires: line should look like for > it to require 'anything functionally equivalent to -mysql' across the > different release streams (-5.3, -5.4, -5.6 and -7.x). This doesn't work this way. 'anything functionally equivalent to -mysql' can't exists. $ grep -rl mysqli_ src src/aphront/storage/connection/mysql/AphrontMySQLiDatabaseConnection.php So this part of the code use mysqli extension (http://php.net/mysqli) => Requires: php-mysqli $ grep -rl mysql_ src ./src/aphront/storage/connection/mysql/AphrontMySQLDatabaseConnection.php So this part of the code use the old deprecated mysql extension (http://php.net/manual/en/book.mysql.php) => Requires: php-mysql Of course, this is a problem, as php-mysql is deprecated for years and doesn't exists anymore. Best is to drop this part, after checking it is not required. Some app offers choice between mysql and mysqli (e.g. phpMyadmin), and so our package only offers -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component _______________________________________________ package-review mailing list package-review@xxxxxxxxxxxxxxxxxxxxxxx https://lists.fedoraproject.org/admin/lists/package-review@xxxxxxxxxxxxxxxxxxxxxxx