From ab5780ecfe3bffe89ac4228e219d8efc13230979 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Sun, 29 Oct 2023 02:22:07 +0000 Subject: automatic import of ghc-th-compat --- .gitignore | 1 + ghc-th-compat.spec | 95 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + th-compat.cabal | 75 ++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 172 insertions(+) create mode 100644 ghc-th-compat.spec create mode 100644 sources create mode 100755 th-compat.cabal diff --git a/.gitignore b/.gitignore index e69de29..900db50 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/th-compat-0.1.4.tar.gz diff --git a/ghc-th-compat.spec b/ghc-th-compat.spec new file mode 100644 index 0000000..fcc06b9 --- /dev/null +++ b/ghc-th-compat.spec @@ -0,0 +1,95 @@ +%global pkg_name th-compat +%global pkgver %{pkg_name}-%{version} +%bcond_with tests + +Name: ghc-%{pkg_name} +Version: 0.1.4 +Release: 1 +Summary: Backward- (and forward-)compatible Quote and Code types +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-base-devel +BuildRequires: ghc-base-prof +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-template-haskell-devel +BuildRequires: ghc-template-haskell-prof +ExcludeArch: %{ix86} +%if %{with tests} +BuildRequires: ghc-base-compat-devel +BuildRequires: ghc-base-compat-prof +BuildRequires: ghc-hspec-devel +BuildRequires: ghc-hspec-prof +BuildRequires: ghc-mtl-devel +BuildRequires: ghc-mtl-prof +%endif + +%description +This package defines a "Language.Haskell.TH.Syntax.Compat" module, which +backports the 'Quote' and 'Code' types to work across a wide range of +'template-haskell' versions. The 'makeRelativeToProject' utility is also +backported. On recent versions of 'template-haskell' (2.17.0.0 or later), this +module simply reexports definitions from "Language.Haskell.TH.Syntax". +Refer to the Haddocks for "Language.Haskell.TH.Syntax.Compat" for examples of +how to use this module. + +%package devel +Summary: Haskell %{pkg_name} library development files +Requires: %{name} = %{version}-%{release} +Requires: ghc-compiler = %{ghc_version} +Requires(post): ghc-compiler = %{ghc_version} +Requires(postun): ghc-compiler = %{ghc_version} + +%description devel +This package provides the Haskell %{pkg_name} library development files. + +%package -n ghc-%{pkg_name}-help +Summary: Haskell %{pkg_name} library documentation +BuildArch: noarch + +%description -n ghc-%{pkg_name}-help +This package provides the Haskell %{pkg_name} library documentation. + +%package -n ghc-%{pkg_name}-prof +Summary: Haskell %{pkg_name} profiling library +Requires: ghc-%{pkg_name}-devel = %{version}-%{release} +Supplements: (ghc-%{pkg_name}-devel and ghc-prof) + +%description -n ghc-%{pkg_name}-prof +This package provides the Haskell %{pkg_name} profiling library. + +%prep +%autosetup -n %{pkg_name}-%{version} +cp -p %{SOURCE1} %{pkg_name}.cabal + +%build +%ghc_lib_build + +%install +%ghc_lib_install + +%check +%cabal_test + +%post devel +%ghc_pkg_recache + +%postun devel +%ghc_pkg_recache + +%files -f %{name}.files +%license LICENSE + +%files devel -f %{name}-devel.files +%doc CHANGELOG.md README.md + +%files -n ghc-%{pkg_name}-help -f ghc-%{pkg_name}-help.files +%license LICENSE + +%files -n ghc-%{pkg_name}-prof -f ghc-%{pkg_name}-prof.files + +%changelog +* Tue Aug 22 2023 Lin Runze 0.1.4-1 +- Initial packaging (Version 0.1.4) diff --git a/sources b/sources new file mode 100644 index 0000000..b4efbf9 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +6662b26a3afb0a12cf5a1cae217e1e23 th-compat-0.1.4.tar.gz diff --git a/th-compat.cabal b/th-compat.cabal new file mode 100755 index 0000000..7d1b062 --- /dev/null +++ b/th-compat.cabal @@ -0,0 +1,75 @@ +cabal-version: >=1.10 +name: th-compat +version: 0.1.4 +x-revision: 3 +synopsis: Backward- (and forward-)compatible Quote and Code types +description: This package defines a "Language.Haskell.TH.Syntax.Compat" + module, which backports the @Quote@ and @Code@ types to + work across a wide range of @template-haskell@ versions. + The @makeRelativeToProject@ utility is also backported. + On recent versions of @template-haskell@ (2.17.0.0 or + later), this module simply reexports definitions + from "Language.Haskell.TH.Syntax". Refer to the Haddocks + for "Language.Haskell.TH.Syntax.Compat" for examples of + how to use this module. +homepage: https://github.com/haskell-compat/th-compat +bug-reports: https://github.com/haskell-compat/th-compat/issues +license: BSD3 +license-file: LICENSE +author: Ryan Scott +maintainer: Ryan Scott +copyright: (C) 2020 Ryan Scott +category: Text +build-type: Simple +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.4 + , GHC == 8.6.5 + , GHC == 8.8.4 + , GHC == 8.10.7 + , GHC == 9.0.2 + , GHC == 9.2.3 + , GHC == 9.4.1 +extra-source-files: CHANGELOG.md, README.md + +source-repository head + type: git + location: https://github.com/haskell-compat/th-compat + +library + exposed-modules: Language.Haskell.TH.Syntax.Compat + build-depends: base >= 4.3 && < 5 + , template-haskell >= 2.5 && < 2.22 + if !impl(ghc >= 8.0) + build-depends: fail == 4.9.* + , transformers >= 0.2 && < 0.7 + if !impl(ghc >= 9.4) + build-depends: filepath >= 1.2.0.0 && < 1.5 + , directory >= 1.1.0.0 && < 1.4 + hs-source-dirs: src + default-language: Haskell2010 + ghc-options: -Wall + if impl(ghc >= 8.6) + ghc-options: -Wno-star-is-type + +test-suite spec + type: exitcode-stdio-1.0 + main-is: Spec.hs + other-modules: Language.Haskell.TH.Syntax.CompatSpec + Types + build-depends: base >= 4.3 && < 5 + , base-compat >= 0.6 && < 0.14 + , hspec >= 2 && < 3 + , mtl >= 2.1 && < 2.4 + , template-haskell >= 2.5 && < 2.22 + , th-compat + build-tool-depends: hspec-discover:hspec-discover >= 2 + hs-source-dirs: tests + default-language: Haskell2010 + ghc-options: -Wall -threaded -rtsopts -- cgit v1.2.3