forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Michał Górny <[email protected]>
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST nattka-0.2.6.tar.gz 90276 BLAKE2B 622ec99e276a8bcdd3972859fb41656e1a86cec62a0f571665fbfe350a467720dfa098f4d4afcb23554540118151776283b5947bcd9c4bd013b025a657c2bd75 SHA512 bc62a51a86e90834975d9bef6f65adf9b3620a19c0c98cd878ff19d0b9cb5679ecf68ee31984bfbfcd9d009420377cfcd57a9561f2eda967f5108bcaf8518ab9 | ||
DIST nattka-0.2.7.tar.gz 90560 BLAKE2B d97cea754108f004c7d09417fd3ac82bd77941ece9fe9a8ef273af420cd058bcd81a95039b9ba4615d7067015863297c241d9871079237152f34682235de5fbc SHA512 bc06303df642cfa59a5f5fc319e23f7fd0fa47f608677eec235de614042b9e4804261d08df24f8578f5a444f621671e51ecd6f0487702255df56f19aef81dce8 | ||
DIST nattka-0.2.8.tar.gz 90715 BLAKE2B 90403452714b11a7248a57efde511a989754ccf406c9d1049e0f0d47dc469c9235fb3c842422bd720aa6135b1a00a46599ff08db5602e84d5a349d8face7649d SHA512 45f59034b09813d78a9741d95cbdd5eea82b923bcf5e4771b36b73ed6b8ed9aa3c348d8af9d42d51d50fedba842b39aeb14abb9fe3cd488dfb56f493934c1345 | ||
DIST nattka-0.2.9.tar.gz 90735 BLAKE2B f10d3af19785d835e059647e758541c3df5141efbee908fafaeea0492537d10d308020d1badb8fedb6f1baa327d26ad1126f26090b6cab9c75358247cdd47ffa SHA512 73208b15c2787965acd5cd2b14614ee8390da65924d7e3fae66c64a47d697f638df710f7053762e1f77d861e3b84bb18dae454446da698e5b52c1a0b1591bbd4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Copyright 2020 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
DISTUTILS_USE_SETUPTOOLS=rdepend | ||
PYTHON_COMPAT=( python3_{6..9} ) | ||
|
||
inherit distutils-r1 | ||
|
||
DESCRIPTION="A New Arch Tester Toolkit -- open-source stable-bot replacement" | ||
HOMEPAGE="https://github.com/mgorny/nattka/" | ||
SRC_URI="https://github.com/mgorny/nattka/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="BSD-2" | ||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" | ||
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=" | ||
test? ( | ||
dev-python/freezegun[${PYTHON_USEDEP}] | ||
dev-python/vcrpy[${PYTHON_USEDEP}] | ||
)" | ||
|
||
distutils_enable_sphinx doc --no-autodoc | ||
distutils_enable_tests pytest |