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 11CDC138334 for ; Sun, 16 Jun 2019 18:54:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25F80E07D4; Sun, 16 Jun 2019 18:54:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0033DE07D4 for ; Sun, 16 Jun 2019 18:54:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A71EC34625F for ; Sun, 16 Jun 2019 18:54:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D3C94D3 for ; Sun, 16 Jun 2019 18:54:17 +0000 (UTC) From: "Matthew Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Thode" Message-ID: <1560711254.55748eff1fd2b6ff30a5d9d5fb57ac13ba12decd.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyroute2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyroute2/pyroute2-0.5.5-r1.ebuild X-VCS-Directories: dev-python/pyroute2/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: 55748eff1fd2b6ff30a5d9d5fb57ac13ba12decd X-VCS-Branch: master Date: Sun, 16 Jun 2019 18:54:17 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5621ac44-c95f-4c6e-9bcd-be6b3587c72e X-Archives-Hash: 374d54fac4257ba0bf314492ef784aad commit: 55748eff1fd2b6ff30a5d9d5fb57ac13ba12decd Author: Henning Schild hennsch de> AuthorDate: Sun Jun 16 14:04:38 2019 +0000 Commit: Matthew Thode gentoo org> CommitDate: Sun Jun 16 18:54:14 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55748eff dev-python/pyroute2: add missing PYTHON_REQ_USE="sqlite" Closes: https://github.com/gentoo/gentoo/pull/12267 Signed-off-by: Henning Schild hennsch.de> Signed-off-by: Matthew Thode gentoo.org> dev-python/pyroute2/pyroute2-0.5.5-r1.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dev-python/pyroute2/pyroute2-0.5.5-r1.ebuild b/dev-python/pyroute2/pyroute2-0.5.5-r1.ebuild new file mode 100644 index 00000000000..c144bf26f0c --- /dev/null +++ b/dev-python/pyroute2/pyroute2-0.5.5-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 ) +PYTHON_REQ_USE="sqlite" + +inherit distutils-r1 + +DESCRIPTION="A pure Python netlink and Linux network configuration library." +HOMEPAGE="https://github.com/svinota/pyroute2" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="amd64 ~arm64 x86" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND=""