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 10BE7158041 for ; Mon, 1 Apr 2024 21:30:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 258A6E2A7D; Mon, 1 Apr 2024 21:30:05 +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 F3606E2A7D for ; Mon, 1 Apr 2024 21:30:04 +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 1B15A34312B for ; Mon, 1 Apr 2024 21:30:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 69B1D135F 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: <1711976647.1eda76a4fd4f0f477a003c28f1e017b625910537.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/Manifest app-text/pandoc-crossref-bin/pandoc-crossref-bin-0.3.17.0c.ebuild X-VCS-Directories: app-text/pandoc-crossref-bin/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: 1eda76a4fd4f0f477a003c28f1e017b625910537 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: c1618e2c-a627-40eb-a727-5e00f6760fa6 X-Archives-Hash: 7b013b42a228326ddb19450db63d1c89 commit: 1eda76a4fd4f0f477a003c28f1e017b625910537 Author: Robert Greener r0bert dev> AuthorDate: Mon Apr 1 13:01:57 2024 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Mon Apr 1 13:04:07 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1eda76a4 app-text/pandoc-crossref-bin: New package, version 0.3.17.0c Signed-off-by: Robert Greener r0bert.dev> app-text/pandoc-crossref-bin/Manifest | 1 + .../pandoc-crossref-bin-0.3.17.0c.ebuild | 28 ++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/app-text/pandoc-crossref-bin/Manifest b/app-text/pandoc-crossref-bin/Manifest new file mode 100644 index 0000000000..1a19bdde49 --- /dev/null +++ b/app-text/pandoc-crossref-bin/Manifest @@ -0,0 +1 @@ +DIST pandoc-crossref-Linux.tar.xz 8697292 BLAKE2B c810b593d27acc0899047618a3ee606d55fec2bd2fcf59800135a7b2f1e452ee2ad469a029e703835c8ad883ad2262704dfc2aff6c4ef816b18c3b4c9ebb26b9 SHA512 0d3745a584f4dc77b05890a404940c5137eca8bed2007fc814d8e8411c5dbb27753d667fa79588043aa8f2628e7c9fe6a6764816470bcfdc73da04e29c1c75d0 diff --git a/app-text/pandoc-crossref-bin/pandoc-crossref-bin-0.3.17.0c.ebuild b/app-text/pandoc-crossref-bin/pandoc-crossref-bin-0.3.17.0c.ebuild new file mode 100644 index 0000000000..193e34eb67 --- /dev/null +++ b/app-text/pandoc-crossref-bin/pandoc-crossref-bin-0.3.17.0c.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" + +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 +}