osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-hi-file-parser revision:10, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-hi-file-parser?expand=0&rev=18
This commit is contained in:
parent
2ed57fc6b5
commit
f00ec916c0
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 24 11:21:02 UTC 2021 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update hi-file-parser to version 0.1.1.0 revision 2.
|
||||||
|
## 0.1.1.0
|
||||||
|
|
||||||
|
Add `NFData` instances
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
|
Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ghc-hi-file-parser
|
# spec file for package ghc-hi-file-parser
|
||||||
#
|
#
|
||||||
# Copyright (c) 2020 SUSE LLC
|
# Copyright (c) 2021 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,7 +19,7 @@
|
|||||||
%global pkg_name hi-file-parser
|
%global pkg_name hi-file-parser
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 0.1.0.0
|
Version: 0.1.1.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
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:54ac6750d5e4ef93c64b255f672261ae4c80ef11f20d92c382736e09be11fa25
|
|
||||||
size 9344
|
|
3
hi-file-parser-0.1.1.0.tar.gz
Normal file
3
hi-file-parser-0.1.1.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:580f9d094bbcde53d5f34553ee214ccf0c6c760c504cbf3324bf9dbe4d4d67f1
|
||||||
|
size 9377
|
@ -1,19 +1,19 @@
|
|||||||
cabal-version: 1.12
|
cabal-version: 1.12
|
||||||
|
|
||||||
-- This file has been generated from package.yaml by hpack version 0.31.1.
|
-- This file has been generated from package.yaml by hpack version 0.33.0.
|
||||||
--
|
--
|
||||||
-- see: https://github.com/sol/hpack
|
-- see: https://github.com/sol/hpack
|
||||||
--
|
--
|
||||||
-- hash: db65ce562f5a86a76d8eea816fde4c04ee3f75ab314861414f627cce3ae22187
|
-- hash: af191a13968cedda5d64d117ea4e98f2223106716e965411a662809b08a5640c
|
||||||
|
|
||||||
name: hi-file-parser
|
name: hi-file-parser
|
||||||
version: 0.1.0.0
|
version: 0.1.1.0
|
||||||
x-revision: 2
|
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/hi-file-parser/blob/master/README.md>
|
||||||
category: Development
|
category: Development
|
||||||
homepage: https://github.com/commercialhaskell/stack#readme
|
homepage: https://github.com/commercialhaskell/hi-file-parser#readme
|
||||||
bug-reports: https://github.com/commercialhaskell/stack/issues
|
bug-reports: https://github.com/commercialhaskell/hi-file-parser/issues
|
||||||
author: Hussein Ait-Lahcen
|
author: Hussein Ait-Lahcen
|
||||||
maintainer: michael@snoyman.com
|
maintainer: michael@snoyman.com
|
||||||
license: BSD3
|
license: BSD3
|
||||||
@ -35,7 +35,7 @@ extra-source-files:
|
|||||||
|
|
||||||
source-repository head
|
source-repository head
|
||||||
type: git
|
type: git
|
||||||
location: https://github.com/commercialhaskell/stack
|
location: https://github.com/commercialhaskell/hi-file-parser
|
||||||
|
|
||||||
library
|
library
|
||||||
exposed-modules:
|
exposed-modules:
|
||||||
@ -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
|
, binary
|
||||||
, bytestring >=0.10.8.2
|
, bytestring
|
||||||
, rio >=0.1.9.2
|
, rio
|
||||||
, vector >=0.12.0.1
|
, vector
|
||||||
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
|
, binary
|
||||||
, bytestring >=0.10.8.2
|
, bytestring
|
||||||
, hi-file-parser
|
, hi-file-parser
|
||||||
, hspec >=2.4.8
|
, hspec
|
||||||
, rio >=0.1.9.2
|
, rio
|
||||||
, vector >=0.12.0.1
|
, vector
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
Loading…
Reference in New Issue
Block a user