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, 22 Jul 2023 13:09:47 +0000 (UTC) [thread overview]
Message-ID: <1690031380.46176dcb85ae093c60eb58973f48596eb1c0e0fc.xgqt@gentoo> (raw)
commit: 46176dcb85ae093c60eb58973f48596eb1c0e0fc
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 21 22:12:59 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Jul 22 13:09:40 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46176dcb
app-text/pandoc-bin: bump to 3.1.6
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-text/pandoc-bin/Manifest | 2 ++
app-text/pandoc-bin/pandoc-bin-3.1.6.ebuild | 56 +++++++++++++++++++++++++++++
2 files changed, 58 insertions(+)
diff --git a/app-text/pandoc-bin/Manifest b/app-text/pandoc-bin/Manifest
index e57adbabbff6..a255a3c4b534 100644
--- a/app-text/pandoc-bin/Manifest
+++ b/app-text/pandoc-bin/Manifest
@@ -6,3 +6,5 @@ DIST pandoc-3.1.4-linux-amd64.tar.gz 28628391 BLAKE2B b929d7c1f37f0630a816e07cf0
DIST pandoc-3.1.4-linux-arm64.tar.gz 30740344 BLAKE2B d0504eb6e530d91d223fcd5b578651ba4be74141c7cc4f2616a2a56dbdd73deafd8997a2eb0d0d4b7b75591219cbd194d3412e7c7f60bd6dfd1b97614e6d40bf SHA512 0e63ed951ae1032c2ee29b36f2df5b2edba10d9993bccc2baacc378f82201f5afc38cfc5ffce234b5a8dcaac51ece1967c76a7ae30af0286c8083f0aa8b1573a
DIST pandoc-3.1.5-linux-amd64.tar.gz 31034735 BLAKE2B c2704142f90a95c8bfe045ba1a6d7ce29c7e0f3c755a2fa85a694ce01d05f97814e0ccec70cc7da17c57fcb4124bc10afc4d06d40437eec08d984350d74cdae0 SHA512 97454c530e7fa95bc4cda90ff803422850d620c7f6452be855b9198fc71832ef2531f2350044b110b36804f745ca90c44ffb4f2013bee78fdc935f810b55ed41
DIST pandoc-3.1.5-linux-arm64.tar.gz 33687622 BLAKE2B 8021c04ba2a3b71db6b758a21e7dcc2708a2db871fd6604fdf9e2f89619f6141913b4a0bf267e775646a4a0d23308f64487bffe632f75bee53f02110b91e10a8 SHA512 ca64066d438076571979af998e19c89295e7d297a3c5365aaefbd4665e20a6ea1f19a1d8a320b2bc98fb0511a43570fbe3850bcbb13c3b3b054e3c13bd9d0142
+DIST pandoc-3.1.6-linux-amd64.tar.gz 19664028 BLAKE2B be9dc7651001bd4f59639cd6a8a809f57b0a58e52259c568a1044808269002bb930fc76661b7da4ac5a8617181ad57818b04ebecce49da6626b6eb579822199f SHA512 202ba9dee38c0c074584513064dbb4f44165342751fa4295b3a19dcba5e37c77f3eec89bc77bbecb0b9797103af2ca1fd22a60ae9b4115657e24258a05bad2fa
+DIST pandoc-3.1.6-linux-arm64.tar.gz 21780669 BLAKE2B a3715890a8139f8631f8c7c7170d10e262f044e70b1383317fab063cf9dba2455090c30913617d93710e0054f0133afbec5980abd36b6c729c6b99bd7375521e SHA512 615a403070aae7722e2b939a940602ce01f37cd00f6621925b59939fe7ceae73031ac23ee94bcb1e6f6ab12a2b570b81cf5baa55808d503677511f238e30f880
diff --git a/app-text/pandoc-bin/pandoc-bin-3.1.6.ebuild b/app-text/pandoc-bin/pandoc-bin-3.1.6.ebuild
new file mode 100644
index 000000000000..f5289c741e6a
--- /dev/null
+++ b/app-text/pandoc-bin/pandoc-bin-3.1.6.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2023 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} )"
+
+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
+}
next reply other threads:[~2023-07-22 13:09 UTC|newest]
Thread overview: 114+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-22 13:09 Maciej Barć [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-24 11:46 [gentoo-commits] repo/gentoo:master commit in: app-text/pandoc-bin/ Sam James
2025-03-24 11:46 Sam James
2025-03-16 21:11 Maciej Barć
2025-03-07 19:34 Maciej Barć
2025-03-07 19:34 Maciej Barć
2025-03-04 22:43 Sam James
2025-03-04 22:09 Sam James
2025-02-10 15:42 Maciej Barć
2025-02-10 15:42 Maciej Barć
2025-01-22 17:34 Arthur Zamarin
2025-01-22 16:20 Maciej Barć
2025-01-22 11:45 Arthur Zamarin
2024-12-11 0:28 Maciej Barć
2024-11-24 15:47 Jakov Smolić
2024-11-23 16:02 Michał Górny
2024-11-04 0:19 Maciej Barć
2024-10-30 17:24 Arthur Zamarin
2024-10-30 15:14 Sam James
2024-10-05 21:44 Maciej Barć
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-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=1690031380.46176dcb85ae093c60eb58973f48596eb1c0e0fc.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