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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C2404158089 for ; Fri, 27 Oct 2023 01:23:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3A972BC090; Fri, 27 Oct 2023 01:23:18 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CED0B2BC090 for ; Fri, 27 Oct 2023 01:23:18 +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 C3242335C2E for ; Fri, 27 Oct 2023 01:23:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1DECE8EE for ; Fri, 27 Oct 2023 01:23:16 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1698369616.2a2b35895e8f6d5b72ed38e446ecdf8c02673c7b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pandoc/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/pandoc/pandoc-3.ebuild X-VCS-Directories: app-text/pandoc/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2a2b35895e8f6d5b72ed38e446ecdf8c02673c7b X-VCS-Branch: master Date: Fri, 27 Oct 2023 01:23:16 +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: d06530fb-43eb-43d5-9be7-cccd41f0fa07 X-Archives-Hash: 1bb0eb20109872203d2ad352a35461ae commit: 2a2b35895e8f6d5b72ed38e446ecdf8c02673c7b Author: Ulrich Müller gentoo org> AuthorDate: Tue Oct 24 07:48:20 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Oct 27 01:20:16 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a2b3589 app-text/pandoc: Add metapackage to ease transition to pandoc-cli Signed-off-by: Ulrich Müller gentoo.org> Signed-off-by: Sam James gentoo.org> app-text/pandoc/pandoc-3.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/app-text/pandoc/pandoc-3.ebuild b/app-text/pandoc/pandoc-3.ebuild new file mode 100644 index 000000000000..ac0df9c34129 --- /dev/null +++ b/app-text/pandoc/pandoc-3.ebuild @@ -0,0 +1,20 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Metapackage for pandoc version 3" +HOMEPAGE="https://pandoc.org/" + +LICENSE="metapackage" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" + +RDEPEND="app-text/pandoc-cli" + +pkg_postinst() { + elog "The pandoc CLI executable has been split off upstream into a new" + elog "package named pandoc-cli, starting with pandoc version 3." + elog "This metapackage ${CATEGORY}/${P} was created to ease upgrading," + elog "but it is recommended to switch to ${CATEGORY}/pandoc-cli." +}