forked from pool/ghc-case-insensitive
osc copypac from project:devel:languages:haskell:lts:11 package:ghc-case-insensitive revision:4, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-case-insensitive?expand=0&rev=31
This commit is contained in:
parent
ae1a283969
commit
86d5c65e76
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:66321c40fffb35f3a3188ba508753b74aada53fb51c822a9752614b03765306c
|
|
||||||
size 53630
|
|
3
case-insensitive-1.2.0.11.tar.gz
Normal file
3
case-insensitive-1.2.0.11.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a7ce6d17e50caaa0f19ad8e67361499022860554c521b1e57993759da3eb37e3
|
||||||
|
size 53581
|
@ -1,74 +0,0 @@
|
|||||||
name: case-insensitive
|
|
||||||
version: 1.2.0.10
|
|
||||||
x-revision: 2
|
|
||||||
cabal-version: >=1.8
|
|
||||||
build-type: Simple
|
|
||||||
license: BSD3
|
|
||||||
license-file: LICENSE
|
|
||||||
copyright: 2011 Bas van Dijk
|
|
||||||
author: Bas van Dijk
|
|
||||||
maintainer: Bas van Dijk <v.dijk.bas@gmail.com>
|
|
||||||
homepage: https://github.com/basvandijk/case-insensitive
|
|
||||||
bug-reports: https://github.com/basvandijk/case-insensitive/issues
|
|
||||||
category: Data, Text
|
|
||||||
synopsis: Case insensitive string comparison
|
|
||||||
description: The module @Data.CaseInsensitive@ provides the 'CI' type
|
|
||||||
constructor which can be parameterised by a string-like
|
|
||||||
type like: 'String', 'ByteString', 'Text',
|
|
||||||
etc.. Comparisons of values of the resulting type will be
|
|
||||||
insensitive to cases.
|
|
||||||
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.1
|
|
||||||
|
|
||||||
extra-source-files: README.markdown CHANGELOG pg2189.txt
|
|
||||||
|
|
||||||
source-repository head
|
|
||||||
Type: git
|
|
||||||
Location: git://github.com/basvandijk/case-insensitive.git
|
|
||||||
|
|
||||||
Library
|
|
||||||
ghc-options: -Wall
|
|
||||||
build-depends: base >= 3 && < 4.12
|
|
||||||
, bytestring >= 0.9 && < 0.11
|
|
||||||
, text >= 0.3 && < 1.3
|
|
||||||
, deepseq >= 1.1 && < 1.5
|
|
||||||
, hashable >= 1.0 && < 1.3
|
|
||||||
if !impl(ghc >= 8.0)
|
|
||||||
build-depends: semigroups >= 0.18 && < 0.19
|
|
||||||
exposed-modules: Data.CaseInsensitive, Data.CaseInsensitive.Unsafe
|
|
||||||
other-modules: Data.CaseInsensitive.Internal
|
|
||||||
|
|
||||||
test-suite test-case-insensitive
|
|
||||||
type: exitcode-stdio-1.0
|
|
||||||
main-is: test.hs
|
|
||||||
hs-source-dirs: test
|
|
||||||
|
|
||||||
build-depends: case-insensitive
|
|
||||||
, base >= 3 && < 4.12
|
|
||||||
, bytestring >= 0.9 && < 0.11
|
|
||||||
, text >= 0.3 && < 1.3
|
|
||||||
, HUnit >= 1.2.2 && < 1.7
|
|
||||||
, test-framework >= 0.2.4 && < 0.9
|
|
||||||
, test-framework-hunit >= 0.2.4 && < 0.4
|
|
||||||
|
|
||||||
ghc-options: -Wall
|
|
||||||
|
|
||||||
benchmark bench-case-insensitive
|
|
||||||
type: exitcode-stdio-1.0
|
|
||||||
main-is: bench.hs
|
|
||||||
other-modules: NoClass
|
|
||||||
hs-source-dirs: bench
|
|
||||||
|
|
||||||
ghc-options: -Wall -O2
|
|
||||||
|
|
||||||
build-depends: case-insensitive
|
|
||||||
, base >= 3 && < 4.12
|
|
||||||
, bytestring >= 0.9 && < 0.11
|
|
||||||
, criterion >= 0.6.1 && < 1.4
|
|
||||||
, deepseq >= 1.1 && < 1.5
|
|
@ -1,100 +1,12 @@
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com
|
Mon Mar 19 11:32:41 UTC 2018 - psimons@suse.com
|
||||||
|
|
||||||
- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
|
- Update case-insensitive to version 1.2.0.11.
|
||||||
|
A more detailed change log is not available.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 31 14:01:06 UTC 2017 - psimons@suse.com
|
Wed Mar 14 16:55:55 UTC 2018 - psimons@suse.com
|
||||||
|
|
||||||
- Update to version 1.2.0.10.
|
- Update case-insensitive to version 1.2.0.10 revision 2.
|
||||||
|
A more detailed change log is not available.
|
||||||
-------------------------------------------------------------------
|
|
||||||
Mon Apr 24 12:26:22 UTC 2017 - psimons@suse.com
|
|
||||||
|
|
||||||
- Update to version 1.2.0.9 with cabal2obs.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 20 08:42:19 UTC 2017 - psimons@suse.com
|
|
||||||
|
|
||||||
- Update to version 1.2.0.8 with cabal2obs.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Mon Jul 25 11:21:37 UTC 2016 - psimons@suse.com
|
|
||||||
|
|
||||||
- Update to version 1.2.0.7 revision 0 with cabal2obs.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Jul 10 17:08:41 UTC 2016 - psimons@suse.com
|
|
||||||
|
|
||||||
- Update to version 1.2.0.6 revision 0 with cabal2obs.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Wed Mar 16 09:12:05 UTC 2016 - mimi.vx@gmail.com
|
|
||||||
|
|
||||||
- update to 1.2.0.6
|
|
||||||
* Add Semigroup s => Semigroup (CI s) instance
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Oct 4 16:29:15 UTC 2015 - mimi.vx@gmail.com
|
|
||||||
|
|
||||||
- update to 1.2.0.5
|
|
||||||
* Support HUnit-1.3
|
|
||||||
* Support criterion-1.1
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Mon Apr 13 08:05:41 UTC 2015 - mimi.vx@gmail.com
|
|
||||||
|
|
||||||
- update to 1.2.0.4
|
|
||||||
* Fixed #17: https://github.com/basvandijk/case-insensitive/issues/17
|
|
||||||
* Bump base and deepseq upper bounds for GHC 7.10 compatibility
|
|
||||||
* Add case-insensitive.nix and default.nix
|
|
||||||
* Fix #14: Build failure with GHC 7.2.2
|
|
||||||
* Fix #8: Don't unnecessarily use NoImplicitPrelude
|
|
||||||
* Solved warnings on GHC-7.8.3
|
|
||||||
* Bump text upper version bounds
|
|
||||||
* Derived a Data instance for CI
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Sep 9 20:24:56 UTC 2014 - peter.trommler@ohm-hochschule.de
|
|
||||||
|
|
||||||
- update to 1.1.0.3
|
|
||||||
* no changelog
|
|
||||||
* for Haskell Platform 2014.2.0.0
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Sep 2 08:52:04 UTC 2014 - peter.trommler@ohm-hochschule.de
|
|
||||||
|
|
||||||
- regenerate spec file
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sat Aug 23 00:08:45 UTC 2014 - peter.trommler@ohm-hochschule.de
|
|
||||||
|
|
||||||
- enable PowerPC builds
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue May 7 14:17:19 UTC 2013 - peter.trommler@ohm-hochschule.de
|
|
||||||
|
|
||||||
- update to 1.0.0.1 from upstream
|
|
||||||
* modifications requested for Haskell Platform
|
|
||||||
* support for hashable 1.2
|
|
||||||
* improved performance for byte strings
|
|
||||||
- part of Haskell Platform 2013.2
|
|
||||||
- more transparent packaging (fewer macros)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sat Jun 9 10:26:44 UTC 2012 - peter.trommler@ohm-hochschule.de
|
|
||||||
|
|
||||||
- packaged LICENSE file
|
|
||||||
- added copyright notice
|
|
||||||
- dropped rpmlintrc
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Fri Mar 30 16:03:36 UTC 2012 - peter.trommler@ohm-hochschule.de
|
|
||||||
|
|
||||||
- Fixed typo in BR.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Fri Mar 30 14:59:03 UTC 2012 - peter.trommler@ohm-hochschule.de
|
|
||||||
|
|
||||||
- Initial packaging.
|
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ghc-case-insensitive
|
# spec file for package ghc-case-insensitive
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# 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,14 +19,13 @@
|
|||||||
%global pkg_name case-insensitive
|
%global pkg_name case-insensitive
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 1.2.0.10
|
Version: 1.2.0.11
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Case insensitive string comparison
|
Summary: Case insensitive string comparison
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
Group: Development/Libraries/Haskell
|
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/2.cabal#/%{pkg_name}.cabal
|
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-bytestring-devel
|
BuildRequires: ghc-bytestring-devel
|
||||||
BuildRequires: ghc-deepseq-devel
|
BuildRequires: ghc-deepseq-devel
|
||||||
@ -58,7 +57,6 @@ files.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{pkg_name}-%{version}
|
%setup -q -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