Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] pandoc: add pandoc-crossref filter.
@ 2022-02-17  0:57 classabbyamp
  2022-02-17  0:58 ` [PR PATCH] [Updated] " classabbyamp
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: classabbyamp @ 2022-02-17  0:57 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1498 bytes --]

There is a new pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages pandoc-crossref
https://github.com/void-linux/void-packages/pull/35658

pandoc: add pandoc-crossref filter.
<!-- Uncomment relevant sections and delete options which are not applicable -->

[`pandoc-crossref`](https://github.com/lierdakil/pandoc-crossref) is a filter for pandoc that adds support for numbering figures, equations, tables and cross-references to them in documents. I think a number of pandoc users may find this a useful addition.

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/35658.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-pandoc-crossref-35658.patch --]
[-- Type: text/x-diff, Size: 2613 bytes --]

From ad6e06ed76d8dff1d9bc9a5ca6af55bfb0496209 Mon Sep 17 00:00:00 2001
From: classabbyamp <dev@kb6.ee>
Date: Wed, 16 Feb 2022 19:54:51 -0500
Subject: [PATCH] pandoc: add pandoc-crossref filter.

---
 srcpkgs/pandoc/template | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/pandoc/template b/srcpkgs/pandoc/template
index d84e94c7b93b..48e494e2b442 100644
--- a/srcpkgs/pandoc/template
+++ b/srcpkgs/pandoc/template
@@ -2,9 +2,11 @@
 pkgname=pandoc
 # Keep in sync with http://www.stackage.org/lts
 version=2.14.0.3
-revision=1
+revision=2
 _sidenote_version=0.20.0
 _monad_gen_version=0.3.0.1
+_crossref_version=0.3.12.2
+_roman_numerals_version=0.5.1.5
 create_wrksrc=yes
 build_style=haskell-stack
 stackage="lts-18.5"
@@ -18,15 +20,20 @@ maintainer="slotThe <soliditsallgood@mailbox.org>"
 license="GPL-2.0-or-later, BSD-3-Clause, MIT"
 homepage="http://johnmacfarlane.net/pandoc/"
 distfiles="http://hackage.haskell.org/package/${pkgname}-${version}/${pkgname}-${version}.tar.gz
- https://github.com/jez/${pkgname}-sidenote/archive/${_sidenote_version}.tar.gz \
- https://hackage.haskell.org/package/monad-gen-${_monad_gen_version}/monad-gen-${_monad_gen_version}.tar.gz"
+ https://github.com/jez/${pkgname}-sidenote/archive/${_sidenote_version}.tar.gz
+ https://hackage.haskell.org/package/monad-gen-${_monad_gen_version}/monad-gen-${_monad_gen_version}.tar.gz
+ https://github.com/lierdakil/pandoc-crossref/archive/v${_crossref_version}.tar.gz
+ https://hackage.haskell.org/package/roman-numerals-${_roman_numerals_version}/roman-numerals-${_roman_numerals_version}.tar.gz"
 checksum="82e3f55bff3059bf30cf532e93d9876c9e3599aa4eafae9c907fe75a4430eddd
  34ee7f46d6472c04884b1dcb030d701a32b885d9b0d4307d2c0da327a359cb7a
- be8485023fce236b5b915f2f6074f7b0470a2040f84cdd137c5227f1b4c98465"
+ be8485023fce236b5b915f2f6074f7b0470a2040f84cdd137c5227f1b4c98465
+ 0bf80612c5964b433684971ee22dd28a29503470398eae1634bf9142cd27299a
+ b9c7195b69b1662a286d2c28a55fafdcb693c522ba5eb54a11b1d0a4e92eaa81"
 nocross=yes
 nopie_files="
  /usr/bin/pandoc
  /usr/bin/pandoc-sidenote
+ /usr/bin/pandoc-crossref
 "
 
 post_extract() {
@@ -35,6 +42,8 @@ post_extract() {
 }
 post_install() {
 	vman pandoc-${version}/man/pandoc.1
+	$DESTDIR/usr/bin/pandoc -s -t man pandoc-crossref-${_crossref_version}/docs/index.md -o pandoc-crossref-${_crossref_version}/docs/pandoc-crossref.1
+    vman pandoc-crossref-${_crossref_version}/docs/pandoc-crossref.1
 	vlicense pandoc-${version}/COPYRIGHT LICENSE.pandoc
 	vlicense pandoc-sidenote-${_sidenote_version}/LICENSE LICENSE.pandoc-sidenote
 }

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2022-02-23 17:47 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-17  0:57 [PR PATCH] pandoc: add pandoc-crossref filter classabbyamp
2022-02-17  0:58 ` [PR PATCH] [Updated] " classabbyamp
2022-02-17  1:00 ` classabbyamp
2022-02-21 16:29 ` classabbyamp
2022-02-21 16:33 ` classabbyamp
2022-02-22 20:20 ` [PR PATCH] [Updated] pandoc: add pandoc-crossref filter, move filters to subpkgs classabbyamp
2022-02-22 21:47 ` classabbyamp
2022-02-22 21:49 ` classabbyamp
2022-02-22 22:49 ` classabbyamp
2022-02-22 23:26 ` classabbyamp
2022-02-23 17:47 ` [PR PATCH] [Merged]: " leahneukirchen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).