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 DA413158003 for ; Tue, 30 May 2023 06:59:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B224BE0F2B; Tue, 30 May 2023 06:59:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 9B474E0F2A for ; Tue, 30 May 2023 06:59:13 +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 96E59340E4F for ; Tue, 30 May 2023 06:59:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 038D4A77 for ; Tue, 30 May 2023 06:59:11 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1685429923.6847f1e6315628dee18d01cd0645505e2cd1286e.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/calcurse/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/calcurse/calcurse-4.8.0-r1.ebuild app-office/calcurse/calcurse-4.8.0.ebuild X-VCS-Directories: app-office/calcurse/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 6847f1e6315628dee18d01cd0645505e2cd1286e X-VCS-Branch: master Date: Tue, 30 May 2023 06:59:11 +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: 38d3b62d-fea3-46a5-91f6-fc001c7d203e X-Archives-Hash: cc83ef74426a000b6f0dab72e1371fde commit: 6847f1e6315628dee18d01cd0645505e2cd1286e Author: Kai-Chun Ning gmail com> AuthorDate: Fri May 12 17:16:38 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue May 30 06:58:43 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6847f1e6 app-office/calcurse: add missing dep for musl systems for 4.8.0 Signed-off-by: Kai-Chun Ning gmail.com> Closes: https://github.com/gentoo/gentoo/pull/31008 Signed-off-by: Joonas Niilola gentoo.org> .../calcurse/{calcurse-4.8.0.ebuild => calcurse-4.8.0-r1.ebuild} | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app-office/calcurse/calcurse-4.8.0.ebuild b/app-office/calcurse/calcurse-4.8.0-r1.ebuild similarity index 86% rename from app-office/calcurse/calcurse-4.8.0.ebuild rename to app-office/calcurse/calcurse-4.8.0-r1.ebuild index a918b427a68f..eac0ca24f616 100644 --- a/app-office/calcurse/calcurse-4.8.0.ebuild +++ b/app-office/calcurse/calcurse-4.8.0-r1.ebuild @@ -5,7 +5,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..11} ) -inherit python-single-r1 +inherit autotools python-single-r1 DESCRIPTION="A text-based calendar and scheduling application" HOMEPAGE="https://calcurse.org/" @@ -19,6 +19,7 @@ IUSE="caldav doc" RDEPEND=" sys-libs/ncurses:0= + sys-libs/timezone-data ${PYTHON_DEPS} caldav? ( $(python_gen_cond_dep ' @@ -42,7 +43,9 @@ src_configure() { src_compile() { default - python_fix_shebang contrib/caldav/calcurse-caldav + if use caldav; then + python_fix_shebang contrib/caldav/calcurse-caldav + fi } src_install() {