derpconf-9999.ebuild: Bump to EAPI 6 and git-r3 dev-python/derpconf
authorW. Trevor King <wking@tremily.us>
Fri, 12 Aug 2016 18:50:49 +0000 (11:50 -0700)
committerW. Trevor King <wking@tremily.us>
Fri, 12 Aug 2016 18:52:56 +0000 (11:52 -0700)
There were no changes impacting this ebuild [1].

I've also compared derpconf's setup.py since I last checked (26f909f,
0.7.2) to the current tip (37ee1110.8.0-6-g37ee111), and the only
change is tornado-pyvows -> pyVows.  That was already part of my
ebuild though, since I'd submitted the change [2].

Alphabetize the test dependencies while I'm touching the ebuild,
although none of these have changed upstream.

[1]: https://devmanual.gentoo.org/ebuild-writing/eapi/#eapi=6
[2]: https://github.com/globocom/derpconf/pull/11
     Subject: Depend on pyVows, not tornado-pyvows

derpconf-9999.ebuild

index 12f36add78604951cd635a9640c6c1f3c8c99161..da0e632a03c71fded94d63e781a7229cabc9fcde 100644 (file)
@@ -1,14 +1,14 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
-EAPI=5
+EAPI=6
 PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1
 
 if [[ "${PV}" == "9999" ]]; then
-       inherit git-2
+       inherit git-r3
        EGIT_REPO_URI="git://github.com/globocom/${PN}.git"
        SRC_URI=""
 else
@@ -27,10 +27,10 @@ RDEPEND=""
 DEPEND="
        dev-python/six[${PYTHON_USEDEP}]
        test? (
+               dev-python/colorama[${PYTHON_USEDEP}]
+               dev-python/coverage[${PYTHON_USEDEP}]
                dev-python/gevent[${PYTHON_USEDEP}]
                dev-python/pyvows[${PYTHON_USEDEP}]
-               dev-python/coverage[${PYTHON_USEDEP}]
-               dev-python/colorama[${PYTHON_USEDEP}]
                dev-python/tox[${PYTHON_USEDEP}]
        )"