Github messages for voidlinux
 help / color / mirror / Atom feed
From: classabbyamp <classabbyamp@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] pandoc: add pandoc-crossref filter, move filters to subpkgs
Date: Tue, 22 Feb 2022 23:49:13 +0100	[thread overview]
Message-ID: <20220222224913.kt2k-bz5SnKdJoWd_9Tcq9KHGISbep4oHlXKt7S1xlg@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-35658@inbox.vuxu.org>

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

There is an updated 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, move filters to subpkgs
<!-- 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.

Included in the pandoc package for faster compilation, similar to pandoc-sidenote, but now both have been moved to their own subpackages.

#### 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**

<!-- 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: 4650 bytes --]

From 593004f7f4593c0ee2a1c2eb94e485eb5c887a21 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, move filters to subpkgs

---
 srcpkgs/pandoc-crossref |  1 +
 srcpkgs/pandoc-sidenote |  1 +
 srcpkgs/pandoc/template | 60 ++++++++++++++++++++++++++++++++++-------
 3 files changed, 52 insertions(+), 10 deletions(-)
 create mode 120000 srcpkgs/pandoc-crossref
 create mode 120000 srcpkgs/pandoc-sidenote

diff --git a/srcpkgs/pandoc-crossref b/srcpkgs/pandoc-crossref
new file mode 120000
index 000000000000..53ab49c268d6
--- /dev/null
+++ b/srcpkgs/pandoc-crossref
@@ -0,0 +1 @@
+pandoc
\ No newline at end of file
diff --git a/srcpkgs/pandoc-sidenote b/srcpkgs/pandoc-sidenote
new file mode 120000
index 000000000000..53ab49c268d6
--- /dev/null
+++ b/srcpkgs/pandoc-sidenote
@@ -0,0 +1 @@
+pandoc
\ No newline at end of file
diff --git a/srcpkgs/pandoc/template b/srcpkgs/pandoc/template
index d84e94c7b93b..0e487510497e 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
-_sidenote_version=0.20.0
+revision=2
+_sidenote_version=0.20.0.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"
@@ -15,26 +17,64 @@ hostmakedepends="pkg-config unzip wget"
 makedepends="zlib-devel lua53-devel tar"
 short_desc="Universal converter between markup formats"
 maintainer="slotThe <soliditsallgood@mailbox.org>"
-license="GPL-2.0-or-later, BSD-3-Clause, MIT"
+license="GPL-2.0-or-later, BSD-3-Clause"
 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 \
+distfiles="https://hackage.haskell.org/package/${pkgname}-${version}/${pkgname}-${version}.tar.gz
+ https://hackage.haskell.org/package/${pkgname}-sidenote-${_sidenote_version}/${pkgname}-sidenote-${_sidenote_version}.tar.gz
  https://hackage.haskell.org/package/monad-gen-${_monad_gen_version}/monad-gen-${_monad_gen_version}.tar.gz"
 checksum="82e3f55bff3059bf30cf532e93d9876c9e3599aa4eafae9c907fe75a4430eddd
- 34ee7f46d6472c04884b1dcb030d701a32b885d9b0d4307d2c0da327a359cb7a
+ 91f8e96d8470722d677d31d4bbf16c2ac6902567d818ed7a2715bad2617a4cdb
  be8485023fce236b5b915f2f6074f7b0470a2040f84cdd137c5227f1b4c98465"
+subpackages="pandoc-sidenote"
 nocross=yes
 nopie_files="
  /usr/bin/pandoc
- /usr/bin/pandoc-sidenote
-"
+ /usr/bin/pandoc-sidenote"
+
+# pandoc-crossref is currently broken on musl. See lierdakil/pandoc-crossref#342 and commercialhaskell/stack#5683
+if [ "$XBPS_TARGET_LIBC" != "musl" ]; then
+	distfiles+="
+ https://hackage.haskell.org/package/${pkgname}-crossref-${_crossref_version}/${pkgname}-crossref-${_crossref_version}.tar.gz
+ https://hackage.haskell.org/package/roman-numerals-${_roman_numerals_version}/roman-numerals-${_roman_numerals_version}.tar.gz"
+	checksum+="
+ 94540325c9c98ae4d5199c634bf402ffa41e3c5b020d7207daef90fd9e224fb4
+ b9c7195b69b1662a286d2c28a55fafdcb693c522ba5eb54a11b1d0a4e92eaa81"
+	nopie_files+="
+ /usr/bin/pandoc-crossref"
+	subpackages+="
+ pandoc-crossref"
+fi
 
 post_extract() {
 	sed -i 's/tasty .*,/tasty,/' pandoc-*/pandoc.cabal
 	sed -i 's/zip-archive .*,/zip-archive,/' pandoc-*/pandoc.cabal
 }
+
 post_install() {
 	vman pandoc-${version}/man/pandoc.1
-	vlicense pandoc-${version}/COPYRIGHT LICENSE.pandoc
-	vlicense pandoc-sidenote-${_sidenote_version}/LICENSE LICENSE.pandoc-sidenote
+	vlicense pandoc-${version}/COPYRIGHT LICENSE
+}
+
+# pandoc filters should be built with pandoc to ensure compatibility and speed up compiliation
+pandoc-sidenote_package() {
+	depends="pandoc-${version}_${revision}"
+	short_desc="Pandoc filter to convert Markdown-style footnotes into sidenotes"
+	short_desc+=" - version ${_sidenote_version}"
+	license="MIT"
+	pkg_install() {
+		vmove usr/bin/pandoc-sidenote
+		vlicense pandoc-sidenote-${_sidenote_version}/LICENSE
+	}
+}
+
+pandoc-crossref_package() {
+	depends="pandoc-${version}_${revision}"
+	short_desc="Pandoc filter for cross-references"
+	short_desc+=" - version ${_crossref_version}"
+	license="GPL-2.0-or-later"
+	pkg_install() {
+		vmove usr/bin/pandoc-crossref
+		$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
+	}
 }

  parent reply	other threads:[~2022-02-22 22:49 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 [this message]
2022-02-22 23:26 ` classabbyamp
2022-02-23 17:47 ` [PR PATCH] [Merged]: " leahneukirchen

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=20220222224913.kt2k-bz5SnKdJoWd_9Tcq9KHGISbep4oHlXKt7S1xlg@z \
    --to=classabbyamp@users.noreply.github.com \
    --cc=ml@inbox.vuxu.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;
as well as URLs for NNTP newsgroup(s).