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 B8C95158041 for ; Mon, 1 Apr 2024 21:30:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5A2B7E2A87; Mon, 1 Apr 2024 21:30:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 4342FE2A87 for ; Mon, 1 Apr 2024 21:30:05 +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 B43E3343211 for ; Mon, 1 Apr 2024 21:30:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B74A51622 for ; Mon, 1 Apr 2024 21:30:01 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1711977556.beeca84794c6927351100d40fadc4273d773664d.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-text/pandoc-crossref-bin/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-text/pandoc-crossref-bin/pandoc-crossref-bin-0.3.17.0c-r1.ebuild X-VCS-Directories: app-text/pandoc-crossref-bin/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: beeca84794c6927351100d40fadc4273d773664d X-VCS-Branch: master Date: Mon, 1 Apr 2024 21:30:01 +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: dbca7088-c5a6-405f-b9ec-0a67f95ebe00 X-Archives-Hash: 95bc785835344a591011b74fee92f444 commit: beeca84794c6927351100d40fadc4273d773664d Author: Robert Greener r0bert dev> AuthorDate: Mon Apr 1 13:12:41 2024 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Mon Apr 1 13:19:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=beeca847 app-text/pandoc-crossref-bin: New revision v0.3.17.0c-r1 Avoid conflict in manifest on package name Signed-off-by: Robert Greener r0bert.dev> .../pandoc-crossref-bin-0.3.17.0c-r1.ebuild | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/app-text/pandoc-crossref-bin/pandoc-crossref-bin-0.3.17.0c-r1.ebuild b/app-text/pandoc-crossref-bin/pandoc-crossref-bin-0.3.17.0c-r1.ebuild new file mode 100644 index 0000000000..89b7c5250f --- /dev/null +++ b/app-text/pandoc-crossref-bin/pandoc-crossref-bin-0.3.17.0c-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 +EAPI=8 + +DESCRIPTION="Pandoc filter for cross-references" + +HOMEPAGE="https://github.com/lierdakil/pandoc-crossref" + + +SRC_URI="https://github.com/lierdakil/pandoc-crossref/releases/download/v${PV}/pandoc-crossref-Linux.tar.xz -> ${P}.tar.xz" + +LICENSE="GPL-2" + +SLOT="0" + +KEYWORDS="-* ~amd64" +S=${WORKDIR} + +RDEPEND=" +|| ( =app-text/pandoc-bin-3.1.12.1 =app-text/pandoc-3.1.12.1 ) +!dev-haskell/pandoc-crossref +" + +src_install() { + exeinto /usr/bin + newexe ${WORKDIR}/pandoc-crossref pandoc-crossref + newman ${WORKDIR}/pandoc-crossref.1 pandoc-crossref.1 +}