Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

ghc-pandoc-types-devel-1.22.2-150500.1.1 RPM for x86_64

From OpenSuSE Leap 15.5 for x86_64

Name: ghc-pandoc-types-devel Distribution: SUSE Linux Enterprise 15
Version: 1.22.2 Vendor: SUSE LLC <https://www.suse.com/>
Release: 150500.1.1 Build date: Tue Dec 13 19:48:58 2022
Group: Unspecified Build host: sheep63
Size: 23688945 Source RPM: ghc-pandoc-types-1.22.2-150500.1.1.src.rpm
Packager: https://www.suse.com/
Url: https://hackage.haskell.org/package/pandoc-types
Summary: Haskell pandoc-types library development files
This package provides the Haskell pandoc-types library development files.

Provides

Requires

License

GPL-2.0-only

Changelog

* Sat Apr 02 2022 psimons@suse.com
  - Update pandoc-types to version 1.22.2.
    [1.22.2]
    * Use StrictData in Text.Pandoc.Definition.
    * Add Walkable Meta(Value) Pandoc instances (Travis Cardwell).
* Mon Nov 01 2021 psimons@suse.com
  - Update pandoc-types to version 1.22.1.
    [1.22.1]
    * Text.Pandoc.Builder: add simpleFigure, simpleFigureWith,
      and the SimpleFigure bidirectional pattern synonym
      (Aner Lucero) [API change].
    * Allow bytestring 0.11 (Alexander Batischev).
    * Update stack resolver to lts-18.10
    * Allow aeson 2+.  Tested with aeson 2.0.1.0.
    * Allow transformers 0.6.
    * Fix incorrect table ColWidth documentation (#85, Nils Carlson).
      The documentation stated that the ColWidth represented the width
      of the column as a fraction of the table width when in represents
      a percentage of the text width.
* Thu Oct 07 2021 psimons@suse.com
  - Update pandoc-types to version 1.22 revision 1.
    Upstream has revised the Cabal build instructions on Hackage.
* Thu Dec 17 2020 mimi.vx@gmail.com
  - disable %{ix86} build
* Tue Oct 13 2020 psimons@suse.com
  - Update pandoc-types to version 1.22.
    [1.22]
    * Deprecate isNull from Builder:  null can serve just as well (#67).
      Use null instead of isNull in Arbitrary (Christian Despres, #84).
    * Use untagged JSON encoding for single-constructor types (#75, #76,
      Christian Despres).  All of the single constructor types related
      to Table are now represented in JSON either as arrays (for
      multi-argument constructors) or as the representation of the
      inner type (for single argument constructors). This behaviour
      for newtype-defined and multi-argument non-record types is now
      consistent across the entire JSON interface, with the exception
      of Pandoc itself (which is represented as a JSON object with
      additional metadata). Multi-argument records (of which Citation
      is the only example) are still represented as objects with the
      record accessors as keys.
    * The Meta and Citation types now use derived JSON serialization (newtype
      and generic, respectively). The format remains the same as before
      (Christian Despres).
    * New serialization tests now test that Meta and the Table types are
      encoded properly in JSON (Christian Despres).
    * Use TH To/FromJSON instances (Christian Despres).
    * Remove unused Legacy modules (#80, Despres).
      They are not exported, and are not used internally.
    * Change the table builder to permit looser intermediate table heads (#77,
      Christian Despres).
      The table builder (and the normalizeTableBody function) now permit
      cells in the intermediate head of a TableBody to extend past the
      RowHeadColumns. This allows for intermediate tables to have
      subheadings that extend across the entire table.
      Formerly the table builder would treat the intermediate head like the
      intermediate body, and clip or drop cells that extended past the row
      head.
    * Update QuickCheck lower bound.
    * Fix redundant pattern match.
* Tue Aug 18 2020 psimons@suse.com
  - Replace %setup -q with the more modern %autosetup macro.
* Tue Jun 23 2020 psimons@suse.com
  - Update pandoc-types to version 1.21.
    [1.21]
    * Add Underline constructor (#68, Vaibhav Sagar).
    * Improve table types to allow col, rowspans and more (#65, Christian
      Despres).  The additions include modification of the Block type, some
      newtypes related to tables, and changes to the table builders.  The table
      builder is now aware of the new Table constructor, and normalizes the
      input table appropriately, so that when laid onto a grid the resulting
      table has no empty spaces, overlapping cells, or cells that extend beyond
      their section boundary.
      Three properties of normalization are checked:
    - Normalization is idempotent.
    - Each row of a normalized table is an initial segment of the
      corresponding row in the unnormalized table, modulo changed cell
      dimensions, dropped cells, and padding with empty cells. This is only
      checked for the first row of the TableBody, however, due to row head
      difficulties.
    - The sum of the cell lengths in the first row of every
      normalized table section is always equal to the total table width.
      `simpleTable` has been changed so that a null header list becomes a
      TableHead with a null body, not a TableHead with a single empty row.
    * Bump QuickCheck upper bound.
    * Change lower bound for QuickCheck to 2.10 (needed for `liftShrink2`).
    * Small code quality improvements (Joseph C. Sible, #69).
    * Allow aeson 1.5 (#72, Felix Yan).
    * Fixed documentation typo (Merlin Göttlinger).
    * Add COMPLETE pragmas to the pattern definitions (Christian Despres).
* Tue Jun 16 2020 psimons@suse.com
  - Re-generate file with latest version of spec-cleaner.
* Thu May 07 2020 psimons@suse.com
  - Drop obsolete %setup hack to work around a missing Setup.hs file.
    New ghc-rpm-macros do this automatically.
* Wed Nov 13 2019 psimons@suse.com
  - Update pandoc-types to version 1.20.
    [1.20]
    * Change all uses of String in type definitions to strict Text
      (Christian Despres) [API change].  The MetaValue instances using String
      have been kept, and parallel ones using Text were added.
    * Remove the Arbitrary Text orphan instance (Christian Despres).
      This instance should not have been in the Text.Pandoc.Arbitrary, since
      it would have been exported with the rest of the instances in that
      module. Instead, more shrink* functions were added to compensate for
      the absence of this instance.
    * Add Text.Pandoc.Legacy.Definition (Christian Despres).
      To ease the transition to Text, this module provides an interface
      compatible with the String one, so that any unqualified imports of
      Text.Pandoc.Definition in other packages can be replaced by
      Text.Pandoc.Legacy.Definition without other code changes. This is done
      with PatternSynonyms.
      Some of the constructors of the types Meta, MetaValue, Block, Inline,
      Format, and Citation required PatternSynonym handling. The Attr and
      Target types had to be redefined, and certain functions had to be
      rewritten to handle String or the old Attr and Target types in this
      module. This module otherwise exports the definitions in
      Text.Pandoc.Definition unchanged.
      This is not a perfect drop-in replacement, since some imports like
      Inline(..) will no longer work. This may also cause incomplete pattern
      warnings when used, since the coverage checker does not seem to be
      aware of PatternSynonyms.
    * Add Text.Pandoc.Legacy.Builder (Christian Despres).
      Like Text.Pandoc.Legacy.Definition, this modules provides a
      compatibility interface while the transition to Text takes
      place. Unlike that module, this module only requires redefining the
      ToMetaValue and HasMeta classes and a few functions so that they use
      the old types. No PatternSynonyms are required.
    * Change Semigroup/Monoid instance for Meta.
      Previously `<>` was left-biased, so if meta1 and meta2 both
      contained a field 'foo', the value from meta1 would be retained
      in `meta1 <> meta2`, and the value from meta2 ignored.
      This is counterintuitive and doesn't work well with pandoc;
      for example, we want to be able to override a value in an
      earlier `--metadata-file` with a later one on the command line.
      It also makes the behavior of metadata more like other
      things (such as reference links, where later definitions
      take precedence over earlier ones).
      Note that this change may break some current workflows,
      if one is relying on metadata fields that occur later in
      a document to be overridden by those occurring earlier.
* Fri Nov 08 2019 psimons@suse.com
  - Drop obsolete group attributes.
* Wed Sep 25 2019 psimons@suse.com
  - Update pandoc-types to version 1.17.6.1.
    [1.17.6.1]
    * Relax version bound for string-qq.
* Sat Aug 24 2019 psimons@suse.com
  - Update pandoc-types to version 1.17.6.
    [1.17.6]
    * Walk: export walk and query helpers (Albert Krewinkel) [API change].
      The `walk*M` and `query*` functions are helpful when defining new
      `Walkable` instances.
    * Allow QuickCheck 2.13.
    * Document meaning of Int in ListAttributes (#45).
    * Update copyright year spans to include 2019 (Albert Krewinkel).
    * Remove CPP instructions for GHC versions < 7.10 (Albert Krewinkel).
    * update list of GHC versions used for testing (Albert Krewinkel).
    * Fix compiler and hlint warnings (Pete Ryland).
* Tue Jun 11 2019 psimons@suse.com
  - Update Cabal file for more accurate build dependencies.
* Sun Mar 31 2019 psimons@suse.com
  - Update build instructions to allow latest version of QuickCheck.
* Mon Oct 29 2018 psimons@suse.com
  - Update pandoc-types to version 1.17.5.4.
    [1.17.5.4]
    * Put NFData in scope for ghc < 7.10.
    * Reduce deepseq lower bound for ghc < 7.10.
* Mon Oct 22 2018 psimons@suse.com
  - Update pandoc-types to version 1.17.5.3.
    [1.17.5.3]
    * For ghc < 7.10, constrain deepseq-generics to >= 0.2, which no
      longer exprots NFData from deepseq. Add deepseq dependency.
* Sat Oct 20 2018 psimons@suse.com
  - Update pandoc-types to version 1.17.5.2.
    [1.17.5.2]
    * Bump upper bound for deepseq-generics, QuickCheck, criterion.
    * Implement QuickCheck shrinking for Inlines and Blocks (Alexander Krotov).
* Wed Jul 18 2018 psimons@suse.com
  - Cosmetic: replace tabs with blanks, strip trailing white space,
    and update copyright headers with spec-cleaner.
* Fri Jul 13 2018 psimons@suse.com
  - Update pandoc-types to version 1.17.5.1.
    [1.17.5.1]
    * Declare the ToMetaValue instance for String as OVERLAPPING (#46).
    [1.17.5]
    * Bump upper bounds for aeson, base.
    * Allow building on older ghc versions (George Wilson).
    * Text.Pandoc.Arbitrary: generate SoftBreaks and LineBreaks
      (Alexander Krotov).
    * Pad table rows up to maximum row length, to guarantee that
      all rows have the same number of columns
      (see jgm/pandoc#4059, Francesco Occhipinti).
    * Make String an instance of ToMetaValue (Alexander Krotov).
* Mon May 14 2018 psimons@suse.com
  - Update pandoc-types to version 1.17.4.2 revision 1.
    * Import Semigroups when needed rather than using CPP.
    * Bump criterion upper bound.
    * Add Semigroup instances for Pandoc, Meta, Inlines, Blocks
      (if base >= 4.9).  This is needed for the library to compile
      with ghc 8.4.
    * Bumped criterion upper bound.
    * Bumped upper bounds for criterion and QuickCheck.
    * Added Walkable instances for `[Inline] Inline` and `[Block] Block`.
    * Provide default implementation for walk (Albert Krewinkel).
      The implementations for `walk` and `walkM` are very similar, so a
      default method is provided which implements the former in terms of the
      latter. This change should not affect performance, as the `Identity`
      functor, which is used in the default definition, is a newtype that
      should be eliminated at compile time.  (This requires a dependency
      on transformers for ghc 7.8.x.)
    * Force optimizations when compiling Walk module (Albert Krewinkel).
    * Add `Applicative m` to the context of walkM (Albert Krewinkel).
      The acceptance of AMP makes this a natural change.
    * Add `Walkable [Block]` and `Walkable [Inline]` instances (Albert
      Krewinkel).
    * Factored out duplicate code in Walk.
    * Added benchmark.
    * Text.Pandoc.JSON: Use `walk` instead of `bottomUp` in the
      `ToJSONFilter` instance for `a -> [a]`.  Note that behavior will be
      slightly different, since bottomUp's treatment of a function `[a] -> [a]`
      is to apply it to each sublist of a list, while walk applies it only to
      maximal sublists.  Usually the latter behavior is what is wanted, and the
      former can be simulated when needed.  But there may be existing filters
      that need to be rewritten in light of the new behavior.
    * Better consistency in simpleTable and table (jgm/pandoc#3648).
      If `headers` is empty, we populate it with empty cells, using the rows
      to determine number of columns.  We also ensure that there are numcols
      alignments and column widths.
    * Make sure Div and Span occur in Arbitrary instances.
    * Bump dependency upper bounds.
    * Removed unused mapConst.
* Thu Aug 03 2017 psimons@suse.com
  - Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
* Mon Jun 19 2017 psimons@suse.com
  - Update to version 1.17.0.5 revision 4.
* Mon Apr 24 2017 psimons@suse.com
  - Update to version 1.17.0.5 revision 3 with cabal2obs.
* Wed Mar 22 2017 psimons@suse.com
  - Update to version 1.17.0.5 revision 2 with cabal2obs.
* Thu Mar 02 2017 psimons@suse.com
  - Update to version 1.17.0.5 revision 1 with cabal2obs.
* Sun Feb 12 2017 psimons@suse.com
  - Update to version 1.17.0.5 with cabal2obs.
* Sun Aug 21 2016 psimons@suse.com
  - Update to version 1.16.1.1 revision 0 with cabal2obs.
* Sun Jul 10 2016 psimons@suse.com
  - Update to version 1.16.1 revision 0 with cabal2obs.
* Thu Feb 11 2016 mimi.vx@gmail.com
  -  update to 1.16.1
    * Export pandocTypesVersion from Text.Pandoc.Definition.
* Sat Jan 23 2016 mimi.vx@gmail.com
  - update to 1.16.0.1
    * Added Attr field to Image and Link.
    * Added SoftBreak constructor to Inline
* Sun Sep 27 2015 mimi.vx@gmail.com
  - update to 1.12.4.7
* Sun Jul 19 2015 mimi.vx@gmail.com
  - update to 1.12.4.5
* Mon Jun 08 2015 mimi.vx@gmail.com
  - update to 1.12.4.4
* Sun May 31 2015 mimi.vx@gmail.com
  - change license file to COPYING
* Sun May 31 2015 mimi.vx@gmail.com
  - update to 1.12.4.3
* Thu Apr 23 2015 mimi.vx@gmail.com
  - update to 1.12.4.2

Files

/usr/lib64/ghc-8.10.7/package.conf.d/pandoc-types-1.22.2.conf
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Paths_pandoc_types.dyn_hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Paths_pandoc_types.hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Paths_pandoc_types.p_hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/Arbitrary.dyn_hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/Arbitrary.hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/Arbitrary.p_hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/Builder.dyn_hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/Builder.hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/Builder.p_hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/Definition.dyn_hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/Definition.hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/Definition.p_hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/Generic.dyn_hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/Generic.hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/Generic.p_hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/JSON.dyn_hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/JSON.hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/JSON.p_hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/Walk.dyn_hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/Walk.hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/Text/Pandoc/Walk.p_hi
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/libHSpandoc-types-1.22.2-3pT7B4fuewzDMjsEo1bPxn.a
/usr/lib64/ghc-8.10.7/pandoc-types-1.22.2/libHSpandoc-types-1.22.2-3pT7B4fuewzDMjsEo1bPxn_p.a
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/Text-Pandoc-Arbitrary.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/Text-Pandoc-Builder.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/Text-Pandoc-Definition.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/Text-Pandoc-Generic.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/Text-Pandoc-JSON.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/Text-Pandoc-Walk.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-60.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-A.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-All.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-B.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-C.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-D.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-E.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-F.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-H.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-I.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-L.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-M.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-N.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-O.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-P.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-Q.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-R.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-S.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-T.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-U.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index-W.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/doc-index.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/haddock-bundle.min.js
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/index.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/linuwial.css
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/meta.json
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/pandoc-types.haddock
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/pandoc-types.txt
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/quick-jump.css
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/src
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/src/Paths_pandoc_types.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/src/Text.Pandoc.Arbitrary.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/src/Text.Pandoc.Builder.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/src/Text.Pandoc.Definition.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/src/Text.Pandoc.Generic.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/src/Text.Pandoc.JSON.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/src/Text.Pandoc.Walk.html
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/src/highlight.js
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/src/style.css
/usr/share/doc/ghc-8.10.7/html/libraries/pandoc-types-1.22.2/synopsis.png
/usr/share/doc/packages/ghc-pandoc-types-devel
/usr/share/doc/packages/ghc-pandoc-types-devel/changelog


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 20:05:44 2024