update to 3.1.7.2

This commit is contained in:
Jens Petersen 2021-01-29 11:05:18 +08:00
parent 4859b3e732
commit 82561d2534
4 changed files with 14 additions and 8 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
/wai-app-static-3.1.6.2.tar.gz
/wai-app-static-3.1.6.3.tar.gz
/wai-app-static-3.1.7.1.tar.gz
/wai-app-static-3.1.7.2.tar.gz

View File

@ -7,8 +7,8 @@
%bcond_with tests
Name: ghc-%{pkg_name}
Version: 3.1.7.1
Release: 6%{?dist}
Version: 3.1.7.2
Release: 1%{?dist}
Summary: WAI application for static serving
License: MIT
@ -139,6 +139,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal
%changelog
* Thu Aug 5 2021 Jens Petersen <petersen@redhat.com> - 3.1.7.2-1
- update to 3.1.7.2
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7.1-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild

View File

@ -1 +1 @@
SHA512 (wai-app-static-3.1.7.1.tar.gz) = eae193f79a15b9e995d3db3a8c8a4a80ac8faeacb775b307c9a20f9ef5d77583143009c0ae71d77ecf9224a752460d3ecd9109db873f8517ed359025a4efb1d3
SHA512 (wai-app-static-3.1.7.2.tar.gz) = e073d85efc201eab94b9c8be4e40ee71567d07ed2e2907504a946477211bc21aaf2250213cac67525ae58be499b164b09880600c0a6f62b0b1742fb9d730d6d9

View File

@ -1,5 +1,5 @@
name: wai-app-static
version: 3.1.7.1
version: 3.1.7.2
x-revision: 1
license: MIT
license-file: LICENSE
@ -9,7 +9,7 @@ synopsis: WAI application for static serving
description: API docs and the README are available at <http://www.stackage.org/package/wai-app-static>.
category: Web, Yesod
stability: Stable
cabal-version: >= 1.8
cabal-version: >= 1.10
build-type: Simple
homepage: http://www.yesodweb.com/book/web-application-interface
Extra-source-files:
@ -26,7 +26,8 @@ Flag print
Default: False
library
build-depends: base >= 4.8 && < 5
default-language: Haskell2010
build-depends: base >= 4 && < 5
, wai >= 3.0 && < 3.3
, bytestring >= 0.10.4
, http-types >= 0.7
@ -48,7 +49,7 @@ library
, template-haskell >= 2.7
, zlib >= 0.5
, filepath
, wai-extra >= 3.0 && < 3.1
, wai-extra >= 3.0 && < 3.2
, optparse-applicative >= 0.7
, warp >= 3.0.11 && < 3.4
@ -62,12 +63,12 @@ library
WaiAppStatic.Storage.Embedded.Runtime
WaiAppStatic.Storage.Embedded.TH
ghc-options: -Wall
extensions: CPP
if flag(print)
cpp-options: -DPRINT
Executable warp
default-language: Haskell2010
Main-is: warp-static.hs
hs-source-dirs: app
Build-depends: base >= 4 && < 5
@ -79,6 +80,7 @@ Executable warp
, mime-types >= 0.1 && < 0.2
test-suite runtests
default-language: Haskell2010
hs-source-dirs: test
main-is: ../tests.hs
type: exitcode-stdio-1.0