commit: 3605c9eab51c588748a7bfeddcae097893213fb0
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 14 10:53:18 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 14 10:53:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3605c9ea
dev-python/pyperclip: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pyperclip/Manifest | 1 -
dev-python/pyperclip/pyperclip-1.8.2-r1.ebuild | 55 --------------------------
2 files changed, 56 deletions(-)
diff --git a/dev-python/pyperclip/Manifest b/dev-python/pyperclip/Manifest
index 75f258fcff6a..bbd745d3b976 100644
--- a/dev-python/pyperclip/Manifest
+++ b/dev-python/pyperclip/Manifest
@@ -1,2 +1 @@
-DIST pyperclip-1.8.2.tar.gz 20920 BLAKE2B
d14a7d977b434db5ae3218792ccd73428bab244a6f6a92d3fd7f059ee99f841853b69a8e039a8192a6cca693adc943a93f24835d25471888975b306b7be4a36a
SHA512
ade0cdf2bfdbe3ce807a02b64bb1e839afc9955254ddeb3e0fe7c1dd9fd9fddc11f8386a02590690b039045b46e9103e4d094f1bad3e272f532fda4db5ed1c1a
DIST pyperclip-1.9.0.tar.gz 20961 BLAKE2B
a489268724b7beb82ec6b28c11cbb5fe04393a800297e4f71aace7232c13b68ce05092ca949f5cdc8257343b8e8f8b3cbd5227aa03a53e32eaeba8f3146108e2
SHA512
19865ebdcce99817f92994d14e26e1cd321d85da89f3177794a93981321ac3e39c937cccbcd00c866ccb30591d4720cd97a39fd266ef8378e3a21471ee69606f
diff --git a/dev-python/pyperclip/pyperclip-1.8.2-r1.ebuild
b/dev-python/pyperclip/pyperclip-1.8.2-r1.ebuild
deleted file mode 100644
index e29138ffec8d..000000000000
--- a/dev-python/pyperclip/pyperclip-1.8.2-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 virtualx pypi
-
-DESCRIPTION="A cross-platform clipboard module for Python"
-HOMEPAGE="
- https://github.com/asweigart/pyperclip/
- https://pypi.org/project/pyperclip/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~mips ~ppc64 ~riscv ~s390 sparc x86"
-
-RDEPEND="
- || (
- x11-misc/xsel
- x11-misc/xclip
- kde-plasma/plasma-workspace
- dev-python/pyqt5[${PYTHON_USEDEP}]
- dev-python/qtpy[${PYTHON_USEDEP}]
- )
-"
-# test at least one backend
-BDEPEND="
- test? (
- ${RDEPEND}
- )
-"
-
-src_prepare() {
- # stupid windows
- find -type f -exec sed -i -e 's:\r$::' {} + || die
- # klipper is hard to get working, and once we make it work,
- # it breaks most of the other backends
- # wl-copy requires wayland, not Xvfb
- sed -e 's:_executable_exists("\(klipper\|wl-copy\)"):False:' \
- -i tests/test_pyperclip.py || die
- distutils-r1_src_prepare
-}
-
-python_test() {
- "${EPYTHON}" tests/test_pyperclip.py -vv ||
- die "Tests fail on ${EPYTHON}"
-}
-
-src_test() {
- virtx distutils-r1_src_test
-}