Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-text-manipulate for 
openSUSE:Factory checked in at 2022-02-11 23:09:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-text-manipulate (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-text-manipulate.new.1956 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-text-manipulate"

Fri Feb 11 23:09:45 2022 rev:4 rq:953541 version:0.3.0.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-text-manipulate/ghc-text-manipulate.changes  
2020-12-22 11:50:24.870053390 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-text-manipulate.new.1956/ghc-text-manipulate.changes
        2022-02-11 23:11:43.751348520 +0100
@@ -1,0 +2,6 @@
+Mon Jan  3 18:30:57 UTC 2022 - Peter Simons <[email protected]>
+
+- Update text-manipulate to version 0.3.0.0 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  text-manipulate.cabal

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

Other differences:
------------------
++++++ ghc-text-manipulate.spec ++++++
--- /var/tmp/diff_new_pack.m92j7y/_old  2022-02-11 23:11:44.139349643 +0100
+++ /var/tmp/diff_new_pack.m92j7y/_new  2022-02-11 23:11:44.139349643 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-text-manipulate
 #
-# 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:        MPL-2.0
 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-rpm-macros
 BuildRequires:  ghc-text-devel
@@ -62,6 +63,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ text-manipulate.cabal ++++++
name:               text-manipulate
version:            0.3.0.0
x-revision: 1
synopsis:
  Case conversion, word boundary manipulation, and textual subjugation.

homepage:           https://github.com/brendanhay/text-manipulate
license:            MPL-2.0
license-file:       LICENSE
author:             Brendan Hay
maintainer:         Brendan Hay <[email protected]>
copyright:          Copyright (c) 2014-2020 Brendan Hay
category:           Data, Text
build-type:         Simple
extra-source-files: README.md
cabal-version:      >=2.0
description:
  Manipulate identifiers and structurally non-complex pieces
  of text by delimiting word boundaries via a combination of whitespace,
  control-characters, and case-sensitivity.
  .
  Has support for common idioms like casing of programmatic variable names,
  taking, dropping, and splitting by word, and modifying the first character
  of a piece of text.
  .
  /Caution:/ this library makes heavy use of the 
<http://hackage.haskell.org/package/text text>
  library's internal loop optimisation framework. Since internal modules are not
  guaranteed to have a stable API there is potential for build breakage when
  the text dependency is upgraded. Consider yourself warned!

source-repository head
  type:     git
  location: git://github.com/brendanhay/text-manipulate.git

library
  default-language: Haskell2010
  hs-source-dirs:   src
  ghc-options:      -Wall
  exposed-modules:
    Data.Text.Lazy.Manipulate
    Data.Text.Manipulate

  other-modules:
    Data.Text.Manipulate.Internal.Fusion
    Data.Text.Manipulate.Internal.Types

  build-depends:
      base  >=4.12 && <5
    , text  >=1.1 && <1.3

benchmark benchmarks
  type:             exitcode-stdio-1.0
  default-language: Haskell2010
  main-is:          Main.hs
  hs-source-dirs:   bench
  ghc-options:      -Wall -O2 -threaded -with-rtsopts=-T
  build-depends:
      base             >=4.12    && <5
    , criterion        >=1.0.0.2
    , text
    , text-manipulate

test-suite tests
  type:             exitcode-stdio-1.0
  default-language: Haskell2010
  hs-source-dirs:   test
  main-is:          Main.hs
  ghc-options:      -Wall -threaded
  build-depends:
      base             >=4.12 && <5
    , tasty            >=0.8
    , tasty-hunit      >=0.8
    , text
    , text-manipulate

Reply via email to