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 CA622138334 for ; Sun, 3 Feb 2019 21:21:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A9DFE0826; Sun, 3 Feb 2019 21:21:49 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 54D63E0826 for ; Sun, 3 Feb 2019 21:21:49 +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 61780335D94 for ; Sun, 3 Feb 2019 21:21:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4CEF3455 for ; Sun, 3 Feb 2019 21:21:45 +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: <1549228882.7029f99fd226abf63cc30aa2ec54595a96e55a05.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ryu/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ryu/ryu-4.26-r1.ebuild X-VCS-Directories: dev-python/ryu/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: 7029f99fd226abf63cc30aa2ec54595a96e55a05 X-VCS-Branch: master Date: Sun, 3 Feb 2019 21:21:45 +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: 5cb15d5e-b618-4732-8d30-e3e0d1ce50ff X-Archives-Hash: 839e95881cc960efe0d5ab760fb5331f commit: 7029f99fd226abf63cc30aa2ec54595a96e55a05 Author: Matthew Thode gentoo org> AuthorDate: Sun Feb 3 21:21:22 2019 +0000 Commit: Matthew Thode gentoo org> CommitDate: Sun Feb 3 21:21:22 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7029f99f dev-python/ryu: fix QA violation Fixes: https://bugs.gentoo.org/677186 Package-Manager: Portage-2.3.51, Repoman-2.3.12 Signed-off-by: Matthew Thode gentoo.org> dev-python/ryu/ryu-4.26-r1.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/dev-python/ryu/ryu-4.26-r1.ebuild b/dev-python/ryu/ryu-4.26-r1.ebuild new file mode 100644 index 00000000000..833a947e96b --- /dev/null +++ b/dev-python/ryu/ryu-4.26-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} ) + +inherit distutils-r1 + +DESCRIPTION="Component-based Software-defined Networking Framework" +HOMEPAGE="http://osrg.github.io/ryu/" +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}] + dev-python/pbr[${PYTHON_USEDEP}]" +RDEPEND="" + +python_install_all() { + distutils-r1_python_install_all + mv "${D}"/usr/etc "${D}"/etc +}