summaryrefslogtreecommitdiff
path: root/www-servers/ngus/ngus-1.0.ebuild
diff options
context:
space:
mode:
authorSimeon Simeonov2021-08-10 21:52:20 +0200
committerSimeon Simeonov2021-08-10 21:52:20 +0200
commit6c493676a22b7f0f22a8f1ede32e23f843b66bcc (patch)
treee8533708c427cc030394ec9c4f53f84b9269c4c7 /www-servers/ngus/ngus-1.0.ebuild
parentc38c67be90f78aed387e204e9a72641ab6597d17 (diff)
Add www-servers/ngus
Diffstat (limited to 'www-servers/ngus/ngus-1.0.ebuild')
-rw-r--r--www-servers/ngus/ngus-1.0.ebuild31
1 files changed, 31 insertions, 0 deletions
diff --git a/www-servers/ngus/ngus-1.0.ebuild b/www-servers/ngus/ngus-1.0.ebuild
new file mode 100644
index 0000000..572cb35
--- /dev/null
+++ b/www-servers/ngus/ngus-1.0.ebuild
@@ -0,0 +1,31 @@
1# Copyright 1999-2020 Gentoo Authors
2# Distributed under the terms of the GNU General Public License v2
3
4EAPI=7
5
6DISTUTILS_USE_SETUPTOOLS=rdepend
7PYTHON_COMPAT=( python3_{7,8,9,10} )
8DISTUTILS_USE_SETUPTOOLS=rdepend
9
10inherit distutils-r1
11
12DESCRIPTION="A minimalist HTTP server written in pure Python and intended for receiving file uploads"
13HOMEPAGE="https://github.com/blackm0re/ngus"
14MY_PN="ngus"
15MY_P="${MY_PN}-${PV}"
16SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
17KEYWORDS="amd64 arm arm64 ppc ppc64 x86 amd64-linux x86-linux"
18S="${WORKDIR}/${MY_P}"
19
20RESTRICT="test"
21
22LICENSE="GPL-3+"
23SLOT="0"
24
25# DEPEND="
26# dev-python/setuptools[${PYTHON_USEDEP}]
27# "
28
29python_install_all() {
30 distutils-r1_python_install_all
31}