update to 1.6.13

This commit is contained in:
Jens Petersen 2021-01-29 11:00:51 +08:00
parent 1c10eb54c1
commit d4cd7b3169
4 changed files with 24 additions and 27 deletions

1
.gitignore vendored
View File

@ -5,3 +5,4 @@ uniplate-1.5.1.tar.gz
/uniplate-1.6.7.tar.gz
/uniplate-1.6.10.tar.gz
/uniplate-1.6.12.tar.gz
/uniplate-1.6.13.tar.gz

View File

@ -1,12 +1,12 @@
# generated by cabal-rpm-2.0.6
# generated by cabal-rpm-2.0.8
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
%global pkg_name uniplate
%global pkgver %{pkg_name}-%{version}
Name: ghc-%{pkg_name}
Version: 1.6.12
Release: 21%{?dist}
Version: 1.6.13
Release: 1%{?dist}
Summary: Uniform type generic traversals library
License: BSD
@ -93,7 +93,7 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal
%files devel -f %{name}-devel.files
%doc uniplate.htm
%doc CHANGES.txt README.md
%if %{with haddock}
@ -108,6 +108,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal
%changelog
* Thu Aug 5 2021 Jens Petersen <petersen@redhat.com> - 1.6.13-1
- update to 1.6.13
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.12-21
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild

View File

@ -1 +1 @@
8a1914109e6707c4bab211d44c39f6c4 uniplate-1.6.12.tar.gz
SHA512 (uniplate-1.6.13.tar.gz) = 8cab820d40b318c7483319de4174bdbd3637e1c93f42bc6b796c6a8a1fa93331c0a2ff3b7c77f6a2ec0509fb48bb922ef732c7d79e8e6bcf7987bde949459310

View File

@ -1,12 +1,13 @@
cabal-version: >= 1.6
cabal-version: >= 1.18
build-type: Simple
name: uniplate
version: 1.6.12
version: 1.6.13
x-revision: 1
author: Neil Mitchell <ndmitchell@gmail.com>
maintainer: Neil Mitchell <ndmitchell@gmail.com>
copyright: Neil Mitchell 2006-2013
homepage: http://community.haskell.org/~ndm/uniplate/
copyright: Neil Mitchell 2006-2020
homepage: https://github.com/ndmitchell/uniplate#readme
bug-reports: https://github.com/ndmitchell/uniplate/issues
license: BSD3
license-file: LICENSE
synopsis: Help writing simple, concise and fast generic operations.
@ -14,8 +15,7 @@ category: Generics
description:
Uniplate is library for writing simple and concise generic operations.
Uniplate has similar goals to the original Scrap Your Boilerplate work,
but is substantially simpler and faster. The Uniplate manual is available at
<http://community.haskell.org/~ndm/darcs/uniplate/uniplate.htm>.
but is substantially simpler and faster.
.
To get started with Uniplate you should import one of the three following
modules:
@ -42,28 +42,23 @@ description:
to avoid getting instance conflicts.
extra-source-files:
uniplate.htm
Data/Generics/Uniplate/Internal/DataInc.hs
Data/Generics/Uniplate/Internal/OperationsInc.hs
extra-doc-files:
README.md
CHANGES.txt
tested-with: GHC==8.10, GHC==8.8, GHC==8.6, GHC==8.4, GHC==8.2, GHC==8.0
source-repository head
type: git
location: https://github.com/ndmitchell/uniplate.git
flag typeable_fingerprint
flag separate_syb
library
if flag(typeable_fingerprint)
build-depends:
base >=4.4 && <5, containers, syb,
hashable >= 1.1.2.3,
unordered-containers >= 0.2.1
else
if flag(separate_syb)
build-depends: base >=4 && <4.4, containers, syb
else
build-depends: base >=3 && <4, containers
default-language: Haskell2010
build-depends:
base >=4.10 && <5, containers, syb, ghc-prim,
hashable >= 1.1.2.3,
unordered-containers >= 0.2.1
exposed-modules:
Data.Generics.Str
@ -91,5 +86,3 @@ library
Data.Generics.Uniplate.Internal.Data
Data.Generics.Uniplate.Internal.DataOnlyOperations
Data.Generics.Uniplate.Internal.Utils
extensions: CPP