osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-Glob revision:7, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-Glob?expand=0&rev=54
This commit is contained in:
parent
2f9ba9e703
commit
c7eef1dae0
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:473355bd6ba0a97902e0edada1acbc0d76cfda77596f0188b2cc0ae34272a324
|
||||
size 29500
|
3
Glob-0.10.1.tar.gz
Normal file
3
Glob-0.10.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cae4476d944947010705e0b00cf3e36c90ef407f968861f6771b931056b6d315
|
||||
size 29763
|
94
Glob.cabal
94
Glob.cabal
@ -1,94 +0,0 @@
|
||||
Cabal-Version: >= 1.9.2
|
||||
|
||||
Name: Glob
|
||||
Version: 0.10.0
|
||||
x-revision: 1
|
||||
Homepage: http://iki.fi/matti.niemenmaa/glob/
|
||||
Synopsis: Globbing library
|
||||
Category: System
|
||||
Stability: provisional
|
||||
Description:
|
||||
A library for globbing: matching patterns against file paths.
|
||||
|
||||
Author: Matti Niemenmaa
|
||||
Maintainer: Matti Niemenmaa <matti.niemenmaa+glob@iki.fi>
|
||||
License: BSD3
|
||||
License-File: LICENSE.txt
|
||||
|
||||
Build-Type: Simple
|
||||
|
||||
Extra-Source-Files: CHANGELOG.txt
|
||||
CREDITS.txt
|
||||
README.txt
|
||||
|
||||
Source-Repository head
|
||||
Type: git
|
||||
Location: https://github.com/Deewiant/glob
|
||||
|
||||
Library
|
||||
Build-Depends: base >= 4 && < 5
|
||||
, containers < 0.7
|
||||
, directory < 1.4
|
||||
, dlist >= 0.4 && < 0.9
|
||||
, filepath >= 1.1 && < 1.5
|
||||
, transformers >= 0.2 && < 0.6
|
||||
, transformers-compat >= 0.3 && < 0.7
|
||||
|
||||
if impl(ghc < 8.0)
|
||||
Build-Depends: semigroups >= 0.18 && < 0.20
|
||||
|
||||
if os(windows)
|
||||
Build-Depends: Win32 == 2.*
|
||||
|
||||
Exposed-Modules: System.FilePath.Glob
|
||||
System.FilePath.Glob.Primitive
|
||||
Other-Modules: System.FilePath.Glob.Base
|
||||
System.FilePath.Glob.Directory
|
||||
System.FilePath.Glob.Match
|
||||
System.FilePath.Glob.Simplify
|
||||
System.FilePath.Glob.Utils
|
||||
|
||||
GHC-Options: -Wall
|
||||
|
||||
Test-Suite glob-tests
|
||||
type: exitcode-stdio-1.0
|
||||
|
||||
hs-source-dirs: ., tests
|
||||
main-is: Main.hs
|
||||
|
||||
Build-Depends: base >= 4 && < 5
|
||||
, containers < 0.7
|
||||
, directory < 1.4
|
||||
, dlist >= 0.4 && < 0.9
|
||||
, filepath >= 1.1 && < 1.5
|
||||
, transformers >= 0.2 && < 0.6
|
||||
, transformers-compat >= 0.3 && < 0.7
|
||||
, HUnit >= 1.2 && < 1.7
|
||||
, QuickCheck >= 2 && < 3
|
||||
, test-framework >= 0.2 && < 1
|
||||
, test-framework-hunit >= 0.2 && < 1
|
||||
, test-framework-quickcheck2 >= 0.3 && < 1
|
||||
|
||||
if impl(ghc < 8.0)
|
||||
Build-Depends: semigroups >= 0.18 && < 0.20
|
||||
|
||||
if os(windows)
|
||||
Build-Depends: Win32 == 2.*
|
||||
|
||||
Other-Modules: System.FilePath.Glob.Base
|
||||
System.FilePath.Glob.Directory
|
||||
System.FilePath.Glob.Match
|
||||
System.FilePath.Glob.Primitive
|
||||
System.FilePath.Glob.Simplify
|
||||
System.FilePath.Glob.Utils
|
||||
Tests.Base
|
||||
Tests.Compiler
|
||||
Tests.Directory
|
||||
Tests.Instances
|
||||
Tests.Matcher
|
||||
Tests.Optimizer
|
||||
Tests.Regression
|
||||
Tests.Simplifier
|
||||
Tests.Utils
|
||||
|
||||
GHC-Options: -Wall
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 20 02:00:58 UTC 2020 - psimons@suse.com
|
||||
|
||||
- Update Glob to version 0.10.1.
|
||||
0.10.1, 2020-07-19:
|
||||
Updated code and dependencies to support dlist-1.0.
|
||||
|
||||
Cabal-Version minimum bumped to 1.10 as Hackage now rejects older minima.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 16 11:13:35 UTC 2020 - Peter Simons <psimons@suse.com>
|
||||
|
||||
|
@ -19,13 +19,12 @@
|
||||
%global pkg_name Glob
|
||||
%bcond_with tests
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 0.10.0
|
||||
Version: 0.10.1
|
||||
Release: 0
|
||||
Summary: Globbing library
|
||||
License: BSD-3-Clause
|
||||
URL: https://hackage.haskell.org/package/%{pkg_name}
|
||||
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
|
||||
BuildRequires: ghc-Cabal-devel
|
||||
BuildRequires: ghc-containers-devel
|
||||
BuildRequires: ghc-directory-devel
|
||||
@ -57,7 +56,6 @@ This package provides the Haskell %{pkg_name} library development files.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{pkg_name}-%{version}
|
||||
cp -p %{SOURCE1} %{pkg_name}.cabal
|
||||
chmod -x *.txt # https://github.com/Deewiant/glob/issues/31
|
||||
|
||||
%build
|
||||
|
Loading…
Reference in New Issue
Block a user