Script 'mail_helper' called by obssrc
Hello community,

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

Package is "ghc-topograph"

Tue Apr  4 21:24:08 2023 rev:8 rq:1076089 version:1.0.0.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-topograph/ghc-topograph.changes      
2022-10-13 15:43:39.286914739 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-topograph.new.19717/ghc-topograph.changes   
2023-04-04 21:24:25.766559118 +0200
@@ -1,0 +2,11 @@
+Thu Mar 30 17:08:42 UTC 2023 - Peter Simons <[email protected]>
+
+- Updated spec file to conform with ghc-rpm-macros-2.5.2.
+
+-------------------------------------------------------------------
+Sun Mar 19 10:01:14 UTC 2023 - Peter Simons <[email protected]>
+
+- Update topograph to version 1.0.0.2 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  topograph.cabal

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

Other differences:
------------------
++++++ ghc-topograph.spec ++++++
--- /var/tmp/diff_new_pack.VN3j0V/_old  2023-04-04 21:24:26.290562086 +0200
+++ /var/tmp/diff_new_pack.VN3j0V/_new  2023-04-04 21:24:26.294562109 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-topograph
 #
-# 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 topograph
+%global pkgver %{pkg_name}-%{version}
 Name:           ghc-%{pkg_name}
 Version:        1.0.0.2
 Release:        0
@@ -24,12 +25,19 @@
 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-compat-devel
+BuildRequires:  ghc-base-compat-prof
+BuildRequires:  ghc-base-devel
 BuildRequires:  ghc-base-orphans-devel
+BuildRequires:  ghc-base-orphans-prof
+BuildRequires:  ghc-base-prof
 BuildRequires:  ghc-containers-devel
+BuildRequires:  ghc-containers-prof
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-vector-devel
+BuildRequires:  ghc-vector-prof
 ExcludeArch:    %{ix86}
 
 %description
@@ -51,8 +59,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
@@ -71,4 +96,9 @@
 
 %files devel -f %{name}-devel.files
 
+%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

++++++ topograph.cabal ++++++
cabal-version:   2.2
name:            topograph
version:         1.0.0.2
x-revision:      1
synopsis:        Directed acyclic graphs.
category:        Data, Graph
description:
  Directed acyclic graphs can be sorted topographically.
  Existence of topographic ordering allows writing many graph algorithms 
efficiently.
  And many graphs, e.g. most dependency graphs are acyclic!
  .
  There are some algorithms built-in: dfs, transpose, transitive closure,
  transitive reduction...
  Some algorithms even become not-so-hard to implement, like a longest path!

homepage:        https://github.com/phadej/topograph
bug-reports:     https://github.com/phadej/topograph/issues
license:         BSD-3-Clause
license-file:    LICENSE
author:          Oleg Grenrus <[email protected]>
maintainer:      Oleg.Grenrus <[email protected]>
copyright:       (c) 2018-2019 Oleg Grenrus
build-type:      Simple
extra-doc-files:
  dag-original.png
  dag-closure.png
  dag-reduction.png
  dag-transpose.png
  dag-tree.png

tested-with:
  GHC ==7.6.3
   || ==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.7
   || ==9.4.4
   || ==9.6.1

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

library
  exposed-modules:  Topograph
  build-depends:
    , base          >=4.6     && <4.19
    , base-compat   ^>=0.10.5 || ^>=0.11.0 || ^>=0.12.0 || ^>=0.13.0
    , base-orphans  ^>=0.8 || ^>=0.9.0
    , containers    ^>=0.5.0.0 || ^>=0.6.0.1
    , vector        ^>=0.12 || ^>=0.13

  other-extensions:
    RankNTypes
    RecordWildCards
    ScopedTypeVariables

  hs-source-dirs:   src
  default-language: Haskell2010

Reply via email to