From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3718F59CA3 for ; Wed, 9 Mar 2016 17:27:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB27921C07C; Wed, 9 Mar 2016 17:27:35 +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 DA9BF21C059 for ; Wed, 9 Mar 2016 17:27:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 BF70C340CE6 for ; Wed, 9 Mar 2016 17:27:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3B1A209B for ; Wed, 9 Mar 2016 17:27:31 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1457543624.a21430e83056acfe78b595583eea50bb6de7b158.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/irker/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/irker/irker-2.11.ebuild net-irc/irker/irker-2.12.ebuild net-irc/irker/irker-2.13.ebuild net-irc/irker/irker-2.15.ebuild net-irc/irker/irker-2.9.ebuild X-VCS-Directories: net-irc/irker/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: a21430e83056acfe78b595583eea50bb6de7b158 X-VCS-Branch: master Date: Wed, 9 Mar 2016 17:27:31 +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: 035c4e3c-3c13-4a2b-974d-0d614ea7d9e4 X-Archives-Hash: ceb3223a4261402b617eac328a3e47d5 commit: a21430e83056acfe78b595583eea50bb6de7b158 Author: Bertrand Jacquin jacquin bzh> AuthorDate: Sun Feb 21 19:27:22 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Wed Mar 9 17:13:44 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a21430e8 net-irc/irker: irk and irkerhook.py are not python3 friendly $ /usr/lib/python-exec/python3.4/irk foo bar Traceback (most recent call last): File "/usr/lib/python-exec/python3.4/irk", line 50, in main() File "/usr/lib/python-exec/python3.4/irk", line 41, in main message = message.decode('string_escape') AttributeError: 'str' object has no attribute 'decode' $ /usr/lib/python-exec/python3.4/irkerhook.py File "/usr/lib/python-exec/python3.4/irkerhook.py", line 432 print message ^ SyntaxError: Missing parentheses in call to 'print' Package-Manager: portage-2.2.26 net-irc/irker/irker-2.11.ebuild | 2 +- net-irc/irker/irker-2.12.ebuild | 2 +- net-irc/irker/irker-2.13.ebuild | 2 +- net-irc/irker/irker-2.15.ebuild | 2 +- net-irc/irker/irker-2.9.ebuild | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/net-irc/irker/irker-2.11.ebuild b/net-irc/irker/irker-2.11.ebuild index 48f1d3f..b6fe58e 100644 --- a/net-irc/irker/irker-2.11.ebuild +++ b/net-irc/irker/irker-2.11.ebuild @@ -3,7 +3,7 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3} ) +PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE="ssl" inherit python-single-r1 eutils diff --git a/net-irc/irker/irker-2.12.ebuild b/net-irc/irker/irker-2.12.ebuild index d1498e5..b6fe58e 100644 --- a/net-irc/irker/irker-2.12.ebuild +++ b/net-irc/irker/irker-2.12.ebuild @@ -3,7 +3,7 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} ) +PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE="ssl" inherit python-single-r1 eutils diff --git a/net-irc/irker/irker-2.13.ebuild b/net-irc/irker/irker-2.13.ebuild index d1498e5..b6fe58e 100644 --- a/net-irc/irker/irker-2.13.ebuild +++ b/net-irc/irker/irker-2.13.ebuild @@ -3,7 +3,7 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} ) +PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE="ssl" inherit python-single-r1 eutils diff --git a/net-irc/irker/irker-2.15.ebuild b/net-irc/irker/irker-2.15.ebuild index 762c4cc..0ef303d 100644 --- a/net-irc/irker/irker-2.15.ebuild +++ b/net-irc/irker/irker-2.15.ebuild @@ -3,7 +3,7 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} ) +PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE="ssl" inherit python-single-r1 systemd eutils diff --git a/net-irc/irker/irker-2.9.ebuild b/net-irc/irker/irker-2.9.ebuild index 48f1d3f..b6fe58e 100644 --- a/net-irc/irker/irker-2.9.ebuild +++ b/net-irc/irker/irker-2.9.ebuild @@ -3,7 +3,7 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3} ) +PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE="ssl" inherit python-single-r1 eutils