Home
       tnet-libs/stem: Add 9999 - parlay - yet another gentoo overlay
  HTML git clone https://git.parazyd.org/parlay
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
   DIR commit 4db475807a6be461ed4de5a9a23699f449241687
   DIR parent a9af8ee4842e46558b2b7d9e6412f6c16572f42b
  HTML Author: parazyd <parazyd@dyne.org>
       Date:   Mon, 15 Oct 2018 11:31:02 +0200
       
       net-libs/stem: Add 9999
       
       Diffstat:
         A net-libs/stem/stem-9999.ebuild      |      46 +++++++++++++++++++++++++++++++
       
       1 file changed, 46 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/net-libs/stem/stem-9999.ebuild b/net-libs/stem/stem-9999.ebuild
       t@@ -0,0 +1,46 @@
       +# Copyright 1999-2018 Gentoo Foundation
       +# Distributed under the terms of the GNU General Public License v2
       +
       +EAPI=6
       +PYTHON_COMPAT=( python{3_5,3_6,3_7} )
       +
       +inherit git-r3 distutils-r1
       +
       +DESCRIPTION="Stem is a Python controller library for Tor"
       +HOMEPAGE="https://stem.torproject.org"
       +SRC_URI=""
       +EGIT_REPO_URI="https://git.torproject.org/stem.git"
       +
       +LICENSE="LGPL-3"
       +SLOT="0"
       +KEYWORDS=""
       +IUSE="test"
       +
       +DEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}]
       +        net-vpn/tor )
       +        dev-python/setuptools[${PYTHON_USEDEP}]"
       +
       +RDEPEND="net-vpn/tor"
       +
       +DOCS=( docs/{_static,_templates,api,tutorials,{change_log,api,contents,download,faq,index,tutorials}.rst} )
       +
       +python_prepare_all() {
       +        # Disable failing test
       +        sed -i -e "/test_expand_path/a \
       +                \ \ \ \ return" test/integ/util/system.py || die
       +        sed -i -e "/test_parsing_with_example/a \
       +                \ \ \ \ return" test/unit/manual.py || die
       +        sed -i -e "/test_parsing_with_unknown_options/a \
       +                \ \ \ \ return" test/unit/manual.py || die
       +        sed -i -e "/test_saving_manual/a \
       +                \ \ \ \ return" test/unit/manual.py || die
       +        sed -i -e "/test_sdist_matches_git/a \
       +                \ \ \ \ return" test/integ/installation.py || die
       +        sed -i -e "/test_connections_by_ss/a \
       +                \ \ \ \ return" test/integ/util/connection.py || die
       +        distutils-r1_python_prepare_all
       +}
       +
       +python_test() {
       +        ${PYTHON} run_tests.py --all --target RUN_ALL || die
       +}