Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-dec for openSUSE:Factory checked 
in at 2023-04-04 21:19:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-dec (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-dec.new.19717 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-dec"

Tue Apr  4 21:19:40 2023 rev:6 rq:1075850 version:0.0.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-dec/ghc-dec.changes  2022-10-13 
15:41:50.678702722 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-dec.new.19717/ghc-dec.changes       
2023-04-04 21:19:49.700963916 +0200
@@ -1,0 +2,11 @@
+Thu Mar 30 17:06:34 UTC 2023 - Peter Simons <[email protected]>
+
+- Updated spec file to conform with ghc-rpm-macros-2.5.2.
+
+-------------------------------------------------------------------
+Tue Mar 14 15:17:16 UTC 2023 - Peter Simons <[email protected]>
+
+- Update dec to version 0.0.5 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  dec.cabal

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

Other differences:
------------------
++++++ ghc-dec.spec ++++++
--- /var/tmp/diff_new_pack.IATNGY/_old  2023-04-04 21:19:50.184967001 +0200
+++ /var/tmp/diff_new_pack.IATNGY/_new  2023-04-04 21:19:50.192967052 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-dec
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,6 +17,7 @@
 
 
 %global pkg_name dec
+%global pkgver %{pkg_name}-%{version}
 Name:           ghc-%{pkg_name}
 Version:        0.0.5
 Release:        0
@@ -24,8 +25,12 @@
 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-base-devel
+BuildRequires:  ghc-base-prof
 BuildRequires:  ghc-boring-devel
+BuildRequires:  ghc-boring-prof
 BuildRequires:  ghc-rpm-macros
 ExcludeArch:    %{ix86}
 
@@ -46,8 +51,25 @@
 %description devel
 This package provides the Haskell %{pkg_name} library development files.
 
+%package -n ghc-%{pkg_name}-doc
+Summary:        Haskell %{pkg_name} library documentation
+Requires:       ghc-filesystem
+BuildArch:      noarch
+
+%description -n ghc-%{pkg_name}-doc
+This package provides the Haskell %{pkg_name} library documentation.
+
+%package -n ghc-%{pkg_name}-prof
+Summary:        Haskell %{pkg_name} profiling library
+Requires:       ghc-%{pkg_name}-devel = %{version}-%{release}
+Supplements:    (ghc-%{pkg_name}-devel and ghc-prof)
+
+%description -n ghc-%{pkg_name}-prof
+This package provides the Haskell %{pkg_name} profiling library.
+
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build
@@ -67,4 +89,9 @@
 %files devel -f %{name}-devel.files
 %doc ChangeLog.md
 
+%files -n ghc-%{pkg_name}-doc -f ghc-%{pkg_name}-doc.files
+%license LICENSE
+
+%files -n ghc-%{pkg_name}-prof -f ghc-%{pkg_name}-prof.files
+
 %changelog

++++++ dec.cabal ++++++
cabal-version:      >=1.10
name:               dec
version:            0.0.5
x-revision:         1
synopsis:           Decidable propositions.
category:           Data, Dependent Types
description:
  This package provides a @Dec@ type.
  .
  @
  type Neg a = a -> Void
  .
  data Dec a
  \    = Yes a
  \    | No (Neg a)
  @

homepage:           https://github.com/phadej/dec
bug-reports:        https://github.com/phadej/dec/issues
license:            BSD3
license-file:       LICENSE
author:             Oleg Grenrus <[email protected]>
maintainer:         Oleg.Grenrus <[email protected]>
copyright:          (c) 2019-2021 Oleg Grenrus
build-type:         Simple
extra-source-files: ChangeLog.md
tested-with:
  GHC ==7.8.4
   || ==7.10.3
   || ==8.0.2
   || ==8.2.2
   || ==8.4.4
   || ==8.6.5
   || ==8.8.4
   || ==8.10.7
   || ==9.0.2
   || ==9.2.6
   || ==9.4.4
   || ==9.6.1

source-repository head
  type:     git
  location: https://github.com/phadej/dec.git

library
  default-language: Haskell2010
  hs-source-dirs:   src
  ghc-options:      -Wall -fprint-explicit-kinds
  exposed-modules:  Data.Type.Dec
  build-depends:
      base    >=4.7 && <4.19
    , boring  >=0.2 && <0.3

  if !impl(ghc >=7.10)
    build-depends: void >=0.7.3 && <0.8

  if impl(ghc >=9.0)
    -- these flags may abort compilation with GHC-8.10
    -- https://gitlab.haskell.org/ghc/ghc/-/merge_requests/3295
    ghc-options: -Winferred-safe-imports -Wmissing-safe-haskell-mode

Reply via email to