From 7000c79e446df3cf7b8567c57fdb6a36b6df1344 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Aug 05 2021 12:09:09 +0000 Subject: update to 1.1.1 --- diff --git a/.gitignore b/.gitignore index f8c2542..fdf5d3a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /lens-aeson-1.0.2.tar.gz /lens-aeson-1.1.tar.gz +/lens-aeson-1.1.1.tar.gz diff --git a/ghc-lens-aeson.spec b/ghc-lens-aeson.spec index b6da1e3..d59b692 100644 --- a/ghc-lens-aeson.spec +++ b/ghc-lens-aeson.spec @@ -4,11 +4,9 @@ %global pkg_name lens-aeson %global pkgver %{pkg_name}-%{version} -# testsuite missing deps: simple-reflect - Name: ghc-%{pkg_name} -Version: 1.1 -Release: 4%{?dist} +Version: 1.1.1 +Release: 1%{?dist} Summary: Law-abiding lenses for aeson License: MIT @@ -19,8 +17,8 @@ Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal# # End cabal-rpm sources # Begin cabal-rpm deps: +BuildRequires: dos2unix BuildRequires: ghc-Cabal-devel -BuildRequires: ghc-cabal-doctest-devel BuildRequires: ghc-rpm-macros BuildRequires: ghc-aeson-prof BuildRequires: ghc-attoparsec-prof @@ -75,7 +73,7 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} -cp -bp %{SOURCE1} %{pkg_name}.cabal +dos2unix -k -n %{SOURCE1} %{pkg_name}.cabal # End cabal-rpm setup @@ -113,6 +111,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Thu Aug 5 2021 Jens Petersen - 1.1.1-1 +- update to 1.1.1 + * Thu Jul 22 2021 Fedora Release Engineering - 1.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/lens-aeson-1.1.1.cabal b/lens-aeson-1.1.1.cabal new file mode 100644 index 0000000..d0bfd45 --- /dev/null +++ b/lens-aeson-1.1.1.cabal @@ -0,0 +1,59 @@ +name: lens-aeson +category: Numeric +version: 1.1.1 +x-revision: 1 +license: MIT +cabal-version: >= 1.10 +license-file: LICENSE +author: Edward A. Kmett +maintainer: Edward A. Kmett +stability: provisional +homepage: http://github.com/lens/lens-aeson/ +bug-reports: http://github.com/lens/lens-aeson/issues +copyright: + Copyright (C) 2012 Paul Wilson + Copyright (C) 2013 Edward A. Kmett +build-type: Simple +tested-with: 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.3 + , GHC == 8.10.1 +synopsis: Law-abiding lenses for aeson +description: Law-abiding lenses for aeson. + +extra-source-files: + .gitignore + .hlint.yaml + .vim.custom + AUTHORS.markdown + README.markdown + CHANGELOG.markdown + +source-repository head + type: git + location: https://github.com/lens/lens-aeson + +library + build-depends: + base >= 4.5 && < 5, + lens >= 4.4 && < 6, + text >= 0.11.1.10 && < 1.3, + vector >= 0.9 && < 0.13, + unordered-containers >= 0.2.3 && < 0.3, + attoparsec >= 0.10 && < 0.15, + bytestring >= 0.9 && < 0.12, + aeson >= 0.7.0.5 && < 1.6, + scientific >= 0.3.2 && < 0.4 + + exposed-modules: + Data.Aeson.Lens + + ghc-options: -Wall -fwarn-tabs -O2 + hs-source-dirs: src + default-language: Haskell2010 diff --git a/lens-aeson-1.1.cabal b/lens-aeson-1.1.cabal deleted file mode 100644 index 0b34d35..0000000 --- a/lens-aeson-1.1.cabal +++ /dev/null @@ -1,89 +0,0 @@ -name: lens-aeson -category: Numeric -version: 1.1 -x-revision: 3 -license: MIT -cabal-version: >= 1.8 -license-file: LICENSE -author: Edward A. Kmett -maintainer: Edward A. Kmett -stability: provisional -homepage: http://github.com/lens/lens-aeson/ -bug-reports: http://github.com/lens/lens-aeson/issues -copyright: - Copyright (C) 2012 Paul Wilson - Copyright (C) 2013 Edward A. Kmett -build-type: Custom -tested-with: 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 -synopsis: Law-abiding lenses for aeson -description: Law-abiding lenses for aeson. - -extra-source-files: - .travis.yml - .ghci - .gitignore - .vim.custom - travis/cabal-apt-install - travis/config - AUTHORS.markdown - README.markdown - CHANGELOG.markdown - Warning.hs - -source-repository head - type: git - location: https://github.com/lens/lens-aeson - -custom-setup - setup-depends: - base >= 4 && < 5, - Cabal, - cabal-doctest >= 1 && < 1.1 - --- You can disable the doctests test suite with -f-test-doctests -flag test-doctests - default: True - manual: True - -library - build-depends: - base >= 4.5 && < 5, - lens >= 4.4 && < 5, - text >= 0.11.1.10 && < 1.3, - vector >= 0.9 && < 0.13, - unordered-containers >= 0.2.3 && < 0.3, - attoparsec >= 0.10 && < 0.14, - bytestring >= 0.9 && < 0.12, - aeson >= 0.7.0.5 && < 1.6, - scientific >= 0.3.2 && < 0.4 - - exposed-modules: - Data.Aeson.Lens - - ghc-options: -Wall -fwarn-tabs -O2 - hs-source-dirs: src - -test-suite doctests - type: exitcode-stdio-1.0 - main-is: doctests.hs - ghc-options: -Wall -threaded - hs-source-dirs: tests - - if !flag(test-doctests) - buildable: False - else - build-depends: - base, - doctest >= 0.11.1 && < 0.18, - generic-deriving, - lens-aeson, - semigroups >= 0.9, - simple-reflect >= 0.3.1 diff --git a/sources b/sources index 51ac1cd..f91de7b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (lens-aeson-1.1.tar.gz) = a5e1b98cc50342ddbaf36a9c6f7a87cdfd8e8abb66852777ef8fc3362a3cb7bac473c3dfd7a4ad2f57f3318c5dca6ec7a07e2a4eae05bdcc34308d188d791460 +SHA512 (lens-aeson-1.1.1.tar.gz) = a72cd51a51dcb9b686909caac83f8f7ba69b0e33ba90bf8a55937f198f898a7e19dff24bec9a4b921b170f34c5511bd58df5ba1dea3751f37e374bb7193d388c