Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghcid for openSUSE:Factory checked 
in at 2022-10-13 15:44:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghcid (Old)
 and      /work/SRC/openSUSE:Factory/.ghcid.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghcid"

Thu Oct 13 15:44:24 2022 rev:4 rq:1009724 version:0.8.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghcid/ghcid.changes      2020-12-22 
11:49:52.466027762 +0100
+++ /work/SRC/openSUSE:Factory/.ghcid.new.2275/ghcid.changes    2022-10-13 
15:45:01.895076002 +0200
@@ -1,0 +2,6 @@
+Sat Sep 17 07:37:28 UTC 2022 - Peter Simons <psim...@suse.com>
+
+- Update ghcid to version 0.8.7 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------
@@ -15 +20,0 @@
-

New:
----
  ghcid.cabal

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

Other differences:
------------------
++++++ ghcid.spec ++++++
--- /var/tmp/diff_new_pack.D6MtNs/_old  2022-10-13 15:45:02.403076993 +0200
+++ /var/tmp/diff_new_pack.D6MtNs/_new  2022-10-13 15:45:02.407077001 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghcid
 #
-# Copyright (c) 2020 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:        BSD-3-Clause
 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-ansi-terminal-devel
 BuildRequires:  ghc-cmdargs-devel
@@ -70,6 +71,7 @@
 
 %prep
 %autosetup
+cp -p %{SOURCE1} %{name}.cabal
 
 %build
 %ghc_lib_build

++++++ ghcid.cabal ++++++
cabal-version:      >= 1.18
build-type:         Simple
name:               ghcid
version:            0.8.7
x-revision: 1
license:            BSD3
license-file:       LICENSE
category:           Development
author:             Neil Mitchell <ndmitch...@gmail.com>, jpmoresmau
maintainer:         Neil Mitchell <ndmitch...@gmail.com>
copyright:          Neil Mitchell 2014-2020
synopsis:           GHCi based bare bones IDE
description:
    Either \"GHCi as a daemon\" or \"GHC + a bit of an IDE\". A very simple 
Haskell development tool which shows you the errors in your project and updates 
them whenever you save. Run @ghcid --topmost --command=ghci@, where @--topmost@ 
makes the window on top of all others (Windows only) and @--command@ is the 
command to start GHCi on your project (defaults to @ghci@ if you have a @.ghci@ 
file, or else to @cabal repl@).
homepage:           https://github.com/ndmitchell/ghcid#readme
bug-reports:        https://github.com/ndmitchell/ghcid/issues
tested-with:        GHC==8.10.1, GHC==8.8.3, GHC==8.6.5, GHC==8.4.4, 
GHC==8.2.2, GHC==8.0.2
extra-doc-files:
    CHANGES.txt
    README.md

source-repository head
    type:     git
    location: https://github.com/ndmitchell/ghcid.git

library
    hs-source-dirs:  src
    default-language: Haskell2010
    build-depends:
        base >= 4.7 && < 5,
        filepath,
        time >= 1.5,
        directory >= 1.2,
        extra >= 1.6.20,
        process >= 1.1,
        ansi-terminal,
        cmdargs >= 0.10

    exposed-modules:
        Language.Haskell.Ghcid
    other-modules:
        Paths_ghcid
        Language.Haskell.Ghcid.Escape
        Language.Haskell.Ghcid.Parser
        Language.Haskell.Ghcid.Types
        Language.Haskell.Ghcid.Util

executable ghcid
    hs-source-dirs: src
    default-language: Haskell2010
    ghc-options: -main-is Ghcid.main -threaded -rtsopts
    main-is: Ghcid.hs
    build-depends:
        base >= 4.7 && < 5,
        filepath,
        time >= 1.5,
        directory >= 1.2,
        containers,
        fsnotify >= 0.3 && < 0.4,
        extra >= 1.6.20,
        process >= 1.1,
        cmdargs >= 0.10,
        ansi-terminal,
        terminal-size >= 0.3
    if os(windows)
        build-depends: Win32
    else
        build-depends: unix
    other-modules:
        Language.Haskell.Ghcid.Escape
        Language.Haskell.Ghcid.Parser
        Language.Haskell.Ghcid.Terminal
        Language.Haskell.Ghcid.Types
        Language.Haskell.Ghcid.Util
        Language.Haskell.Ghcid
        Paths_ghcid
        Session
        Wait

test-suite ghcid_test
    type:            exitcode-stdio-1.0
    hs-source-dirs:  src
    main-is:         Test.hs
    ghc-options:     -rtsopts -main-is Test.main -threaded -with-rtsopts=-K1K
    default-language: Haskell2010
    build-depends:
        base >= 4.7 && < 5,
        filepath,
        time >= 1.5,
        directory >= 1.2,
        process,
        containers,
        fsnotify,
        extra >= 1.6.6,
        ansi-terminal,
        terminal-size >= 0.3,
        cmdargs,
        tasty,
        tasty-hunit
    if os(windows)
        build-depends: Win32
    else
        build-depends: unix
    other-modules:
        Ghcid
        Language.Haskell.Ghcid
        Language.Haskell.Ghcid.Escape
        Language.Haskell.Ghcid.Parser
        Language.Haskell.Ghcid.Terminal
        Language.Haskell.Ghcid.Types
        Language.Haskell.Ghcid.Util
        Paths_ghcid
        Session
        Test.API
        Test.Ghcid
        Test.Parser
        Test.Util
        Wait

Reply via email to