summaryrefslogtreecommitdiff
path: root/dev-python/moddb
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/moddb
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/moddb')
-rw-r--r--dev-python/moddb/Manifest1
-rw-r--r--dev-python/moddb/metadata.xml13
-rw-r--r--dev-python/moddb/moddb-0.13.0.ebuild49
3 files changed, 0 insertions, 63 deletions
diff --git a/dev-python/moddb/Manifest b/dev-python/moddb/Manifest
deleted file mode 100644
index 89962b430830..000000000000
--- a/dev-python/moddb/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST moddb-0.13.0.gh.tar.gz 10529388 BLAKE2B ea645d8bbbfaee9919be4e7dda56e5aa2701c765f43324214f9ce81f9a54f698c4e2a25aab4d389736523f3054ae7c8cde6037b487ba55c4981d8ca59c2f1b15 SHA512 51972d3fd1099f29cb82bd58c98e5542f9d7337aff7b56ff49882a8544337a36e62a0ca0499b8180a054a21b9d836da429caf78ba4752b06b0ff7a1ab4b95f73
diff --git a/dev-python/moddb/metadata.xml b/dev-python/moddb/metadata.xml
deleted file mode 100644
index 6dd858571669..000000000000
--- a/dev-python/moddb/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>nowa@gentoo.org</email>
- <name>Nowa Ammerlaan</name>
- </maintainer>
- <stabilize-allarches/>
- <upstream>
- <remote-id type="pypi">moddb</remote-id>
- <remote-id type="github">ClementJ18/moddb</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/moddb/moddb-0.13.0.ebuild b/dev-python/moddb/moddb-0.13.0.ebuild
deleted file mode 100644
index 386bc2daf757..000000000000
--- a/dev-python/moddb/moddb-0.13.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{13..14} )
-
-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 ~x86"
-
-# Connects to moddb.com
-RESTRICT="test"
-PROPERTIES="test? ( test_network )"
-
-RDEPEND="
- dev-python/beautifulsoup4[${PYTHON_USEDEP}]
- dev-python/requests[${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
-EPYTEST_PLUGINS=( pytest-rerunfailures )
-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
-}