summaryrefslogtreecommitdiff
path: root/dev-python/moddb/moddb-0.8.1.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-01-29 00:51:18 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-01-29 00:51:18 +0000
commitc2ee96b0307df455d970dd1926c8652909ba767c (patch)
tree5d8d13e2bbc6fe9003b2ec96a94d0e2f501b2987 /dev-python/moddb/moddb-0.8.1.ebuild
parentc727ef413bd99c61e1775c18e542a4018b6743a7 (diff)
downloadbaldeagleos-repo-c2ee96b0307df455d970dd1926c8652909ba767c.tar.gz
baldeagleos-repo-c2ee96b0307df455d970dd1926c8652909ba767c.tar.xz
baldeagleos-repo-c2ee96b0307df455d970dd1926c8652909ba767c.zip
Adding metadata
Diffstat (limited to 'dev-python/moddb/moddb-0.8.1.ebuild')
-rw-r--r--dev-python/moddb/moddb-0.8.1.ebuild54
1 files changed, 54 insertions, 0 deletions
diff --git a/dev-python/moddb/moddb-0.8.1.ebuild b/dev-python/moddb/moddb-0.8.1.ebuild
new file mode 100644
index 000000000000..2842021a8ec9
--- /dev/null
+++ b/dev-python/moddb/moddb-0.8.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{7,8,9,10,11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python scrapper to access ModDB mods, games and more as objects"
+HOMEPAGE="https://github.com/ClementJ18/moddb"
+SRC_URI="https://github.com/ClementJ18/moddb/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# Connects to moddb.com
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+ dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+ dev-python/requests[${PYTHON_USEDEP}]
+ dev-python/toolz[${PYTHON_USEDEP}]
+ dev-python/pyrate-limiter[${PYTHON_USEDEP}]
+"
+
+BDEPEND="test? (
+ dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
+)"
+
+EPYTEST_DESELECT=(
+ # These tests require valid moddb.com login information
+ "tests/test_base.py::TestLogin::test_login"
+ "tests/test_client.py::TestClient::test_get_watched"
+ "tests/test_client.py::TestClient::test_get_updates"
+ "tests/test_client.py::TestClient::test_posts"
+ "tests/test_client.py::TestClient::test_friends"
+ "tests/test_client.py::TestClient::test_messages"
+)
+
+distutils_enable_sphinx docs/source dev-python/sphinx-autodoc-typehints
+distutils_enable_tests pytest
+
+python_test() {
+ # Dummy moddb.com login information
+ export USERNAME="portage"
+ export SENDER_USERNAME="portage"
+ export PASSWORD="testing"
+ export SENDER_PASSWORD="testing"
+ epytest
+}