ShellCheck/ShellCheck.spec

130 lines
3.3 KiB
RPMSpec
Raw Normal View History

2013-12-04 22:43:09 +00:00
%global pkg_name ShellCheck
Name: %{pkg_name}
Version: 0.3.1
Release: 1%{?dist}
2013-12-04 22:43:09 +00:00
Summary: Tool for checking common errors in POSIX shell scripts
License: AGPLv3+
URL: http://www.shellcheck.net/about.html
Source0: https://github.com/koalaman/shellcheck/archive/v%{version}.tar.gz
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-rpm-macros
# Begin cabal-rpm deps:
BuildRequires: ghc-containers-devel
BuildRequires: ghc-directory-devel
BuildRequires: ghc-json-devel
BuildRequires: ghc-mtl-devel
BuildRequires: ghc-parsec-devel
BuildRequires: ghc-regex-compat-devel
# End cabal-rpm deps
%description
The goals of ShellCheck are:
- To point out and clarify typical beginner's syntax issues,
that causes a shell to give cryptic error messages.
- To point out and clarify typical intermediate level semantic problems,
that causes a shell to behave strangely and counter-intuitively.
- To point out subtle caveats, corner cases and pitfalls, that may cause an
advanced user's otherwise working script to fail under future circumstances.
%package -n ghc-%{name}
Summary: Haskell %{name} library
%description -n ghc-%{name}
This package provides the Haskell %{name} shared library.
%package -n ghc-%{name}-devel
Summary: Haskell %{name} library development files
Provides: ghc-%{name}-static = %{version}-%{release}
Requires: ghc-compiler = %{ghc_version}
Requires(post): ghc-compiler = %{ghc_version}
Requires(postun): ghc-compiler = %{ghc_version}
Requires: ghc-%{name}%{?_isa} = %{version}-%{release}
%description -n ghc-%{name}-devel
This package provides the Haskell %{name} library development files.
%prep
%setup -q -n shellcheck-%{version}
# workaround until the tarball root directory becomes %%{name}-%%{version}
# see also "cd %%{_builddir}/%%{name}-%%{version}" in other sections
ln -s shellcheck-%{version} ../%{name}-%{version}
2013-12-04 22:43:09 +00:00
cat >Setup.hs <<EOF
import Distribution.Simple
main = defaultMain
EOF
%build
cd %{_builddir}/%{name}-%{version}
2013-12-04 22:43:09 +00:00
%ghc_lib_build
%install
cd %{_builddir}/%{name}-%{version}
2013-12-04 22:43:09 +00:00
%ghc_lib_install
%check
cd %{_builddir}/%{name}-%{version}
2013-12-04 22:43:09 +00:00
make .tests
%post -n ghc-%{name}-devel
%ghc_pkg_recache
%postun -n ghc-%{name}-devel
%ghc_pkg_recache
%files
%doc LICENSE
%doc README
%{_bindir}/shellcheck
%files -n ghc-%{name} -f ghc-%{name}.files
%{_pkgdocdir}/LICENSE
%{_pkgdocdir}/README
%files -n ghc-%{name}-devel -f ghc-%{name}-devel.files
%{_pkgdocdir}/LICENSE
%{_pkgdocdir}/README
%changelog
* Tue Feb 04 2014 Dridi <dridi.boukelmoune@gmail.com> - 0.3.1-1
- bumped to version 0.3.1
- added a workaround for the Fedora haskell toolchain (bug #1052117)
2013-12-04 22:43:09 +00:00
* Tue Dec 03 2013 Dridi <dridi.boukelmoune@gmail.com> - 0.2.0-3
- rebuilt
* Tue Dec 03 2013 Dridi Boukelmoune <dridi.boukelmoune@gmail.com> - 0.2.0-3
- s/shell/POSIX shell/ in summary
- LICENSE and README co-owned by sub-packages
* Sat Nov 30 2013 Dridi Boukelmoune <dridi.boukelmoune@gmail.com> - 0.2.0-2
- added a patch for "for arg do" loops (d4bc0f6)
* Sat Nov 23 2013 Dridi Boukelmoune <dridi.boukelmoune@gmail.com> - 0.2.0-1
- spec file generated by cabal-rpm-0.8.6
- added the description from the README
- fixed broken bits from the generated spec