From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1218570-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E7120138359 for <garchives@archives.gentoo.org>; Fri, 30 Oct 2020 18:29:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14D2DE08EC; Fri, 30 Oct 2020 18:29:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EF542E08EC for <gentoo-commits@lists.gentoo.org>; Fri, 30 Oct 2020 18:29:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8772F335D6C for <gentoo-commits@lists.gentoo.org>; Fri, 30 Oct 2020 18:29:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02AEB2EE for <gentoo-commits@lists.gentoo.org>; Fri, 30 Oct 2020 18:29:25 +0000 (UTC) From: "Georgy Yakovlev" <gyakovlev@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" <gyakovlev@gentoo.org> Message-ID: <1604082524.3e6848b7832c4c83b1200bb8041aaaec6c208614.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd-tmpfiles/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/systemd-tmpfiles/systemd-tmpfiles-246.ebuild X-VCS-Directories: sys-apps/systemd-tmpfiles/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 3e6848b7832c4c83b1200bb8041aaaec6c208614 X-VCS-Branch: master Date: Fri, 30 Oct 2020 18:29:25 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4cb83824-2032-4c3b-ac69-1c829fbf0d0e X-Archives-Hash: afb027f79bd259a0fa17375bbf336c6a commit: 3e6848b7832c4c83b1200bb8041aaaec6c208614 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org> AuthorDate: Fri Oct 30 18:28:28 2020 +0000 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org> CommitDate: Fri Oct 30 18:28:44 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e6848b7 sys-apps/systemd-tmpfiles: fix shebang before running tests just in case Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org> sys-apps/systemd-tmpfiles/systemd-tmpfiles-246.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys-apps/systemd-tmpfiles/systemd-tmpfiles-246.ebuild b/sys-apps/systemd-tmpfiles/systemd-tmpfiles-246.ebuild index f47e1b24c1e..4c6ac9a06cb 100644 --- a/sys-apps/systemd-tmpfiles/systemd-tmpfiles-246.ebuild +++ b/sys-apps/systemd-tmpfiles/systemd-tmpfiles-246.ebuild @@ -186,8 +186,9 @@ src_install() { src_test() { # 'meson test' will compile full systemd, but we can still outsmart it + python_fix_shebang src/test/test-systemd-tmpfiles.py "${EPYTHON}" src/test/test-systemd-tmpfiles.py \ - "${BUILD_DIR}"/systemd-tmpfiles.standalone || die + "${BUILD_DIR}"/systemd-tmpfiles.standalone || die "${FUNCNAME} failed" } # adapted from opentmpfiles ebuild