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 AFFF815800D for ; Sat, 8 Jul 2023 14:19:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 01CB0E0878; Sat, 8 Jul 2023 14:19:49 +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 D786DE0878 for ; Sat, 8 Jul 2023 14:19:48 +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 E5F4F340DDF for ; Sat, 8 Jul 2023 14:19:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C12CAC7 for ; Sat, 8 Jul 2023 14:19:46 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1688825811.f5b729fbc92b1d9940b2dd9f6bbe6042f0032f7d.sping@gentoo> Subject: [gentoo-commits] proj/elogv:master commit in: / X-VCS-Repository: proj/elogv X-VCS-Files: setup.py X-VCS-Directories: / X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: f5b729fbc92b1d9940b2dd9f6bbe6042f0032f7d X-VCS-Branch: master Date: Sat, 8 Jul 2023 14:19:46 +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: 7e28b81f-4f03-445c-88cf-0bdbd90137bb X-Archives-Hash: 8e3687fddbc1c3285bd7cff9ea4ba02d commit: f5b729fbc92b1d9940b2dd9f6bbe6042f0032f7d Author: Sebastian Pipping gentoo org> AuthorDate: Sat Jul 8 14:16:51 2023 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sat Jul 8 14:16:51 2023 +0000 URL: https://gitweb.gentoo.org/proj/elogv.git/commit/?id=f5b729fb setup.py: Specify packages=[] to fix the build Error was: > [..] Multiple top-level packages discovered in a flat-layout [..] Signed-off-by: Sebastian Pipping gentoo.org> setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 048b584..e832772 100644 --- a/setup.py +++ b/setup.py @@ -258,6 +258,7 @@ setup(name="elogv", license="GPL-2", description="Curses based utility to view elogs created by Portage", url="https://gitweb.gentoo.org/proj/elogv.git/", + packages=[], scripts=['elogv'], cmdclass={ 'extract_messages': messages,