update to 3.1.7.3

This commit is contained in:
Jens Petersen 2022-06-07 15:11:53 +08:00
parent 12a62022a6
commit e9e962ff0a
4 changed files with 128 additions and 117 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
/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
/wai-app-static-3.1.7.3.tar.gz

View File

@ -1,14 +1,14 @@
# generated by cabal-rpm-2.0.9
# generated by cabal-rpm-2.0.12
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
%global pkg_name wai-app-static
%global pkgver %{pkg_name}-%{version}
%bcond_with tests
%bcond_without tests
Name: ghc-%{pkg_name}
Version: 3.1.7.2
Release: 3%{?dist}
Version: 3.1.7.3
Release: 1%{?dist}
Summary: WAI application for static serving
License: MIT
@ -142,6 +142,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal
%changelog
* Tue Jun 07 2022 Jens Petersen <petersen@redhat.com> - 3.1.7.3-1
- https://hackage.haskell.org/package/wai-app-static-3.1.7.3/changelog
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.7.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild

View File

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

View File

@ -1,112 +1,119 @@
name: wai-app-static
version: 3.1.7.2
x-revision: 1
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>
maintainer: Michael Snoyman <michael@snoyman.com>, Greg Weber <greg@gregweber.info>
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.10
build-type: Simple
homepage: http://www.yesodweb.com/book/web-application-interface
Extra-source-files:
images/folder.png
images/haskell.png
test/*.hs
test/a/b
tests.hs
README.md
ChangeLog.md
Flag print
Description: print debug info
Default: False
library
default-language: Haskell2010
build-depends: base >= 4 && < 5
, wai >= 3.0 && < 3.3
, bytestring >= 0.10.4
, http-types >= 0.7
, transformers >= 0.2.2
, unix-compat >= 0.2
, directory >= 1.0.1
, containers >= 0.2
, time >= 1.1.4
, old-locale >= 1.0.0.2
, file-embed >= 0.0.3.1
, text >= 0.7
, cryptonite >= 0.6
, memory >= 0.7
, http-date
, blaze-html >= 0.5
, blaze-markup >= 0.5.1
, mime-types >= 0.1 && < 0.2
, unordered-containers >= 0.2
, template-haskell >= 2.7
, zlib >= 0.5
, filepath
, wai-extra >= 3.0 && < 3.2
, optparse-applicative >= 0.7
, warp >= 3.0.11 && < 3.4
exposed-modules: Network.Wai.Application.Static
WaiAppStatic.Storage.Filesystem
WaiAppStatic.Storage.Embedded
WaiAppStatic.Listing
WaiAppStatic.Types
WaiAppStatic.CmdLine
other-modules: Util
WaiAppStatic.Storage.Embedded.Runtime
WaiAppStatic.Storage.Embedded.TH
ghc-options: -Wall
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
, wai-app-static
, directory >= 1.0
, containers >= 0.2
, bytestring >= 0.10.4
, text >= 0.7
, 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
build-depends: base >= 4 && < 5
, hspec >= 1.3
, unix-compat
, time
, old-locale
, http-date
, wai-app-static
, wai-extra
, wai
, http-types
, network
, bytestring
, text
, transformers
, mime-types
, zlib
, filepath
, temporary
, mockery
-- , containers
ghc-options: -Wall
source-repository head
type: git
location: git://github.com/yesodweb/wai.git
name: wai-app-static
version: 3.1.7.3
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>
maintainer: Michael Snoyman <michael@snoyman.com>, Greg Weber <greg@gregweber.info>
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.10
build-type: Simple
homepage: http://www.yesodweb.com/book/web-application-interface
Extra-source-files:
images/folder.png
images/haskell.png
test/*.hs
test/a/b
tests.hs
README.md
ChangeLog.md
Flag print
Description: print debug info
Default: False
Flag cryptonite
Description: Use the cryptonite library for MD5 computation
Default: True
library
default-language: Haskell2010
build-depends: base >= 4.12 && < 5
, wai >= 3.0 && < 3.3
, bytestring >= 0.10.4
, http-types >= 0.7
, transformers >= 0.2.2
, unix-compat >= 0.2
, directory >= 1.0.1
, containers >= 0.2
, time >= 1.1.4
, old-locale >= 1.0.0.2
, file-embed >= 0.0.3.1
, text >= 0.7
, http-date
, blaze-html >= 0.5
, blaze-markup >= 0.5.1
, mime-types >= 0.1 && < 0.2
, unordered-containers >= 0.2
, template-haskell >= 2.7
, zlib >= 0.5
, filepath
, wai-extra >= 3.0 && < 3.2
, optparse-applicative >= 0.7
, warp >= 3.0.11 && < 3.4
if flag(cryptonite)
build-depends: cryptonite >= 0.6
, memory >= 0.7
else
build-depends: base64-bytestring >= 0.1
, cryptohash-md5 >= 0.11.101
exposed-modules: Network.Wai.Application.Static
WaiAppStatic.Storage.Filesystem
WaiAppStatic.Storage.Embedded
WaiAppStatic.Listing
WaiAppStatic.Types
WaiAppStatic.CmdLine
other-modules: Util
WaiAppStatic.Storage.Embedded.Runtime
WaiAppStatic.Storage.Embedded.TH
ghc-options: -Wall
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
, wai-app-static
, directory >= 1.0
, containers >= 0.2
, bytestring >= 0.10.4
, text >= 0.7
, 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
build-depends: base >= 4 && < 5
, hspec >= 1.3
, unix-compat
, time
, old-locale
, http-date
, wai-app-static
, wai-extra
, wai
, http-types
, network
, bytestring
, text
, transformers
, mime-types
, zlib
, filepath
, temporary
, mockery
-- , containers
ghc-options: -Wall
source-repository head
type: git
location: git://github.com/yesodweb/wai.git