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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D4EA0158091 for ; Tue, 7 Jun 2022 11:35:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0FF5FE0898; Tue, 7 Jun 2022 11:35:19 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 52C07E0898 for ; Tue, 7 Jun 2022 11:35:18 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 550443417F3 for ; Tue, 7 Jun 2022 11:35:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E8994F8 for ; Tue, 7 Jun 2022 11:34:45 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1654601587.feca5e159ce58eb21a3c672d649fccd0959be02b.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/dbus-test-runner/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/dbus-test-runner/dbus-test-runner-19.04.0-r1.ebuild X-VCS-Directories: dev-util/dbus-test-runner/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: feca5e159ce58eb21a3c672d649fccd0959be02b X-VCS-Branch: master Date: Tue, 7 Jun 2022 11:34:45 +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: 93c99e80-b305-4ef2-aed5-ec7e0b6347d8 X-Archives-Hash: fb07f119645aa369ed244a2d8785d98a commit: feca5e159ce58eb21a3c672d649fccd0959be02b Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Jun 7 11:33:07 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Jun 7 11:33:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feca5e15 dev-util/dbus-test-runner: Drop 19.04.0-r1 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> .../dbus-test-runner-19.04.0-r1.ebuild | 58 ---------------------- 1 file changed, 58 deletions(-) diff --git a/dev-util/dbus-test-runner/dbus-test-runner-19.04.0-r1.ebuild b/dev-util/dbus-test-runner/dbus-test-runner-19.04.0-r1.ebuild deleted file mode 100644 index a2054f799641..000000000000 --- a/dev-util/dbus-test-runner/dbus-test-runner-19.04.0-r1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..9} ) -inherit flag-o-matic python-single-r1 - -DESCRIPTION="Run executables under a new DBus session for testing" -HOMEPAGE="https://launchpad.net/dbus-test-runner" -SRC_URI="https://launchpad.net/${PN}/$(ver_cut 1-2)/${PV}/+download/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86" -IUSE="test" -RESTRICT="!test? ( test )" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -# now optional: -# test? ( dev-util/bustle ) -BDEPEND=" - dev-util/gdbus-codegen - dev-util/intltool -" -COMMON_DEPEND="${PYTHON_DEPS} - dev-libs/dbus-glib - dev-libs/glib:2 -" -DEPEND="${COMMON_DEPEND} - test? ( - $(python_gen_cond_dep ' - dev-python/python-dbusmock[${PYTHON_USEDEP}] - ') - ) -" -RDEPEND="${COMMON_DEPEND} - $(python_gen_cond_dep ' - dev-python/python-dbusmock[${PYTHON_USEDEP}] - ') -" - -src_prepare() { - default - - # bind to specific Python version (with python-dbusmock installed) - sed -i -e "s:python3:${EPYTHON}:" \ - libdbustest/dbus-mock.c tests/test-libdbustest-mock.c || die -} - -src_configure() { - econf --disable-static -} - -src_install() { - default - find "${D}" -name '*.la' -type f -delete || die -}