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 8BFEF15808D for ; Wed, 20 Apr 2022 13:46:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D2D0E05C1; Wed, 20 Apr 2022 13:46:41 +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 A08A0E05C1 for ; Wed, 20 Apr 2022 13:46:39 +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 C26B93414E0 for ; Wed, 20 Apr 2022 13:46:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E5C8C318 for ; Wed, 20 Apr 2022 13:46:36 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1650462291.188106539e96e2ed8fffbc9f31e0046dd1b8d8db.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/commander/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/commander/commander-0.7.0-r1.ebuild app-emacs/commander/commander-0.7.0.ebuild X-VCS-Directories: app-emacs/commander/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 188106539e96e2ed8fffbc9f31e0046dd1b8d8db X-VCS-Branch: master Date: Wed, 20 Apr 2022 13:46:36 +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: 6ca6653d-1fc1-4654-a597-6ce9a5acc736 X-Archives-Hash: 78dab31dc6c049b14896eefd2055fe57 commit: 188106539e96e2ed8fffbc9f31e0046dd1b8d8db Author: Maciej Barć gentoo org> AuthorDate: Wed Apr 20 13:44:51 2022 +0000 Commit: Maciej Barć gentoo org> CommitDate: Wed Apr 20 13:44:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18810653 app-emacs/commander: use ert-runner to run tests Signed-off-by: Maciej Barć gentoo.org> .../{commander-0.7.0.ebuild => commander-0.7.0-r1.ebuild} | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/app-emacs/commander/commander-0.7.0.ebuild b/app-emacs/commander/commander-0.7.0-r1.ebuild similarity index 69% rename from app-emacs/commander/commander-0.7.0.ebuild rename to app-emacs/commander/commander-0.7.0-r1.ebuild index b73b413a0424..93867886612a 100644 --- a/app-emacs/commander/commander-0.7.0.ebuild +++ b/app-emacs/commander/commander-0.7.0-r1.ebuild @@ -27,6 +27,7 @@ BDEPEND=" test? ( app-emacs/ecukes app-emacs/el-mock + app-emacs/ert-runner app-emacs/espuds ) " @@ -35,11 +36,6 @@ DOCS=( README.md ) SITEFILE="50${PN}-gentoo.el" src_test() { - ${EMACS} ${EMACSFLAGS} -L . -L test --eval "(require 'f)" \ - -l ${PN}-command-test.el -l ${PN}-config-test.el \ - -l ${PN}-init.el -l ${PN}-option-test.el -l ${PN}-test.el \ - -l ${PN}-usage-test.el -l ert-loader.el -l test-helper.el \ - -f ert-run-tests-batch-and-exit || die "tests failed" - + ert-runner || die ecukes --script features --debug || die }