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 0022859CA9 for ; Sun, 27 Mar 2016 19:04:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BAC7E07D9; Sun, 27 Mar 2016 19:04:15 +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 85123E0818 for ; Sun, 27 Mar 2016 19:04:14 +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 6B73E34092E for ; Sun, 27 Mar 2016 19:04:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C455E864 for ; Sun, 27 Mar 2016 19:04:11 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1459105438.f7235bf47007fb49df6f96f6d6d564165d0926f4.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyelftools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyelftools/pyelftools-0.23-r1.ebuild X-VCS-Directories: dev-python/pyelftools/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: f7235bf47007fb49df6f96f6d6d564165d0926f4 X-VCS-Branch: master Date: Sun, 27 Mar 2016 19:04:11 +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: cbc96cbe-901c-43ee-ad17-a7531bd5a9bb X-Archives-Hash: c29eee810732c79db2a2e43828145efd commit: f7235bf47007fb49df6f96f6d6d564165d0926f4 Author: David Seifert gentoo org> AuthorDate: Sun Mar 27 18:45:59 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Mar 27 19:03:58 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7235bf4 dev-python/pyelftools: Add python3_5 support * Trim DESCRIPTION Package-Manager: portage-2.2.28 dev-python/pyelftools/pyelftools-0.23-r1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/pyelftools/pyelftools-0.23-r1.ebuild b/dev-python/pyelftools/pyelftools-0.23-r1.ebuild index d2ac8fb..91c833e 100644 --- a/dev-python/pyelftools/pyelftools-0.23-r1.ebuild +++ b/dev-python/pyelftools/pyelftools-0.23-r1.ebuild @@ -1,13 +1,13 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI="5" -PYTHON_COMPAT=( python{2_7,3_3,3_4} ) +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) inherit distutils-r1 -DESCRIPTION="pure-Python library for parsing and analyzing ELF files and DWARF debugging information" +DESCRIPTION="pure-Python library for analyzing ELF files and DWARF debugging information" HOMEPAGE="https://pypi.python.org/pypi/pyelftools https://github.com/eliben/pyelftools" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"