Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-pandoc-lua-engine for
openSUSE:Factory checked in at 2025-01-05 15:29:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-pandoc-lua-engine (Old)
and /work/SRC/openSUSE:Factory/.ghc-pandoc-lua-engine.new.1881 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-pandoc-lua-engine"
Sun Jan 5 15:29:14 2025 rev:12 rq:1233972 version:0.4.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-pandoc-lua-engine/ghc-pandoc-lua-engine.changes
2024-12-20 23:11:30.094652131 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-pandoc-lua-engine.new.1881/ghc-pandoc-lua-engine.changes
2025-01-05 15:29:24.197189162 +0100
@@ -1,0 +2,6 @@
+Mon Dec 23 19:46:55 UTC 2024 - Peter Simons <[email protected]>
+
+- Update pandoc-lua-engine to version 0.4.1.
+ Upstream does not provide a change log file.
+
+-------------------------------------------------------------------
Old:
----
pandoc-lua-engine-0.4.tar.gz
New:
----
pandoc-lua-engine-0.4.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-pandoc-lua-engine.spec ++++++
--- /var/tmp/diff_new_pack.bbqxtE/_old 2025-01-05 15:29:25.165228979 +0100
+++ /var/tmp/diff_new_pack.bbqxtE/_new 2025-01-05 15:29:25.165228979 +0100
@@ -20,7 +20,7 @@
%global pkgver %{pkg_name}-%{version}
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.4
+Version: 0.4.1
Release: 0
Summary: Lua engine to power custom pandoc conversions
License: GPL-2.0-or-later
++++++ pandoc-lua-engine-0.4.tar.gz -> pandoc-lua-engine-0.4.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pandoc-lua-engine-0.4/pandoc-lua-engine.cabal
new/pandoc-lua-engine-0.4.1/pandoc-lua-engine.cabal
--- old/pandoc-lua-engine-0.4/pandoc-lua-engine.cabal 2001-09-09
03:46:40.000000000 +0200
+++ new/pandoc-lua-engine-0.4.1/pandoc-lua-engine.cabal 2001-09-09
03:46:40.000000000 +0200
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: pandoc-lua-engine
-version: 0.4
+version: 0.4.1
build-type: Simple
license: GPL-2.0-or-later
license-file: COPYING.md
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/pandoc-lua-engine-0.4/src/Text/Pandoc/Lua/Module/Pandoc.hs
new/pandoc-lua-engine-0.4.1/src/Text/Pandoc/Lua/Module/Pandoc.hs
--- old/pandoc-lua-engine-0.4/src/Text/Pandoc/Lua/Module/Pandoc.hs
2001-09-09 03:46:40.000000000 +0200
+++ new/pandoc-lua-engine-0.4.1/src/Text/Pandoc/Lua/Module/Pandoc.hs
2001-09-09 03:46:40.000000000 +0200
@@ -146,6 +146,7 @@
otherConstructors :: [DocumentedFunction PandocError]
otherConstructors =
[ mkAttr
+ , mkCaption
, mkCell
, mkAttributeList
, mkCitation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/pandoc-lua-engine-0.4/src/Text/Pandoc/Lua/Module/Utils.hs
new/pandoc-lua-engine-0.4.1/src/Text/Pandoc/Lua/Module/Utils.hs
--- old/pandoc-lua-engine-0.4/src/Text/Pandoc/Lua/Module/Utils.hs
2001-09-09 03:46:40.000000000 +0200
+++ new/pandoc-lua-engine-0.4.1/src/Text/Pandoc/Lua/Module/Utils.hs
2001-09-09 03:46:40.000000000 +0200
@@ -316,7 +316,11 @@
[ (fmap Shared.stringify . peekPandoc)
, (fmap Shared.stringify . peekInline)
, (fmap Shared.stringify . peekBlock)
+ , (fmap Shared.stringify . peekCaption)
+ , (fmap Shared.stringify . peekCell)
, (fmap Shared.stringify . peekCitation)
+ , (fmap Shared.stringify . peekTableHead)
+ , (fmap Shared.stringify . peekTableFoot)
, (fmap stringifyMetaValue . peekMetaValue)
, (fmap (const "") . peekAttr)
, (fmap (const "") . peekListAttributes)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/pandoc-lua-engine-0.4/test/lua/module/pandoc-utils.lua
new/pandoc-lua-engine-0.4.1/test/lua/module/pandoc-utils.lua
--- old/pandoc-lua-engine-0.4/test/lua/module/pandoc-utils.lua 2001-09-09
03:46:40.000000000 +0200
+++ new/pandoc-lua-engine-0.4.1/test/lua/module/pandoc-utils.lua
2001-09-09 03:46:40.000000000 +0200
@@ -223,6 +223,22 @@
local inlines = pandoc.Inlines{pandoc.Str 'a', pandoc.Subscript('b')}
assert.are_equal('ab', utils.stringify(inlines))
end),
+ test('Caption', function ()
+ local capt = pandoc.Caption(pandoc.Para{pandoc.Str 'a',
pandoc.Emph('b')})
+ assert.are_equal('ab', utils.stringify(capt))
+ end),
+ test('Cell', function ()
+ local cell = pandoc.Cell(pandoc.Para{pandoc.Str 'a', pandoc.Emph('b')})
+ assert.are_equal('ab', utils.stringify(cell))
+ end),
+ test('TableFoot', function ()
+ local tf = pandoc.TableFoot{pandoc.Row{pandoc.Cell{pandoc.Plain "x y"}}}
+ assert.are_equal('x y', utils.stringify(tf))
+ end),
+ test('TableHead', function ()
+ local th = pandoc.TableHead{pandoc.Row{pandoc.Cell{pandoc.Plain
"head1"}}}
+ assert.are_equal('head1', utils.stringify(th))
+ end),
test('Meta', function ()
local meta = pandoc.Meta{
a = pandoc.Inlines 'funny and ',