Compare commits

...

9 Commits
f33 ... rawhide

Author SHA1 Message Date
Jens Petersen 54d524d7f6 refresh to cabal-rpm-2.1.0 with SPDX migration 2023-02-16 12:46:54 +08:00
Fedora Release Engineering b858c7c69b Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-07-21 06:09:28 +00:00
Jens Petersen 9da6b76e81 bump release 2022-06-18 01:33:45 +08:00
Fedora Release Engineering a260b236d2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-01-20 05:54:22 +00:00
Miro Hrončok f7160724a9 Rebuilt for https://fedoraproject.org/wiki/Changes/LIBFFI34 2022-01-08 11:11:33 +01:00
Jens Petersen 758bf1b4a4 bump release 2021-08-06 13:26:22 +08:00
Jens Petersen 246aada2cb refresh to cabal-rpm-2.0.9 2021-08-05 00:20:43 +08:00
Fedora Release Engineering 105589fbc3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2021-07-22 01:33:22 +00:00
Fedora Release Engineering e5bf740db1 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2021-01-26 08:01:09 +00:00
2 changed files with 162 additions and 3 deletions

118
ghcid-0.8.7.cabal Normal file
View File

@ -0,0 +1,118 @@
cabal-version: >= 1.18
build-type: Simple
name: ghcid
version: 0.8.7
x-revision: 1
license: BSD3
license-file: LICENSE
category: Development
author: Neil Mitchell <ndmitchell@gmail.com>, jpmoresmau
maintainer: Neil Mitchell <ndmitchell@gmail.com>
copyright: Neil Mitchell 2014-2020
synopsis: GHCi based bare bones IDE
description:
Either \"GHCi as a daemon\" or \"GHC + a bit of an IDE\". A very simple Haskell development tool which shows you the errors in your project and updates them whenever you save. Run @ghcid --topmost --command=ghci@, where @--topmost@ makes the window on top of all others (Windows only) and @--command@ is the command to start GHCi on your project (defaults to @ghci@ if you have a @.ghci@ file, or else to @cabal repl@).
homepage: https://github.com/ndmitchell/ghcid#readme
bug-reports: https://github.com/ndmitchell/ghcid/issues
tested-with: GHC==8.10.1, GHC==8.8.3, GHC==8.6.5, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2
extra-doc-files:
CHANGES.txt
README.md
source-repository head
type: git
location: https://github.com/ndmitchell/ghcid.git
library
hs-source-dirs: src
default-language: Haskell2010
build-depends:
base >= 4.7 && < 5,
filepath,
time >= 1.5,
directory >= 1.2,
extra >= 1.6.20,
process >= 1.1,
ansi-terminal,
cmdargs >= 0.10
exposed-modules:
Language.Haskell.Ghcid
other-modules:
Paths_ghcid
Language.Haskell.Ghcid.Escape
Language.Haskell.Ghcid.Parser
Language.Haskell.Ghcid.Types
Language.Haskell.Ghcid.Util
executable ghcid
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -main-is Ghcid.main -threaded -rtsopts
main-is: Ghcid.hs
build-depends:
base >= 4.7 && < 5,
filepath,
time >= 1.5,
directory >= 1.2,
containers,
fsnotify >= 0.3 && < 0.4,
extra >= 1.6.20,
process >= 1.1,
cmdargs >= 0.10,
ansi-terminal,
terminal-size >= 0.3
if os(windows)
build-depends: Win32
else
build-depends: unix
other-modules:
Language.Haskell.Ghcid.Escape
Language.Haskell.Ghcid.Parser
Language.Haskell.Ghcid.Terminal
Language.Haskell.Ghcid.Types
Language.Haskell.Ghcid.Util
Language.Haskell.Ghcid
Paths_ghcid
Session
Wait
test-suite ghcid_test
type: exitcode-stdio-1.0
hs-source-dirs: src
main-is: Test.hs
ghc-options: -rtsopts -main-is Test.main -threaded -with-rtsopts=-K1K
default-language: Haskell2010
build-depends:
base >= 4.7 && < 5,
filepath,
time >= 1.5,
directory >= 1.2,
process,
containers,
fsnotify,
extra >= 1.6.6,
ansi-terminal,
terminal-size >= 0.3,
cmdargs,
tasty,
tasty-hunit
if os(windows)
build-depends: Win32
else
build-depends: unix
other-modules:
Ghcid
Language.Haskell.Ghcid
Language.Haskell.Ghcid.Escape
Language.Haskell.Ghcid.Parser
Language.Haskell.Ghcid.Terminal
Language.Haskell.Ghcid.Types
Language.Haskell.Ghcid.Util
Paths_ghcid
Session
Test.API
Test.Ghcid
Test.Parser
Test.Util
Wait

View File

@ -1,4 +1,4 @@
# generated by cabal-rpm-2.0.6
# generated by cabal-rpm-2.1.0
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
%global pkg_name ghcid
@ -8,10 +8,10 @@
Name: %{pkg_name}
Version: 0.8.7
Release: 3%{?dist}
Release: 11%{?dist}
Summary: GHCi based bare bones IDE
License: BSD
License: BSD-3-Clause
Url: https://hackage.haskell.org/package/%{name}
# Begin cabal-rpm sources:
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
@ -20,6 +20,19 @@ Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
# Begin cabal-rpm deps:
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-rpm-macros
BuildRequires: ghc-ansi-terminal-devel
BuildRequires: ghc-base-devel
BuildRequires: ghc-cmdargs-devel
BuildRequires: ghc-containers-devel
BuildRequires: ghc-directory-devel
BuildRequires: ghc-extra-devel
BuildRequires: ghc-filepath-devel
BuildRequires: ghc-fsnotify-devel
BuildRequires: ghc-process-devel
BuildRequires: ghc-terminal-size-devel
BuildRequires: ghc-time-devel
BuildRequires: ghc-unix-devel
%if %{with ghc_prof}
BuildRequires: ghc-ansi-terminal-prof
BuildRequires: ghc-base-prof
BuildRequires: ghc-cmdargs-prof
@ -32,6 +45,7 @@ BuildRequires: ghc-process-prof
BuildRequires: ghc-terminal-size-prof
BuildRequires: ghc-time-prof
BuildRequires: ghc-unix-prof
%endif
%if %{with tests}
BuildRequires: ghc-tasty-devel
BuildRequires: ghc-tasty-hunit-devel
@ -72,6 +86,7 @@ This package provides the Haskell %{name} library development files.
%package -n ghc-%{name}-doc
Summary: Haskell %{name} library documentation
BuildArch: noarch
Requires: ghc-filesystem
%description -n ghc-%{name}-doc
This package provides the Haskell %{name} library documentation.
@ -108,7 +123,9 @@ This package provides the Haskell %{name} profiling library.
%check
%if %{with tests}
%cabal_test
%endif
%files
@ -141,6 +158,30 @@ This package provides the Haskell %{name} profiling library.
%changelog
* Thu Feb 16 2023 Jens Petersen <petersen@redhat.com> - 0.8.7-11
- refresh to cabal-rpm-2.1.0 with SPDX migration
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.7-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Fri Jun 17 2022 Jens Petersen <petersen@redhat.com> - 0.8.7-9
- rebuild
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.7-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Sat Jan 08 2022 Miro Hrončok <mhroncok@redhat.com> - 0.8.7-7
- Rebuilt for https://fedoraproject.org/wiki/Changes/LIBFFI34
* Fri Aug 06 2021 Jens Petersen <petersen@redhat.com> - 0.8.7-6
- rebuild
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.7-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.7-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.7-3
- Second attempt - Rebuilt for
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild