Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-conduit for openSUSE:Factory 
checked in at 2023-01-18 13:09:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-conduit (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-conduit.new.32243 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-conduit"

Wed Jan 18 13:09:45 2023 rev:34 rq:1059059 version:1.3.4.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-conduit/ghc-conduit.changes  2022-10-13 
15:44:38.055029463 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-conduit.new.32243/ghc-conduit.changes       
2023-01-18 13:09:55.060503741 +0100
@@ -1,0 +2,6 @@
+Mon Oct 24 07:21:49 UTC 2022 - Peter Simons <psim...@suse.com>
+
+- Update conduit to version 1.3.4.3 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  conduit.cabal

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

Other differences:
------------------
++++++ ghc-conduit.spec ++++++
--- /var/tmp/diff_new_pack.7zNuGs/_old  2023-01-18 13:09:55.664507210 +0100
+++ /var/tmp/diff_new_pack.7zNuGs/_new  2023-01-18 13:09:55.668507233 +0100
@@ -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:  ghc-Cabal-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-directory-devel
@@ -76,6 +77,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ conduit.cabal ++++++
Name:                conduit
Version:             1.3.4.3
x-revision: 1
Synopsis:            Streaming data processing library.
description:
    `conduit` is a solution to the streaming data problem, allowing for 
production,
    transformation, and consumption of streams of data in constant memory. It 
is an
    alternative to lazy I\/O which guarantees deterministic resource handling.
    .
    For more information about conduit in general, and how this package in
    particular fits into the ecosystem, see [the conduit
    homepage](https://github.com/snoyberg/conduit#readme).
    .
    Hackage documentation generation is not reliable. For up to date 
documentation, please see: <http://www.stackage.org/package/conduit>.
License:             MIT
License-file:        LICENSE
Author:              Michael Snoyman
Maintainer:          mich...@snoyman.com
Category:            Data, Conduit
Build-type:          Simple
Cabal-version:       >=1.10
Homepage:            http://github.com/snoyberg/conduit
extra-source-files:  test/main.hs
                   , test/doctests.hs
                   , test/subdir/dummyfile.txt
                   , README.md
                   , ChangeLog.md
                   , fusion-macros.h

Library
  default-language:    Haskell2010
  hs-source-dirs:      src
  Exposed-modules:     Data.Conduit
                       Data.Conduit.Combinators
                       Data.Conduit.List
                       Data.Conduit.Internal
                       Data.Conduit.Lift
                       Data.Conduit.Internal.Fusion
                       Data.Conduit.Internal.List.Stream
                       Data.Conduit.Combinators.Stream
                       Conduit
  other-modules:       Data.Conduit.Internal.Pipe
                       Data.Conduit.Internal.Conduit
                       Data.Conduit.Combinators.Unqualified
                       Data.Streaming.FileRead
                       Data.Streaming.Filesystem
  Build-depends:       base                     >= 4.12         && < 5
                     , resourcet                >= 1.2          && < 1.4
                     , transformers             >= 0.4
                     , mtl
                     , primitive
                     , unliftio-core
                     , exceptions
                     , mono-traversable         >= 1.0.7
                     , vector
                     , bytestring
                     , text
                     , filepath
                     , directory

  if os(windows)
    build-depends:     Win32
    other-modules:     System.Win32File
    cpp-options:       -DWINDOWS
  else
    build-depends:     unix

  ghc-options:         -Wall
  include-dirs:        .

test-suite conduit-test
    default-language:    Haskell2010
    hs-source-dirs: test
    main-is: main.hs
    other-modules: Data.Conduit.Extra.ZipConduitSpec
                 , Data.Conduit.StreamSpec
                 , Spec
                 , StreamSpec
    type: exitcode-stdio-1.0
    cpp-options:   -DTEST
    build-depends:   conduit
                   , base
                   , hspec >= 1.3
                   , QuickCheck >= 2.7
                   , transformers
                   , mtl
                   , resourcet
                   , containers
                   , exceptions >= 0.6
                   , safe
                   , split >= 0.2.0.0
                   , mono-traversable
                   , text
                   , vector
                   , directory
                   , bytestring
                   , silently
                   , filepath
                   , unliftio >= 0.2.4.0
    ghc-options:     -Wall

  if os(windows)
    cpp-options:     -DWINDOWS

--test-suite doctests
--    hs-source-dirs: test
--    main-is: doctests.hs
--    type: exitcode-stdio-1.0
--    ghc-options: -threaded
--    build-depends: base, directory, doctest >= 0.8

-- benchmark utf8-memory-usage
--     type: exitcode-stdio-1.0
--     hs-source-dirs: benchmarks
--     build-depends:  base
--                   , text-stream-decode
--                   , bytestring
--                   , text
--                   , conduit
--     main-is:        utf8-memory-usage.hs
--     ghc-options:    -Wall -O2 -with-rtsopts=-s

benchmark optimize-201408
    default-language:    Haskell2010
    type: exitcode-stdio-1.0
    hs-source-dirs: benchmarks
    build-depends:  base
                  , conduit
                  , vector
                  , deepseq
                  , containers
                  , transformers
                  , hspec
                  , mwc-random
                  , gauge
                  , kan-extensions
    main-is:        optimize-201408.hs
    ghc-options:    -Wall -O2 -rtsopts

benchmark unfused
    default-language:    Haskell2010
    type: exitcode-stdio-1.0
    hs-source-dirs: benchmarks
    build-depends:  base
                  , conduit
                  , gauge
                  , transformers
    main-is:        unfused.hs
    ghc-options:    -Wall -O2 -rtsopts

source-repository head
  type:     git
  location: git://github.com/snoyberg/conduit.git

Reply via email to