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 1B31C13832E for ; Mon, 22 Aug 2016 00:22:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A068821C060; Mon, 22 Aug 2016 00:22:33 +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 3217D21C060 for ; Mon, 22 Aug 2016 00:22:33 +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 6CFF733F9D2 for ; Mon, 22 Aug 2016 00:22:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 79DC92453 for ; Mon, 22 Aug 2016 00:22:28 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1471825332.483173e88cf607d2ad1d92a1fc708b352009efa5.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypax/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypax/pypax-0.9.2-r1.ebuild dev-python/pypax/pypax-0.9.2.ebuild X-VCS-Directories: dev-python/pypax/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 483173e88cf607d2ad1d92a1fc708b352009efa5 X-VCS-Branch: master Date: Mon, 22 Aug 2016 00:22:28 +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: af533400-2ff5-4017-a0c8-2c4f445d9c18 X-Archives-Hash: ecf72ec317990d015e43cdf25ceb1293 commit: 483173e88cf607d2ad1d92a1fc708b352009efa5 Author: Anthony G. Basile gentoo org> AuthorDate: Mon Aug 22 00:22:12 2016 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Mon Aug 22 00:22:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=483173e8 dev-python/pypax: move python 3.5 support back to stable 0.9.2 Package-Manager: portage-2.2.28 dev-python/pypax/pypax-0.9.2-r1.ebuild | 49 ---------------------------------- dev-python/pypax/pypax-0.9.2.ebuild | 4 +-- 2 files changed, 2 insertions(+), 51 deletions(-) diff --git a/dev-python/pypax/pypax-0.9.2-r1.ebuild b/dev-python/pypax/pypax-0.9.2-r1.ebuild deleted file mode 100644 index 0bf29a4..0000000 --- a/dev-python/pypax/pypax-0.9.2-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# 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,3_5} pypy ) - -inherit distutils-r1 - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="git://anongit.gentoo.org/proj/elfix.git" - inherit git-2 -else - SRC_URI="https://dev.gentoo.org/~blueness/elfix/elfix-${PV}.tar.gz" - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" - S="${WORKDIR}/elfix-${PV}" -fi - -DESCRIPTION="Python module to get or set either PT_PAX and/or XATTR_PAX flags" -HOMEPAGE="https://dev.gentoo.org/~blueness/elfix/ - https://www.gentoo.org/proj/en/hardened/pax-quickstart.xml" - -LICENSE="GPL-3" -SLOT="0" -IUSE="+ptpax +xtpax" - -REQUIRED_USE="|| ( ptpax xtpax )" - -RDEPEND=" - ptpax? ( dev-libs/elfutils ) - xtpax? ( sys-apps/attr )" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - ${RDEPEND}" - -src_compile() { - cd scripts - unset PTPAX - unset XTPAX - use ptpax && export PTPAX="yes" - use xtpax && export XTPAX="yes" - distutils-r1_src_compile -} - -src_install() { - cd scripts - distutils-r1_src_install -} diff --git a/dev-python/pypax/pypax-0.9.2.ebuild b/dev-python/pypax/pypax-0.9.2.ebuild index 3122b9e..b6937a0 100644 --- a/dev-python/pypax/pypax-0.9.2.ebuild +++ b/dev-python/pypax/pypax-0.9.2.ebuild @@ -1,10 +1,10 @@ -# 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} pypy ) +PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy ) inherit distutils-r1