From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E76BC15810F for ; Fri, 9 Jun 2023 21:21:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6DC45E08DB; Fri, 9 Jun 2023 21:21:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4F0AEE08DB for ; Fri, 9 Jun 2023 21:21:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 498873410BD for ; Fri, 9 Jun 2023 21:21:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6954CA86 for ; Fri, 9 Jun 2023 21:21:21 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1686345446.d10237a6e9ecee0a7fc0a263e2ce2726918b72cb.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/sc-controller/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-util/sc-controller/sc-controller-0.4.8.9.ebuild X-VCS-Directories: games-util/sc-controller/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: d10237a6e9ecee0a7fc0a263e2ce2726918b72cb X-VCS-Branch: master Date: Fri, 9 Jun 2023 21:21:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d1d0670f-2b85-4a1e-a5b3-7faf783d50a7 X-Archives-Hash: 4fc2be27ce53d9e417ac5e74c4ba35ec commit: d10237a6e9ecee0a7fc0a263e2ce2726918b72cb Author: James Le Cuirot gentoo org> AuthorDate: Fri Jun 9 21:17:26 2023 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Fri Jun 9 21:17:26 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d10237a6 games-util/sc-controller: Drop old 0.4.8.9 Signed-off-by: James Le Cuirot gentoo.org> .../sc-controller/sc-controller-0.4.8.9.ebuild | 52 ---------------------- 1 file changed, 52 deletions(-) diff --git a/games-util/sc-controller/sc-controller-0.4.8.9.ebuild b/games-util/sc-controller/sc-controller-0.4.8.9.ebuild deleted file mode 100644 index c12f1f1c25e5..000000000000 --- a/games-util/sc-controller/sc-controller-0.4.8.9.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_SINGLE_IMPL=1 -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) -inherit distutils-r1 linux-info xdg - -DESCRIPTION="User-mode driver and GTK-based GUI for Steam Controllers and others" -HOMEPAGE="https://github.com/Ryochan7/sc-controller/" -SRC_URI="https://github.com/Ryochan7/sc-controller/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2 BSD CC-BY-3.0 CC0-1.0 LGPL-2.1 MIT PSF-2 ZLIB" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+udev wayland" - -RDEPEND=" - $(python_gen_cond_dep ' - dev-python/pygobject[${PYTHON_USEDEP},cairo] - dev-python/pylibacl[${PYTHON_USEDEP}] - dev-python/python-evdev[${PYTHON_USEDEP}] - dev-python/vdf[${PYTHON_USEDEP}]') - gnome-base/librsvg[introspection] - virtual/libusb - x11-libs/gtk+:3[introspection] - udev? ( games-util/game-device-udev-rules ) - wayland? ( gui-libs/gtk-layer-shell[introspection(+)] ) -" - -distutils_enable_tests pytest - -pkg_setup() { - local CONFIG_CHECK="~INPUT_UINPUT" - - linux-info_pkg_setup - python-single-r1_pkg_setup -} - -src_prepare() { - default - - # This test fails. Don't know why but seems unimportant. - rm -v tests/test_glade.py || die -} - -src_install() { - distutils-r1_src_install - rm -r "${ED}"/usr/lib/udev/ || die -}