forked from pool/pandoc-cli
Compare commits
32 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| bdb5493bfb | |||
| 731b56be3a | |||
| e6778ba83d | |||
| b7af785b89 | |||
| b8da02e1f8 | |||
| 0e18151af9 | |||
| cb2913a84b | |||
| 932e0a008e | |||
| 6cbf97bf83 | |||
| 32466152dc | |||
| 9d34871908 | |||
| e079a50406 | |||
| 2c779fc112 | |||
| 3e73ed80b2 | |||
| 889a74b9dd | |||
| 9675e63ef9 | |||
| 57d8c16a5a | |||
| 3763bde94b | |||
| a13ae50980 | |||
| 3d528c726e | |||
| 3bf6ba8524 | |||
| 4f8617a442 | |||
| f7f612fd9c | |||
| a5fb46384f | |||
| d1a032ebf9 | |||
| 19c9559caf | |||
| d6f365c3f1 | |||
| b076061afd | |||
| ae13f4928d | |||
| 715f501db6 | |||
| 95a316d911 | |||
| 022c3ad667 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4571d9a857a88e7b26fd071db531397f417cf838724fe3120c69db54cd5dd10e
|
||||
size 94489
|
||||
3
pandoc-cli-3.8.3.tar.gz
Normal file
3
pandoc-cli-3.8.3.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5bc0e0c28a69a3b595f4612d7f06af6d6e6d23125fa55902aa1de8c21444ce80
|
||||
size 99033
|
||||
@@ -1,97 +0,0 @@
|
||||
cabal-version: 2.4
|
||||
name: pandoc-cli
|
||||
version: 3.2
|
||||
x-revision: 1
|
||||
build-type: Simple
|
||||
license: GPL-2.0-or-later
|
||||
license-file: COPYING.md
|
||||
copyright: (c) 2006-2022 John MacFarlane
|
||||
author: John MacFarlane <jgm@berkeley.edu>
|
||||
maintainer: John MacFarlane <jgm@berkeley.edu>
|
||||
bug-reports: https://github.com/jgm/pandoc/issues
|
||||
stability: alpha
|
||||
homepage: https://pandoc.org
|
||||
category: Text
|
||||
synopsis: Conversion between documentation formats
|
||||
description: Pandoc-cli provides a command-line executable that uses the
|
||||
pandoc library to convert between markup formats.
|
||||
-- data-files:
|
||||
extra-source-files:
|
||||
man/pandoc.1
|
||||
man/pandoc-lua.1
|
||||
man/pandoc-server.1
|
||||
source-repository head
|
||||
type: git
|
||||
location: git://github.com/jgm/pandoc.git
|
||||
|
||||
flag lua
|
||||
description: Support custom modifications and conversions with the
|
||||
pandoc Lua scripting engine.
|
||||
default: True
|
||||
|
||||
flag server
|
||||
Description: Include support for running pandoc as an HTTP server.
|
||||
Default: True
|
||||
|
||||
flag nightly
|
||||
Description: Add '-nightly-COMPILEDATE' to the output of '--version'.
|
||||
Default: False
|
||||
|
||||
common common-options
|
||||
default-language: Haskell2010
|
||||
other-extensions: OverloadedStrings
|
||||
build-depends: base >= 4.12 && < 5
|
||||
ghc-options: -Wall -fno-warn-unused-do-bind
|
||||
-Wincomplete-record-updates
|
||||
-Wnoncanonical-monad-instances
|
||||
-Wcpp-undef
|
||||
-Wincomplete-uni-patterns
|
||||
-Widentities
|
||||
-Wpartial-fields
|
||||
-Wmissing-signatures
|
||||
-fhide-source-paths
|
||||
|
||||
if impl(ghc >= 8.10)
|
||||
ghc-options: -Wunused-packages
|
||||
|
||||
if impl(ghc >= 9.0)
|
||||
ghc-options: -Winvalid-haddock
|
||||
|
||||
if os(windows)
|
||||
cpp-options: -D_WINDOWS
|
||||
|
||||
common common-executable
|
||||
import: common-options
|
||||
ghc-options: -rtsopts -with-rtsopts=-A8m -threaded
|
||||
|
||||
executable pandoc
|
||||
import: common-executable
|
||||
hs-source-dirs: src
|
||||
main-is: pandoc.hs
|
||||
buildable: True
|
||||
-- Note: we always link to an exact version of pandoc, with the
|
||||
-- same version as this package:
|
||||
build-depends: pandoc == 3.2,
|
||||
text
|
||||
other-modules: PandocCLI.Lua
|
||||
, PandocCLI.Server
|
||||
if flag(nightly)
|
||||
cpp-options: -DNIGHTLY
|
||||
build-depends: template-haskell,
|
||||
time
|
||||
if flag(server)
|
||||
build-depends: pandoc-server >= 0.1.0.6 && < 0.2,
|
||||
wai-extra >= 3.0.24,
|
||||
warp,
|
||||
safe
|
||||
hs-source-dirs: server
|
||||
else
|
||||
hs-source-dirs: no-server
|
||||
|
||||
if flag(lua)
|
||||
build-depends: hslua-cli >= 1.4.1 && < 1.5,
|
||||
pandoc-lua-engine >= 0.2.1 && < 0.3,
|
||||
temporary >= 1.1 && < 1.4
|
||||
hs-source-dirs: lua
|
||||
else
|
||||
hs-source-dirs: no-lua
|
||||
@@ -1,3 +1,110 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 10:14:15 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.8.3.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 20 10:28:23 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.8.2.1.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 5 20:39:45 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.8.2.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 29 14:46:56 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.8.1.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 6 21:55:40 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.8.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 11 10:51:31 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Install man pages. [bsc#1172058]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 29 07:14:22 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.7.0.2.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat May 17 19:59:00 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.7.0.1.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 15 04:27:03 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.7.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Mar 16 18:57:12 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.6.4.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 9 22:04:24 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.6.3.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jan 12 22:38:05 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.6.2.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 23 19:47:22 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.6.1.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 8 05:30:01 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.6.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 5 21:06:35 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.5.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 10 17:26:13 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.4.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 29 00:07:15 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.3.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 24 21:19:11 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update pandoc-cli to version 3.2.1.
|
||||
Upstream does not provide a change log file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 15 15:27:11 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package pandoc-cli
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,13 +17,12 @@
|
||||
|
||||
|
||||
Name: pandoc-cli
|
||||
Version: 3.2
|
||||
Version: 3.8.3
|
||||
Release: 0
|
||||
Summary: Conversion between documentation formats
|
||||
License: GPL-2.0-or-later
|
||||
URL: https://hackage.haskell.org/package/%{name}
|
||||
Source0: https://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz
|
||||
Source1: https://hackage.haskell.org/package/%{name}-%{version}/revision/1.cabal#/%{name}.cabal
|
||||
BuildRequires: ghc-Cabal-devel
|
||||
BuildRequires: ghc-base-devel
|
||||
BuildRequires: ghc-base-prof
|
||||
@@ -57,7 +56,6 @@ convert between markup formats.
|
||||
|
||||
%prep
|
||||
%autosetup
|
||||
cp -p %{SOURCE1} %{name}.cabal
|
||||
|
||||
%build
|
||||
%define cabal_configure_options -f+lua -f+server
|
||||
@@ -65,9 +63,14 @@ cp -p %{SOURCE1} %{name}.cabal
|
||||
|
||||
%install
|
||||
%ghc_bin_install
|
||||
install -v -D -m 644 -t %{buildroot}/%{_mandir}/man1/ man/*.1
|
||||
gzip -v %{buildroot}%{_mandir}/man1/*.1
|
||||
|
||||
%files
|
||||
%license COPYING.md
|
||||
%{_bindir}/pandoc
|
||||
%{_mandir}/man1/pandoc.1%{?ext_man}
|
||||
%{_mandir}/man1/pandoc-lua.1%{?ext_man}
|
||||
%{_mandir}/man1/pandoc-server.1%{?ext_man}
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user