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 AC36315ACFB for ; Thu, 20 Apr 2023 18:41:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAD13E08D4; Thu, 20 Apr 2023 18:41:34 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 CF84BE08D4 for ; Thu, 20 Apr 2023 18:41:34 +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 0403C340E11 for ; Thu, 20 Apr 2023 18:41:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E949A3F for ; Thu, 20 Apr 2023 18:41:32 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1682016072.aa1ec62ac69d2f89a9c3a5fdc5b40d5cff2c2c99.arthurzam@gentoo> Subject: [gentoo-commits] proj/pkgcore/pkgcore:master commit in: src/pkgcore/pytest/ X-VCS-Repository: proj/pkgcore/pkgcore X-VCS-Files: src/pkgcore/pytest/plugin.py X-VCS-Directories: src/pkgcore/pytest/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: aa1ec62ac69d2f89a9c3a5fdc5b40d5cff2c2c99 X-VCS-Branch: master Date: Thu, 20 Apr 2023 18:41:32 +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: cd5d6f29-8074-4426-a426-4579fafa49b4 X-Archives-Hash: 0d4d93485031c421a558ebdcea9da6aa commit: aa1ec62ac69d2f89a9c3a5fdc5b40d5cff2c2c99 Author: Arthur Zamarin gentoo org> AuthorDate: Thu Apr 20 18:39:35 2023 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Thu Apr 20 18:41:12 2023 +0000 URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcore.git/commit/?id=aa1ec62a pytest.plugin: blank line after EAPI declare in create_ebuild Signed-off-by: Arthur Zamarin gentoo.org> src/pkgcore/pytest/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkgcore/pytest/plugin.py b/src/pkgcore/pytest/plugin.py index 142292bf4..6578050e2 100644 --- a/src/pkgcore/pytest/plugin.py +++ b/src/pkgcore/pytest/plugin.py @@ -260,7 +260,7 @@ class EbuildRepo: """ ) ) - f.write(f'EAPI="{eapi}"\n') + f.write(f"EAPI={eapi}\n\n") f.write(f'DESCRIPTION="{desc}"\n') f.write(f'HOMEPAGE="{homepage}"\n') f.write(f'SLOT="{slot}"\n')