Initial import, #982186

This commit is contained in:
Ricky Elrod 2013-07-16 19:08:07 -04:00
parent 211ad306e6
commit d133046f2c
3 changed files with 79 additions and 0 deletions

1
.gitignore vendored
View File

@ -0,0 +1 @@
/language-javascript-0.5.7.tar.gz

View File

@ -0,0 +1,77 @@
# https://fedoraproject.org/wiki/Packaging:Haskell
%global pkg_name language-javascript
Name: ghc-%{pkg_name}
Version: 0.5.7
Release: 1%{?dist}
Summary: Parser for JavaScript
License: BSD
URL: http://hackage.haskell.org/package/%{pkg_name}
Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-rpm-macros
# Begin cabal-rpm deps:
BuildRequires: ghc-array-devel
BuildRequires: ghc-blaze-builder-devel
BuildRequires: ghc-bytestring-devel
BuildRequires: ghc-containers-devel
BuildRequires: ghc-mtl-devel
BuildRequires: ghc-utf8-light-devel
BuildRequires: ghc-utf8-string-devel
BuildRequires: happy
# End cabal-rpm deps
%description
Parses Javascript into an Abstract Syntax Tree (AST). Initially intended as
frontend to hjsmin.
Note: Version 0.5.0 breaks compatibility with prior versions, the AST has been
reworked to allow round trip processing of JavaScript.
%package devel
Summary: Haskell %{pkg_name} library development files
Requires: ghc-compiler = %{ghc_version}
Requires(post): ghc-compiler = %{ghc_version}
Requires(postun): ghc-compiler = %{ghc_version}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
This package provides the development files for
the Haskell %{pkg_name} library.
%prep
%setup -q -n %{pkg_name}-%{version}
%build
%ghc_lib_build
%install
%ghc_lib_install
%post devel
%ghc_pkg_recache
%postun devel
%ghc_pkg_recache
%files -f %{name}.files
%doc LICENSE
%files devel -f %{name}-devel.files
%doc README
%changelog
* Mon Jul 8 2013 Fedora Haskell SIG <haskell@lists.fedoraproject.org> - 0.5.7-1
- spec file generated by cabal-rpm-0.8.2

View File

@ -0,0 +1 @@
4bac3cf712623e47ec72bf4d5dd6b82b language-javascript-0.5.7.tar.gz