osc copypac from project:devel:languages:haskell:ghc-9.6.x package:ghc-data-clist revision:4, using keep-link

OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-data-clist?expand=0&rev=18
This commit is contained in:
Peter Simons 2023-11-22 09:17:19 +00:00 committed by Git OBS Bridge
parent 5e6873c37e
commit 2f938d7022

View File

@ -1,43 +1,43 @@
Cabal-Version: 2.2 Cabal-Version: 2.2
Name: data-clist Name: data-clist
Synopsis: Simple functional ring type. Synopsis: Simple functional ring type.
Description: Simple functional bidirectional ring type. Description: Simple functional bidirectional ring type.
Given that the ring terminiology clashes with certain Given that the ring terminiology clashes with certain
mathematical branches, we're using the term CList or mathematical branches, we're using the term CList or
CircularList instead. CircularList instead.
Version: 0.2 Version: 0.2
x-revision: 1 x-revision: 1
License: BSD-3-Clause License: BSD-3-Clause
License-File: LICENSE License-File: LICENSE
Author: John Van Enk <vanenkj@gmail.com> Author: John Van Enk <vanenkj@gmail.com>
Maintainer: Jeremy Huffman <jeremy@jeremyhuffman.com>, John Van Enk <vanenkj@gmail.com> Maintainer: Jeremy Huffman <jeremy@jeremyhuffman.com>, John Van Enk <vanenkj@gmail.com>
Stability: experimental Stability: experimental
Category: Data Structures Category: Data Structures
Build-Type: Simple Build-Type: Simple
Homepage: https://github.com/sw17ch/data-clist Homepage: https://github.com/sw17ch/data-clist
source-repository head source-repository head
type: git type: git
location: git://github.com/sw17ch/data-clist.git location: git://github.com/sw17ch/data-clist.git
Library Library
Default-Language: Haskell2010 Default-Language: Haskell2010
Build-Depends: base >= 4 && < 5, Build-Depends: base >= 4 && < 5,
deepseq >= 1.1 && < 1.6 deepseq >= 1.1 && < 1.6
Exposed-Modules: Exposed-Modules:
Data.CircularList Data.CircularList
Data.CircularList.Internal Data.CircularList.Internal
ghc-options: -Wall ghc-options: -Wall
hs-source-dirs: src hs-source-dirs: src
Test-Suite tests Test-Suite tests
Default-Language: Haskell2010 Default-Language: Haskell2010
Type: exitcode-stdio-1.0 Type: exitcode-stdio-1.0
Build-Depends: base >=4.11 && < 5 Build-Depends: base >=4.11 && < 5
, data-clist , data-clist
, QuickCheck >= 2.4 && < 2.15 , QuickCheck >= 2.4 && < 2.15
hs-source-dirs: tests/ hs-source-dirs: tests/
main-is: quickcheck.hs main-is: quickcheck.hs