Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-uri-encode for openSUSE:Factory 
checked in at 2021-02-16 22:39:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-uri-encode (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-uri-encode.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-uri-encode"

Tue Feb 16 22:39:04 2021 rev:6 rq:870880 version:1.5.0.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-uri-encode/ghc-uri-encode.changes    
2020-12-22 11:48:29.445960844 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-uri-encode.new.28504/ghc-uri-encode.changes 
2021-02-16 22:48:43.634569911 +0100
@@ -1,0 +2,6 @@
+Wed Feb  3 20:26:04 UTC 2021 - [email protected]
+
+- Update uri-encode to version 1.5.0.7 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  uri-encode.cabal

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

Other differences:
------------------
++++++ ghc-uri-encode.spec ++++++
--- /var/tmp/diff_new_pack.4vH8hT/_old  2021-02-16 22:48:44.282570417 +0100
+++ /var/tmp/diff_new_pack.4vH8hT/_new  2021-02-16 22:48:44.282570417 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-uri-encode
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,6 +24,7 @@
 License:        BSD-3-Clause
 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-network-uri-devel
@@ -48,6 +49,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ uri-encode.cabal ++++++
name:                uri-encode
version:             1.5.0.7
x-revision: 1
synopsis:            Unicode aware uri-encoding
description:         This package allows you to uri encode and uri decode
                     Strings, Texts and ByteString values.
cabal-version:       1.18
category:            Network, Web
author:              Silk
maintainer:          [email protected]
license:             BSD3
license-file:        LICENSE
build-type:          Simple

extra-doc-files:
  CHANGELOG.md
  LICENSE
  README.md

flag tools
  description:       Build executables
  default:           False
  manual:            True

flag network-uri
  description:       Get Network.URI from the network-uri package
  default:           True

source-repository head
  type:              git
  location:          https://github.com/silkapp/uri-encode.git

library
  ghc-options:       -Wall
  hs-source-dirs:    src
  exposed-modules:   Network.URI.Encode
  build-depends:
      base == 4.*
    , bytestring >= 0.9 && < 0.12
    , text >= 0.7 && < 1.3
    , utf8-string >= 0.3 && < 1.1
  if flag(network-uri)
    build-depends: network-uri >= 2.6
  else
    build-depends: network (>= 2.2 && < 2.4.1.0) || (> 2.4.1.0 && < 2.6)
  default-language: Haskell2010

executable uri-encode
  main-is:           URIEncode.hs
  ghc-options:       -Wall
  hs-source-dirs:    src
  if flag(tools)
    buildable:       True
    build-depends:
        base == 4.*
      , bytestring >= 0.9 && < 0.12
      , text >= 0.7 && < 1.3
      , utf8-string >= 0.3 && < 1.1
    if flag(network-uri)
      build-depends: network-uri >= 2.6
    else
      build-depends: network (>= 2.2 && < 2.4.1.0) || (> 2.4.1.0 && < 2.6)
  else
    buildable:      False
  default-language: Haskell2010

executable uri-decode
  main-is:           URIDecode.hs
  ghc-options:       -Wall
  hs-source-dirs:    src
  if flag(tools)
    buildable:       True
    build-depends:
        base == 4.*
      , bytestring >= 0.9 && < 0.12
      , text >= 0.7 && < 1.3
      , utf8-string >= 0.3 && < 1.1
    if flag(network-uri)
      build-depends: network-uri >= 2.6
    else
      build-depends: network (>= 2.2 && < 2.4.1.0) || (> 2.4.1.0 && < 2.6)
  else
    buildable:       False
  default-language: Haskell2010

Reply via email to