commit: 9c240f20129e53e4f633321b93d3d776a700caa5
parent: fc78fba91c65bd24ab67b491179eafc0a9121952
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Tue, 6 Aug 2019 07:21:25 +0200
net-p2p/stig: New Package
Diffstat:
3 files changed, 48 insertions(+), 0 deletions(-)
diff --git a/net-p2p/stig/Manifest b/net-p2p/stig/Manifest
@@ -0,0 +1 @@
+DIST stig-0.10.1a.tar.gz 343063 BLAKE2B ad6e69cb2311bcce4c3630190b4f613d86fb3e393836dfe0382e33a5916a71d06772d26ecbe306dca94c187c6605ebe87b1d5f4db1febd31866c481791a8819e SHA512 6fd306f100d9a1f3ae3b561e606c53987370b26ed6649fb5bcf6eac5c0f487442f14d16433688568f9330de84bf62d32a31a315020a6c39628c5668f993720cf
diff --git a/net-p2p/stig/metadata.xml b/net-p2p/stig/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>contact@hacktivis.me</email>
+ <name>Haelwenn (lanodan) Monnier</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/net-p2p/stig/stig-0.10.1a.ebuild b/net-p2p/stig/stig-0.10.1a.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2019 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{5,6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="TUI and CLI for the BitTorrent client Transmission"
+HOMEPAGE="https://github.com/rndusr/stig"
+SRC_URI="https://github.com/rndusr/stig/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="geoip test"
+
+RDEPEND="
+ >=dev-python/urwid-2.0
+ >=dev-python/urwidtrees-1.0.2
+ dev-python/aiohttp
+ dev-python/async_timeout
+ dev-python/pyxdg
+ dev-python/blinker
+ dev-python/natsort
+ geoip? ( dev-python/maxminddb )
+ dev-python/setproctitle
+"
+DEPEND="
+ ${RDEPEND}
+ test? ( dev-python/asynctest )
+"
+
+src_prepare() {
+ # Taken from Void Linux
+ sed -i 's/urwidtrees>=1.0.3dev0/urwidtrees>=1.0.2/' setup.py || die
+
+ distutils-r1_src_prepare
+}