update to 0.95.2.0
This commit is contained in:
parent
0d01bcd98d
commit
539dd6e264
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
regex-compat-0.93.1.tar.gz
|
regex-compat-0.93.1.tar.gz
|
||||||
/regex-compat-0.95.1.tar.gz
|
/regex-compat-0.95.1.tar.gz
|
||||||
|
/regex-compat-0.95.2.0.tar.gz
|
||||||
|
@ -5,14 +5,15 @@
|
|||||||
%global pkgver %{pkg_name}-%{version}
|
%global pkgver %{pkg_name}-%{version}
|
||||||
|
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 0.95.1
|
Version: 0.95.2.0
|
||||||
Release: 51%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Haskell regexp library
|
Summary: Replaces/Enhances "Text.Regex"
|
||||||
|
|
||||||
License: BSD
|
License: BSD
|
||||||
Url: https://hackage.haskell.org/package/%{pkg_name}
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
||||||
# Begin cabal-rpm sources:
|
# Begin cabal-rpm sources:
|
||||||
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
||||||
|
Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal
|
||||||
# End cabal-rpm sources
|
# End cabal-rpm sources
|
||||||
|
|
||||||
# Begin cabal-rpm deps:
|
# Begin cabal-rpm deps:
|
||||||
@ -25,7 +26,10 @@ BuildRequires: ghc-regex-posix-prof
|
|||||||
# End cabal-rpm deps
|
# End cabal-rpm deps
|
||||||
|
|
||||||
%description
|
%description
|
||||||
One module layer over regex-posix to replace Text.Regex.
|
One module compat layer over <//hackage.haskell.org/package/regex-posix
|
||||||
|
regex-posix> to replace "Text.Regex".
|
||||||
|
|
||||||
|
See also <https://wiki.haskell.org/Regular_expressions> for more information.
|
||||||
|
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
@ -65,6 +69,7 @@ This package provides the Haskell %{pkg_name} profiling library.
|
|||||||
%prep
|
%prep
|
||||||
# Begin cabal-rpm setup:
|
# Begin cabal-rpm setup:
|
||||||
%setup -q -n %{pkgver}
|
%setup -q -n %{pkgver}
|
||||||
|
cp -bp %{SOURCE1} %{pkg_name}.cabal
|
||||||
# End cabal-rpm setup
|
# End cabal-rpm setup
|
||||||
|
|
||||||
|
|
||||||
@ -97,6 +102,7 @@ This package provides the Haskell %{pkg_name} profiling library.
|
|||||||
|
|
||||||
|
|
||||||
%files devel -f %{name}-devel.files
|
%files devel -f %{name}-devel.files
|
||||||
|
%doc ChangeLog.md
|
||||||
|
|
||||||
|
|
||||||
%if %{with haddock}
|
%if %{with haddock}
|
||||||
@ -111,6 +117,9 @@ This package provides the Haskell %{pkg_name} profiling library.
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jun 10 2020 Jens Petersen <petersen@redhat.com> - 0.95.2.0-1
|
||||||
|
- update to 0.95.2.0
|
||||||
|
|
||||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.95.1-51
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.95.1-51
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
40
regex-compat-0.95.2.0.cabal
Normal file
40
regex-compat-0.95.2.0.cabal
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
cabal-version: 1.12
|
||||||
|
name: regex-compat
|
||||||
|
version: 0.95.2.0
|
||||||
|
x-revision: 1
|
||||||
|
|
||||||
|
build-type: Simple
|
||||||
|
license: BSD3
|
||||||
|
license-file: LICENSE
|
||||||
|
copyright: Copyright (c) 2006, Christopher Kuklewicz
|
||||||
|
author: Christopher Kuklewicz
|
||||||
|
maintainer: hvr@gnu.org
|
||||||
|
bug-reports: https://github.com/hvr/regex-compat/issues
|
||||||
|
synopsis: Replaces/Enhances "Text.Regex"
|
||||||
|
category: Text
|
||||||
|
description:
|
||||||
|
One module compat layer over <//hackage.haskell.org/package/regex-posix regex-posix> to replace "Text.Regex".
|
||||||
|
.
|
||||||
|
See also <https://wiki.haskell.org/Regular_expressions> for more information.
|
||||||
|
|
||||||
|
extra-source-files: ChangeLog.md
|
||||||
|
|
||||||
|
source-repository head
|
||||||
|
type: git
|
||||||
|
location: https://github.com/hvr/regex-compat.git
|
||||||
|
|
||||||
|
library
|
||||||
|
exposed-modules: Text.Regex
|
||||||
|
|
||||||
|
build-depends: base >= 4.3 && < 4.15
|
||||||
|
, regex-base == 0.94.*
|
||||||
|
, regex-posix == 0.96.*
|
||||||
|
, array >= 0.3 && < 0.6
|
||||||
|
|
||||||
|
default-language: Haskell2010
|
||||||
|
default-extensions: MultiParamTypeClasses, FunctionalDependencies
|
||||||
|
|
||||||
|
if impl(ghc >= 7.2)
|
||||||
|
default-extensions: Trustworthy
|
||||||
|
|
||||||
|
ghc-options: -Wall
|
Loading…
Reference in New Issue
Block a user