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 2021-03-10 08:55:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-topograph (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-topograph.new.2378 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-topograph"

Wed Mar 10 08:55:48 2021 rev:3 rq:877681 version:1.0.0.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-topograph/ghc-topograph.changes      
2020-12-22 11:47:57.477935077 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-topograph.new.2378/ghc-topograph.changes    
2021-03-10 08:57:46.202920862 +0100
@@ -1,0 +2,6 @@
+Sun Feb 21 12:47:43 UTC 2021 - psim...@suse.com
+
+- Update topograph to version 1.0.0.1 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  topograph.cabal

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

Other differences:
------------------
++++++ ghc-topograph.spec ++++++
--- /var/tmp/diff_new_pack.F3jWII/_old  2021-03-10 08:57:46.850921531 +0100
+++ /var/tmp/diff_new_pack.F3jWII/_new  2021-03-10 08:57:46.850921531 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-topograph
 #
-# 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-base-compat-devel
 BuildRequires:  ghc-base-orphans-devel
@@ -53,6 +54,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ topograph.cabal ++++++
cabal-version:   2.2
name:            topograph
version:         1.0.0.1
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 <oleg.gren...@iki.fi>
maintainer:      Oleg.Grenrus <oleg.gren...@iki.fi>
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.4
   || ==9.0.1

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

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

  other-extensions:
    RankNTypes
    RecordWildCards
    ScopedTypeVariables

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

Reply via email to