summaryrefslogtreecommitdiff
path: root/dev-python/mollie-api-python
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/mollie-api-python')
-rw-r--r--dev-python/mollie-api-python/Manifest1
-rw-r--r--dev-python/mollie-api-python/files/mollie-api-python-3.6.0-no-install-tests.patch13
-rw-r--r--dev-python/mollie-api-python/metadata.xml8
-rw-r--r--dev-python/mollie-api-python/mollie-api-python-3.6.0.ebuild48
4 files changed, 0 insertions, 70 deletions
diff --git a/dev-python/mollie-api-python/Manifest b/dev-python/mollie-api-python/Manifest
deleted file mode 100644
index a82e8dbc606f..000000000000
--- a/dev-python/mollie-api-python/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST mollie-api-python-3.6.0.gh.tar.gz 89246 BLAKE2B 57e816fc67c65d079a430a19641a1341d8e9276a363865d9533949d4b81daa59a5c2d87741f919952c6fea0dd36e3f5344a574b97a454b68a8101cd63319d667 SHA512 e3e2e5844172d2b117a1e5a89714bf9d59251fe83a68b565dec00362b7c0c68aeb291559e9a745cc3ad083441423f82624df95da92e49beea586caabbc236411
diff --git a/dev-python/mollie-api-python/files/mollie-api-python-3.6.0-no-install-tests.patch b/dev-python/mollie-api-python/files/mollie-api-python-3.6.0-no-install-tests.patch
deleted file mode 100644
index 782e078f7efe..000000000000
--- a/dev-python/mollie-api-python/files/mollie-api-python-3.6.0-no-install-tests.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/setup.py b/setup.py
-index 3c0d5dc..da6d0e0 100644
---- a/setup.py
-+++ b/setup.py
-@@ -30,7 +30,7 @@ setup(
- license="BSD",
- long_description=get_long_description(),
- long_description_content_type="text/markdown",
-- packages=find_packages(),
-+ packages=find_packages(exclude=["tests"]),
- include_package_data=True,
- package_data={
- "mollie": ["py.typed"],
diff --git a/dev-python/mollie-api-python/metadata.xml b/dev-python/mollie-api-python/metadata.xml
deleted file mode 100644
index 443235ca396b..000000000000
--- a/dev-python/mollie-api-python/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <upstream>
- <remote-id type="github">mollie/mollie-api-python</remote-id>
- <remote-id type="pypi">mollie-api-python</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/mollie-api-python/mollie-api-python-3.6.0.ebuild b/dev-python/mollie-api-python/mollie-api-python-3.6.0.ebuild
deleted file mode 100644
index caff655c0e05..000000000000
--- a/dev-python/mollie-api-python/mollie-api-python-3.6.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 2024 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="Mollie API client for Python"
-HOMEPAGE="
- https://www.mollie.com/
- https://github.com/mollie/mollie-api-python/
- https://pypi.org/project/mollie-api-python/
-"
-SRC_URI="https://github.com/mollie/mollie-api-python/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
- dev-python/requests[${PYTHON_USEDEP}]
- dev-python/requests-oauthlib[${PYTHON_USEDEP}]
- dev-python/urllib3[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
- test? (
- dev-python/mock[${PYTHON_USEDEP}]
- dev-python/pytest-mock[${PYTHON_USEDEP}]
- dev-python/responses[${PYTHON_USEDEP}]
- )
-"
-
-PATCHES=(
- # https://github.com/mollie/mollie-api-python/pull/347
- "${FILESDIR}/${P}-no-install-tests.patch"
-)
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
- distutils-r1_python_prepare_all
- # no pytest-cov
- sed -e '/--cov/d' -e '/--no-cov-on-fail/d' -i pyproject.toml || die
-}