forked from pool/ghc-hi-file-parser
Accepting request 759407 from devel:languages:haskell
version update OBS-URL: https://build.opensuse.org/request/show/759407 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-hi-file-parser?expand=0&rev=2
This commit is contained in:
commit
e9e8e68934
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Nov 8 16:13:50 UTC 2019 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
- Drop obsolete group attributes.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 15 08:37:42 UTC 2019 - psimons@suse.com
|
Sat Jun 15 08:37:42 UTC 2019 - psimons@suse.com
|
||||||
|
|
||||||
|
@ -23,10 +23,9 @@ Version: 0.1.0.0
|
|||||||
Release: 0
|
Release: 0
|
||||||
Summary: Parser for GHC's hi files
|
Summary: Parser for GHC's hi files
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
Group: Development/Libraries/Haskell
|
|
||||||
URL: https://hackage.haskell.org/package/%{pkg_name}
|
URL: https://hackage.haskell.org/package/%{pkg_name}
|
||||||
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
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
|
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-binary-devel
|
BuildRequires: ghc-binary-devel
|
||||||
BuildRequires: ghc-bytestring-devel
|
BuildRequires: ghc-bytestring-devel
|
||||||
@ -42,7 +41,6 @@ Parser for GHC's hi files.
|
|||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Haskell %{pkg_name} library development files
|
Summary: Haskell %{pkg_name} library development files
|
||||||
Group: Development/Libraries/Haskell
|
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
Requires: ghc-compiler = %{ghc_version}
|
Requires: ghc-compiler = %{ghc_version}
|
||||||
Requires(post): ghc-compiler = %{ghc_version}
|
Requires(post): ghc-compiler = %{ghc_version}
|
||||||
|
@ -8,7 +8,7 @@ cabal-version: 1.12
|
|||||||
|
|
||||||
name: hi-file-parser
|
name: hi-file-parser
|
||||||
version: 0.1.0.0
|
version: 0.1.0.0
|
||||||
x-revision: 1
|
x-revision: 2
|
||||||
synopsis: Parser for GHC's hi files
|
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>
|
description: Please see the README on Github at <https://github.com/commercialhaskell/stack/blob/master/subs/hi-file-parser/README.md>
|
||||||
category: Development
|
category: Development
|
||||||
@ -47,10 +47,10 @@ library
|
|||||||
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
|
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
|
||||||
build-depends:
|
build-depends:
|
||||||
base >=4.10 && <5
|
base >=4.10 && <5
|
||||||
, binary (>=0.8.5.1 && <0.9) || (>=0.8.6.0 && <0.9)
|
, binary >=0.8.5.1
|
||||||
, bytestring >=0.10.8.2 && <0.11
|
, bytestring >=0.10.8.2
|
||||||
, rio >=0.1.9.2 && <0.2
|
, rio >=0.1.9.2
|
||||||
, vector (>=0.12.0.1 && <0.13) || (>=0.12.0.2 && <0.13) || (>=0.12.0.3 && <0.13)
|
, vector >=0.12.0.1
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
|
||||||
test-suite hi-file-parser-test
|
test-suite hi-file-parser-test
|
||||||
@ -64,10 +64,10 @@ test-suite hi-file-parser-test
|
|||||||
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
|
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
|
||||||
build-depends:
|
build-depends:
|
||||||
base >=4.10 && <5
|
base >=4.10 && <5
|
||||||
, binary (>=0.8.5.1 && <0.9) || (>=0.8.6.0 && <0.9)
|
, binary >=0.8.5.1
|
||||||
, bytestring >=0.10.8.2 && <0.11
|
, bytestring >=0.10.8.2
|
||||||
, hi-file-parser
|
, hi-file-parser
|
||||||
, hspec (>=2.4.8 && <2.5) || (>=2.5.5 && <2.6) || (>=2.7.1 && <2.8)
|
, hspec >=2.4.8
|
||||||
, rio >=0.1.9.2 && <0.2
|
, rio >=0.1.9.2
|
||||||
, vector (>=0.12.0.1 && <0.13) || (>=0.12.0.2 && <0.13) || (>=0.12.0.3 && <0.13)
|
, vector >=0.12.0.1
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
Loading…
Reference in New Issue
Block a user