From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 302F7138330 for ; Wed, 12 Oct 2016 21:26:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4BDBE0B6D; Wed, 12 Oct 2016 21:26:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 98194E0B6D for ; Wed, 12 Oct 2016 21:26:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3D834341265 for ; Wed, 12 Oct 2016 21:26:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 262992F4 for ; Wed, 12 Oct 2016 21:26:00 +0000 (UTC) From: "Thomas Kahle" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Kahle" Message-ID: <1476307554.ba7b2200112f1aa1381176241cce2147e42f964a.tomka@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/tt-rss/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/tt-rss/tt-rss-20160527.ebuild www-apps/tt-rss/tt-rss-20160930.ebuild X-VCS-Directories: www-apps/tt-rss/ X-VCS-Committer: tomka X-VCS-Committer-Name: Thomas Kahle X-VCS-Revision: ba7b2200112f1aa1381176241cce2147e42f964a X-VCS-Branch: master Date: Wed, 12 Oct 2016 21:26:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ed909a60-9d6a-4164-b769-d00526024e55 X-Archives-Hash: 49fb43cc617baecfa96b1348d56ddcd1 commit: ba7b2200112f1aa1381176241cce2147e42f964a Author: Thomas Kahle gentoo org> AuthorDate: Wed Oct 12 21:10:59 2016 +0000 Commit: Thomas Kahle gentoo org> CommitDate: Wed Oct 12 21:25:54 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba7b2200 www-apps/tt-rss: Fix mysql->mysqli transition Package-Manager: portage-2.3.0 www-apps/tt-rss/tt-rss-20160527.ebuild | 2 +- www-apps/tt-rss/tt-rss-20160930.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/www-apps/tt-rss/tt-rss-20160527.ebuild b/www-apps/tt-rss/tt-rss-20160527.ebuild index 8c401c9..8b5964d 100644 --- a/www-apps/tt-rss/tt-rss-20160527.ebuild +++ b/www-apps/tt-rss/tt-rss-20160527.ebuild @@ -38,7 +38,7 @@ src_prepare() { # Customize config.php-dist so that the right 'DB_TYPE' is already set (according to the USE flag) einfo "Customizing config.php-dist..." - if use mysql && ! use postgres; then + if use mysqli && ! use postgres; then sed -i \ -e "/define('DB_TYPE',/{s:pgsql:mysql:}" \ config.php-dist || die diff --git a/www-apps/tt-rss/tt-rss-20160930.ebuild b/www-apps/tt-rss/tt-rss-20160930.ebuild index 8c401c9..8b5964d 100644 --- a/www-apps/tt-rss/tt-rss-20160930.ebuild +++ b/www-apps/tt-rss/tt-rss-20160930.ebuild @@ -38,7 +38,7 @@ src_prepare() { # Customize config.php-dist so that the right 'DB_TYPE' is already set (according to the USE flag) einfo "Customizing config.php-dist..." - if use mysql && ! use postgres; then + if use mysqli && ! use postgres; then sed -i \ -e "/define('DB_TYPE',/{s:pgsql:mysql:}" \ config.php-dist || die