Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-jira-wiki-markup for 
openSUSE:Factory checked in at 2022-08-01 21:30:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-jira-wiki-markup (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-jira-wiki-markup.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-jira-wiki-markup"

Mon Aug  1 21:30:01 2022 rev:10 rq:987053 version:1.4.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/ghc-jira-wiki-markup/ghc-jira-wiki-markup.changes    
    2021-06-01 10:40:46.057150745 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-jira-wiki-markup.new.1533/ghc-jira-wiki-markup.changes
      2022-08-01 21:30:13.061625263 +0200
@@ -1,0 +2,6 @@
+Fri Jun  3 07:23:33 UTC 2022 - Peter Simons <[email protected]>
+
+- Update jira-wiki-markup to version 1.4.0 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  jira-wiki-markup.cabal

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-jira-wiki-markup.spec ++++++
--- /var/tmp/diff_new_pack.HPaVcE/_old  2022-08-01 21:30:14.017628006 +0200
+++ /var/tmp/diff_new_pack.HPaVcE/_new  2022-08-01 21:30:14.033628052 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-jira-wiki-markup
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,6 +25,7 @@
 License:        MIT
 URL:            https://hackage.haskell.org/package/%{pkg_name}
 Source0:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
+Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
 BuildRequires:  chrpath
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-mtl-devel
@@ -54,6 +55,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ jira-wiki-markup.cabal ++++++
cabal-version:       2.0
name:                jira-wiki-markup
version:             1.4.0
x-revision: 1
synopsis:            Handle Jira wiki markup
description:         Parse jira wiki text into an abstract syntax tree for easy
                     transformation to other formats.
homepage:            https://github.com/tarleb/jira-wiki-markup
bug-reports:         https://github.com/tarleb/jira-wiki-markup/issues
license:             MIT
license-file:        LICENSE
author:              Albert Krewinkel
maintainer:          [email protected]
copyright:           ?? 2019???2021 Albert Krewinkel
category:            Text
build-type:          Simple
extra-doc-files:     README.md
                   , CHANGELOG.md
tested-with:         GHC == 8.0.2
                   , GHC == 8.2.2
                   , GHC == 8.4.4
                   , GHC == 8.6.5
                   , GHC == 8.8.3
                   , GHC == 8.10.4
                   , GHC == 9.0

source-repository head
  type:                git
  location:            https://github.com/tarleb/jira-wiki-markup.git

library
  hs-source-dirs:      src
  exposed-modules:     Text.Jira.Markup
                     , Text.Jira.Parser
                     , Text.Jira.Parser.Block
                     , Text.Jira.Parser.Core
                     , Text.Jira.Parser.Inline
                     , Text.Jira.Parser.PlainText
                     , Text.Jira.Parser.Shared
                     , Text.Jira.Printer

  build-depends:       base    >= 4.9   && < 5
                     , mtl     >= 2.2   && < 2.3
                     , parsec  >= 3.1   && < 3.2
                     , text    >= 1.1.1 && < 1.3 || >= 2.0 && < 2.1

  ghc-options:         -Wall
                       -Wincomplete-uni-patterns
                       -Wincomplete-record-updates
                       -Wcompat
                       -Widentities
                       -Wredundant-constraints
  if impl(ghc >= 8.4)
    ghc-options:         -fhide-source-paths

  default-language:    Haskell2010
  default-extensions:  OverloadedStrings

executable jira-wiki-markup
  hs-source-dirs:      app
  main-is:             Main.hs

  build-depends:       base    >= 4.9   && < 5
                     , text    >= 1.1.1 && < 1.3 || >= 2.0 && < 2.1
                     , jira-wiki-markup

  ghc-options:         -Wall
                       -threaded
                       -rtsopts
                       -with-rtsopts=-N
                       -Wincomplete-uni-patterns
                       -Wincomplete-record-updates
                       -Wcompat
                       -Widentities
                       -Wredundant-constraints
  if impl(ghc >= 8.4)
    ghc-options:         -fhide-source-paths

  default-language:    Haskell2010
  default-extensions:  OverloadedStrings

test-suite jira-wiki-markup-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             jira-wiki-markup-test.hs
  other-modules:       Text.Jira.ParserTests
                     , Text.Jira.Parser.BlockTests
                     , Text.Jira.Parser.InlineTests
                     , Text.Jira.PrinterTests

  build-depends:       base    >= 4.9   && < 5
                     , jira-wiki-markup
                     , parsec  >= 3.1   && < 3.2
                     , tasty
                     , tasty-hunit
                     , text    >= 1.1.1 && < 1.3 || >= 2.0 && < 2.1

  ghc-options:         -Wall
                       -threaded
                       -rtsopts
                       -with-rtsopts=-N
                       -Wincomplete-uni-patterns
                       -Wincomplete-record-updates
                       -Wcompat
                       -Widentities
                       -Wredundant-constraints
  if impl(ghc >= 8.4)
    ghc-options:         -fhide-source-paths

  default-language:    Haskell2010
  default-extensions:  OverloadedStrings

Reply via email to