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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5C0AA1581F0 for ; Thu, 12 Dec 2024 17:03:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2C0BE0999; Thu, 12 Dec 2024 17:03:29 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AD84EE0999 for ; Thu, 12 Dec 2024 17:03:29 +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 E8BC5341465 for ; Thu, 12 Dec 2024 17:03:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 08E881F41 for ; Thu, 12 Dec 2024 17:03:26 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1734022625.ba4bc48984a181310b7d15fb63f253c9518c9084.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/latex-package.eclass X-VCS-Directories: eclass/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: ba4bc48984a181310b7d15fb63f253c9518c9084 X-VCS-Branch: master Date: Thu, 12 Dec 2024 17:03:26 +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: 61529beb-d4a8-418a-a130-5f019f54bdc7 X-Archives-Hash: 13a97bb6558f1f508ed78b19b4f29f1f commit: ba4bc48984a181310b7d15fb63f253c9518c9084 Author: Florian Schmaus gentoo org> AuthorDate: Wed Dec 11 09:49:39 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Thu Dec 12 16:57:05 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba4bc489 latex-package.eclass: add default case to latex-package_src_doinstall Add a default case to the switch/case statement in latex-package_src_doinstall, invoking die. Signed-off-by: Florian Schmaus gentoo.org> eclass/latex-package.eclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eclass/latex-package.eclass b/eclass/latex-package.eclass index d6426775f720..dfef7fc2836f 100644 --- a/eclass/latex-package.eclass +++ b/eclass/latex-package.eclass @@ -200,6 +200,9 @@ latex-package_src_doinstall() { "all") latex-package_src_doinstall styles fonts bin doc ;; + *) + die "Unknown module: ${1}" + ;; esac shift done