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 3F45D158094 for ; Thu, 7 Jul 2022 18:02:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36BFEE0DFA; Thu, 7 Jul 2022 18:02:33 +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 0FE97E0DFA for ; Thu, 7 Jul 2022 18:02:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C8D2C340E2F for ; Thu, 7 Jul 2022 18:02:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3871E527 for ; Thu, 7 Jul 2022 18:02:30 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1657216909.48a50c9d7b772e233aa730b0b228d7fe61042849.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/lvm2/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/lvm2/lvm2-2.02.188-r3.ebuild sys-fs/lvm2/lvm2-2.03.14-r3.ebuild X-VCS-Directories: sys-fs/lvm2/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 48a50c9d7b772e233aa730b0b228d7fe61042849 X-VCS-Branch: master Date: Thu, 7 Jul 2022 18:02:30 +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: c8de8407-2f36-45bf-b4cf-f21327de0056 X-Archives-Hash: f578a4d1fca8e797c7bc043061249bd9 commit: 48a50c9d7b772e233aa730b0b228d7fe61042849 Author: Mike Gilbert gentoo org> AuthorDate: Thu Jul 7 17:42:31 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Thu Jul 7 18:01:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48a50c9d sys-fs/lvm2: move src_test where it belongs Signed-off-by: Mike Gilbert gentoo.org> sys-fs/lvm2/lvm2-2.02.188-r3.ebuild | 10 +++++----- sys-fs/lvm2/lvm2-2.03.14-r3.ebuild | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/sys-fs/lvm2/lvm2-2.02.188-r3.ebuild b/sys-fs/lvm2/lvm2-2.02.188-r3.ebuild index a7726256c6f8..52c90888788b 100644 --- a/sys-fs/lvm2/lvm2-2.02.188-r3.ebuild +++ b/sys-fs/lvm2/lvm2-2.02.188-r3.ebuild @@ -206,6 +206,11 @@ src_compile() { fi } +src_test() { + einfo "Tests are disabled because of device-node mucking, if you want to" + einfo "run tests, compile the package and see ${S}/tests" +} + src_install() { local inst local INSTALL_TARGETS=( install install_tmpfiles_configuration ) @@ -301,8 +306,3 @@ pkg_postrm() { udev_reload fi } - -src_test() { - einfo "Tests are disabled because of device-node mucking, if you want to" - einfo "run tests, compile the package and see ${S}/tests" -} diff --git a/sys-fs/lvm2/lvm2-2.03.14-r3.ebuild b/sys-fs/lvm2/lvm2-2.03.14-r3.ebuild index 3c36db1adc1f..4c8280b0a195 100644 --- a/sys-fs/lvm2/lvm2-2.03.14-r3.ebuild +++ b/sys-fs/lvm2/lvm2-2.03.14-r3.ebuild @@ -209,6 +209,11 @@ src_compile() { fi } +src_test() { + einfo "Tests are disabled because of device-node mucking, if you want to" + einfo "run tests, compile the package and see ${S}/tests" +} + src_install() { local inst local INSTALL_TARGETS=( install install_tmpfiles_configuration ) @@ -303,8 +308,3 @@ pkg_postrm() { udev_reload fi } - -src_test() { - einfo "Tests are disabled because of device-node mucking, if you want to" - einfo "run tests, compile the package and see ${S}/tests" -}