diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-10-22 20:01:43 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-10-22 20:01:43 +0300 |
commit | c3727157ff39dd65ed132177b5d4b6b63537b3af (patch) | |
tree | a5c656d5f34ccba64612030b02af558538f7bd06 /app-portage/nattka | |
parent | dev-ml/dune: do not strip, it loose bytecode (diff) | |
download | gentoo-c3727157ff39dd65ed132177b5d4b6b63537b3af.tar.gz gentoo-c3727157ff39dd65ed132177b5d4b6b63537b3af.tar.bz2 gentoo-c3727157ff39dd65ed132177b5d4b6b63537b3af.zip |
app-portage/nattka: add 0.4
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'app-portage/nattka')
-rw-r--r-- | app-portage/nattka/Manifest | 1 | ||||
-rw-r--r-- | app-portage/nattka/nattka-0.4.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/app-portage/nattka/Manifest b/app-portage/nattka/Manifest index 10e4609b7c89..5c9a010e15f2 100644 --- a/app-portage/nattka/Manifest +++ b/app-portage/nattka/Manifest @@ -1 +1,2 @@ DIST nattka-0.3.1.tar.gz 95368 BLAKE2B cefe8236694ceffe9adf3c5af9c8c3521613fbc09b6e27804ee855a376f940baa5e7bf3d6d5d62371d37cea090748ec7053963dd675e88b9cedb48d595425ff4 SHA512 14b04b2f6fff41cc9705afe5cfc522a3009b14afa4ff5759c1913387afd04c97231fe2ad5661cef43c5ebfe764012cec251fd78463bbca924fbf33068a31aaee +DIST nattka-0.4.gh.tar.gz 95937 BLAKE2B 31b629e43abfa445bc466b7541914709b07423b059fdf887a0a5713124f7813dc6f39c6f10d65c020dab4dedf9aefb49dd7384d6fba08da8b4e14d11c1326c33 SHA512 70819a623a79feb570141c5e0452273f514b28e1746540393b3dc4aa671c27dd08e50160e722b9e8c4af6ccd500c4a4dd0e70e5146c9b062a43945cd5fe758d5 diff --git a/app-portage/nattka/nattka-0.4.ebuild b/app-portage/nattka/nattka-0.4.ebuild new file mode 100644 index 000000000000..b51a39eaed06 --- /dev/null +++ b/app-portage/nattka/nattka-0.4.ebuild @@ -0,0 +1,41 @@ +# Copyright 2020-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="A New Arch Tester Toolkit -- open-source stable-bot replacement" +HOMEPAGE="https://github.com/projg2/nattka/" +SRC_URI=" + https://github.com/projg2/nattka/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +IUSE="depgraph-order" + +RDEPEND=" + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-util/pkgcheck[${PYTHON_USEDEP}] + dev-vcs/git + sys-apps/pkgcore[${PYTHON_USEDEP}] + depgraph-order? ( + dev-python/networkx[${PYTHON_USEDEP}] + ) +" +BDEPEND=" + >=dev-python/flit_core-3.7.1[${PYTHON_USEDEP}] + test? ( + dev-python/vcrpy[${PYTHON_USEDEP}] + ) +" + +distutils_enable_sphinx doc --no-autodoc +distutils_enable_tests pytest |