osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-distributive revision:10, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-distributive?expand=0&rev=53
This commit is contained in:
parent
a547239df6
commit
a51f189401
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:7749b1d9b815e3ba558d1daebac9346610e352bb0dfe9720cc686eb2fef7caf2
|
|
||||||
size 11256
|
|
3
distributive-0.6.2.tar.gz
Normal file
3
distributive-0.6.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:824ee271ded433ce6c61fe890c784642b7e20ffa4082fca609da54e7dcfc23c9
|
||||||
|
size 11308
|
122
distributive.cabal
Normal file
122
distributive.cabal
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
name: distributive
|
||||||
|
category: Data Structures
|
||||||
|
version: 0.6.2
|
||||||
|
x-revision: 2
|
||||||
|
license: BSD3
|
||||||
|
cabal-version: >= 1.8
|
||||||
|
license-file: LICENSE
|
||||||
|
author: Edward A. Kmett
|
||||||
|
maintainer: Edward A. Kmett <ekmett@gmail.com>
|
||||||
|
stability: provisional
|
||||||
|
homepage: http://github.com/ekmett/distributive/
|
||||||
|
bug-reports: http://github.com/ekmett/distributive/issues
|
||||||
|
copyright: Copyright (C) 2011-2016 Edward A. Kmett
|
||||||
|
synopsis: Distributive functors -- Dual to Traversable
|
||||||
|
description: Distributive functors -- Dual to @Traversable@
|
||||||
|
build-type: Custom
|
||||||
|
tested-with: GHC == 7.0.4
|
||||||
|
, GHC == 7.2.2
|
||||||
|
, GHC == 7.4.2
|
||||||
|
, GHC == 7.6.3
|
||||||
|
, GHC == 7.8.4
|
||||||
|
, GHC == 7.10.3
|
||||||
|
, GHC == 8.0.2
|
||||||
|
, GHC == 8.2.2
|
||||||
|
, GHC == 8.4.4
|
||||||
|
, GHC == 8.6.5
|
||||||
|
, GHC == 8.8.1
|
||||||
|
extra-source-files:
|
||||||
|
.hlint.yaml
|
||||||
|
.travis.yml
|
||||||
|
.vim.custom
|
||||||
|
config
|
||||||
|
travis-cabal-apt-install
|
||||||
|
CHANGELOG.markdown
|
||||||
|
README.markdown
|
||||||
|
Warning.hs
|
||||||
|
|
||||||
|
source-repository head
|
||||||
|
type: git
|
||||||
|
location: git://github.com/ekmett/distributive.git
|
||||||
|
|
||||||
|
custom-setup
|
||||||
|
setup-depends:
|
||||||
|
base >= 4 && <5,
|
||||||
|
Cabal,
|
||||||
|
cabal-doctest >= 1 && <1.1
|
||||||
|
|
||||||
|
flag semigroups
|
||||||
|
manual: True
|
||||||
|
default: True
|
||||||
|
description:
|
||||||
|
You can disable the use of the `semigroups` package using `-f-semigroups`.
|
||||||
|
.
|
||||||
|
Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users.
|
||||||
|
|
||||||
|
flag tagged
|
||||||
|
manual: True
|
||||||
|
default: True
|
||||||
|
description:
|
||||||
|
You can disable the use of the `tagged` package using `-f-tagged`.
|
||||||
|
.
|
||||||
|
Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users.
|
||||||
|
|
||||||
|
library
|
||||||
|
build-depends:
|
||||||
|
base >= 4 && < 5,
|
||||||
|
base-orphans >= 0.5.2 && < 1,
|
||||||
|
transformers >= 0.3 && < 0.6
|
||||||
|
|
||||||
|
if !impl(ghc >= 7.8) && !impl(ghcjs)
|
||||||
|
build-depends: transformers-compat >= 0.3 && < 1
|
||||||
|
|
||||||
|
hs-source-dirs: src
|
||||||
|
exposed-modules:
|
||||||
|
Data.Distributive
|
||||||
|
|
||||||
|
if impl(ghc>=7.2)
|
||||||
|
exposed-modules: Data.Distributive.Generic
|
||||||
|
|
||||||
|
if flag(tagged)
|
||||||
|
build-depends: tagged >= 0.7 && < 1
|
||||||
|
|
||||||
|
if impl(ghc>=7.2 && < 7.6)
|
||||||
|
build-depends: ghc-prim
|
||||||
|
|
||||||
|
if impl(ghc < 8.0)
|
||||||
|
if flag(semigroups)
|
||||||
|
build-depends: semigroups >= 0.13 && < 1
|
||||||
|
|
||||||
|
if impl(ghc < 7.8)
|
||||||
|
hs-source-dirs: src-compat
|
||||||
|
other-modules: Data.Coerce
|
||||||
|
|
||||||
|
ghc-options: -Wall
|
||||||
|
|
||||||
|
-- Verify the results of the examples
|
||||||
|
test-suite doctests
|
||||||
|
type: exitcode-stdio-1.0
|
||||||
|
main-is: doctests.hs
|
||||||
|
build-depends:
|
||||||
|
base >= 4,
|
||||||
|
distributive,
|
||||||
|
doctest >= 0.11.1 && <0.18
|
||||||
|
ghc-options: -Wall -threaded
|
||||||
|
hs-source-dirs: tests
|
||||||
|
|
||||||
|
test-suite spec
|
||||||
|
type: exitcode-stdio-1.0
|
||||||
|
hs-source-dirs: tests
|
||||||
|
build-tool-depends:
|
||||||
|
hspec-discover:hspec-discover
|
||||||
|
|
||||||
|
build-depends:
|
||||||
|
base >= 4 && < 5,
|
||||||
|
distributive,
|
||||||
|
generic-deriving >= 1.11 && < 2,
|
||||||
|
hspec >= 2 && < 3
|
||||||
|
|
||||||
|
main-is: Spec.hs
|
||||||
|
other-modules: GenericsSpec
|
||||||
|
|
||||||
|
ghc-options: -Wall -threaded -rtsopts
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 31 09:34:32 UTC 2020 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update distributive to version 0.6.2 revision 2.
|
||||||
|
Upstream has revised the Cabal build instructions on Hackage.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Aug 18 10:44:40 UTC 2020 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
- Replace %setup -q with the more modern %autosetup macro.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 16 11:14:02 UTC 2020 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
- Re-generate file with latest version of spec-cleaner.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 6 06:54:11 UTC 2020 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update distributive to version 0.6.2.
|
||||||
|
0.6.2 [2020.04.10]
|
||||||
|
------------------
|
||||||
|
* Make the `Distributive` instance for `Tagged` poly-kinded.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 8 16:13:37 UTC 2019 - Peter Simons <psimons@suse.com>
|
Fri Nov 8 16:13:37 UTC 2019 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ghc-distributive
|
# spec file for package ghc-distributive
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2020 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,12 +19,13 @@
|
|||||||
%global pkg_name distributive
|
%global pkg_name distributive
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 0.6.1
|
Version: 0.6.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Distributive functors -- Dual to Traversable
|
Summary: Distributive functors -- Dual to Traversable
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
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/2.cabal#/%{pkg_name}.cabal
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-base-orphans-devel
|
BuildRequires: ghc-base-orphans-devel
|
||||||
BuildRequires: ghc-cabal-doctest-devel
|
BuildRequires: ghc-cabal-doctest-devel
|
||||||
@ -51,7 +52,8 @@ Requires(postun): ghc-compiler = %{ghc_version}
|
|||||||
This package provides the Haskell %{pkg_name} library development files.
|
This package provides the Haskell %{pkg_name} library development files.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{pkg_name}-%{version}
|
%autosetup -n %{pkg_name}-%{version}
|
||||||
|
cp -p %{SOURCE1} %{pkg_name}.cabal
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%ghc_lib_build
|
%ghc_lib_build
|
||||||
|
Loading…
Reference in New Issue
Block a user