update to 0.2.10.1

This commit is contained in:
Jens Petersen 2023-01-23 01:48:47 +08:00
parent 3c5e24ccb5
commit 4e7d26b939
4 changed files with 18 additions and 98 deletions

1
.gitignore vendored
View File

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

View File

@ -1,4 +1,4 @@
# generated by cabal-rpm-2.0.9
# generated by cabal-rpm-2.1.0
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
%global pkg_name typed-process
@ -12,21 +12,27 @@
#%%endif
Name: ghc-%{pkg_name}
Version: 0.2.8.0
Release: 2%{?dist}
Version: 0.2.10.1
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-devel
BuildRequires: ghc-base-devel
BuildRequires: ghc-bytestring-devel
BuildRequires: ghc-process-devel
BuildRequires: ghc-stm-devel
BuildRequires: ghc-transformers-devel
BuildRequires: ghc-unliftio-core-devel
%if %{with ghc_prof}
BuildRequires: ghc-async-prof
BuildRequires: ghc-base-prof
BuildRequires: ghc-bytestring-prof
@ -34,6 +40,7 @@ BuildRequires: ghc-process-prof
BuildRequires: ghc-stm-prof
BuildRequires: ghc-transformers-prof
BuildRequires: ghc-unliftio-core-prof
%endif
%if %{with tests}
BuildRequires: ghc-base64-bytestring-devel
BuildRequires: ghc-hspec-devel
@ -83,7 +90,6 @@ 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
@ -127,6 +133,10 @@ dos2unix -k -n %{SOURCE1} %{pkg_name}.cabal
%changelog
* Sun Jan 22 2023 Jens Petersen <petersen@redhat.com> - 0.2.10.1-1
- https://hackage.haskell.org/package/typed-process-0.2.10.1/changelog
- refresh to cabal-rpm-2.1.0 with SPDX migration
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.8.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild

View File

@ -1 +1 @@
SHA512 (typed-process-0.2.8.0.tar.gz) = abffc3e26edaad8da0301a945b1711636fc555c3062aff57ad7b292f87fba857177a42041f4f98eafc35a1f216f0287afb2af41c2a3091bfc4905474d64bc230
SHA512 (typed-process-0.2.10.1.tar.gz) = 07ab11cc1554aeaf8980df5fbe105de71282424365be9e26e94b7cbad344d3d0d9d54fc492615e32ec0e6d3064a72c7996be03e7fbb81136df366511d7bd606d

View File

@ -1,91 +0,0 @@
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