Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ryu/
Date: Sun, 03 Feb 2019 21:21:50
Message-Id: 1549228882.7029f99fd226abf63cc30aa2ec54595a96e55a05.prometheanfire@gentoo
1 commit: 7029f99fd226abf63cc30aa2ec54595a96e55a05
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 3 21:21:22 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 3 21:21:22 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7029f99f
7
8 dev-python/ryu: fix QA violation
9
10 Fixes: https://bugs.gentoo.org/677186
11 Package-Manager: Portage-2.3.51, Repoman-2.3.12
12 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
13
14 dev-python/ryu/ryu-4.26-r1.ebuild | 25 +++++++++++++++++++++++++
15 1 file changed, 25 insertions(+)
16
17 diff --git a/dev-python/ryu/ryu-4.26-r1.ebuild b/dev-python/ryu/ryu-4.26-r1.ebuild
18 new file mode 100644
19 index 00000000000..833a947e96b
20 --- /dev/null
21 +++ b/dev-python/ryu/ryu-4.26-r1.ebuild
22 @@ -0,0 +1,25 @@
23 +# Copyright 1999-2019 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Component-based Software-defined Networking Framework"
32 +HOMEPAGE="http://osrg.github.io/ryu/"
33 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 +
35 +LICENSE="Apache-2.0"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~arm64 ~x86"
38 +IUSE=""
39 +
40 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
41 + dev-python/pbr[${PYTHON_USEDEP}]"
42 +RDEPEND=""
43 +
44 +python_install_all() {
45 + distutils-r1_python_install_all
46 + mv "${D}"/usr/etc "${D}"/etc
47 +}