This commit is contained in:
Jens Petersen 2019-03-10 12:12:45 +08:00
parent 556fe618fc
commit 85b1006173
4 changed files with 135 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/th-expand-syns-0.4.4.0.tar.gz

91
ghc-th-expand-syns.spec Normal file
View File

@ -0,0 +1,91 @@
# generated by cabal-rpm-0.13.1
# https://fedoraproject.org/wiki/Packaging:Haskell
%global pkg_name th-expand-syns
%global pkgver %{pkg_name}-%{version}
%bcond_without tests
Name: ghc-%{pkg_name}
Version: 0.4.4.0
Release: 1%{?dist}
Summary: Expands type synonyms in Template Haskell ASTs
License: BSD
Url: https://hackage.haskell.org/package/%{pkg_name}
# Begin cabal-rpm sources:
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
# Begin cabal-rpm deps:
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-rpm-macros
BuildRequires: ghc-containers-devel
BuildRequires: ghc-syb-devel
BuildRequires: ghc-template-haskell-devel
# End cabal-rpm deps
%description
Expands type synonyms in Template Haskell ASTs.
%package devel
Summary: Haskell %{pkg_name} library development files
Provides: %{name}-static = %{version}-%{release}
Provides: %{name}-doc = %{version}-%{release}
%if %{defined ghc_version}
Requires: ghc-compiler = %{ghc_version}
Requires(post): ghc-compiler = %{ghc_version}
Requires(postun): ghc-compiler = %{ghc_version}
%endif
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
This package provides the Haskell %{pkg_name} library development files.
%prep
# Begin cabal-rpm setup:
%setup -q -n %{pkgver}
cp -bp %{SOURCE1} %{pkg_name}.cabal
# End cabal-rpm setup
%build
# Begin cabal-rpm build:
%ghc_lib_build
# End cabal-rpm build
%install
# Begin cabal-rpm install
%ghc_lib_install
# End cabal-rpm install
%check
%cabal_test
%post devel
%ghc_pkg_recache
%postun devel
%ghc_pkg_recache
%files -f %{name}.files
# Begin cabal-rpm files:
%license LICENSE
# End cabal-rpm files
%files devel -f %{name}-devel.files
%doc changelog.markdown
%changelog
* Fri Mar 1 2019 Fedora Haskell SIG <haskell@lists.fedoraproject.org> - 0.4.4.0-1
- spec file generated by cabal-rpm-0.13.1

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (th-expand-syns-0.4.4.0.tar.gz) = dbad14fbc9a2041493ee181b376f5888c5bfa8f3d64abf009ad9ee7ac3d95495899fadb678d293f4db4d9902cbc525cadb06c728762d443a035c33519452a27e

View File

@ -0,0 +1,42 @@
name: th-expand-syns
version: 0.4.4.0
x-revision: 1
synopsis: Expands type synonyms in Template Haskell ASTs
description: Expands type synonyms in Template Haskell ASTs.
category: Template Haskell
license: BSD3
license-file: LICENSE
author: Daniel Schüssler
maintainer: haskell.5wlh@gishpuppy.com
cabal-version: >= 1.8
build-type: Simple
extra-source-files: changelog.markdown
homepage: https://github.com/DanielSchuessler/th-expand-syns
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/DanielSchuessler/th-expand-syns.git
Library
build-depends: base >= 4 && < 5, template-haskell < 2.15, syb, containers
ghc-options:
exposed-modules: Language.Haskell.TH.ExpandSyns
other-modules: Language.Haskell.TH.ExpandSyns.SemigroupCompat
Test-Suite test-th-expand-syns
type: exitcode-stdio-1.0
hs-source-dirs: testing
main-is: Main.hs
other-modules: Util, Types
build-depends: base, th-expand-syns, template-haskell