public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Maciej Barć" <xgqt@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pandoc-bin/
Date: Sat,  5 Oct 2024 21:44:20 +0000 (UTC)	[thread overview]
Message-ID: <1728164657.c51874f7da98dd561a08c49098ee7723045b5a74.xgqt@gentoo> (raw)

commit:     c51874f7da98dd561a08c49098ee7723045b5a74
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  5 21:17:06 2024 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Oct  5 21:44:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c51874f7

app-text/pandoc-bin: bump to 3.5

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-text/pandoc-bin/Manifest              |  2 +
 app-text/pandoc-bin/pandoc-bin-3.5.ebuild | 62 +++++++++++++++++++++++++++++++
 2 files changed, 64 insertions(+)

diff --git a/app-text/pandoc-bin/Manifest b/app-text/pandoc-bin/Manifest
index 6fb364ce0a29..5357d998b427 100644
--- a/app-text/pandoc-bin/Manifest
+++ b/app-text/pandoc-bin/Manifest
@@ -2,3 +2,5 @@ DIST pandoc-3.3-linux-amd64.tar.gz 32140122 BLAKE2B eda93f6a127e40d3ef0646043855
 DIST pandoc-3.3-linux-arm64.tar.gz 34838805 BLAKE2B a81e590d862aa3c7832425cba67d3622805373dbee5c1a36e52e80326d28251d2076ec95392b0bea62c5154c6f59e2f60d2195b64d0fe6688313437f76f678c4 SHA512 e2c42c2af49dffd05506dc268d929214b85559560140da163145b72dce4dd8fd2f22b8e3278dfdaf0d90f7caba8a8d5a56443362054d508437326b7fc1dfcb93
 DIST pandoc-3.4-linux-amd64.tar.gz 32415360 BLAKE2B f1daec8a527b5a58c55ed060f6dc38db36011ffc4825d11710e82301f984511e9584dba8bc52823c3e1acc6acdd58d5cfc60714263b5e8eafa210c383316e944 SHA512 b38ca8b7c51117051de235a937bf50382ca831e68f190503c3526261920c4568f963400c1953247495d18782f5b0d864085621965a11750255b508ba7779ccaa
 DIST pandoc-3.4-linux-arm64.tar.gz 35126564 BLAKE2B 4dba5ce0e85b3189d1af814bf4a27198004c391b4e27aabe7b71bbb122a310af6b83cf032e495ccab2004226687b5f830fa26554d12d1be49c250d28fc792958 SHA512 954c7b267d67566da8c613f866c82b3a2e6d65e42f261f07ffa486a0e2c4095b3320cee637aecfa297e7abd81e118fcfe0e05d04870bc23219c0a3154c96e15a
+DIST pandoc-3.5-linux-amd64.tar.gz 32371117 BLAKE2B c6c2e08760fe2172bcd0acda3e54c650e48b2a7e9eef519807ec70c5b17cd34f2bc46c11965cfda5d1a072f73ca0cc88d7067c30a3c193192b0e3de7feec0bb8 SHA512 5c83cc80a559912862eb4b89a0ff67101f3e201210812a9e255930037e411de236d41a7c961adc1caff94f50e41de4308f1ed1d76e41a0024c4f96240e252ce7
+DIST pandoc-3.5-linux-arm64.tar.gz 35098101 BLAKE2B 3bfefaed9d5a972aa2a94f1ab1a52e85408c020cc3460fcbe02113103c8038f8290b0f3918d30c4b73f74be7978694021a4cc07e8fd64a00fdc7f8066f46453f SHA512 b15aea4cebffec3dc9645af306d017584fe707b643816a98c794b7fb5157643d6a06f0062dc89327458ce2009ded120bac88f3f0bbed8027740a0d47f9f9d958

diff --git a/app-text/pandoc-bin/pandoc-bin-3.5.ebuild b/app-text/pandoc-bin/pandoc-bin-3.5.ebuild
new file mode 100644
index 000000000000..6c205a599708
--- /dev/null
+++ b/app-text/pandoc-bin/pandoc-bin-3.5.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN=${PN//-bin/}
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Conversion between markup formats (binary package)"
+HOMEPAGE="https://pandoc.org/
+	https://github.com/jgm/pandoc/"
+
+BASE_URI="https://github.com/jgm/${MY_PN}/releases/download/${PV}/${MY_P}"
+SRC_URI="
+	amd64? ( ${BASE_URI}-linux-amd64.tar.gz )
+	arm64? ( ${BASE_URI}-linux-arm64.tar.gz )
+"
+S="${WORKDIR}"/${MY_P}
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm64"
+IUSE="+pandoc-symlink"
+
+RDEPEND="
+	pandoc-symlink? (
+		!${CATEGORY}/${MY_PN}
+		!app-text/pandoc-cli
+		!dev-haskell/pandoc
+	)
+"
+
+QA_FLAGS_IGNORED="usr/bin/${PN}"
+QA_PRESTRIPPED="${QA_FLAGS_IGNORED}"
+
+src_unpack() {
+	default
+
+	# Manpages are gzipped.
+	unpack "${S}"/share/man/man1/*.1.gz
+}
+
+src_install() {
+	exeinto /usr/bin
+	newexe bin/${MY_PN} ${PN}
+	dosym ${PN} /usr/bin/pandoc-lua-bin
+	dosym ${PN} /usr/bin/pandoc-server-bin
+
+	newman "${WORKDIR}"/${MY_PN}-lua.1 pandoc-lua-bin.1
+	newman "${WORKDIR}"/${MY_PN}-server.1 pandoc-server-bin.1
+	newman "${WORKDIR}"/${MY_PN}.1 ${PN}.1
+
+	if use pandoc-symlink ; then
+		dosym ${PN} /usr/bin/${MY_PN}
+		dosym pandoc-lua-bin /usr/bin/${MY_PN}-lua
+		dosym pandoc-server-bin /usr/bin/${MY_PN}-server
+
+		dosym ${PN}.1 /usr/share/man/man1/${MY_PN}.1
+		dosym pandoc-lua-bin.1 /usr/share/man/man1/${MY_PN}-lua.1
+		dosym pandoc-server-bin.1 /usr/share/man/man1/${MY_PN}-server.1
+	fi
+}


             reply	other threads:[~2024-10-05 21:44 UTC|newest]

Thread overview: 99+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-05 21:44 Maciej Barć [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-04  0:19 [gentoo-commits] repo/gentoo:master commit in: app-text/pandoc-bin/ Maciej Barć
2024-10-30 17:24 Arthur Zamarin
2024-10-30 15:14 Sam James
2024-09-11 23:30 Maciej Barć
2024-09-11 23:30 Maciej Barć
2024-09-05  0:06 Sam James
2024-09-03 18:32 Jakov Smolić
2024-07-29 15:17 Maciej Barć
2024-07-29 15:17 Maciej Barć
2024-07-29 15:17 Maciej Barć
2024-07-25 22:31 Sam James
2024-07-25 22:26 Sam James
2024-06-25 22:04 Sam James
2024-06-25 22:03 Sam James
2024-06-24 23:01 Maciej Barć
2024-05-13 12:42 Arthur Zamarin
2024-05-12 22:41 Sam James
2024-05-12 11:33 Maciej Barć
2024-05-02 15:01 Maciej Barć
2024-05-02 15:01 Maciej Barć
2024-04-29  0:27 Sam James
2024-04-29  0:27 Sam James
2024-04-28 19:11 Ionen Wolkens
2024-04-07 16:20 Maciej Barć
2024-04-07 16:20 Maciej Barć
2024-04-04  9:01 Jakov Smolić
2024-03-20 23:47 Sam James
2024-03-18  8:29 Maciej Barć
2024-03-02 16:32 Maciej Barć
2024-02-18 19:56 Maciej Barć
2024-02-18 19:56 Maciej Barć
2024-02-06  8:20 Sam James
2024-02-06  8:18 Sam James
2024-01-18 17:25 Sam James
2024-01-18 17:25 Sam James
2024-01-06  2:51 Maciej Barć
2023-12-16 21:45 Maciej Barć
2023-12-13  2:27 Maciej Barć
2023-12-06 22:47 Maciej Barć
2023-11-30 14:21 Michał Górny
2023-11-30 14:21 Michał Górny
2023-10-28 14:05 Maciej Barć
2023-10-24 12:30 Maciej Barć
2023-10-23 20:39 Maciej Barć
2023-10-23 20:39 Maciej Barć
2023-10-23 20:39 Maciej Barć
2023-10-23 20:39 Maciej Barć
2023-10-17 13:03 Sam James
2023-10-17 13:03 Sam James
2023-10-01 18:07 Arthur Zamarin
2023-10-01 18:07 Arthur Zamarin
2023-09-25 14:14 Arthur Zamarin
2023-09-25 12:13 Arthur Zamarin
2023-09-10 15:35 Maciej Barć
2023-09-10 15:35 Maciej Barć
2023-09-07 20:07 Sam James
2023-09-07 19:51 Sam James
2023-08-31 21:22 Maciej Barć
2023-08-31 21:22 Maciej Barć
2023-08-23 22:14 Maciej Barć
2023-08-07 11:31 Maciej Barć
2023-07-25  8:56 Maciej Barć
2023-07-25  8:56 Maciej Barć
2023-07-25  8:56 Maciej Barć
2023-07-22 13:09 Maciej Barć
2023-07-18 10:26 Maciej Barć
2023-07-18 10:26 Maciej Barć
2023-07-08  3:39 Sam James
2023-07-07 22:54 Sam James
2023-07-07 17:40 Maciej Barć
2023-06-24 21:44 Maciej Barć
2023-06-07 13:40 Maciej Barć
2023-06-07 13:40 Maciej Barć
2023-06-07 13:40 Maciej Barć
2023-05-05 16:05 Arthur Zamarin
2023-05-05 13:39 Arthur Zamarin
2023-05-05 12:03 Maciej Barć
2023-04-08 22:43 Sam James
2023-04-08 22:43 Sam James
2023-03-28  0:57 Maciej Barć
2023-03-13 23:28 Sam James
2023-03-06 15:33 Maciej Barć
2023-03-06 15:33 Maciej Barć
2023-02-27 21:36 Sam James
2023-02-27 20:38 Arthur Zamarin
2023-02-10 13:39 Maciej Barć
2023-02-10 13:39 Maciej Barć
2023-01-27 13:02 Maciej Barć
2023-01-27 13:02 Maciej Barć
2023-01-24 23:55 Sam James
2023-01-19 21:51 Maciej Barć
2023-01-19 21:51 Maciej Barć
2022-08-24  6:27 Stephan Hartmann
2022-08-23 15:22 Maciej Barć
2022-08-23 15:22 Maciej Barć
2022-08-19 14:57 Maciej Barć
2022-08-04 11:34 Maciej Barć
2022-05-25 19:07 Maciej Barć

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1728164657.c51874f7da98dd561a08c49098ee7723045b5a74.xgqt@gentoo \
    --to=xgqt@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox