From e2a227de7be750af14578401145c13e562a73af460c8ce3e01b2da0cd0d9a504 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20S=C3=BAkup?= Date: Fri, 8 Jan 2021 10:06:19 +0000 Subject: [PATCH] osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-tagged revision:15, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-tagged?expand=0&rev=72 --- ghc-tagged.changes | 8 +++++ ghc-tagged.spec | 4 +-- tagged-0.8.6.1.tar.gz | 3 ++ tagged-0.8.6.tar.gz | 3 -- tagged.cabal | 83 ------------------------------------------- 5 files changed, 12 insertions(+), 89 deletions(-) create mode 100644 tagged-0.8.6.1.tar.gz delete mode 100644 tagged-0.8.6.tar.gz delete mode 100644 tagged.cabal diff --git a/ghc-tagged.changes b/ghc-tagged.changes index ae819ef..01d0b7c 100644 --- a/ghc-tagged.changes +++ b/ghc-tagged.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Tue Dec 29 21:16:44 UTC 2020 - psimons@suse.com + +- Update tagged to version 0.8.6.1. + 0.8.6.1 [2020.12.28] + -------------------- + * Mark all modules as explicitly Safe or Trustworthy. + ------------------------------------------------------------------- Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup diff --git a/ghc-tagged.spec b/ghc-tagged.spec index be8985e..2fd7c14 100644 --- a/ghc-tagged.spec +++ b/ghc-tagged.spec @@ -18,13 +18,12 @@ %global pkg_name tagged Name: ghc-%{pkg_name} -Version: 0.8.6 +Version: 0.8.6.1 Release: 0 Summary: Haskell 98 phantom types to avoid unsafely passing dummy arguments 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/3.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-deepseq-devel BuildRequires: ghc-rpm-macros @@ -47,7 +46,6 @@ This package provides the Haskell %{pkg_name} library development files. %prep %autosetup -n %{pkg_name}-%{version} -cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build diff --git a/tagged-0.8.6.1.tar.gz b/tagged-0.8.6.1.tar.gz new file mode 100644 index 0000000..074ffca --- /dev/null +++ b/tagged-0.8.6.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5e0fcf95f0bb4aa63f428f2c01955a41ea1a42cfcf39145ed631f59a9616c02 +size 9842 diff --git a/tagged-0.8.6.tar.gz b/tagged-0.8.6.tar.gz deleted file mode 100644 index 81f257d..0000000 --- a/tagged-0.8.6.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ad16def0884cf6f05ae1ae8e90192cf9d8d9673fa264b249499bd9e4fac791dd -size 11759 diff --git a/tagged.cabal b/tagged.cabal deleted file mode 100644 index 5b2f5c4..0000000 --- a/tagged.cabal +++ /dev/null @@ -1,83 +0,0 @@ -name: tagged -version: 0.8.6 -x-revision: 3 -license: BSD3 -license-file: LICENSE -author: Edward A. Kmett -maintainer: Edward A. Kmett -stability: experimental -category: Data, Phantom Types -synopsis: Haskell 98 phantom types to avoid unsafely passing dummy arguments -homepage: http://github.com/ekmett/tagged -bug-reports: http://github.com/ekmett/tagged/issues -copyright: 2009-2015 Edward A. Kmett -description: Haskell 98 phantom types to avoid unsafely passing dummy arguments. -build-type: Simple -cabal-version: >= 1.10 -extra-source-files: .travis.yml CHANGELOG.markdown README.markdown HLint.hs -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.2 - , GHC == 8.2.2 - , GHC == 8.4.3 - , GHC == 8.6.1 - -source-repository head - type: git - location: git://github.com/ekmett/tagged.git - -flag deepseq - description: - You can disable the use of the `deepseq` package using `-f-deepseq`. - . - Disabing this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. - default: True - manual: True - -flag transformers - description: - You can disable the use of the `transformers` and `transformers-compat` packages using `-f-transformers`. - . - Disable this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users. - default: True - manual: True - -library - default-language: Haskell98 - other-extensions: CPP - build-depends: base >= 2 && < 5 - ghc-options: -Wall - hs-source-dirs: src - exposed-modules: Data.Tagged - - if !impl(hugs) - cpp-options: -DLANGUAGE_DeriveDataTypeable - other-extensions: DeriveDataTypeable - - if impl(ghc<7.7) - hs-source-dirs: old - exposed-modules: Data.Proxy - other-modules: Paths_tagged - - if impl(ghc>=7.2 && <7.5) - build-depends: ghc-prim - - if impl(ghc>=7.6) - exposed-modules: Data.Proxy.TH - build-depends: template-haskell >= 2.8 && < 2.18 - - if flag(deepseq) - build-depends: deepseq >= 1.1 && < 1.5 - - if flag(transformers) - build-depends: transformers >= 0.2 && < 0.6 - - -- Ensure Data.Functor.Classes is always available - if impl(ghc >= 7.10) || impl(ghcjs) - build-depends: transformers >= 0.4.2.0 - else - build-depends: transformers-compat >= 0.5 && < 1