update to 0.2.8.0

This commit is contained in:
Jens Petersen 2022-06-07 15:03:14 +08:00
parent 20ca758ea5
commit cc06ea94fe
4 changed files with 102 additions and 4 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
/typed-process-0.2.3.0.tar.gz
/typed-process-0.2.5.0.tar.gz
/typed-process-0.2.6.0.tar.gz
/typed-process-0.2.8.0.tar.gz

View File

@ -12,17 +12,19 @@
#%%endif
Name: ghc-%{pkg_name}
Version: 0.2.6.0
Release: 9%{?dist}
Version: 0.2.8.0
Release: 1%{?dist}
Summary: Run external processes, with strong typing of streams
License: MIT
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: dos2unix
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-rpm-macros
BuildRequires: ghc-async-prof
@ -40,7 +42,7 @@ BuildRequires: ghc-temporary-devel
# End cabal-rpm deps
%description
Please see the tutorial at <https://haskell-lang.org/library/typed-process>.
Please see the tutorial at <https://github.com/fpco/typed-process#readme>.
%package devel
@ -81,6 +83,7 @@ This package provides the Haskell %{pkg_name} profiling library.
%prep
# Begin cabal-rpm setup:
%setup -q -n %{pkgver}
dos2unix -k -n %{SOURCE1} %{pkg_name}.cabal
# End cabal-rpm setup
@ -124,6 +127,9 @@ This package provides the Haskell %{pkg_name} profiling library.
%changelog
* Tue Jun 07 2022 Jens Petersen <petersen@redhat.com> - 0.2.8.0-1
- https://hackage.haskell.org/package/typed-process-0.2.8.0/changelog
* Thu Mar 10 2022 Jens Petersen <petersen@redhat.com> - 0.2.6.0-9
- rebuild

View File

@ -1 +1 @@
SHA512 (typed-process-0.2.6.0.tar.gz) = a40b8db4ef2179273943a3aab0200891bd3dffe584bcd51037ddf9cebae88d4d95292883a745a0c31900c7bf2eebe2c71175fbb86dc470b60660b443f8b1e3e0
SHA512 (typed-process-0.2.8.0.tar.gz) = abffc3e26edaad8da0301a945b1711636fc555c3062aff57ad7b292f87fba857177a42041f4f98eafc35a1f216f0287afb2af41c2a3091bfc4905474d64bc230

View File

@ -0,0 +1,91 @@
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack
name: typed-process
version: 0.2.8.0
x-revision: 1
synopsis: Run external processes, with strong typing of streams
description: Please see the tutorial at <https://github.com/fpco/typed-process#readme>
category: System
homepage: https://github.com/fpco/typed-process
bug-reports: https://github.com/fpco/typed-process/issues
author: Michael Snoyman
maintainer: michael@snoyman.com
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/fpco/typed-process
library
exposed-modules:
System.Process.Typed
System.Process.Typed.Internal
other-modules:
Paths_typed_process
hs-source-dirs:
src
build-depends:
async >= 2.0.1
, base >=4.12 && <5
, bytestring
, process >=1.2
, stm
, transformers
, unliftio-core
if os(windows)
cpp-options: -DWINDOWS
default-language: Haskell2010
test-suite typed-process-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
System.Process.TypedSpec
Paths_typed_process
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
async
, base >=4.12 && <5
, base64-bytestring
, bytestring
, hspec
, process >=1.2
, stm
, temporary
, transformers
, typed-process
, unliftio-core
default-language: Haskell2010
test-suite typed-process-test-single-threaded
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
System.Process.TypedSpec
Paths_typed_process
hs-source-dirs:
test
build-depends:
async
, base >=4.12 && <5
, base64-bytestring
, bytestring
, hspec
, process >=1.2
, stm
, temporary
, transformers
, typed-process
, unliftio-core
default-language: Haskell2010