Hello community,

here is the log from the commit of package ghc-hi-file-parser for 
openSUSE:Leap:15.2 checked in at 2020-02-19 18:39:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/ghc-hi-file-parser (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.ghc-hi-file-parser.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-hi-file-parser"

Wed Feb 19 18:39:12 2020 rev:1 rq:771324 version:0.1.0.0

Changes:
--------
New Changes file:

--- /dev/null   2019-12-19 10:12:34.003146842 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.ghc-hi-file-parser.new.26092/ghc-hi-file-parser.changes
       2020-02-19 18:39:13.294043747 +0100
@@ -0,0 +1,10 @@
+-------------------------------------------------------------------
+Fri Nov  8 16:13:50 UTC 2019 - Peter Simons <[email protected]>
+
+- Drop obsolete group attributes.
+
+-------------------------------------------------------------------
+Sat Jun 15 08:37:42 UTC 2019 - [email protected]
+
+- Add hi-file-parser at version 0.1.0.0.
+

New:
----
  ghc-hi-file-parser.changes
  ghc-hi-file-parser.spec
  hi-file-parser-0.1.0.0.tar.gz
  hi-file-parser.cabal

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

Other differences:
------------------
++++++ ghc-hi-file-parser.spec ++++++
#
# spec file for package ghc-hi-file-parser
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via https://bugs.opensuse.org/
#


%global pkg_name hi-file-parser
%bcond_with tests
Name:           ghc-%{pkg_name}
Version:        0.1.0.0
Release:        0
Summary:        Parser for GHC's hi files
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/2.cabal#/%{pkg_name}.cabal
BuildRequires:  ghc-Cabal-devel
BuildRequires:  ghc-binary-devel
BuildRequires:  ghc-bytestring-devel
BuildRequires:  ghc-rio-devel
BuildRequires:  ghc-rpm-macros
BuildRequires:  ghc-vector-devel
%if %{with tests}
BuildRequires:  ghc-hspec-devel
%endif

%description
Parser for GHC's hi files.

%package devel
Summary:        Haskell %{pkg_name} library development files
Requires:       %{name} = %{version}-%{release}
Requires:       ghc-compiler = %{ghc_version}
Requires(post): ghc-compiler = %{ghc_version}
Requires(postun): ghc-compiler = %{ghc_version}

%description devel
This package provides the Haskell %{pkg_name} library development files.

%prep
%setup -q -n %{pkg_name}-%{version}
cp -p %{SOURCE1} %{pkg_name}.cabal

%build
%ghc_lib_build

%install
%ghc_lib_install

%check
%cabal_test

%post devel
%ghc_pkg_recache

%postun devel
%ghc_pkg_recache

%files -f %{name}.files
%license LICENSE

%files devel -f %{name}-devel.files
%doc ChangeLog.md README.md

%changelog
++++++ hi-file-parser.cabal ++++++
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.31.1.
--
-- see: https://github.com/sol/hpack
--
-- hash: db65ce562f5a86a76d8eea816fde4c04ee3f75ab314861414f627cce3ae22187

name:           hi-file-parser
version:        0.1.0.0
x-revision: 2
synopsis:       Parser for GHC's hi files
description:    Please see the README on Github at 
<https://github.com/commercialhaskell/stack/blob/master/subs/hi-file-parser/README.md>
category:       Development
homepage:       https://github.com/commercialhaskell/stack#readme
bug-reports:    https://github.com/commercialhaskell/stack/issues
author:         Hussein Ait-Lahcen
maintainer:     [email protected]
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md
    test-files/iface/x64/ghc844/Main.hi
    test-files/iface/x64/ghc844/X.hi
    test-files/iface/x64/ghc822/Main.hi
    test-files/iface/x64/ghc822/X.hi
    test-files/iface/x64/ghc864/Main.hi
    test-files/iface/x64/ghc864/X.hi
    test-files/iface/x32/ghc844/Main.hi
    test-files/iface/x32/ghc802/Main.hi
    test-files/iface/x32/ghc7103/Main.hi
    test-files/iface/x32/ghc822/Main.hi

source-repository head
  type: git
  location: https://github.com/commercialhaskell/stack

library
  exposed-modules:
      HiFileParser
  other-modules:
      Paths_hi_file_parser
  hs-source-dirs:
      src
  ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates 
-Wincomplete-uni-patterns -Wredundant-constraints
  build-depends:
      base >=4.10 && <5
    , binary >=0.8.5.1
    , bytestring >=0.10.8.2
    , rio >=0.1.9.2
    , vector >=0.12.0.1
  default-language: Haskell2010

test-suite hi-file-parser-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      HiFileParserSpec
      Paths_hi_file_parser
  hs-source-dirs:
      test
  ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates 
-Wincomplete-uni-patterns -Wredundant-constraints -threaded -rtsopts 
-with-rtsopts=-N
  build-depends:
      base >=4.10 && <5
    , binary >=0.8.5.1
    , bytestring >=0.10.8.2
    , hi-file-parser
    , hspec >=2.4.8
    , rio >=0.1.9.2
    , vector >=0.12.0.1
  default-language: Haskell2010

Reply via email to